/* TheCutlist.ie holding page.
   Kept in a stylesheet rather than a <style> block on purpose: the production CSP
   in firebase.json sets `style-src-elem 'self'`, which blocks inline style
   elements — an inline block renders fine locally and unstyled in production.
   Palette per BRANDING.md: navy #0f172a, blue #3b82f6, slate surfaces. */

/* Self-hosted Inter (@fontsource-variable/inter). Never fonts.googleapis.com —
   that ships every EU visitor's IP to a third party on page load. */
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/assets/inter-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #0f172a;
  --blue: #3b82f6;
  --blue-deep: #1d4ed8;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --faint: #94a3b8;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background-color: var(--navy);
  background-image:
    radial-gradient(60rem 40rem at 50% -10%, rgba(59, 130, 246, 0.22), transparent 70%),
    radial-gradient(40rem 30rem at 90% 110%, rgba(29, 78, 216, 0.18), transparent 70%);
  background-repeat: no-repeat;
  color: var(--text);
  font-family: 'Inter Variable', Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 1.5rem 2.5rem;
}

.card {
  width: 100%;
  max-width: 40rem;
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 22rem;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* The source SVG fills its wordmark navy for the light storefront; on this dark
   page it needs the inverse. */
.logo .logo-text {
  font-family: 'Inter Variable', Inter, Helvetica, Arial, sans-serif;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -1.5px;
  fill: var(--text);
}

.logo .logo-accent { fill: #60a5fa; }

.rule {
  display: block;
  width: 4rem;
  height: 3px;
  margin: 2.25rem auto 2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.lead {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  font-size: clamp(1.0625rem, 2.2vw, 1.1875rem);
  line-height: 1.65;
  color: var(--muted);
}

.note {
  margin: 0 auto 2rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--faint);
}

.cta {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  background: var(--blue);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.cta:hover { background: #60a5fa; }
.cta:active { transform: translateY(1px); }

.cta:focus-visible,
.foot a:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 3px;
}

.chips {
  margin: 1.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--faint);
}

.foot {
  max-width: 40rem;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--faint);
}

.foot p { margin: 0.125rem 0; }
.foot .entity { color: var(--muted); font-weight: 600; }
.foot .copy { margin-top: 0.875rem; }
.foot a { color: #93c5fd; }
.foot a:hover { color: #bfdbfe; }

@media (prefers-reduced-motion: reduce) {
  .cta { transition: none; }
}
