/* =============================================================
   Core Design System — Colors + Type Tokens
   =============================================================
   Philosophy: warm, calm, confident. Bone backgrounds, ink-black
   foreground, moss-green accent. Serif display + neutral sans UI.
   ============================================================= */

/* ---------- Fonts ----------
   - Fraunces: wordmark only (the text "Core")
   - Ibarra Real Nova: all serif headings + display type
   - Plus Jakarta Sans: all sans-serif UI text
   - JetBrains Mono: mono (code, file names, shortcuts)
*/

:root {
  /* ============================================================
     COLOR — Bone neutrals
     The bone/cream is the product's signature. Do not replace with
     pure white. Use --bone-50 as the canonical app background.
     ============================================================ */
  --bone-50:  #FAF6EE;   /* app background, lightest */
  --bone-100: #F5F0E6;   /* default canvas, card rest-state on dark */
  --bone-200: #EDE6D8;   /* sunken wells, rails */
  --bone-300: #E2D9C8;   /* hairline borders on bone */
  --bone-400: #C9BEA8;   /* muted on bone */

  /* ---------- Paper (card surfaces floating on bone) ---------- */
  --paper:        #FFFFFF;       /* card surface */
  --paper-subtle: #FDFBF6;       /* alternate card tint */

  /* ---------- Ink (foreground) ---------- */
  --ink-900: #141414;    /* headings, mascot, wordmark */
  --ink-800: #1F1D1A;
  --ink-700: #36322C;    /* body text */
  --ink-500: #6B645A;    /* secondary text */
  --ink-400: #938B7E;    /* tertiary, placeholders */
  --ink-300: #B8AE9E;    /* disabled */
  --ink-200: #D9D0BE;    /* decorative lines on paper */

  /* ============================================================
     COLOR — Moss (primary accent)
     Used for: primary CTAs, active waveform, "now"/live indicators,
     focused task highlights, small emoji-like accents.
     Use sparingly — moss is a spotlight, not wallpaper.
     ============================================================ */
  --moss-50:   #EFF2EA;
  --moss-100:  #DDE4D0;
  --moss-200:  #CFD9C4;
  --moss-300:  #A3B897;
  --moss-400:  #7A9270;
  --moss-500:  #4F6E4B;   /* BRAND MOSS — primary */
  --moss-600:  #3D5839;
  --moss-700:  #374F35;
  --moss-800:  #1D2B1C;

  /* Back-compat aliases — existing components reference --coral-*.
     These keep the app compiling while we migrate to --moss-*.
     New code should use --moss-* or --accent*. */
  --coral-50:  var(--moss-50);
  --coral-100: var(--moss-100);
  --coral-200: var(--moss-200);
  --coral-300: var(--moss-300);
  --coral-400: var(--moss-500);   /* brand accent */
  --coral-500: var(--moss-600);
  --coral-600: var(--moss-700);
  --coral-700: var(--moss-800);

  /* ============================================================
     COLOR — Category tints (project & agent dots)
     Soft, desaturated. Always paired with their -fg text color.
     ============================================================ */
  --tint-coral:    #F5B8A0;   --tint-coral-fg:    #8B3B1E;
  --tint-peach:    #F4C9A3;   --tint-peach-fg:    #7A4A1C;
  --tint-sage:     #BDD2B0;   --tint-sage-fg:     #3F5E35;
  --tint-sky:      #B4C7DE;   --tint-sky-fg:      #30527A;
  --tint-lavender: #C9BEDC;   --tint-lavender-fg: #5A4A7A;
  --tint-butter:   #EBD9A0;   --tint-butter-fg:   #7A5E1C;

  /* ============================================================
     COLOR — Semantic
     ============================================================ */
  --success:    #5B8D4E;
  --success-bg: #E4EDDC;
  --warn:       #C28625;
  --warn-bg:    #F6E7C4;
  --danger:     #B4462C;
  --danger-bg:  #F6DED1;
  --info:       #3F6C9E;
  --info-bg:    #DCE6F0;

  /* ============================================================
     SEMANTIC surface + text (use these in components)
     ============================================================ */
  --bg:            var(--bone-50);
  --bg-sunken:     var(--bone-200);
  --surface:       var(--paper);
  --surface-alt:   var(--paper-subtle);
  --surface-raised:var(--paper);

  --fg:            var(--ink-900);
  --fg-1:          var(--ink-700);
  --fg-2:          var(--ink-500);
  --fg-3:          var(--ink-400);
  --fg-muted:      var(--ink-300);
  --fg-on-accent:  #FFFFFF;

  --border:        var(--bone-300);
  --border-strong: var(--ink-200);
  --divider:       rgba(20, 20, 20, 0.06);

  --accent:        var(--moss-500);
  --accent-hover:  var(--moss-600);
  --accent-press:  var(--moss-700);
  --accent-soft:   var(--moss-50);
  --accent-soft-2: var(--moss-100);

  /* ============================================================
     TYPE — Families
     ============================================================ */
  --font-wordmark: 'Fraunces', 'Ibarra Real Nova', Georgia, serif;
  --font-display: 'Ibarra Real Nova', 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont,
                  'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Type scale — modular 1.18 on ui, 1.333 on display */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   20px;
  --text-xl:   24px;
  --text-2xl:  32px;
  --text-3xl:  42px;
  --text-4xl:  56px;
  --text-5xl:  72px;
  --text-6xl:  96px;

  --lh-tight:  1.08;
  --lh-snug:   1.2;
  --lh-body:   1.5;
  --lh-loose:  1.65;

  --tracking-tight:  -0.02em;
  --tracking-snug:   -0.01em;
  --tracking-normal:  0em;
  --tracking-wide:    0.04em;
  --tracking-caps:    0.12em;

  /* ============================================================
     SPACING
     ============================================================ */
  --space-0:  0;
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* ============================================================
     RADII — soft, generous. Cards are pill-adjacent.
     ============================================================ */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;   /* default card */
  --radius-xl:   20px;
  --radius-2xl:  28px;   /* composer, large hero cards */
  --radius-pill: 999px;

  /* ============================================================
     SHADOWS — whisper-soft, warm-tinted (never pure black)
     ============================================================ */
  --shadow-xs: 0 1px 2px rgba(36, 28, 18, 0.04);
  --shadow-sm: 0 2px 6px rgba(36, 28, 18, 0.05),
               0 1px 2px rgba(36, 28, 18, 0.04);
  --shadow-md: 0 6px 14px rgba(36, 28, 18, 0.06),
               0 2px 4px rgba(36, 28, 18, 0.04);
  --shadow-lg: 0 14px 32px rgba(36, 28, 18, 0.08),
               0 4px 8px rgba(36, 28, 18, 0.04);
  --shadow-xl: 0 28px 56px rgba(36, 28, 18, 0.12),
               0 8px 16px rgba(36, 28, 18, 0.06);

  /* Inner/inset — for voice orb recess, keyboard buttons */
  --shadow-inset-soft: inset 0 1px 2px rgba(36, 28, 18, 0.06);

  /* ============================================================
     MOTION
     ============================================================ */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --dur-instant: 80ms;
  --dur-fast:    160ms;
  --dur-base:    220ms;
  --dur-slow:    360ms;
  --dur-deliberate: 600ms;
}

/* =============================================================
   DARK mode (reserved — the Nasdaq billboard uses dark bg with
   cream text; rarely used in-product but brand-approved)
   ============================================================= */
.dark, [data-theme="dark"] {
  --bg:            #151310;
  --bg-sunken:     #0D0B09;
  --surface:       #1C1A16;
  --surface-alt:   #221F1A;
  --fg:            #F4EFE6;
  --fg-1:          #E4DDD0;
  --fg-2:          #A69D8E;
  --fg-3:          #7A7062;
  --border:        #2A2620;
  --divider:       rgba(244, 239, 230, 0.06);
}

/* =============================================================
   SEMANTIC ELEMENT STYLES — use via class or :where()
   ============================================================= */

/* Display — serif, only for hero moments and wordmark-adjacent */
.ds-display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-6xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg);
  font-variation-settings: "opsz" 144;
}
.ds-display-lg {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-5xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg);
  font-variation-settings: "opsz" 96;
}
.ds-display-md {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-4xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg);
  font-variation-settings: "opsz" 72;
}

/* Headings — serif by default for h1/h2, sans from h3 down */
.ds-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-3xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--fg);
  font-variation-settings: "opsz" 60;
}
.ds-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-2xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-snug);
  color: var(--fg);
  font-variation-settings: "opsz" 48;
}
.ds-h3 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-snug);
  color: var(--fg);
}
.ds-h4 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--text-md);
  line-height: var(--lh-snug);
  color: var(--fg);
}

/* Body */
.ds-body {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: var(--lh-body);
  color: var(--fg-1);
}
.ds-body-sm {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: var(--lh-body);
  color: var(--fg-1);
}

/* Meta / Caption / Eyebrow */
.ds-caption {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: var(--text-xs);
  line-height: 1.35;
  color: var(--fg-2);
}
.ds-eyebrow {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: var(--text-xs);
  line-height: 1.2;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--fg-2);
}

/* Mono */
.ds-mono {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.92em;
  letter-spacing: 0;
}

/* Greeting — small serif italic used on "Good morning", etc. */
.ds-greeting {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--coral-500);
  letter-spacing: var(--tracking-snug);
}

/* Gradien brand — Fog palette override for the gradien.ai homepage.
   Replaces the moss accent system with a cool slate-blue fog (#4E6A6D).
   Does NOT bleed into Core. Scope via `body.gradien` or :root on the Gradien page only. */

:root.gradien, body.gradien {
  /* Fog palette (maps 1:1 onto the moss scale in colors_and_type.css) */
  --fog-50:   #EEF2F2;
  --fog-100:  #D9E1E2;
  --fog-200:  #BFCDCF;
  --fog-300:  #92A8AB;
  --fog-400:  #6B8487;
  --fog-500:  #4E6A6D;   /* BRAND FOG — primary */
  --fog-600:  #3E5558;
  --fog-700:  #334648;
  --fog-800:  #1D2829;

  /* Rewire the moss-* variables so all downstream components switch palettes. */
  --moss-50:   var(--fog-50);
  --moss-100:  var(--fog-100);
  --moss-200:  var(--fog-200);
  --moss-300:  var(--fog-300);
  --moss-400:  var(--fog-400);
  --moss-500:  var(--fog-500);
  --moss-600:  var(--fog-600);
  --moss-700:  var(--fog-700);
  --moss-800:  var(--fog-800);

  /* Coral aliases (legacy components) follow along */
  --coral-50:  var(--fog-50);
  --coral-100: var(--fog-100);
  --coral-200: var(--fog-200);
  --coral-300: var(--fog-300);
  --coral-400: var(--fog-500);
  --coral-500: var(--fog-600);
  --coral-600: var(--fog-700);
  --coral-700: var(--fog-800);

  /* Semantic accent rewires */
  --accent:        var(--fog-500);
  --accent-hover:  var(--fog-600);
  --accent-press:  var(--fog-700);
  --accent-soft:   var(--fog-50);
  --accent-soft-2: var(--fog-100);
}

/* The gradien gradient hero — animated, soft fog clouds over bone */
.gradien-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--bone-50);
}
.gradien-hero::before,
.gradien-hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(40% 35% at 18% 30%, rgba(78,106,109,0.32), transparent 70%),
    radial-gradient(45% 40% at 82% 20%, rgba(146,168,171,0.38), transparent 70%),
    radial-gradient(55% 50% at 55% 85%, rgba(78,106,109,0.22), transparent 72%),
    radial-gradient(30% 30% at 30% 75%, rgba(217,225,226,0.55), transparent 70%);
  filter: blur(14px);
  animation: gradienDrift 22s var(--ease-in-out) infinite alternate;
}
.gradien-hero::after {
  background:
    radial-gradient(35% 40% at 75% 60%, rgba(78,106,109,0.28), transparent 70%),
    radial-gradient(45% 35% at 25% 50%, rgba(191,205,207,0.42), transparent 70%),
    radial-gradient(50% 45% at 50% 15%, rgba(217,225,226,0.38), transparent 70%);
  animation-duration: 28s;
  animation-direction: alternate-reverse;
  mix-blend-mode: multiply;
  opacity: .85;
}
@keyframes gradienDrift {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1.02); }
  50%  { transform: translate3d(2%,  3%, 0) scale(1.06); }
  100% { transform: translate3d(4%, -1%, 0) scale(1.03); }
}

/* Fine noise overlay so the gradient never looks like a banner ad */
.gradien-hero::before { opacity: .95; }

/* Shared Gradien site layout primitives — minimal, layout only.
   Everything visual leans on tokens from colors_and_type.css. */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-ui);
  font-size: var(--text-base);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }

:root {
  --site-max: 1200px;
  --gutter: 40px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bone-50) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
}
.nav-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--fg); }
.nav-brand .wordmark {
  font-family: var(--font-wordmark);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; color: var(--fg-1);
}
.nav-links a { color: inherit; text-decoration: none; }
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--ink-900);
  color: var(--bone-50);
  border: 0;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.nav-cta:hover { background: var(--ink-800); }

/* ---------- Sections ---------- */
.section {
  padding: 120px 0;
  border-top: 1px solid var(--divider);
}
.section:first-of-type { border-top: 0; }
.section-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.eyebrow {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
}
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 20px;
  text-wrap: pretty;
  max-width: 18ch;
}
.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-1);
  max-width: 62ch;
  margin: 0 0 24px;
}
.body-copy {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-1);
  max-width: 62ch;
}
.body-copy + .body-copy { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-primary {
  background: var(--ink-900);
  color: var(--bone-50);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--ink-800); }
.btn-primary:active { transform: translateY(1px); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--accent) 30%, transparent);
}
.btn-accent:hover { background: var(--accent-hover); }
.btn-secondary {
  background: var(--paper);
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  padding: 13px 18px;
}
.btn-ghost:hover { background: color-mix(in srgb, var(--ink-900) 6%, transparent); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */
.footer {
  padding: 48px var(--gutter);
  border-top: 1px solid var(--divider);
  max-width: var(--site-max);
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 13px; color: var(--fg-2);
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: inherit; text-decoration: none; }


/* ---------- Reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
      opacity 700ms var(--ease-out),
      transform 700ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity;
  }
  [data-reveal].in {
    opacity: 1;
    transform: none;
  }
  [data-reveal="scale"] { transform: translate3d(0, 20px, 0) scale(0.985); }
  [data-reveal="scale"].in { transform: none; }
  [data-reveal="right"] { transform: translate3d(28px, 0, 0); }
  [data-reveal="right"].in { transform: none; }
  [data-reveal="left"] { transform: translate3d(-28px, 0, 0); }
  [data-reveal="left"].in { transform: none; }
}

/* ---------- Utility ---------- */
.arrow-link {
  color: var(--ink-900);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--dur-fast) var(--ease-out);
}
.arrow-link:hover { gap: 10px; }

/* ---------- Waitlist modal ---------- */
.modal-scrim {
  position: fixed; inset: 0;
  background: rgba(20,20,20,0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--paper);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  width: min(480px, 100%);
  padding: 32px;
  transform: translateY(8px) scale(0.98);
  transition: transform var(--dur-base) var(--ease-out);
}
.modal-scrim.open .modal { transform: none; }
.modal h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--ink-900);
}
.modal p { margin: 0 0 20px; color: var(--fg-1); font-size: 15px; line-height: 1.5; }
.modal-field {
  display: grid; gap: 6px;
  margin-bottom: 14px;
}
.modal-field label { font-size: 12px; color: var(--fg-2); text-transform: uppercase; letter-spacing: var(--tracking-caps); }
.modal-field input {
  border: 1px solid var(--border);
  background: var(--paper-subtle);
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--fg);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.modal-field input:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: var(--fg-2);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.modal-close:hover { background: color-mix(in srgb, var(--ink-900) 6%, transparent); color: var(--fg); }
.modal-wrap { position: relative; width: min(480px, 100%); }
.modal-success {
  text-align: center; padding: 12px 0;
}
.modal-success .check {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin: 0 auto 12px;
  font-size: 28px;
}

/* ---- Reduced-motion overrides for home page animations ---- */
@media (prefers-reduced-motion: reduce) {
  .gradien-hero::before,
  .gradien-hero::after { animation: none; }
}
