/* MinigolfQ Landing Page · styles.css
   Brand-System-driven (warm daylight). Tokens mirror src/theme.ts but are
   duplicated here so website/ stays self-contained and deployable. */

@layer reset, tokens, base, components, sections, utilities;

/* -------------------------------------------------------------------------- */
/*  Reset                                                                     */
/* -------------------------------------------------------------------------- */
@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html, body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
  ul, ol { list-style: none; }
  img, picture, svg, video { display: block; max-width: 100%; height: auto; }
  button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
  a { color: inherit; text-decoration: none; }
  :focus-visible { outline: 3px solid var(--c-amber); outline-offset: 3px; border-radius: 6px; }
  ::selection { background: var(--c-amber); color: var(--c-ink); }
}

/* -------------------------------------------------------------------------- */
/*  Tokens                                                                    */
/* -------------------------------------------------------------------------- */
@layer tokens {
  :root {
    /* Brand colors */
    --c-amber: #F59E0B;
    --c-amber-dark: #D97706;
    --c-amber-soft: #FEF3C7;
    --c-ink: #1C1917;
    --c-ink-soft: #2D2D2D;
    --c-ink-mute: #6B6B6B;
    --c-warm: #FDFBF7;
    --c-cream: #F5F0E8;
    --c-card-dark: #2D2D2D;
    --c-on-dark: #FDFBF7;
    --c-sage: #10B981;
    --c-sage-soft: #D1FAE5;
    --c-border: #E5E0D8;
    --c-border-strong: #D1C9BE;
    --c-red: #EF4444;

    /* Type */
    --f-display: 'Fredoka', 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
    --f-body: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
    --f-serif: 'Instrument Serif', Georgia, serif;
    --f-mono: 'Space Mono', ui-monospace, Menlo, monospace;

    /* Spacing scale (px) */
    --s-1: 4px;
    --s-2: 8px;
    --s-3: 12px;
    --s-4: 16px;
    --s-5: 24px;
    --s-6: 32px;
    --s-7: 48px;
    --s-8: 64px;
    --s-9: 80px;
    --s-10: 120px;

    /* Radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-2xl: 32px;
    --r-pill: 999px;

    /* Container */
    --container: 1120px;
    --container-narrow: 760px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.06), 0 1px 3px rgba(28, 25, 23, 0.04);
    --shadow-md: 0 4px 12px rgba(28, 25, 23, 0.08), 0 2px 4px rgba(28, 25, 23, 0.04);
    --shadow-lg: 0 24px 48px -12px rgba(28, 25, 23, 0.18), 0 8px 16px -4px rgba(28, 25, 23, 0.08);
    --shadow-card-dark: 0 24px 48px -12px rgba(0, 0, 0, 0.5);

    /* Motion */
    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
    --dur: 220ms;
  }
}

/* -------------------------------------------------------------------------- */
/*  Base                                                                      */
/* -------------------------------------------------------------------------- */
@layer base {
  html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
  body {
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--c-ink-soft);
    background: var(--c-warm);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  h1, h2, h3, h4 {
    font-family: var(--f-display);
    color: var(--c-ink);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
  }
  h1 { font-size: clamp(40px, 6.4vw, 68px); }
  h2 { font-size: clamp(30px, 4.4vw, 46px); }
  h3 { font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.01em; }
  h4 { font-size: 18px; letter-spacing: -0.005em; }
  p { font-size: clamp(16px, 1.4vw, 18px); }
  a { color: var(--c-ink); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px; text-decoration-color: rgba(28,25,23,0.25); transition: color var(--dur) var(--ease), text-decoration-color var(--dur) var(--ease); }
  a:hover { color: var(--c-amber-dark); text-decoration-color: var(--c-amber); }
  hr { border: 0; height: 1px; background: var(--c-border); margin: var(--s-7) 0; }
  ::placeholder { color: var(--c-ink-mute); opacity: 1; }

  /* Skip link */
  .skip {
    position: absolute; left: -9999px; top: 0;
    background: var(--c-ink); color: var(--c-on-dark);
    padding: 12px 16px; border-radius: var(--r-md); z-index: 1000;
  }
  .skip:focus { left: 12px; top: 12px; }
}

/* -------------------------------------------------------------------------- */
/*  Layout                                                                    */
/* -------------------------------------------------------------------------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 40px, var(--container-narrow)); margin-inline: auto; }

@media (min-width: 720px) {
  .container { width: min(100% - 80px, var(--container)); }
}

/* -------------------------------------------------------------------------- */
/*  Components                                                                */
/* -------------------------------------------------------------------------- */
@layer components {
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: 14px 22px;
    border-radius: var(--r-md);
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
    border: 1.5px solid transparent;
    white-space: nowrap;
  }
  .btn--primary {
    background: var(--c-amber);
    color: var(--c-ink);
    box-shadow: 0 1px 0 rgba(28,25,23,0.15), 0 8px 24px -8px rgba(245,158,11,0.45);
  }
  .btn--primary:hover { transform: translateY(-1px); background: var(--c-amber-dark); color: var(--c-ink); text-decoration: none; }
  .btn--ghost {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-border-strong);
  }
  .btn--ghost:hover { background: var(--c-cream); border-color: var(--c-ink); text-decoration: none; }

  /* Store buttons – "Bald verfügbar" */
  .store-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px 12px 16px;
    border-radius: var(--r-md);
    background: var(--c-ink);
    color: var(--c-on-dark);
    border: 1.5px solid var(--c-ink);
    text-decoration: none;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    cursor: not-allowed;
    box-shadow: var(--shadow-sm);
    position: relative;
  }
  .store-btn[aria-disabled="true"] { pointer-events: none; }
  .store-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); text-decoration: none; }
  .store-btn .store-icon { width: 28px; height: 28px; flex-shrink: 0; }
  .store-btn .store-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
  .store-btn .store-text small { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.7; font-weight: 500; }
  .store-btn .store-text strong { font-size: 17px; font-weight: 700; }

  /* Eyebrow / chip */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-amber-dark);
    padding: 6px 12px;
    background: var(--c-amber-soft);
    border-radius: var(--r-pill);
  }
  .eyebrow--dark {
    color: var(--c-amber);
    background: rgba(245, 158, 11, 0.12);
  }

  /* Card */
  .card {
    background: var(--c-warm);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--s-6);
  }
  .card--cream { background: var(--c-cream); border-color: var(--c-border-strong); }
  .card--dark { background: var(--c-card-dark); border-color: rgba(255,255,255,0.06); color: var(--c-on-dark); }

  /* Phone mockup */
  .phone {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 19.5;
    background: var(--c-ink);
    border-radius: 44px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    margin-inline: auto;
  }
  .phone__screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--c-cream);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .phone__notch {
    position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
    width: 96px; height: 26px; background: var(--c-ink);
    border-radius: 14px; z-index: 2;
  }
  .phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 32px; }
  .phone__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: var(--s-3);
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-warm) 100%);
    color: var(--c-ink-mute);
    font-family: var(--f-body);
    font-size: 13px;
    text-align: center;
    padding: var(--s-5);
    border-radius: 32px;
  }
  .phone__placeholder svg { width: 64px; height: 64px; opacity: 0.35; }
  .phone__placeholder span { display: block; font-weight: 600; color: var(--c-ink); font-size: 14px; }
  .phone__placeholder small { font-size: 12px; opacity: 0.85; }

  /* Pill list (trust strip) */
  .pills {
    display: flex; flex-wrap: wrap; gap: var(--s-3);
    list-style: none; padding: 0; margin: var(--s-5) 0 0;
  }
  .pills li {
    display: inline-flex; align-items: center; gap: var(--s-2);
    padding: 8px 14px;
    background: var(--c-warm);
    border: 1px solid var(--c-border);
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--c-ink-soft);
  }
  .pills li svg { width: 14px; height: 14px; color: var(--c-sage); }
  .pills--dark li {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
    color: var(--c-on-dark);
  }

  /* FAQ accordion (uses native <details>) */
  .faq-item {
    border-bottom: 1px solid var(--c-border);
    padding: var(--s-5) 0;
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 19px;
    color: var(--c-ink);
    letter-spacing: -0.01em;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "";
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--c-amber-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C1917' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") center / 14px no-repeat;
    transition: transform var(--dur) var(--ease);
  }
  .faq-item[open] summary::after { transform: rotate(180deg); }
  .faq-item__body {
    margin-top: var(--s-4);
    color: var(--c-ink-mute);
    max-width: 60ch;
  }

  /* Notify form */
  .notify-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
    align-items: stretch;
    margin-top: var(--s-5);
    max-width: 480px;
  }
  .notify-form input[type="email"] {
    flex: 1 1 220px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: var(--r-md);
    border: 1.5px solid var(--c-border-strong);
    background: var(--c-warm);
    font: inherit;
    font-size: 16px;
    color: var(--c-ink);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  }
  .notify-form input[type="email"]:focus { outline: none; border-color: var(--c-amber); box-shadow: 0 0 0 4px rgba(245,158,11,0.15); }
  .notify-form button { min-height: 50px; }
  .notify-form__hint { font-size: 13px; color: var(--c-ink-mute); margin-top: var(--s-2); }
  .notify-form__status[hidden] { display: none; }
  .notify-form__status {
    margin-top: var(--s-3);
    font-size: 14px;
    color: var(--c-sage);
    font-weight: 500;
  }
  .notify-form__status--error { color: var(--c-red); }

  /* Placeholder banner (for legal pages) */
  .placeholder-banner {
    background: var(--c-amber-soft);
    border: 1.5px solid var(--c-amber);
    border-radius: var(--r-md);
    padding: var(--s-5);
    margin: var(--s-7) 0;
    color: var(--c-ink);
  }
  .placeholder-banner strong { display: block; font-family: var(--f-display); font-size: 18px; margin-bottom: var(--s-2); }
  .placeholder-banner p { font-size: 15px; }
}

/* -------------------------------------------------------------------------- */
/*  Sections                                                                  */
/* -------------------------------------------------------------------------- */
@layer sections {
  .section { padding-block: clamp(64px, 9vw, 120px); }
  .section[id] { scroll-margin-top: 88px; }
  .section--cream { background: var(--c-cream); }
  .section--warm { background: var(--c-warm); }
  .section--dark { background: var(--c-ink); color: var(--c-on-dark); }
  .section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--c-on-dark); }
  .section--dark p { color: rgba(253, 251, 247, 0.8); }
  .section--dark a { color: var(--c-amber); text-decoration-color: rgba(245,158,11,0.4); }
  .section--dark a:hover { color: var(--c-amber); text-decoration-color: var(--c-amber); }
  .section--strip { padding-block: clamp(40px, 5vw, 64px); }

  /* Site header */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--c-border);
  }
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-5);
    height: 72px;
  }
  .site-header__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .site-header__logo img {
    width: clamp(124px, 12vw, 176px);
    height: auto;
    max-height: 50px;
  }
  .site-header__logo:hover { text-decoration: none; }
  .site-header__nav {
    display: none;
    align-items: center;
    gap: var(--s-6);
  }
  .site-header__nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--c-ink-soft);
    text-decoration: none;
  }
  .site-header__nav a:hover { color: var(--c-amber-dark); }
  .site-header__cta { display: inline-flex; align-items: center; gap: var(--s-2); }
  @media (min-width: 880px) {
    .site-header__nav { display: inline-flex; }
  }

  /* Hero */
  .hero {
    padding-block: clamp(56px, 9vw, 96px);
    background: var(--c-warm);
    position: relative;
    overflow: hidden;
  }
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-8);
    align-items: center;
  }
  @media (min-width: 920px) {
    .hero__inner { grid-template-columns: 1.1fr 0.9fr; gap: var(--s-9); }
  }
  .hero__title { margin-top: var(--s-4); }
  .hero__title em { font-family: var(--f-serif); font-style: italic; color: var(--c-amber-dark); font-weight: 400; }
  .hero__sub { margin-top: var(--s-5); max-width: 56ch; font-size: clamp(17px, 1.6vw, 20px); color: var(--c-ink-mute); }
  .hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
  .hero__visual { position: relative; }

  /* Decorative ball */
  .hero__ball {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffffff 0%, #f3f3f3 60%, #d6d6d6 100%);
    box-shadow: 0 12px 32px -8px rgba(28,25,23,0.25), inset -8px -8px 14px rgba(0,0,0,0.05);
    top: 18%;
    left: -20px;
    z-index: -1;
    opacity: 0.85;
  }

  /* Feature row */
  .feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-7);
    align-items: center;
  }
  @media (min-width: 920px) {
    .feature { grid-template-columns: 1fr 1fr; gap: var(--s-9); }
    .feature--reverse .feature__visual { order: -1; }
  }
  .feature__copy h2 { margin-top: var(--s-4); }
  .feature__copy p { margin-top: var(--s-4); max-width: 52ch; color: var(--c-ink-mute); }
  .section--dark .feature__copy p { color: rgba(253,251,247,0.78); }
  .feature__copy ul {
    margin-top: var(--s-5);
    display: grid;
    gap: var(--s-3);
  }
  .feature__copy ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--s-3);
    font-size: 16px;
    color: var(--c-ink-soft);
  }
  .section--dark .feature__copy ul li { color: rgba(253,251,247,0.85); }
  .feature__copy ul li::before {
    content: "";
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    margin-top: 2px;
    background: var(--c-sage-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23047857' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 12px no-repeat;
  }
  .section--dark .feature__copy ul li::before {
    background: rgba(16,185,129,0.18) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 12px no-repeat;
  }

  /* Score detail floating card on scorecard feature */
  .score-card-float {
    position: absolute;
    background: var(--c-warm);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--s-4) var(--s-5);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--s-4);
    bottom: -10px;
    left: -20px;
    z-index: 3;
  }
  .score-card-float__num {
    font-family: var(--f-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--c-amber-dark);
    line-height: 1;
  }
  .score-card-float__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-ink-mute);
  }
  .score-card-float__value {
    font-family: var(--f-display);
    font-weight: 700;
    color: var(--c-ink);
    font-size: 16px;
  }
  @media (max-width: 560px) {
    .score-card-float { display: none; }
  }

  /* Audience grid (Für wen?) */
  .audience {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-5);
    margin-top: var(--s-7);
  }
  @media (min-width: 720px) {
    .audience { grid-template-columns: 1fr 1fr; }
  }
  .audience__col {
    background: var(--c-warm);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--s-7);
  }
  .audience__col h3 { margin-bottom: var(--s-3); }
  .audience__col p { color: var(--c-ink-mute); }
  .audience__col span.tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-amber-dark);
    font-weight: 600;
    margin-bottom: var(--s-2);
  }

  /* Operator strip */
  .operator-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-5);
    align-items: center;
  }
  @media (min-width: 760px) {
    .operator-strip { grid-template-columns: 1fr auto; gap: var(--s-7); }
  }
  .operator-strip h3 { color: var(--c-on-dark); margin-bottom: var(--s-2); }
  .operator-strip p { color: rgba(253,251,247,0.75); max-width: 60ch; }
  .section--dark .btn--primary,
  .section--dark .btn--primary:hover {
    color: var(--c-ink);
    text-decoration: none;
  }

  @media (max-width: 360px) {
    .site-header__inner { gap: var(--s-3); }
    .site-header__logo img { width: 110px; }
    .site-header__cta { padding-inline: 14px; font-size: 15px; }
  }

  /* FAQ */
  .faq-list { margin-top: var(--s-6); border-top: 1px solid var(--c-border); }

  /* Footer */
  .site-footer {
    background: var(--c-ink);
    color: rgba(253,251,247,0.78);
    padding-block: var(--s-9) var(--s-6);
  }
  .site-footer a { color: var(--c-on-dark); text-decoration-color: rgba(253,251,247,0.25); }
  .site-footer a:hover { color: var(--c-amber); text-decoration-color: var(--c-amber); }
  .site-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-7);
    padding-bottom: var(--s-7);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  @media (min-width: 760px) {
    .site-footer__top { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-9); }
  }
  .site-footer__brand img { height: 38px; width: auto; margin-bottom: var(--s-4); }
  .site-footer__brand p { color: rgba(253,251,247,0.7); max-width: 36ch; font-size: 15px; }
  .site-footer__col h4 { color: var(--c-on-dark); font-family: var(--f-body); font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--s-4); font-weight: 700; }
  .site-footer__col ul { display: grid; gap: var(--s-3); }
  .site-footer__col a { font-size: 15px; }
  .site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-5);
    justify-content: space-between;
    align-items: center;
    padding-top: var(--s-5);
    font-size: 13px;
    color: rgba(253,251,247,0.55);
  }

  /* Legal / Support page intro */
  .page-hero {
    padding-block: clamp(80px, 9vw, 120px) clamp(40px, 5vw, 64px);
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-border);
  }
  .page-hero p {
    margin-top: var(--s-4);
    max-width: 60ch;
    color: var(--c-ink-mute);
    font-size: 18px;
  }
  .legal-body { padding-block: var(--s-9); background: var(--c-warm); }
  .legal-body h2 { margin-top: var(--s-9); margin-bottom: var(--s-4); font-size: clamp(24px, 3vw, 30px); }
  .legal-body h2:first-of-type { margin-top: 0; }
  .legal-body h3 { margin-top: var(--s-7); margin-bottom: var(--s-3); font-size: 20px; }
  .legal-body p, .legal-body ul, .legal-body ol { max-width: 70ch; margin-bottom: var(--s-4); }
  .legal-body ul, .legal-body ol { padding-left: var(--s-5); }
  .legal-body ul li, .legal-body ol li { margin-bottom: var(--s-2); list-style: disc; }
  .legal-body ol li { list-style: decimal; }
  .legal-body .placeholder { background: var(--c-amber-soft); padding: 2px 8px; border-radius: 4px; font-style: italic; }

  /* Support page */
  .support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-5);
    margin-top: var(--s-7);
  }
  @media (min-width: 760px) {
    .support-grid { grid-template-columns: repeat(2, 1fr); }
  }
  .support-card {
    background: var(--c-warm);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--s-7);
  }
  .support-card h3 { margin-bottom: var(--s-3); }
  .support-card p { color: var(--c-ink-mute); }
}

/* -------------------------------------------------------------------------- */
/*  Utilities                                                                 */
/* -------------------------------------------------------------------------- */
@layer utilities {
  .visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
  }
  .text-mute { color: var(--c-ink-mute); }
  .text-center { text-align: center; }
  .mt-1 { margin-top: var(--s-1); }
  .mt-2 { margin-top: var(--s-2); }
  .mt-3 { margin-top: var(--s-3); }
  .mt-4 { margin-top: var(--s-4); }
  .mt-5 { margin-top: var(--s-5); }
  .mt-6 { margin-top: var(--s-6); }
  .mt-7 { margin-top: var(--s-7); }

  .reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
}
