/* ─────────────────────────────────────────
   THEME — ATON Websites (Cosmic Gold identity)

   Load order (enforced in HTML head):
     1. base.css       ← universal structural rules
     2. tokens.css     ← Layer 1/2/3 token architecture
     3. theme-aton.css ← THIS FILE — overrides Layer 1 with ATON palette,
                          imports ATON fonts, defines ATON components

   WHY THIS FILE EXISTS:
   Every client site we ship will use base.css + tokens.css unchanged.
   Only this file changes per client. For ATON, we override Layer 1 with
   Cosmic Gold + deep black + warm off-whites, then map fonts and define
   the component set (nav, hero, pricing, team, etc).

   Order inside this file:
     1. @import fonts
     2. Layer 1 palette override (Cosmic Gold)
     3. Layer 1 typography override (Bricolage + DM Sans)
     4. ATON-specific Layer 1 extensions (gold glows, sky layer)
     5. Component shells (section headers — implementations land in Phase 2+)
     6. .btn baseline — needed for Phase 1 gate test
───────────────────────────────────────── */


/* ═══════════════════════════════════════
   1. FONT IMPORTS
   ═══════════════════════════════════════
   Fonts are loaded by the HTML <link> tags using the
   media="print" onload="this.media='all'" async pattern.
   Do NOT @import here — that defeats the async loading
   optimization (an @import inside a render-blocking
   stylesheet is itself render-blocking).
   ═══════════════════════════════════════ */


/* ═══════════════════════════════════════
   2. LAYER 1 OVERRIDE — Cosmic Gold palette
   Overrides the orange brand + neutral greys
   from tokens.css with ATON's identity.
   ═══════════════════════════════════════ */
:root {
  /* ─── Brand: Cosmic Gold (replaces starter orange) ─── */
  --color-brand-50:  #FFF9E6;
  --color-brand-100: #FFF3CC;
  --color-brand-200: #FDE99A;
  --color-brand-300: #F5D96B;
  --color-brand-400: #E8C547;   /* gold-light */
  --color-brand-500: #D4A017;   /* gold — primary */
  --color-brand-600: #B8860B;   /* gold-dark */
  --color-brand-700: #9A6F0A;
  --color-brand-800: #7D5A08;
  --color-brand-900: #5E4306;

  /* ─── Neutrals: Deep Cosmic Black (replaces starter greys) ─── */
  --color-neutral-0:   #FFF;
  --color-neutral-50:  #FDFCFA;   /* warm off-white page bg */
  --color-neutral-100: #F5F2EC;   /* warm alt bg */
  --color-neutral-200: #E8E4DC;   /* warm border */
  --color-neutral-300: #D4CEC1;
  --color-neutral-400: #9C978C;
  --color-neutral-500: #6E6B63;
  --color-neutral-600: #4A4741;
  --color-neutral-700: #2E2C28;
  --color-neutral-800: #1A1A25;   /* dark-surface */
  --color-neutral-900: #12121A;   /* dark-card */
  --color-neutral-950: #0A0A0F;   /* dark page bg */
}


/* ═══════════════════════════════════════
   3. LAYER 1 OVERRIDE — Typography
   ATON's voice: Bricolage (heading) + DM Sans (body)
   ═══════════════════════════════════════ */
:root {
  --font-heading: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-script:  'Caveat', cursive;
  --font-mono:    ui-monospace, 'SF Mono', monospace;
}


/* ═══════════════════════════════════════
   4. ATON-SPECIFIC LAYER 1 EXTENSIONS
   Things the universal token system does not
   carry because they are ATON identity only.
   ═══════════════════════════════════════ */
:root {
  /* ─── Gold glows — EXACT match to styles.css layered shadows.
     Any drift here causes visible shadow regressions on every element
     that uses var(--gold-glow-*) (nav CTA, buttons, hero orbs, cards). ─── */
  --gold-glow-sm: 0 0 20px rgb(212 160 23 / 15%), 0 0 40px rgb(212 160 23 / 8%);
  --gold-glow-md: 0 0 24px rgb(212 160 23 / 20%), 0 0 48px rgb(212 160 23 / 12%), 0 0 72px rgb(212 160 23 / 6%);
  --gold-glow-lg: 0 0 30px rgb(212 160 23 / 25%), inset 0 0 20px rgb(212 160 23 / 5%), 0 0 60px rgb(212 160 23 / 15%), 0 0 90px rgb(212 160 23 / 8%);
  --gold-glow-xl: 0 0 160px rgb(212 160 23 / 55%);

  /* ─── Gold gradients ─── */
  --gold-gradient-text:    linear-gradient(90deg, #E8C547 0%, #D4A017 50%, #B8860B 100%);
  --gold-gradient-surface: linear-gradient(135deg, rgb(212 160 23 / 15%) 0%, rgb(184 134 11 / 5%) 100%);
  --gold-gradient-border:  linear-gradient(90deg, rgb(212 160 23 / 55%), rgb(232 197 71 / 15%));

  /* ─── Sky layer (Phase 4 will populate sky.js against these) ─── */
  --sky-asset-planet:    url('/images/sky/noto-planet.svg');
  --sky-asset-venus:     url('/images/sky/noto-venus.svg');
  --sky-asset-moon:      url('/images/sky/noto-moon.svg');
  --sky-asset-cloud:     url('/images/sky/noto-cloud.svg');
  --sky-asset-airplane:  url('/images/sky/noto-airplane.svg');
  --sky-asset-earth:     url('/images/sky/noto-earth.svg');
  --sky-asset-suncloud:  url('/images/sky/noto-suncloud.svg');
  --sky-planet-size-min: 42px;
  --sky-planet-size-max: 98px;
  --sky-planet-opacity:  0.8;

  /* ─── ATON-specific motion curves ─── */
  --ease-cosmic:  cubic-bezier(0.16, 1, 0.3, 1);     /* for reveal / section entry */
  --ease-subtle:  cubic-bezier(0.45, 0, 0.55, 1);    /* for hover / micro */

  /* ─── ATON-specific radii ─── */
  --radius-pill:  9999px;
  --radius-hero:  28px;
}


/* ═══════════════════════════════════════
   5. COMPONENT SHELLS
   Section headers only — implementations land
   in Phase 2 (HTML shell port) and after.
   ═══════════════════════════════════════ */

/* ─── NAV ─── */

/* Phase 2: port from styles.css .nav / .nav__links / .nav__toggle */

/* ─── HERO ─── */

/* Phase 2: port .hero gradient, orb layer, headline gradient, CTA row */

/* ─── PAIN SECTION ─── */

/* Phase 2: three-card grid explaining slow/invisible/expensive */

/* ─── COMPARE SECTION ─── */

/* Phase 2: Old website vs ATON side-by-side */

/* ─── INDUSTRIES GRID ─── */

/* Phase 2: 10-card industry grid, hover lift */

/* ─── PROCESS ─── */

/* Phase 2: 3-step layout with connecting line */

/* ─── PRICING ─── */

/* Phase 2: One Off / Standard / Custom tier cards */

/* ─── ABOUT ─── */

/* Phase 2: founder block with photo + ATON quote */

/* ─── FAQ ─── */

/* Phase 2: accordion — details/summary fallback */

/* ─── TEAM ─── */

/* Phase 11: team grid + founder story */

/* ─── CONTACT FORM ─── */

/* Phase 2: contact form + CTA section */

/* ─── FOOTER ─── */

/* Phase 2: footer grid + legal + contact info */

/* ─── SKY LAYER (decorative) ─── */

/* Phase 4: sky.js populates this against [data-sky="true"] sections */


/* ═══════════════════════════════════════
   6. BUTTON — baseline for Phase 1 gate test
   Uses Layer 3 button tokens from tokens.css.
   Wrapped in :where() so specificity is 0,0,0 — any
   variant class (.btn--primary, .btn--outline, etc) in
   styles.css always wins. When Chunks 2/3 port the variants
   into theme-aton.css, this baseline still serves as the
   default state for plain .btn (e.g., the Phase 1 preview
   page) without fighting the legacy variant cascade.
   ═══════════════════════════════════════ */
:where(.btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: var(--btn-bg);
  color: var(--color-neutral-950);
  font-weight: var(--btn-font-weight);
  font-size: 1em;
  padding: var(--btn-padding);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  box-shadow: var(--gold-glow-sm);
  transition: background var(--btn-transition),
              box-shadow var(--btn-transition),
              transform var(--btn-transition);
}

:where(.btn):hover {
  background: var(--btn-bg-hover);
  box-shadow: var(--gold-glow-md);
  transform: translateY(-1px);
}

/* Focus indicator uses box-shadow instead of outline.
   outline was failing to render on .btn elements for reasons I couldn't
   fully isolate (user-agent resolution on <a> + some interaction with
   the button's overflow:hidden, border:1px transparent, and decorative
   ::before sweep pseudo-element). box-shadow sidesteps all of that
   and is widely recommended for focus rings that must survive varied
   component styling. Kept at 0,1,1 specificity (dropped :where wrap)
   so any legacy focus override in styles.css can't zero it. */
.btn:focus-visible,
a.btn:focus-visible {
  outline: 2px solid var(--color-brand-400);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgb(232 197 71 / 55%),
              var(--gold-glow-sm);
}


/* ═══════════════════════════════════════
   MIGRATED FROM styles.css — Phase 2.5
   All rules below were moved verbatim
   from the legacy monolith. No refactoring.
   Date: 2026-04-13
   ═══════════════════════════════════════ */

/* ====== RESET ====== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root{
  --gold:#D4A017;--gold-dark:#B8860B;--gold-light:#E8C547;
  --gold-glow-sm:0 0 20px rgb(212 160 23 / 15%), 0 0 40px rgb(212 160 23 / 8%);
  --gold-glow-md:0 0 24px rgb(212 160 23 / 20%), 0 0 48px rgb(212 160 23 / 12%), 0 0 72px rgb(212 160 23 / 6%);
  --gold-glow-lg:0 0 30px rgb(212 160 23 / 25%), inset 0 0 20px rgb(212 160 23 / 5%), 0 0 60px rgb(212 160 23 / 15%), 0 0 90px rgb(212 160 23 / 8%);
  --dark:#0A0A0F;--dark-card:#12121A;--dark-surface:#1A1A25;
  --warm-bg:#FDFCFA;--warm-alt:#F5F2EC;
  --text-dark:#1A1A1A;--text-body:#555;--text-on-dark:rgb(255 255 255 / 95%);--text-muted:rgb(255 255 255 / 85%);
  --radius:16px;--radius-lg:24px;
  --font-heading:'Bricolage Grotesque',system-ui,sans-serif;
  --font-body:'DM Sans',system-ui,sans-serif;
}

html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--text-dark);background:var(--dark);overflow-x:hidden;-webkit-font-smoothing:antialiased;transition:background-color 0.4s,color 0.4s}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{cursor:pointer;border:none;font-family:inherit}
.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}

/* ====== ANIMATIONS ====== */
@keyframes float1{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-2.5rem) scale(1.05)}}

@keyframes float2{0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-3.5rem) rotate(3deg)}}

@keyframes float3{0%,100%{transform:translateY(0)}50%{transform:translateY(-1.5rem)}}

@keyframes glowPulse{0%,100%{opacity:0.15;transform:scale(1)}50%{opacity:0.3;transform:scale(1.1)}}

@keyframes starFlicker{0%,100%{opacity:0.2}25%{opacity:0.6}50%{opacity:0.3}75%{opacity:0.8}}

@keyframes shootingStar{0%{transform:translate(0,0);opacity:0}5%{opacity:1}70%{opacity:1}100%{transform:translate(70vw,35vh);opacity:0}}

@keyframes navGlow{0%,100%{box-shadow:0 1px 0 rgb(212 160 23 / 20%)}50%{box-shadow:0 1px 20px rgb(212 160 23 / 15%), 0 1px 40px rgb(212 160 23 / 5%)}}

@keyframes fadeUp{from{opacity:0;transform:translateY(2.5rem)}to{opacity:1;transform:translateY(0)}}

@keyframes cardGlow{0%,100%{box-shadow:0 0 24px rgb(212 160 23 / 8%), 0 0 48px rgb(212 160 23 / 4%)}50%{box-shadow:0 0 30px rgb(212 160 23 / 18%), 0 0 60px rgb(212 160 23 / 10%), 0 0 90px rgb(212 160 23 / 4%)}}

@keyframes shineSweep{0%{left:-100%}100%{left:100%}}

@keyframes rayPulse{0%,100%{opacity:0.6;transform:scaleY(1)}50%{opacity:1;transform:scaleY(1.2)}}

@keyframes breatheGlow{0%,100%{box-shadow:0 0 24px rgb(212 160 23 / 8%),inset 0 0 20px rgb(212 160 23 / 2%)}50%{box-shadow:0 0 40px rgb(212 160 23 / 22%),0 0 80px rgb(212 160 23 / 10%),inset 0 0 30px rgb(212 160 23 / 5%)}}

@keyframes goldPulse{0%,100%{text-shadow:0 0 8px rgb(212 160 23 / 15%)}50%{text-shadow:0 0 20px rgb(212 160 23 / 40%),0 0 40px rgb(212 160 23 / 15%)}}

@keyframes driftUp{0%{transform:translateY(0);opacity:0.4}50%{opacity:0.8}100%{transform:translateY(-80px);opacity:0}}

@keyframes subtleDrift{0%,100%{transform:translate(0,0)}25%{transform:translate(8px,-12px)}50%{transform:translate(-5px,-20px)}75%{transform:translate(10px,-8px)}}

/* ====== SCROLL PROGRESS ====== */
.scroll-progress{position:fixed;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,var(--gold),var(--gold-light));transform:scaleX(0);transform-origin:left;z-index:200;pointer-events:none}

/* ====== CURSOR GLOW ====== */
.cursor-glow{position:fixed;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgb(212 160 23 / 6%) 0%,transparent 70%);pointer-events:none;z-index:1;transform:translate(-50%,-50%);transition:opacity 0.3s;opacity:0}
.cursor-glow.active{opacity:1}

/* ====== BUTTON SHINE ====== */
.btn--primary::after{content:'';position:absolute;top:0;left:-100%;width:80%;height:100%;background:linear-gradient(90deg,transparent,rgb(255 255 255 / 25%),transparent);transition:none}
.btn--primary:hover::after{animation:shineSweep 0.6s ease forwards}

/* Sweep-fill effect for all buttons */
.btn::before{content:'';position:absolute;top:0;left:0;width:0;height:100%;background:rgb(255 255 255 / 8%);transition:width 0.4s cubic-bezier(0.16,1,0.3,1);z-index:-1;border-radius:inherit}
.btn:hover::before{width:100%}
.btn--primary::before{background:rgb(255 255 255 / 12%)}
.btn--outline::before{background:rgb(212 160 23 / 6%)}

/* ====== CARD LIGHT SWEEP ====== */
.card-sweep{position:relative;overflow:hidden}
.card-sweep::after{content:'';position:absolute;top:0;left:-100%;width:60%;height:100%;background:linear-gradient(90deg,transparent,rgb(255 255 255 / 3%),transparent);pointer-events:none}
.card-sweep:hover::after{animation:shineSweep 0.8s ease forwards}

/* ====== AMBIENT ATMOSPHERE ====== */
.ambient-stars{position:absolute;inset:0;pointer-events:none;overflow:hidden;z-index:0}
.ambient-orb{position:absolute;border-radius:50%;pointer-events:none;z-index:0;border:1px solid rgb(212 160 23 / 8%);background:radial-gradient(circle,rgb(212 160 23 / 4%) 0%,transparent 70%)}

/* Floating gold particles — ambient life for all dark sections */
.ambient-particles{position:absolute;inset:0;pointer-events:none;overflow:hidden;z-index:0}
.ambient-particle{position:absolute;width:var(--size,3px);height:var(--size,3px);background:radial-gradient(circle,rgb(212 160 23 / var(--alpha,0.5)) 0%,transparent 70%);border-radius:50%;animation:particleDrift var(--dur,12s) ease-in-out infinite var(--delay,0s)}

@keyframes particleDrift{0%{transform:translateY(0) translateX(0);opacity:0}10%{opacity:var(--alpha,0.5)}50%{transform:translateY(calc(var(--drift-y,-60px))) translateX(calc(var(--drift-x,15px)));opacity:var(--alpha,0.5)}90%{opacity:var(--alpha,0.5)}100%{transform:translateY(calc(var(--drift-y,-60px) * 2)) translateX(calc(var(--drift-x,15px) * -1));opacity:0}}

/* Ambient floating orbs that breathe */
.ambient-orb--float{animation:float1 var(--dur,10s) ease-in-out infinite var(--delay,0s);opacity:0.6}
.ambient-orb--breathe{animation:orbBreathe var(--dur,6s) ease-in-out infinite var(--delay,0s)}

@keyframes orbBreathe{0%,100%{opacity:0.3;transform:scale(1)}50%{opacity:0.6;transform:scale(1.15)}}

/* Section-level star field for dark sections below hero */
.section-stars{position:absolute;inset:0;pointer-events:none;overflow:hidden;z-index:0}
.section-star{position:absolute;width:var(--size,2px);height:var(--size,2px);background:rgb(212 160 23 / 50%);border-radius:50%;animation:starFlicker var(--dur,4s) ease-in-out infinite var(--delay,0s)}
.section-shooting-star{position:absolute;width:60px;height:1px;background:linear-gradient(to left,rgb(212 160 23 / 60%),transparent);animation:shootingStar var(--dur,12s) linear infinite var(--delay,0s)}

/* ====== PERF TRUST ELEMENT ====== */
.perf-trust{display:flex;flex-direction:column;align-items:center;gap:1.5rem;padding:2rem}
.perf-trust__score{width:140px;height:140px;border-radius:50%;border:3px solid var(--gold);display:flex;flex-direction:column;align-items:center;justify-content:center;animation:breatheGlow 5s ease-in-out infinite}
.perf-trust__num{font-family:var(--font-heading);font-size:3.5rem;font-weight:800;color:var(--gold);line-height:1;letter-spacing:-0.04em}
.perf-trust__label{font-size:0.7rem;color:var(--text-muted);text-align:center;line-height:1.3;margin-top:0.15rem;text-transform:uppercase;letter-spacing:0.08em;font-weight:600}
.perf-trust__text{font-size:0.9rem;color:var(--text-muted);line-height:1.7;text-align:center;max-width:300px}
.perf-trust__badges{display:flex;gap:1.5rem;margin-top:1rem}
.perf-trust__badge{text-align:center}
.perf-trust__badge-num{display:block;font-family:var(--font-heading);font-size:1.6rem;font-weight:800;color:var(--gold)}
.perf-trust__badge-label{font-size:0.7rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.05em}

/* ====== WAVE DIVIDER ====== */
.wave-divider{position:relative;margin-top:-1px}
.wave-divider svg{display:block;width:100%}

/* ====== FADE-UP DELAY SYSTEM ====== */
.fade-up-d1{transition-delay:0.1s}.fade-up-d2{transition-delay:0.2s}.fade-up-d3{transition-delay:0.3s}.fade-up-d4{transition-delay:0.4s}.fade-up-d5{transition-delay:0.5s}.fade-up-d6{transition-delay:0.6s}.fade-up-d7{transition-delay:0.7s}

/* ====== NAV ====== */
.nav{position:fixed;top:1rem;left:2rem;right:2rem;z-index:100;padding:0.8rem 1rem;transition:all 0.4s cubic-bezier(0.16,1,0.3,1);border-radius:50px;background:rgb(10 10 15 / 60%);backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid rgb(255 255 255 / 6%);animation:navGlow 4s ease-in-out infinite}
.nav.scrolled{top:0;left:0;right:0;border-radius:0;background:rgb(10 10 15 / 92%);backdrop-filter:blur(20px);backdrop-filter:blur(20px);padding:0.6rem 1.5rem;border:none;border-bottom:1px solid rgb(255 255 255 / 4%)}
.nav__inner{display:flex;align-items:center;justify-content:space-between}
.nav__logo{display:inline-flex;flex-direction:column;align-items:flex-start;gap:0.02rem;color:#fff;line-height:1}
.nav__logo-mark{font-family:var(--font-heading);font-weight:800;font-size:1.5rem;letter-spacing:-0.015em;display:flex;align-items:center;gap:0.02em}
.nav__logo-sun{display:inline-flex;position:relative;margin:0 0.01em}
.nav__logo-sun svg{width:28px;height:28px}
.nav__logo-script{display:block;font-family:var(--font-script);font-size:0.72rem;font-weight:700;line-height:0.8;color:var(--gold-light);letter-spacing:0.01em;margin-left:1.02rem;margin-top:-0.04rem;transform:rotate(-1.5deg);opacity:0.98}
.gradient-text{background:linear-gradient(135deg,#fff 0%,var(--gold-light) 50%,var(--gold) 100%);background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.nav__links{display:flex;gap:2rem;align-items:center}
.nav__links a:not(.nav__cta){color:var(--text-muted);font-size:0.9rem;font-weight:500;transition:color 0.3s;position:relative}
.nav__links>a:not(.nav__cta)::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--gold);transition:width 0.3s cubic-bezier(0.16,1,0.3,1)}
.nav__links>a:not(.nav__cta):hover::after{width:100%}
.nav__links a:not(.nav__cta):hover{color:var(--gold)}
.nav__cta{background:var(--gold);color:var(--dark);padding:0.65rem 1.5rem;border-radius:50px;font-weight:600;font-size:0.85rem;transition:all 0.3s;box-shadow:var(--gold-glow-sm)}
.nav__cta:hover{background:var(--gold-light);box-shadow:var(--gold-glow-md);transform:translateY(-2px)}
.nav__actions{display:flex;align-items:center;gap:0.5rem}
.nav__toggle{display:none;flex-direction:column;gap:5px;background:none;padding:0.5rem}
.nav__toggle span{width:24px;height:2px;background:#fff;transition:all 0.3s}
.nav__toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav__toggle.active span:nth-child(2){opacity:0}
.nav__toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.dark-toggle{background:none;border:1px solid rgb(255 255 255 / 15%);border-radius:50%;width:36px;height:36px;display:flex;align-items:center;justify-content:center;color:var(--gold);cursor:pointer;transition:all 0.3s;margin-left:0.5rem}
.dark-toggle:hover{border-color:var(--gold);box-shadow:var(--gold-glow-sm)}

/* ====== HERO ====== */
.hero{min-height:100vh;display:flex;align-items:center;position:relative;background:var(--dark);overflow:hidden;padding:10rem 0 6rem}
.hero::before{content:'';position:absolute;top:-20%;right:-10%;width:60%;height:140%;background:radial-gradient(ellipse,rgb(212 160 23 / 6%) 0%,transparent 60%);pointer-events:none}
.hero::after{content:'';position:absolute;bottom:-30%;left:-15%;width:50%;height:120%;background:radial-gradient(ellipse,rgb(180 130 20 / 4%) 0%,transparent 60%);pointer-events:none}
.orb{position:absolute;border-radius:50%;pointer-events:none}
.orb--1{width:350px;height:350px;background:radial-gradient(circle,rgb(212 160 23 / 8%) 0%,transparent 70%);top:10%;left:-5%;animation:float1 8s ease-in-out infinite}
.orb--2{width:200px;height:200px;background:radial-gradient(circle,rgb(232 197 71 / 6%) 0%,transparent 70%);bottom:15%;right:5%;animation:float2 12s ease-in-out infinite}
.orb--3{width:120px;height:120px;background:radial-gradient(circle,rgb(212 160 23 / 10%) 0%,transparent 70%);top:30%;right:25%;animation:float3 6s ease-in-out infinite}
.star{position:absolute;width:3px;height:3px;background:rgb(212 160 23 / 50%);border-radius:50%;animation:starFlicker 4s ease-in-out infinite}
.star:nth-child(2){top:15%;left:20%;animation-duration:5s;animation-delay:0.5s}
.star:nth-child(3){top:25%;right:30%;animation-duration:3s;animation-delay:1s;width:2px;height:2px}
.star:nth-child(4){top:60%;left:40%;animation-duration:6s;animation-delay:2s}
.star:nth-child(5){top:40%;right:15%;animation-duration:4s;animation-delay:0.8s;width:4px;height:4px}
.star:nth-child(6){top:80%;left:25%;animation-duration:7s;animation-delay:1.5s;width:2px;height:2px}
.star:nth-child(7){top:10%;right:45%;animation-duration:5s;width:2px;height:2px}
.star:nth-child(8){top:70%;right:50%;animation-duration:8s;animation-delay:3s}
.shooting-star{position:absolute;top:10%;left:-80px;width:72px;height:1px;background:linear-gradient(to left,rgb(212 160 23 / 70%),transparent);transform:rotate(22deg);animation:shootingStar 10s linear infinite 3s}
.shooting-star--2{display:none}
.hero__eyebrow{display:inline-block;font-size:0.8rem;font-weight:700;letter-spacing:0.15em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem;opacity:0;animation:fadeUp 0.8s 0.2s forwards}
.hero__inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.hero__text{max-width:600px}
.hero h1{font-family:var(--font-heading);font-size:clamp(2rem,4vw,3rem);font-weight:800;color:#fff;line-height:1.1;letter-spacing:-0.04em;margin-bottom:1.25rem;opacity:0;animation:fadeUp 0.8s 0.3s forwards}
.hero h1 em{font-style:normal;color:var(--gold)}
.hero__desc{font-size:1.05rem;color:var(--text-on-dark);line-height:1.85;margin-bottom:1.4rem;max-width:36rem;opacity:0;animation:fadeUp 0.8s 0.45s forwards}
.hero__price{font-family:var(--font-heading);font-size:clamp(1.2rem,2.5vw,1.6rem);font-weight:700;color:var(--gold);margin-bottom:0.25rem;opacity:0;animation:fadeUp 0.8s 0.55s forwards}
.hero__price-sub{font-size:0.9rem;color:var(--text-muted);margin-bottom:1.75rem;opacity:0;animation:fadeUp 0.8s 0.6s forwards}
.hero__buttons{display:flex;gap:1rem;flex-wrap:wrap;opacity:0;animation:fadeUp 0.8s 0.65s forwards}
.device{position:relative;z-index:2;opacity:0;animation:fadeUp 1s 0.5s forwards;perspective:1200px}
.device__img{width:100%;max-width:580px;transform:rotateY(-8deg) rotateX(3deg);transition:transform 0.6s cubic-bezier(0.16,1,0.3,1);filter:drop-shadow(0 25px 60px rgb(0 0 0 / 50%)) drop-shadow(0 0 40px rgb(212 160 23 / 8%))}
.device__img:hover{transform:rotateY(-2deg) rotateX(1deg)}
.device__img img{width:100%;height:auto;display:block}

/* ====== BUTTONS ====== */
.btn{display:inline-flex;align-items:center;gap:0.5rem;padding:0.9rem 2rem;border-radius:50px;font-weight:600;font-size:0.95rem;transition:all 0.35s cubic-bezier(0.16,1,0.3,1);position:relative;overflow:hidden}
.btn--primary{background:var(--gold);color:var(--dark);box-shadow:var(--gold-glow-sm)}
.btn--primary:hover{background:var(--gold-light);box-shadow:var(--gold-glow-lg);transform:translateY(-3px) scale(1.03)}
.btn--outline{border:1.5px solid rgb(212 160 23 / 40%);color:var(--gold);background:transparent}
.btn--outline:hover{border-color:var(--gold);background:rgb(212 160 23 / 8%);box-shadow:var(--gold-glow-sm);transform:translateY(-3px)}
.btn--dark{background:var(--dark);color:#fff;border:1.5px solid #333}
.btn--dark:hover{border-color:var(--gold);box-shadow:var(--gold-glow-sm);transform:translateY(-3px)}

/* ====== ENTRANCE ANIMATION ====== */
.page-entrance{position:fixed;inset:0;z-index:9999;background:var(--dark);display:flex;align-items:center;justify-content:center;pointer-events:none;opacity:1;transition:opacity 0.3s ease}
.page-entrance.done{opacity:0}
.page-entrance__sun{width:80px;height:80px;animation:entrancePulse 0.3s ease-out forwards}

@keyframes entrancePulse{0%{opacity:0;transform:scale(0.3)}40%{opacity:1;transform:scale(1.15)}60%{transform:scale(0.95)}100%{opacity:1;transform:scale(1)}}
.page-entrance.done .page-entrance__sun{animation:entranceFade 0.4s ease forwards}

@keyframes entranceFade{to{opacity:0;transform:scale(1.5)}}

/* ====== SMOOTH MODE TRANSITION ====== */
body.transitioning .section,body.transitioning .nav,body.transitioning .footer,body.transitioning .pain-card,body.transitioning .pricing-tier,body.transitioning .compare__col{transition:background-color 0.3s ease,color 0.3s ease,border-color 0.3s ease !important}

/* ====== SECTIONS ====== */
.section{padding:clamp(4rem,8vw,7rem) 0}
.section--dark{background:var(--dark);position:relative}
.section--dark::before{content:'';position:absolute;inset:0;background:linear-gradient(145deg,rgb(120 80 0 / 4%) 0%,rgb(180 140 20 / 3%) 50%,rgb(100 70 0 / 4%) 100%);pointer-events:none}
.section--warm{background:var(--warm-bg)}
.section--warm-alt{background:var(--warm-alt)}
.section__header{text-align:center;margin-bottom:3.5rem;position:relative;z-index:1}
.section__eyebrow{display:block;font-size:0.75rem;font-weight:700;letter-spacing:0.15em;text-transform:uppercase;color:var(--gold);margin-bottom:0.75rem}
.section__title{font-family:var(--font-heading);font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;letter-spacing:-0.03em;line-height:1.15}
.section__title--light{color:#fff}
.section__title--dark{color:var(--text-dark)}
.section__sub{margin-top:1rem;font-size:1.05rem;color:var(--text-body);max-width:600px;margin-inline:auto;line-height:1.7}
.section__sub--light{color:var(--text-muted)}

/* ====== WHAT WE OFFER ====== */
.offer{display:grid;grid-template-columns:420px 1fr;gap:3.5rem;align-items:start;position:relative;z-index:1;margin-bottom:1rem}
.offer__photo-col{position:relative}
.offer__photo{border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:3/4;position:relative}
.offer__photo img{width:100%;height:100%;object-fit:cover;display:block}
.offer__name-card{position:absolute;bottom:-1rem;left:1.5rem;right:1.5rem;background:#fff;border-radius:12px;padding:1rem 1.25rem;display:flex;align-items:center;justify-content:space-between;box-shadow:0 8px 32px rgb(0 0 0 / 30%)}
.offer__name-info{}
.offer__name{font-family:var(--font-heading);font-weight:800;font-size:1rem;color:var(--text-dark);letter-spacing:-0.02em;text-transform:uppercase}
.offer__role{font-size:0.8rem;color:var(--text-body);font-weight:500}
.offer__name-icon{width:36px;height:36px;display:flex;align-items:center;justify-content:center}
.offer__name-icon svg{width:32px;height:32px}
.offer__heading{font-family:var(--font-heading);font-size:clamp(1.6rem,3.5vw,2.4rem);font-weight:800;color:#fff;letter-spacing:-0.03em;line-height:1.15;margin-bottom:1.25rem;text-transform:uppercase}
.offer__desc{font-size:0.95rem;color:var(--text-muted);line-height:1.75;margin-bottom:2rem}
.offer__desc strong{color:var(--text-on-dark);font-weight:600}
.offer__features{display:grid;grid-template-columns:1fr 1fr;gap:1.75rem}
.offer__feature{}
.offer__feature-header{display:flex;align-items:center;gap:0.5rem;margin-bottom:0.4rem}
.offer__feature-header h3,.offer__feature-header h4{font-family:var(--font-heading);font-size:1rem;font-weight:700;color:#fff;letter-spacing:0.03em;text-transform:uppercase}
.offer__feature p{font-size:0.95rem;color:var(--text-muted);line-height:1.7}
.offer__orb{position:absolute;border-radius:50%;pointer-events:none;z-index:-1}
.offer__orb--1{width:280px;height:280px;right:-8rem;top:40%;border:2px solid rgb(212 160 23 / 12%);background:radial-gradient(circle,rgb(212 160 23 / 4%) 0%,transparent 70%);animation:float1 10s ease-in-out infinite}
.offer__orb--2{width:180px;height:180px;right:-3rem;top:60%;border:1.5px solid rgb(212 160 23 / 8%);background:radial-gradient(circle,rgb(212 160 23 / 3%) 0%,transparent 70%);animation:float2 14s ease-in-out infinite}

/* ====== PAIN CARDS ====== */
.pain-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.pain-card{background:var(--dark-card);border:1px solid rgb(255 255 255 / 6%);border-radius:var(--radius-lg);padding:2.5rem 2rem;position:relative;overflow:hidden;transition:all 0.4s cubic-bezier(0.16,1,0.3,1);display:flex;flex-direction:column}
.pain-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--gold),var(--gold-light));transform:scaleX(0);transform-origin:left;transition:transform 0.4s}
.pain-card::after{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 30% 20%,rgb(212 160 23 / 6%) 0%,transparent 50%),radial-gradient(ellipse at 80% 80%,rgb(180 130 20 / 4%) 0%,transparent 50%);opacity:0;transition:opacity 0.5s;pointer-events:none;z-index:0}
.pain-card:hover{border-color:rgb(212 160 23 / 25%);transform:translateY(-8px) scale(1.02);box-shadow:var(--gold-glow-lg);background:var(--dark)}
.pain-card:hover::before{transform:scaleX(1)}
.pain-card:hover::after{opacity:1}
.pain-card__icon{width:56px;height:56px;border-radius:14px;background:rgb(212 160 23 / 10%);display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem;font-size:1.5rem;transition:all 0.4s;position:relative;z-index:1}
.pain-card__icon svg{width:24px;height:24px;color:var(--gold);transition:all 0.4s}
.pain-card:hover .pain-card__icon{opacity:0;transform:scale(0.5);pointer-events:none}
.pain-card__sun{position:absolute;top:2.5rem;left:2rem;width:56px;height:56px;display:flex;align-items:center;justify-content:center;opacity:0;transform:scale(0.5);transition:all 0.4s cubic-bezier(0.16,1,0.3,1);z-index:1}
.pain-card__sun svg{width:36px;height:36px}
.pain-card:hover .pain-card__sun{opacity:1;transform:scale(1)}
.pain-card__stars{position:absolute;inset:0;pointer-events:none;z-index:0;opacity:0;transition:opacity 0.5s}
.pain-card:hover .pain-card__stars{opacity:1}
.pain-card__stars span{position:absolute;width:2px;height:2px;background:rgb(212 160 23 / 50%);border-radius:50%;animation:starFlicker 4s ease-in-out infinite}
.pain-card__stars span:nth-child(1){top:15%;left:70%;animation-duration:3s}
.pain-card__stars span:nth-child(2){top:30%;right:15%;animation-duration:5s;animation-delay:0.5s;width:3px;height:3px}
.pain-card__stars span:nth-child(3){top:60%;left:85%;animation-duration:4s;animation-delay:1.2s}
.pain-card__stars span:nth-child(4){top:80%;left:50%;animation-duration:6s;animation-delay:0.8s;width:1.5px;height:1.5px}
.pain-card__stars span:nth-child(5){top:45%;right:25%;animation-duration:3.5s;animation-delay:2s;width:2.5px;height:2.5px}
.pain-card h3{font-family:var(--font-heading);font-size:1.25rem;font-weight:700;color:#fff;margin-bottom:0.75rem;letter-spacing:-0.02em;position:relative;z-index:1}
.pain-card p{font-size:0.92rem;color:var(--text-muted);line-height:1.7;position:relative;z-index:1}
.pain-card__link{display:inline-flex;align-items:center;gap:0.4rem;margin-top:auto;padding-top:1.25rem;font-size:0.88rem;font-weight:600;color:var(--gold);transition:all 0.3s;position:relative;z-index:1;text-decoration:underline;text-underline-offset:3px}
.pain-card__link:hover{color:var(--gold-light);gap:0.6rem}
.pain-card__link span{transition:transform 0.3s}
.pain-card__link:hover span{transform:translateX(3px)}

/* ====== SHOWCASE (Industry Templates) ====== */
.showcase-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.showcase-card{background:#fff;border:1px solid #E8E4DC;border-radius:var(--radius-lg);overflow:hidden;transition:all 0.4s cubic-bezier(0.16,1,0.3,1);cursor:default}
.showcase-card:hover{border-color:var(--gold);transform:translateY(-6px);box-shadow:0 16px 40px rgb(0 0 0 / 10%), 0 0 0 1px var(--gold)}
.showcase-card__device{padding:1.5rem 1.5rem 0;background:var(--warm-alt)}
.showcase-card__device img{width:100%;height:auto;display:block;border-radius:8px 8px 0 0;filter:drop-shadow(0 8px 20px rgb(0 0 0 / 12%))}
.showcase-card__info{display:flex;align-items:center;gap:0.75rem;padding:1.25rem 1.5rem}
.showcase-card__icon{width:36px;height:36px;border-radius:10px;background:rgb(212 160 23 / 10%);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all 0.3s}
.showcase-card:hover .showcase-card__icon{background:var(--gold)}
.showcase-card:hover .showcase-card__icon svg{stroke:var(--dark)}
.showcase-card__name{font-family:var(--font-heading);font-size:1.05rem;font-weight:700;color:var(--text-dark);letter-spacing:-0.01em}
.showcase-also{text-align:center;font-size:1rem;color:var(--text-body);margin-top:2.5rem;line-height:1.7}
.showcase-also strong{color:var(--text-dark);font-weight:600}

/* ====== COMPARISON ====== */
.compare{display:grid;grid-template-columns:1fr auto 1fr;gap:0;align-items:stretch;position:relative;z-index:1}
.compare__col{border-radius:var(--radius-lg);padding:2.5rem 2rem}
.compare__bad{background:var(--dark-card);border:1px solid rgb(255 255 255 / 6%)}
.compare__good{background:var(--dark-card);border:2px solid rgb(212 160 23 / 30%);box-shadow:var(--gold-glow-md);animation:breatheGlow 5s ease-in-out infinite}
.compare__vs{display:flex;align-items:center;justify-content:center;padding:0 1.5rem}
.compare__vs span{width:48px;height:48px;border-radius:50%;background:var(--dark-surface);border:1px solid rgb(255 255 255 / 10%);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:0.8rem;color:var(--text-muted);letter-spacing:0.05em}
.compare__label{font-size:0.7rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;margin-bottom:0.5rem}
.compare__label--bad{color:#e74c3c}
.compare__label--good{color:var(--gold)}
.compare__heading{font-family:var(--font-heading);font-size:1.3rem;font-weight:800;color:#fff;margin-bottom:1.75rem;letter-spacing:-0.02em}
.compare__item{display:flex;align-items:flex-start;gap:0.75rem;padding:0.85rem 0;border-bottom:1px solid rgb(255 255 255 / 4%)}
.compare__item:last-child{border-bottom:none}
.compare__icon{width:22px;height:22px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px;font-size:0.75rem}
.compare__icon--bad{background:rgb(231 76 60 / 15%);color:#e74c3c}
.compare__icon--good{background:rgb(212 160 23 / 15%);color:var(--gold)}
.compare__text{font-size:0.9rem;color:var(--text-on-dark);line-height:1.5}

/* ====== INDUSTRIES ====== */
.industries-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem}
.industry-card{background:#fff;border:1px solid #E8E4DC;border-radius:var(--radius);padding:1.5rem 1rem;text-align:center;transition:all 0.35s;cursor:default}
.industry-card:hover{border-color:var(--gold);transform:translateY(-4px);box-shadow:0 12px 32px rgb(0 0 0 / 8%), 0 0 0 1px var(--gold)}
.industry-card__icon{margin-bottom:0.75rem;display:flex;align-items:center;justify-content:center;transition:transform 0.35s}
.industry-card__icon svg{width:32px;height:32px}
.industry-card:hover .industry-card__icon{transform:scale(1.2) rotate(-5deg)}
.industry-card__name{font-family:var(--font-heading);font-size:0.85rem;font-weight:700;color:var(--text-dark);letter-spacing:-0.01em}
.industry-card__desc{font-size:0.78rem;color:var(--text-body);line-height:1.55;margin-top:0.55rem}

/* ====== PROCESS ====== */
.process{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;position:relative;z-index:1}
.process::before{content:'';position:absolute;top:3.5rem;left:calc(16.67% + 1rem);right:calc(16.67% + 1rem);height:2px;background:linear-gradient(90deg,var(--gold),var(--gold-light),var(--gold));opacity:0.3;z-index:0}
.process-step{text-align:center;position:relative;z-index:1}
.process-step__num{width:72px;height:72px;border-radius:50%;border:2px solid var(--gold);display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;font-family:var(--font-heading);font-size:1.6rem;font-weight:800;color:var(--gold);background:var(--warm-bg);transition:all 0.4s;position:relative}
.process-step:hover .process-step__num{background:var(--gold);color:var(--dark);box-shadow:var(--gold-glow-md);transform:scale(1.1)}
.process-step h3{font-family:var(--font-heading);font-size:1.15rem;font-weight:700;color:var(--text-dark);margin-bottom:0.75rem}
.process-step p{font-size:0.9rem;color:var(--text-body);line-height:1.7;max-width:280px;margin:0 auto}

/* ====== PRICING ====== */
.pricing-layout{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:start;position:relative;z-index:1}
.pricing-card{background:var(--dark-card);border:2px solid rgb(212 160 23 / 20%);border-radius:var(--radius-lg);padding:3rem;position:relative;overflow:hidden;animation:cardGlow 6s ease-in-out infinite}
.pricing-card__badge{position:absolute;top:1.5rem;right:1.5rem;background:var(--gold);color:var(--dark);font-size:0.7rem;font-weight:700;padding:0.3rem 0.8rem;border-radius:50px;letter-spacing:0.05em;text-transform:uppercase}
.pricing-card__price{font-family:var(--font-heading);font-size:clamp(3rem,5vw,4rem);font-weight:800;color:var(--gold);line-height:1;margin-bottom:0.25rem;letter-spacing:-0.04em}
.pricing-card__period{font-size:1rem;color:var(--text-muted);margin-bottom:0.5rem}
.pricing-card__setup{font-family:var(--font-heading);font-size:1.4rem;font-weight:700;color:#fff;margin-bottom:2rem}
.pricing-card__list{list-style:none;margin-bottom:2rem}
.pricing-card__list li{display:flex;align-items:center;gap:0.75rem;padding:0.6rem 0;border-bottom:1px solid rgb(255 255 255 / 4%);font-size:0.92rem;color:var(--text-on-dark)}
.pricing-card__list li:last-child{border-bottom:none}
.pricing-card__check{color:var(--gold);font-size:1rem;flex-shrink:0}
.pricing-table{background:#fff;border:1px solid #E8E4DC;border-radius:var(--radius-lg);overflow:hidden}
.pricing-table table{width:100%;border-collapse:collapse}
.pricing-table th,.pricing-table td{padding:1rem 1.25rem;text-align:left;border-bottom:1px solid #E8E4DC;font-size:0.88rem}
.pricing-table th{background:var(--warm-alt);font-family:var(--font-heading);font-weight:700;font-size:0.8rem;letter-spacing:0.05em;text-transform:uppercase;color:var(--text-body)}
.pricing-table td:first-child{font-weight:600;color:var(--text-dark)}
.pricing-table tr:last-child td{border-bottom:none}
.pricing-table .highlight{background:rgb(212 160 23 / 6%);font-weight:700;color:var(--gold-dark)}

/* ====== PERFORMANCE ====== */
.perf-header{display:flex;justify-content:space-between;align-items:flex-start;gap:2rem;margin-bottom:3rem;position:relative;z-index:1}
.perf-stats{display:flex;gap:3rem}
.perf-stat{text-align:center}
.perf-stat__num{display:block;font-family:var(--font-heading);font-size:clamp(2rem,4vw,3.2rem);font-weight:800;color:var(--gold);letter-spacing:-0.04em;line-height:1}
.perf-stat__label{display:block;font-size:0.8rem;color:var(--text-muted);margin-top:0.4rem;line-height:1.4}
.perf-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;position:relative;z-index:1}
.perf-desc{font-size:0.95rem;color:var(--text-muted);line-height:1.75;margin-bottom:2rem}
.perf-points{display:flex;flex-direction:column;gap:1.25rem}
.perf-point{display:flex;gap:0.75rem;align-items:flex-start}
.perf-point svg{flex-shrink:0;margin-top:2px}
.perf-point p{font-size:0.9rem;color:var(--text-on-dark);line-height:1.6}
.perf-point strong{color:#fff}
.perf-screenshot__frame{background:var(--dark-card);border:1px solid rgb(255 255 255 / 8%);border-radius:var(--radius-lg);padding:3rem 2rem;text-align:center;min-height:360px;display:flex;align-items:center;justify-content:center}
.perf-screenshot__placeholder{font-size:0.9rem;color:var(--text-muted);font-style:italic;max-width:280px}

/* ====== PRICING TIERS ====== */
.pricing-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:3rem;position:relative;z-index:1}
.pricing-tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;position:relative;z-index:1}
.pricing-tier{background:var(--dark-card);border:1px solid rgb(255 255 255 / 6%);border-radius:var(--radius-lg);padding:2.5rem 2rem 2rem;display:flex;flex-direction:column;transition:all 0.4s}
.pricing-tier--featured{border:2px solid rgb(212 160 23 / 30%);box-shadow:var(--gold-glow-md);animation:breatheGlow 5s ease-in-out infinite}
.pricing-tier__name{font-family:var(--font-heading);font-size:1.4rem;font-weight:800;color:#fff;letter-spacing:-0.02em;margin-bottom:2rem;text-transform:uppercase;display:flex;align-items:center;gap:0.75rem}
.pricing-tier__badge{background:var(--gold);color:var(--dark);font-size:0.6rem;font-weight:700;padding:0.25rem 0.6rem;border-radius:50px;letter-spacing:0.05em;text-transform:uppercase}
.pricing-tier__list{list-style:none;flex:1}
.pricing-tier__item{display:flex;justify-content:space-between;align-items:center;padding:0.7rem 0;border-bottom:1px solid rgb(255 255 255 / 4%);font-size:0.88rem;color:var(--text-on-dark)}
.pricing-tier__item:last-child{border-bottom:none}
.pricing-tier__item--no{opacity:0.4}
.pricing-tier__item--no span:first-child{text-decoration:line-through}
.pricing-tier__check{color:var(--gold);font-size:0.9rem}
.pricing-tier__x{color:#666;font-size:0.85rem}
.pricing-tier__bottom{margin-top:2rem;padding-top:1.5rem;border-top:1px solid rgb(255 255 255 / 6%)}
.pricing-tier__price{font-family:var(--font-heading);font-size:clamp(2rem,3.5vw,2.8rem);font-weight:800;color:var(--gold);letter-spacing:-0.04em;margin-bottom:1rem;line-height:1}
.pricing-tier--featured .pricing-tier__price{font-size:clamp(2.5rem,4vw,3.2rem)}
.pricing-tier__price-sub{font-size:0.85rem;font-weight:400;color:var(--text-muted);letter-spacing:0;font-family:var(--font-body)}

/* ====== ABOUT ====== */
.about-grid{display:grid;grid-template-columns:320px 1fr;gap:3rem;align-items:start;position:relative;z-index:1}
.about__photo{width:100%;aspect-ratio:3/4;border-radius:var(--radius-lg);background:var(--warm-alt);overflow:hidden;border:3px solid rgb(212 160 23 / 20%);box-shadow:var(--gold-glow-sm);position:relative}
.about__photo img{width:100%;height:100%;object-fit:cover}
.about__name{font-family:var(--font-heading);font-size:2rem;font-weight:800;color:var(--text-dark);letter-spacing:-0.03em;margin-bottom:0.25rem}
.about__role{color:var(--gold-dark);font-weight:600;font-size:0.9rem;margin-bottom:1.5rem}
.about__text{font-size:1rem;color:var(--text-body);line-height:1.8;margin-bottom:1.5rem}
.about__quote{background:var(--warm-alt);border-left:3px solid var(--gold);border-radius:0 var(--radius) var(--radius) 0;padding:1.25rem 1.5rem;font-style:italic;color:var(--text-body);line-height:1.7;font-size:0.95rem}

/* ====== TEAM GRID ====== */
.team-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem;position:relative;z-index:1}
.team-card{background:#fff;border:1px solid #E8E4DC;border-radius:var(--radius-lg);padding:1.75rem 1.25rem 1.5rem;text-align:center;transition:all 0.4s cubic-bezier(0.16,1,0.3,1);display:flex;flex-direction:column;align-items:center}
.team-card:hover{border-color:var(--gold);transform:translateY(-6px);box-shadow:0 16px 40px rgb(0 0 0 / 8%),0 0 0 1px var(--gold)}
.team-card__photo{width:140px;height:140px;border-radius:50%;background:linear-gradient(135deg,var(--warm-alt) 0%,#E8E4DC 100%);overflow:hidden;position:relative;flex-shrink:0;margin:0 auto 1.1rem;border:3px solid rgb(212 160 23 / 20%);box-shadow:var(--gold-glow-sm)}
.team-card__photo img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.team-card__photo-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,rgb(212 160 23 / 8%) 0%,rgb(212 160 23 / 2%) 100%);border-radius:50%}
.team-card__photo-placeholder svg{width:48px;height:48px;color:var(--gold);opacity:0.4}
.team-card__body{padding:0}
.team-card__name{font-family:var(--font-heading);font-size:1.1rem;font-weight:700;color:var(--text-dark);letter-spacing:-0.02em;margin-bottom:0.25rem}
.team-card__role{color:var(--gold-dark);font-weight:600;font-size:0.8rem;letter-spacing:0.05em;text-transform:uppercase;margin-bottom:0.75rem}
.team-card__bio{font-size:0.85rem;color:var(--text-body);line-height:1.65}

/* ====== FAQ ====== */
.faq-list{max-width:760px;margin:0 auto;position:relative;z-index:1}
.faq-item{border-bottom:1px solid #E8E4DC}
.faq-item:first-child{border-top:1px solid #E8E4DC}
.faq-q{width:100%;display:flex;justify-content:space-between;align-items:center;background:none;padding:1.5rem 0;text-align:left;font-family:var(--font-heading);font-size:1.05rem;font-weight:700;color:var(--text-dark);cursor:pointer;transition:color 0.3s}
.faq-q:hover{color:var(--gold-dark)}
.faq-q__icon{width:28px;height:28px;border-radius:50%;border:1.5px solid #ccc;display:flex;align-items:center;justify-content:center;transition:all 0.35s;flex-shrink:0;font-size:1.1rem;color:#999}
.faq-item.open .faq-q__icon{transform:rotate(45deg);border-color:var(--gold);color:var(--gold);box-shadow:0 0 12px rgb(212 160 23 / 30%)}
.faq-item.open .faq-q{color:var(--gold-dark)}
.faq-a{max-height:0;overflow:hidden;transition:max-height 0.6s cubic-bezier(0.34,1.56,0.64,1)}
.faq-a__inner{padding:0 0 1.5rem;font-size:0.95rem;color:var(--text-body);line-height:1.8}

/* Dark section FAQs */
.section--dark .faq-item{border-color:rgb(255 255 255 / 8%)}
.section--dark .faq-item:first-child{border-top-color:rgb(255 255 255 / 8%)}
.section--dark .faq-q{color:#fff}
.section--dark .faq-q:hover{color:var(--gold)}
.section--dark .faq-q__icon{border-color:rgb(255 255 255 / 20%);color:rgb(255 255 255 / 40%)}
.section--dark .faq-item.open .faq-q__icon{border-color:var(--gold);color:var(--gold)}
.section--dark .faq-a__inner{color:var(--text-muted)}

/* ====== CTA / CONTACT ====== */
.cta{background:var(--dark);position:relative;overflow:hidden}
.cta::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 30% 50%,rgb(212 160 23 / 8%) 0%,transparent 60%);pointer-events:none}
.cta-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;position:relative;z-index:1}
.cta__info h2{font-family:var(--font-heading);font-size:clamp(1.8rem,3.5vw,2.5rem);font-weight:800;color:#fff;letter-spacing:-0.03em;margin-bottom:1rem;line-height:1.15}
.cta__info h2 em{font-style:normal;color:var(--gold)}
.cta__info p{font-size:1rem;color:var(--text-muted);line-height:1.75;margin-bottom:2rem}
.cta__detail{display:flex;align-items:center;gap:0.75rem;margin-bottom:1rem;color:var(--text-on-dark);font-size:0.95rem}
.cta__detail svg{color:var(--gold);width:20px;height:20px;flex-shrink:0}
.cta__response{margin-top:1.5rem;display:inline-flex;align-items:center;gap:0.5rem;background:rgb(212 160 23 / 10%);border:1px solid rgb(212 160 23 / 20%);border-radius:50px;padding:0.6rem 1.25rem;font-size:0.85rem;color:var(--gold)}
.cta__form{background:var(--dark-card);border:1px solid rgb(255 255 255 / 6%);border-radius:var(--radius-lg);padding:2.5rem}
.cta__form h3{font-family:var(--font-heading);font-size:1.25rem;font-weight:700;color:#fff;margin-bottom:1.5rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
.form-group{display:flex;flex-direction:column;gap:0.4rem;margin-bottom:0}
.form-label{font-size:0.8rem;font-weight:600;color:var(--text-muted);letter-spacing:0.03em}
.form-input{background:var(--dark-surface);border:1px solid rgb(255 255 255 / 8%);border-radius:10px;padding:0.8rem 1rem;color:#fff;font-size:0.92rem;font-family:var(--font-body);transition:all 0.3s;outline:none}
.form-input:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgb(212 160 23 / 10%)}
.form-input::placeholder{color:rgb(255 255 255 / 25%)}
textarea.form-input{resize:vertical;min-height:100px}
.form-submit{width:100%;margin-top:1rem}
.form-submit:disabled{opacity:0.7;cursor:not-allowed}

/* ====== NAV DROPDOWNS ====== */
.nav__dropdown{position:relative}
.nav__dropdown-trigger{display:flex;align-items:center;gap:0.3rem;cursor:pointer}
.nav__dropdown-trigger::after{content:'';border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid currentcolor;transition:transform 0.3s}
.nav__dropdown.open .nav__dropdown-trigger::after{transform:rotate(180deg)}
.nav__dropdown-menu{position:absolute;top:calc(100% + 0.75rem);left:50%;transform:translateX(-50%) translateY(8px);opacity:0;visibility:hidden;background:rgb(10 10 15 / 96%);backdrop-filter:blur(20px);backdrop-filter:blur(20px);border:1px solid rgb(212 160 23 / 15%);border-radius:12px;padding:0.5rem;min-width:180px;transition:all 0.3s cubic-bezier(0.16,1,0.3,1);z-index:110;box-shadow:0 12px 40px rgb(0 0 0 / 40%)}
.nav__dropdown-menu::before{content:'';position:absolute;top:-6px;left:50%;transform:translateX(-50%);width:12px;height:12px;background:rgb(10 10 15 / 96%);border:1px solid rgb(212 160 23 / 15%);border-bottom:none;border-right:none;rotate:45deg}
.nav__dropdown.open .nav__dropdown-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.nav__dropdown-menu a{display:block;padding:0.6rem 1rem;border-radius:8px;font-size:0.85rem;color:var(--text-on-dark);transition:all 0.2s;white-space:nowrap}
.nav__dropdown-menu a:hover{background:rgb(212 160 23 / 10%);color:var(--gold)}

/* ====== PAGE HERO (secondary pages) ====== */
.page-hero{position:relative;background:var(--dark);padding:12rem 0 5rem;text-align:center;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 50% 100%,rgb(212 160 23 / 14%) 0%,rgb(212 160 23 / 5%) 35%,transparent 65%);pointer-events:none}
.page-hero::after{content:'';position:absolute;bottom:-1px;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent 10%,rgb(212 160 23 / 30%) 50%,transparent 90%);pointer-events:none}
.page-hero__title{font-family:var(--font-heading);font-size:clamp(2.5rem,5vw,3.5rem);font-weight:800;color:#fff;letter-spacing:-0.04em;position:relative;z-index:1}
.page-hero__sub{font-size:1.05rem;color:var(--text-muted);margin-top:1rem;max-width:500px;margin-inline:auto;line-height:1.7;position:relative;z-index:1}

/* ====== SUNRISE CTA ====== */
.sunrise{position:relative;background:var(--dark);padding:6rem 0 4rem;text-align:center;overflow:hidden}
.sunrise::before{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:140%;height:320px;background:radial-gradient(ellipse at 50% 100%,rgb(212 160 23 / 18%) 0%,rgb(212 160 23 / 8%) 30%,rgb(184 134 11 / 3%) 50%,transparent 70%);pointer-events:none}
.sunrise::after{content:'';position:absolute;bottom:-2px;left:0;right:0;height:3px;background:linear-gradient(90deg,transparent 5%,var(--gold-light) 30%,var(--gold) 50%,var(--gold-light) 70%,transparent 95%);opacity:0.5}
.sunrise__sun{width:80px;height:80px;margin:0 auto 2rem;position:relative;z-index:1;opacity:0.9}
.sunrise__sun svg{width:100%;height:100%}
.sunrise__heading{font-family:var(--font-heading);font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;color:#fff;letter-spacing:-0.03em;line-height:1.15;margin-bottom:0.75rem;position:relative;z-index:1}
.sunrise__heading em{font-style:normal;color:var(--gold)}
.sunrise__sub{font-size:1.05rem;color:var(--text-muted);margin-bottom:2.5rem;position:relative;z-index:1}
.sunrise__btn{position:relative;z-index:1}
.sunrise .orb{position:absolute;border-radius:50%;pointer-events:none}
.sunrise .orb--left{width:200px;height:200px;background:radial-gradient(circle,rgb(212 160 23 / 6%) 0%,transparent 70%);bottom:10%;left:5%;animation:float1 10s ease-in-out infinite}
.sunrise .orb--right{width:150px;height:150px;background:radial-gradient(circle,rgb(232 197 71 / 5%) 0%,transparent 70%);bottom:20%;right:8%;animation:float2 14s ease-in-out infinite}

/* ====== FOOTER (expanded) ====== */
.footer{background:var(--dark);border-top:1px solid rgb(255 255 255 / 6%);padding:4rem 0 2rem}
.footer__grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:3rem;margin-bottom:3rem}
.footer__brand{max-width:280px}
.footer__logo{font-family:var(--font-heading);font-weight:800;font-size:1.5rem;color:#fff;display:flex;align-items:center;gap:0;margin-bottom:1rem;animation:goldPulse 4s ease-in-out infinite}
.footer__logo-sun svg{filter:drop-shadow(0 0 6px rgb(212 160 23 / 40%)) drop-shadow(0 0 12px rgb(212 160 23 / 20%))}
.footer__logo-sun{display:inline-flex;margin:0 -1px}
.footer__logo-sun svg{width:24px;height:24px}
.footer__tagline{font-size:0.9rem;color:var(--text-muted);line-height:1.7;margin-bottom:1.5rem}
.footer__cta{display:inline-flex}
.footer__col-title{font-family:var(--font-heading);font-weight:700;font-size:0.8rem;letter-spacing:0.12em;text-transform:uppercase;color:#fff;margin-bottom:1.25rem}
.footer__col-links{list-style:none}
.footer__col-links li{margin-bottom:0.6rem}
.footer__col-links a{color:var(--text-muted);font-size:0.88rem;transition:color 0.3s}
.footer__col-links a:hover{color:var(--gold)}
.footer__contact-item{display:flex;align-items:flex-start;gap:0.75rem;margin-bottom:1rem;color:var(--text-muted);font-size:0.88rem;line-height:1.5}
.footer__contact-item svg{color:var(--gold);width:18px;height:18px;flex-shrink:0;margin-top:2px}
.footer__bottom{display:flex;justify-content:space-between;align-items:center;padding-top:2rem;border-top:1px solid rgb(255 255 255 / 6%)}
.footer__copy{color:var(--text-muted);font-size:0.8rem}
.footer__legal{display:flex;gap:1.5rem}
.footer__legal a{color:var(--text-muted);font-size:0.8rem;transition:color 0.3s}
.footer__legal a:hover{color:var(--gold)}

/* ====== RESPONSIVENESS ====== */
@media(width <=1024px){
  .offer{grid-template-columns:360px 1fr;gap:2.5rem}
  .pain-grid{grid-template-columns:repeat(2,1fr)}
  .showcase-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-tiers{grid-template-columns:1fr}
  .perf-header{flex-direction:column}
  .perf-grid{grid-template-columns:1fr}
  .industries-grid{grid-template-columns:repeat(3,1fr)}
  .pricing-layout{grid-template-columns:1fr}
  .compare{grid-template-columns:1fr;gap:1rem}
  .compare__vs{padding:1rem 0}
  .footer__grid{grid-template-columns:1fr 1fr;gap:2rem}
  .team-grid{grid-template-columns:repeat(2,1fr)}
}

@media(width <=768px){
  body.nav-open{overflow:hidden}
  .nav__logo-mark{font-size:1.3rem}
  .nav__logo-script{font-size:0.62rem;margin-left:0.86rem;margin-top:-0.02rem}
  .nav{padding:0.85rem 1rem}
  .nav__links{display:flex;flex-direction:column;position:absolute;top:calc(100% + 0.7rem);left:0.2rem;right:0.2rem;background:linear-gradient(180deg,rgb(14 14 20 / 98%) 0%,rgb(10 10 15 / 98%) 100%);backdrop-filter:blur(22px);padding:1rem;gap:0.5rem;border:1px solid rgb(212 160 23 / 16%);border-radius:24px;box-shadow:0 20px 48px rgb(0 0 0 / 32%),0 0 0 1px rgb(255 255 255 / 3%) inset;transform:translateY(-12px) scale(0.98);transform-origin:top;opacity:0;pointer-events:none;max-height:calc(100vh - 7rem);overflow:auto;transition:transform 0.35s cubic-bezier(0.16,1,0.3,1),opacity 0.25s}
  .nav__links.active{transform:translateY(0) scale(1);opacity:1;pointer-events:auto}
  .nav__links>a:not(.nav__cta)::after{display:none}
  .nav__links>a:not(.nav__cta),.nav__dropdown-trigger{display:flex;align-items:center;justify-content:space-between;width:100%;padding:0.78rem 0.95rem;border-radius:16px;background:rgb(255 255 255 / 3%);color:rgb(255 255 255 / 90%);font-size:0.98rem}
  .nav__dropdown{width:100%}
  .nav__toggle{display:flex}
  .nav__dropdown-menu{position:static;left:auto;right:auto;top:auto;transform:none;opacity:1;visibility:visible;background:linear-gradient(180deg,rgb(20 20 28 / 98%) 0%,rgb(14 14 20 / 98%) 100%);backdrop-filter:none;border:1px solid rgb(212 160 23 / 10%);border-radius:18px;padding:0.35rem;box-shadow:inset 0 0 0 1px rgb(255 255 255 / 2%),0 12px 28px rgb(0 0 0 / 22%);min-width:0;display:none;overflow:hidden}
  .nav__dropdown-menu::before{display:none}
  .nav__dropdown.open .nav__dropdown-menu{display:grid;gap:0.35rem;margin-bottom:0.2rem;left:auto;transform:none}
  .nav__dropdown-menu a{display:block;padding:0.78rem 0.95rem;border-radius:14px;background:rgb(255 255 255 / 7%);border:1px solid rgb(255 255 255 / 6%);margin-top:0;color:#fff;line-height:1.2}
  .nav__dropdown-menu a:hover,.nav__dropdown-menu a:focus-visible{background:rgb(212 160 23 / 12%);border-color:rgb(212 160 23 / 28%);color:var(--gold)}
  .nav__dropdown-trigger::after{margin-left:auto}
  .nav__cta{width:100%;justify-content:center;margin-top:0.4rem;padding:0.95rem 1.25rem}
  .showcase-grid{grid-template-columns:1fr}
  .perf-header{flex-direction:column;gap:1.5rem}
  .perf-stats{gap:1.5rem}
  .perf-grid{grid-template-columns:1fr}
  .pricing-header{flex-direction:column;gap:1rem}
  .pricing-tiers{grid-template-columns:1fr}
  .offer{grid-template-columns:1fr;gap:2rem}
  .offer__photo{max-width:400px;margin:0 auto}
  .offer__name-card{left:1rem;right:1rem}
  .offer__features{grid-template-columns:1fr}
  .offer__orb{display:none}
  .offer__heading{text-align:center}
  .offer__content .section__eyebrow{text-align:center !important}
  .offer__desc{text-align:center}
  .offer__content{display:flex;flex-direction:column;align-items:center}
  .hero__inner{grid-template-columns:1fr}
  .device{margin-top:2rem}
  .device__img{max-width:100%;transform:rotateY(0) rotateX(0);filter:drop-shadow(0 0 20px rgb(212 160 23 / 15%)) drop-shadow(0 10px 30px rgb(0 0 0 / 40%))}
  .pain-grid{grid-template-columns:1fr}
  .process{grid-template-columns:1fr;gap:2.5rem}
  .process::before{display:none}
  .industries-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr}
  .cta-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr;gap:2rem;text-align:center}
  .footer__brand{max-width:100%;margin:0 auto}
  .footer__logo{justify-content:center}
  .footer__cta{justify-content:center}
  .footer__contact-item{justify-content:center}
  .footer__bottom{flex-direction:column;gap:1rem;text-align:center}
  .hero__text{max-width:100%}
  .hero{padding:7.5rem 0 3rem}

  /* Scale orbs proportionally on mobile — never hide them, always clip overflow */
  .hero::before,.hero::after{opacity:0.4}
  .orb--1{width:min(350px,85vw);height:min(350px,85vw)}
  .orb--2{width:min(200px,50vw);height:min(200px,50vw)}
  .orb--3{width:min(120px,30vw);height:min(120px,30vw)}
  .section--dark::before{opacity:0.5}
  .section--warm-alt,.section--warm,.page-hero,.sunrise,.section--dark{overflow:hidden}
  .offer__orb--1{width:min(280px,70vw);height:min(280px,70vw);right:0;display:block}
  .offer__orb--2{width:min(180px,45vw);height:min(180px,45vw);right:0;display:block}
  .page-hero{padding:8rem 0 3rem}
  .blog-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr}
  .proof-grid{grid-template-columns:1fr}
  .proof-card--portfolio{padding:1rem}
  .proof-card__visuals{min-height:220px;padding:0.85rem 0.85rem 0.2rem}
  .proof-device--laptop{width:min(82%,360px);border-width:6px;border-bottom-width:14px;border-radius:16px 16px 10px 10px}
  .proof-device--laptop::after{bottom:-16px;height:14px}
  .proof-device--phone{width:92px;right:0.55rem;border-width:5px;border-radius:22px}
  .reviews-grid{grid-template-columns:1fr}
  .service-features{grid-template-columns:1fr}

  /* Pricing page — force single column on "What's Included" inline grid */
  .pricing-included-grid{grid-template-columns:1fr !important}

  /* Pricing comparison table — horizontal scroll with hint */
  .pricing-table{overflow-x:auto;-webkit-overflow-scrolling:touch}
  .pricing-table table{min-width:480px}

  /* Process step number — fix white bg on dark sections */
  .section--dark .process-step__num{background:var(--dark-card)}

  /* Team grid — stack on mobile */
  .team-grid{grid-template-columns:1fr !important;gap:2rem !important;max-width:400px;margin:0 auto}
}

/* ====== ACCESSIBILITY: REDUCED MOTION ====== */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:0.01s !important;animation-iteration-count:1 !important;transition-duration:0.01s !important;scroll-behavior:auto !important}
  .page-entrance{display:none !important}
  .cursor-glow{display:none !important}
}

/* About page philosophy cards — keep single-column on phones even after later section rules */
@media(width <=768px){
  .service-features{grid-template-columns:1fr !important}
}

/* ====== EXTRA SMALL SCREENS ====== */
@media(width <=420px){
  .nav__logo-mark{font-size:1.16rem}
  .nav__logo-script{font-size:0.56rem;margin-left:0.74rem;margin-top:0}
  .nav{left:0.55rem;right:0.55rem;top:0.7rem;padding:0.75rem 0.9rem}
  .nav__links{left:0;right:0;top:calc(100% + 0.6rem);padding:0.85rem}
  .nav__links>a:not(.nav__cta),.nav__dropdown-trigger{padding:0.72rem 0.8rem;font-size:0.94rem}
  .proof-card__visuals{min-height:198px}
  .proof-device--laptop{width:min(78%,300px)}
  .proof-device--phone{width:78px}
  .industries-grid{grid-template-columns:1fr}
  .pricing-card{padding:2rem 1.5rem}
  .pricing-card__price{font-size:2.5rem}
  .pricing-card__setup{font-size:1.1rem}
  .cta__form{padding:1.5rem}
  .about__name{font-size:1.5rem}
  .page-hero__title{font-size:clamp(1.8rem,8vw,2.5rem)}
}

/* ====== BLOG ====== */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,320px),1fr));gap:2rem;position:relative;z-index:1}
.blog-card{background:#fff;border:1px solid #E8E4DC;border-radius:var(--radius-lg);overflow:hidden;transition:all 0.4s cubic-bezier(0.16,1,0.3,1);display:flex;flex-direction:column}
.blog-card:hover{border-color:var(--gold);transform:translateY(-6px);box-shadow:0 16px 40px rgb(0 0 0 / 10%),0 0 0 1px var(--gold)}
.blog-card__img{background:var(--warm-alt);padding:2.5rem;display:flex;align-items:center;justify-content:center;border-bottom:1px solid #E8E4DC}
.blog-card__img svg{width:52px;height:52px}
.blog-card__body{padding:1.75rem 1.75rem 2rem;display:flex;flex-direction:column;flex:1}
.blog-card__tag{font-size:0.72rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;color:var(--gold-dark);margin-bottom:0.75rem}
.blog-card__title{font-family:var(--font-heading);font-size:1.15rem;font-weight:700;color:var(--text-dark);line-height:1.3;margin-bottom:0.75rem;letter-spacing:-0.02em}
.blog-card__excerpt{font-size:0.88rem;color:var(--text-body);line-height:1.7;flex:1;margin-bottom:1.5rem}
.blog-card__link{align-self:flex-end;display:inline-flex;align-items:center;justify-content:center;gap:0.45rem;min-height:42px;padding:0.68rem 0.95rem;border:1px solid rgb(212 160 23 / 38%);border-radius:999px;background:rgb(212 160 23 / 10%);box-shadow:0 10px 24px rgb(17 18 27 / 7%);font-size:0.88rem;font-weight:700;color:var(--gold-dark);transition:all 0.3s cubic-bezier(0.16,1,0.3,1);text-decoration:none}
.blog-card__link:hover{color:#11131b;background:linear-gradient(135deg,var(--gold),#f1cf73);border-color:rgb(212 160 23 / 70%);gap:0.58rem;transform:translateY(-2px);box-shadow:0 14px 28px rgb(17 18 27 / 12%)}
.blog-card__link:focus-visible{outline:3px solid rgb(212 160 23 / 35%);outline-offset:3px}

/* ====== BLOG ARTICLE ====== */
.article__progress{position:fixed;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--gold),var(--gold-light));transform:scaleX(0);transform-origin:left;z-index:201;pointer-events:none;transition:transform 0.1s linear}
.article{max-width:760px;margin:0 auto;position:relative;z-index:1}
.article__meta{font-size:0.82rem;color:var(--text-body);margin-bottom:2.5rem;display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap;padding-bottom:1.5rem;border-bottom:1px solid #E8E4DC}
.article__meta span{min-width:0}

/* Pull quotes for articles */
.article .pull-quote{border-left:4px solid var(--gold);background:var(--warm-alt);padding:1.5rem 2rem;border-radius:0 var(--radius) var(--radius) 0;margin:2.5rem 0;font-size:1.15rem;font-weight:600;color:var(--text-dark);line-height:1.6;font-style:italic;position:relative}
.article .pull-quote::before{content:'\201C';position:absolute;top:-0.25rem;left:0.5rem;font-size:3rem;color:var(--gold);opacity:0.3;font-family:serif;line-height:1}
.article h2{font-family:var(--font-heading);font-size:clamp(1.4rem,3vw,1.75rem);font-weight:800;color:var(--text-dark);letter-spacing:-0.03em;margin:2.5rem 0 1rem;line-height:1.2}
.article h3{font-family:var(--font-heading);font-size:1.1rem;font-weight:700;color:var(--text-dark);margin:2rem 0 0.75rem;letter-spacing:-0.02em}
.article p{font-size:1rem;color:var(--text-body);line-height:1.85;margin-bottom:1.25rem}
.article ul,.article ol{margin:0 0 1.25rem 1.5rem;font-size:1rem;color:var(--text-body);line-height:1.85}
.article li{margin-bottom:0.4rem}
.article strong{color:var(--text-dark);font-weight:600}
.article blockquote{border-left:3px solid var(--gold);background:var(--warm-alt);padding:1.25rem 1.5rem;border-radius:0 var(--radius) var(--radius) 0;margin:2rem 0;font-style:italic;font-size:1.05rem;color:var(--text-body);line-height:1.7}
.article__answer,.article__proof,.article__faq{border:1px solid #E8E4DC;border-radius:var(--radius-lg);padding:1.5rem;margin:2rem 0;background:#fff;box-shadow:0 14px 34px rgb(17 18 27 / 5%)}
.article__answer{border-color:rgb(212 160 23 / 38%);background:linear-gradient(135deg,rgb(212 160 23 / 10%),#fff 58%)}
.article__answer-title,.article__proof-title,.article__faq-title{font-family:var(--font-heading);font-size:1.05rem;font-weight:800;color:var(--text-dark);letter-spacing:-0.02em;margin:0 0 0.65rem}
.article__answer p,.article__proof p{margin-bottom:0}
.article__proof ul{margin-bottom:0}
.article__faq{background:var(--warm-alt)}
.article__faq-item{padding:1rem 0;border-top:1px solid #E8E4DC}
.article__faq-item:first-of-type{border-top:0;padding-top:0}
.article__faq-item:last-child{padding-bottom:0}
.article__faq-question{font-family:var(--font-heading);font-size:0.98rem;font-weight:800;color:var(--text-dark);letter-spacing:-0.01em;margin:0 0 0.4rem}
.article__faq-answer{font-size:0.95rem;line-height:1.7;color:var(--text-body);margin:0}
.article__next{background:#fff;border:1px solid #E8E4DC;border-radius:var(--radius-lg);padding:1.5rem;margin:2.75rem 0 2rem;box-shadow:0 14px 36px rgb(17 18 27 / 6%)}
.article__next-title{font-family:var(--font-heading);font-size:1rem;font-weight:800;color:var(--text-dark);letter-spacing:-0.02em;margin:0 0 1rem}
.article__next-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0.8rem}
.article__next-link{display:flex;align-items:center;min-height:76px;padding:0.9rem 1rem;border:1px solid rgb(212 160 23 / 28%);border-radius:var(--radius);background:rgb(212 160 23 / 7%);color:var(--text-dark);font-size:0.9rem;font-weight:700;line-height:1.35;text-decoration:none;transition:all 0.25s ease}
.article__next-link:hover{border-color:rgb(212 160 23 / 60%);background:rgb(212 160 23 / 14%);transform:translateY(-2px);box-shadow:0 10px 22px rgb(17 18 27 / 8%)}
.article__next-link:focus-visible{outline:3px solid rgb(212 160 23 / 35%);outline-offset:3px}
.article__cta-box{background:var(--warm-alt);border:1px solid #E8E4DC;border-radius:var(--radius-lg);padding:2.5rem;text-align:center;margin:3rem 0}
.article__cta-box h3{font-family:var(--font-heading);font-size:1.4rem;font-weight:800;color:var(--text-dark);margin-bottom:0.75rem;letter-spacing:-0.03em}
.article__cta-box p{color:var(--text-body);margin-bottom:1.5rem;font-size:0.95rem}

/* ====== REVIEWS ====== */
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;position:relative;z-index:1}
.review-card{background:#fff;border:1px solid #E8E4DC;border-radius:var(--radius-lg);padding:2rem;position:relative}
.review-card::before{content:'\201C';position:absolute;top:0.75rem;right:1.5rem;font-size:4rem;color:var(--gold);opacity:0.15;font-family:serif;line-height:1}
.review-card__stars{display:flex;gap:3px;margin-bottom:1rem}
.review-card__stars span{color:var(--gold);font-size:1.1rem}
.review-card__text{font-size:0.92rem;color:var(--text-body);line-height:1.75;margin-bottom:1.5rem;font-style:italic}
.review-card__name{font-family:var(--font-heading);font-size:0.9rem;font-weight:700;color:var(--text-dark);letter-spacing:-0.01em}
.review-card__biz{font-size:0.8rem;color:var(--gold-dark);font-weight:500;margin-top:0.2rem}

/* ====== TEAM ====== */
.team-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem;position:relative;z-index:1}
.team-card{background:#fff;border:1px solid #E8E4DC;border-radius:var(--radius-lg);padding:1.75rem 1.25rem 1.5rem;transition:all 0.35s cubic-bezier(0.16,1,0.3,1)}
.team-card:hover{border-color:rgb(212 160 23 / 55%);transform:translateY(-4px);box-shadow:0 14px 32px rgb(0 0 0 / 8%)}
.team-card__name{font-family:var(--font-heading);font-size:1.08rem;font-weight:700;color:var(--text-dark);letter-spacing:-0.02em}
.team-card__role{font-size:0.78rem;letter-spacing:0.11em;text-transform:uppercase;color:var(--gold-dark);font-weight:700;margin-top:0.25rem}
.team-card__text{font-size:0.9rem;color:var(--text-body);line-height:1.7;margin-top:0.9rem}

/* ====== PROOF ====== */
.proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;position:relative;z-index:1}
.proof-card{background:#fff;border:1px solid #E8E4DC;border-radius:var(--radius-lg);padding:1.75rem}
.proof-card__label{font-size:0.72rem;letter-spacing:0.11em;text-transform:uppercase;color:var(--gold-dark);font-weight:700;margin-bottom:0.55rem}
.proof-card__title{font-family:var(--font-heading);font-size:1.05rem;font-weight:700;color:var(--text-dark);letter-spacing:-0.02em;line-height:1.3;margin-bottom:0.65rem}
.proof-card__text{font-size:0.9rem;color:var(--text-body);line-height:1.75;margin-bottom:0.9rem}
.proof-card__list{margin:0 0 0 1rem;padding:0;display:grid;gap:0.45rem}
.proof-card__list li{font-size:0.84rem;color:var(--text-body);line-height:1.6}
.proof-card__list a{color:var(--gold-dark);text-decoration:underline;text-underline-offset:3px}
.proof-card__list a:hover{color:var(--gold)}
.proof-grid--portfolio{gap:1.75rem}
.proof-card--portfolio{padding:1.3rem}
.proof-card__visuals{position:relative;min-height:260px;margin-bottom:1.2rem;padding:1rem 1rem 0.35rem;border-radius:22px;background:linear-gradient(180deg,#f8f3ea 0%,#efe7da 100%);border:1px solid rgb(212 160 23 / 10%);overflow:hidden}
.proof-card__visuals::after{content:'';position:absolute;inset:auto 8% -18%;height:120px;background:radial-gradient(circle,rgb(212 160 23 / 12%) 0%,transparent 70%);pointer-events:none}
.proof-device{position:absolute;overflow:hidden}
.proof-device img{width:100%;height:100%;display:block;object-fit:cover;object-position:top center}
.proof-device--laptop{inset:0 auto 0.35rem 0;width:min(86%,460px);aspect-ratio:1.32/1;background:#0e1018;border:8px solid #11141d;border-bottom-width:18px;border-radius:18px 18px 12px 12px;box-shadow:0 22px 45px rgb(18 18 26 / 18%)}
.proof-device--laptop::before{content:'';position:absolute;top:0.55rem;left:50%;width:12px;height:12px;margin-left:-6px;border-radius:50%;background:rgb(255 255 255 / 18%);z-index:2}
.proof-device--laptop::after{content:'';position:absolute;left:50%;bottom:-20px;transform:translateX(-50%);width:112%;height:18px;border-radius:0 0 18px 18px;background:linear-gradient(180deg,#d9d3ca 0%,#b6afa4 100%);box-shadow:0 10px 22px rgb(18 18 26 / 12%)}
.proof-device--phone{right:0.9rem;bottom:0;width:120px;aspect-ratio:0.48/1;background:#0f1016;border:6px solid #10131b;border-radius:26px;box-shadow:0 18px 36px rgb(18 18 26 / 20%);z-index:2}
.proof-device--phone::before{content:'';position:absolute;top:10px;left:50%;transform:translateX(-50%);width:34%;height:10px;border-radius:999px;background:rgb(255 255 255 / 15%);z-index:2}

/* ====== SERVICE FEATURES ====== */
.service-features{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;position:relative;z-index:1}
.service-feature{background:var(--dark-card);border:1px solid rgb(255 255 255 / 6%);border-radius:var(--radius);padding:1.75rem;transition:all 0.4s}
.service-feature:hover{border-color:rgb(212 160 23 / 20%);transform:translateY(-4px);box-shadow:var(--gold-glow-sm)}
.service-feature__icon{width:44px;height:44px;border-radius:12px;background:rgb(212 160 23 / 10%);display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.service-feature__icon svg{width:22px;height:22px;color:var(--gold)}
.service-feature h3{font-family:var(--font-heading);font-size:1rem;font-weight:700;color:#fff;margin-bottom:0.5rem;letter-spacing:-0.01em}
.service-feature p{font-size:0.88rem;color:var(--text-muted);line-height:1.65}

/* ============================================================
   DAY MODE — Golden Hour Sky
   "You're holding warmth and light in your hands."
   ============================================================ */

/* --- Phase 1: Variable Overrides --- */
body.light-mode{
  --dark:#E8F0FE;--dark-card:#FFF;--dark-surface:#D4E4F7;
  --warm-bg:#FFF8ED;--warm-alt:#FAEBD7;
  --gold:#B8860B;--gold-dark:#8B6914;--gold-light:#D4A017;
  --gold-glow-sm:0 0 20px rgb(184 134 11 / 10%),0 0 40px rgb(184 134 11 / 5%);
  --gold-glow-md:0 0 24px rgb(184 134 11 / 12%),0 0 48px rgb(184 134 11 / 6%);
  --gold-glow-lg:0 0 30px rgb(184 134 11 / 15%),0 0 60px rgb(184 134 11 / 8%);
  --text-on-dark:#1A1A2E;--text-muted:#4A5568;--text-body:#374151;

  color:var(--text-dark);background:var(--dark)
}

/* --- Phase 2: Section-Specific Overrides --- */

/* Hero — warm sky gradient with golden hour glow */
body.light-mode .hero{background:linear-gradient(180deg,#7EC8E3 0%,#A8D4E8 25%,#D4E8F0 50%,#F0E6D0 80%,#F5E1C0 100%)}
body.light-mode .hero::before{background:radial-gradient(ellipse at 70% 60%,rgb(255 183 77 / 18%) 0%,rgb(255 160 50 / 6%) 40%,transparent 70%)}
body.light-mode .hero::after{background:radial-gradient(ellipse at 20% 80%,rgb(255 200 100 / 12%) 0%,transparent 50%)}
body.light-mode .hero h1{color:#1A1A2E}
body.light-mode .hero h1 em{color:var(--gold)}
body.light-mode .hero__desc,body.light-mode .hero__list li{color:#2D3748}

/* Hero price needs a darker gold in light mode — var(--gold-dark) #B8860B
   against the sky-blue body = 2.84:1, fails WCAG AA 3.0 for large text.
   #5E4306 on same bg = 7.8:1, passes comfortably. */
body.light-mode .hero__price{color:#5E4306}
body.light-mode .hero__price-sub{color:#4A4741}

/* Nav — frosted warm glass */
body.light-mode .nav{background:rgb(255 248 237 / 70%);border-color:rgb(184 134 11 / 15%);animation:none;box-shadow:0 2px 20px rgb(184 134 11 / 6%)}
body.light-mode .nav.scrolled{background:rgb(255 248 237 / 92%);border-bottom-color:rgb(184 134 11 / 10%);box-shadow:0 2px 30px rgb(184 134 11 / 8%)}
body.light-mode .nav__logo{color:#1A1A2E}
body.light-mode .nav__links a:not(.nav__cta){color:#4A5568}
body.light-mode .nav__links a:not(.nav__cta):hover{color:var(--gold)}
body.light-mode .nav__toggle span{background:#1A1A2E}
body.light-mode .dark-toggle{border-color:rgb(184 134 11 / 25%);color:var(--gold)}
body.light-mode .nav__dropdown-menu{background:rgb(255 255 255 / 96%);border-color:rgb(184 134 11 / 15%);box-shadow:0 12px 40px rgb(0 0 0 / 10%)}
body.light-mode .nav__dropdown-menu::before{background:rgb(255 255 255 / 96%);border-color:rgb(184 134 11 / 15%)}
body.light-mode .nav__dropdown-menu a{color:#2D3748}
body.light-mode .nav__dropdown-menu a:hover{background:rgb(184 134 11 / 8%);color:var(--gold)}
body.light-mode .nav__links.active{background:rgb(255 255 255 / 97%)}

/* Gradient text — deeper gold on light */
body.light-mode .gradient-text{background:linear-gradient(135deg,#5A4A00 0%,#704D0A 50%,#8B6914 100%);background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}

/* Dark sections → warm sky with golden dust overlay */
body.light-mode .section--dark{background:linear-gradient(180deg,#DEEAF6 0%,#E8F0FE 40%,#EDE6D8 100%)}
body.light-mode .section--dark::before{background:radial-gradient(ellipse at 30% 40%,rgb(255 183 77 / 10%) 0%,transparent 50%),radial-gradient(ellipse at 80% 70%,rgb(255 200 120 / 8%) 0%,transparent 50%),linear-gradient(145deg,rgb(255 183 77 / 4%) 0%,rgb(135 206 235 / 3%) 50%,rgb(255 183 77 / 3%) 100%)}
body.light-mode .section__title--light{color:#1A1A2E}
body.light-mode .section__sub--light{color:var(--text-muted)}

/* Page hero — warm sky gradient */
body.light-mode .page-hero{background:linear-gradient(180deg,#7EC8E3 0%,#B8D8EA 40%,#E8DFC8 100%)}
body.light-mode .page-hero::before{background:radial-gradient(ellipse at 50% 100%,rgb(255 183 77 / 12%) 0%,rgb(255 183 77 / 4%) 35%,transparent 65%)}
body.light-mode .page-hero::after{background:linear-gradient(90deg,transparent 10%,rgb(184 134 11 / 20%) 50%,transparent 90%)}
body.light-mode .page-hero__title{color:#1A1A2E}
body.light-mode .page-hero__sub{color:#4A5568}

/* Entrance animation */
body.light-mode .page-entrance{background:var(--dark)}

/* Pain cards — warm white with golden ambient */
body.light-mode .pain-card{background:linear-gradient(135deg,#FFF 0%,#FFF9F0 100%);border-color:rgb(184 134 11 / 12%);box-shadow:0 4px 20px rgb(184 134 11 / 6%),0 1px 3px rgb(0 0 0 / 4%)}
body.light-mode .pain-card:hover{border-color:rgb(184 134 11 / 35%);background:linear-gradient(135deg,#FFF 0%,#FFF4E0 100%);box-shadow:0 16px 48px rgb(184 134 11 / 12%),0 0 30px rgb(255 183 77 / 8%)}
body.light-mode .pain-card::after{background:radial-gradient(ellipse at 30% 20%,rgb(184 134 11 / 4%) 0%,transparent 50%)}
body.light-mode .pain-card h3{color:#1A1A2E}
body.light-mode .pain-card p{color:#4A5568}
body.light-mode .pain-card__icon{background:rgb(184 134 11 / 8%)}
body.light-mode .pain-card__stars span{background:rgb(184 134 11 / 30%)}

/* Orbs — golden sun halos, visible and warm */
body.light-mode .orb--1{background:radial-gradient(circle,rgb(255 183 77 / 18%) 0%,rgb(255 200 100 / 6%) 50%,transparent 70%)}
body.light-mode .orb--2{background:radial-gradient(circle,rgb(255 170 60 / 15%) 0%,rgb(255 183 77 / 5%) 50%,transparent 70%)}
body.light-mode .orb--3{background:radial-gradient(circle,rgb(255 200 100 / 20%) 0%,rgb(255 183 77 / 7%) 50%,transparent 70%)}
body.light-mode .offer__orb--1{border-color:rgb(255 183 77 / 15%);background:radial-gradient(circle,rgb(255 183 77 / 6%) 0%,transparent 70%)}
body.light-mode .offer__orb--2{border-color:rgb(255 183 77 / 10%);background:radial-gradient(circle,rgb(255 183 77 / 4%) 0%,transparent 70%)}
body.light-mode .ambient-orb{border-color:rgb(255 183 77 / 10%);background:radial-gradient(circle,rgb(255 183 77 / 6%) 0%,transparent 70%)}

/* Cursor / touch glow — warm amber */
body.light-mode .cursor-glow{background:radial-gradient(circle,rgb(255 183 77 / 8%) 0%,transparent 70%)}

/* Offer section */
body.light-mode .offer__heading{color:#1A1A2E}
body.light-mode .offer__desc{color:#4A5568}
body.light-mode .offer__desc strong{color:#1A1A2E}
body.light-mode .offer__feature-header h3,body.light-mode .offer__feature-header h4{color:#1A1A2E}
body.light-mode .offer__feature p{color:#4A5568}

/* Comparison */
body.light-mode .compare__bad{background:linear-gradient(135deg,#FFF 0%,#FFF5F5 100%);border-color:rgb(197 48 48 / 12%);box-shadow:0 4px 20px rgb(0 0 0 / 4%)}
body.light-mode .compare__good{background:linear-gradient(135deg,#FFF 0%,#FFF9F0 100%);border-color:rgb(184 134 11 / 25%);box-shadow:0 4px 24px rgb(184 134 11 / 10%),0 0 40px rgb(255 183 77 / 5%)}
body.light-mode .compare__vs span{background:#D4E4F7;border-color:rgb(184 134 11 / 10%);color:#4A5568}
body.light-mode .compare__heading{color:#1A1A2E}
body.light-mode .compare__text{color:#2D3748}
body.light-mode .compare__item{border-bottom-color:rgb(0 0 0 / 6%)}
body.light-mode .compare__label--bad{color:#C53030}
body.light-mode .compare__icon--bad{background:rgb(197 48 48 / 10%);color:#C53030}

/* Pricing tiers — warm white with golden accents */
body.light-mode .pricing-tier{background:linear-gradient(135deg,#FFF 0%,#FFF9F0 100%);border-color:rgb(184 134 11 / 10%);box-shadow:0 4px 20px rgb(184 134 11 / 6%)}
body.light-mode .pricing-tier--featured{border-color:rgb(184 134 11 / 35%);box-shadow:0 8px 32px rgb(184 134 11 / 12%),0 0 40px rgb(255 183 77 / 6%)}
body.light-mode .pricing-tier__name{color:#1A1A2E}
body.light-mode .pricing-tier__item{color:#2D3748;border-bottom-color:rgb(0 0 0 / 6%)}
body.light-mode .pricing-tier__bottom{border-top-color:rgb(0 0 0 / 6%)}
body.light-mode .pricing-card{background:#FFF;border-color:rgb(184 134 11 / 20%)}
body.light-mode .pricing-card__setup{color:#1A1A2E}
body.light-mode .pricing-card__list li{color:#2D3748;border-bottom-color:rgb(0 0 0 / 6%)}

/* Buttons on light */
body.light-mode .btn--primary{color:#fff}
body.light-mode .btn--outline{border-color:rgb(184 134 11 / 40%);color:var(--gold)}
body.light-mode .btn--outline:hover{background:rgb(184 134 11 / 6%)}
body.light-mode .btn--dark{background:#1A1A2E;color:#fff;border-color:#2D3748}

/* Service features */
body.light-mode .service-feature{background:linear-gradient(135deg,#FFF 0%,#FFF9F0 100%);border-color:rgb(184 134 11 / 10%);box-shadow:0 4px 16px rgb(184 134 11 / 5%)}
body.light-mode .service-feature:hover{border-color:rgb(184 134 11 / 25%);box-shadow:0 8px 32px rgb(184 134 11 / 10%)}
body.light-mode .service-feature h3{color:#1A1A2E}
body.light-mode .service-feature p{color:#4A5568}

/* Performance section */
body.light-mode .perf-point p{color:#2D3748}
body.light-mode .perf-point strong{color:#1A1A2E}
body.light-mode .perf-screenshot__frame{background:#FFF;border-color:#D4E4F7}
body.light-mode .perf-screenshot__placeholder{color:#4A5568}

/* FAQ on dark sections */
body.light-mode .section--dark .faq-item{border-color:rgb(0 0 0 / 8%)}
body.light-mode .section--dark .faq-item:first-child{border-top-color:rgb(0 0 0 / 8%)}
body.light-mode .section--dark .faq-q{color:#1A1A2E}
body.light-mode .section--dark .faq-q:hover{color:var(--gold)}
body.light-mode .section--dark .faq-q__icon{border-color:rgb(0 0 0 / 15%);color:#999}
body.light-mode .section--dark .faq-a__inner{color:#4A5568}

/* CTA / Contact form */
body.light-mode .cta{background:var(--dark)}
body.light-mode .cta::before{background:radial-gradient(ellipse at 30% 50%,rgb(255 183 77 / 6%) 0%,transparent 60%)}
body.light-mode .cta__info h2{color:#1A1A2E}
body.light-mode .cta__info h2 em{color:var(--gold)}
body.light-mode .cta__info p{color:#4A5568}
body.light-mode .cta__detail{color:#2D3748}
body.light-mode .cta__response{background:rgb(184 134 11 / 8%);border-color:rgb(184 134 11 / 15%)}
body.light-mode .cta__form{background:linear-gradient(135deg,#FFF 0%,#FFF9F0 100%);border-color:rgb(184 134 11 / 12%);box-shadow:0 8px 32px rgb(184 134 11 / 8%)}
body.light-mode .cta__form h3{color:#1A1A2E}
body.light-mode .form-label{color:#4A5568}
body.light-mode .form-input{background:#F7FAFC;border-color:#D4E4F7;color:#1A1A2E}
body.light-mode .form-input:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgb(184 134 11 / 10%)}
body.light-mode .form-input::placeholder{color:rgb(74 85 104 / 40%)}

/* Sunrise CTA — warm golden glow */
body.light-mode .sunrise{background:linear-gradient(180deg,#E0ECFA 0%,#F0E0C4 60%,#F5D6A0 100%)}
body.light-mode .sunrise::before{background:radial-gradient(ellipse at 50% 100%,rgb(255 183 77 / 25%) 0%,rgb(255 160 50 / 10%) 40%,transparent 70%)}
body.light-mode .sunrise__heading{color:#1A1A2E}
body.light-mode .sunrise__heading em{color:var(--gold)}
body.light-mode .sunrise__sub{color:#4A5568}
body.light-mode .sunrise .orb--left{background:radial-gradient(circle,rgb(255 183 77 / 8%) 0%,transparent 70%)}
body.light-mode .sunrise .orb--right{background:radial-gradient(circle,rgb(255 183 77 / 6%) 0%,transparent 70%)}

/* Footer — STAYS DARK (the ground beneath the sky) */
body.light-mode .footer{background:#1A1A2E;border-top-color:rgb(255 255 255 / 8%)}
body.light-mode .footer__logo{color:#fff}
body.light-mode .footer__tagline{color:rgb(255 255 255 / 75%)}
body.light-mode .footer__col-title{color:#fff}
body.light-mode .footer__col-links a{color:rgb(255 255 255 / 70%)}
body.light-mode .footer__col-links a:hover{color:#D4A017}
body.light-mode .footer__contact-item{color:rgb(255 255 255 / 70%)}
body.light-mode .footer__contact-item svg{color:#D4A017}
body.light-mode .footer__bottom{border-top-color:rgb(255 255 255 / 8%)}
body.light-mode .footer__copy{color:rgb(255 255 255 / 50%)}
body.light-mode .footer__legal a{color:rgb(255 255 255 / 50%)}
body.light-mode .footer__legal a:hover{color:#D4A017}

/* Scroll progress — amber to coral in day */
body.light-mode .scroll-progress{background:linear-gradient(90deg,#B8860B,#E07C4F)}

/* Device image */
body.light-mode .device__img{filter:drop-shadow(0 25px 60px rgb(0 0 0 / 15%)) drop-shadow(0 0 40px rgb(184 134 11 / 6%))}

/* Wave dividers — must use !important to beat inline fill attributes */
body.light-mode .wave-divider svg path{fill:var(--dark) !important;transition:fill 0.4s ease}

/* --- Phase 3: Day Mode Ambient Elements --- */

/* Cloud wisps — real SVG cloud images, only visible in day mode */
.cloud-wisp{pointer-events:none;z-index:0;transition:opacity 0.6s}
body.light-mode .cloud-wisp{opacity:var(--day-opacity,0.5) !important}

@keyframes cloudDrift{
  0%{transform:translate(0,0)}
  25%{transform:translate(clamp(15px,4vw,40px),clamp(-5px,-1vw,-12px))}
  50%{transform:translate(clamp(30px,8vw,80px),0)}
  75%{transform:translate(clamp(15px,4vw,40px),clamp(5px,1vw,12px))}
  100%{transform:translate(0,0)}
}

/* Sunbeams — visible warm light rays in day mode */
.sunbeam{position:absolute;height:5px;border-radius:4px;pointer-events:none;z-index:0;opacity:0;transition:opacity 0.6s}
body.light-mode .sunbeam{opacity:1}

/* Hide night elements in day mode — includes JS-generated .night-element AND static HTML .star, .shooting-star */
body.light-mode .night-element,body.light-mode .star,body.light-mode .shooting-star{opacity:0 !important;transition:opacity 0.3s}

/* Airplane — flies bottom-left to upper-right matching its angle */
@keyframes flyDiagonal{0%{transform:translate(0,0);opacity:0}5%{opacity:0.6}85%{opacity:0.6}100%{transform:translate(110vw,-80vh);opacity:0}}
.sky-aircraft{position:absolute;pointer-events:none;z-index:1;opacity:0;transition:opacity 0.6s}
body.light-mode .sky-aircraft{opacity:1}

/* SVG planet images */
.sky-planet{pointer-events:none}

/* ====== DAY MODE INTERACTIONS ====== */

/* Nav warm glow — catches sunlight */
@keyframes navWarmGlow{0%,100%{box-shadow:0 2px 20px rgb(184 134 11 / 6%)}50%{box-shadow:0 2px 30px rgb(255 183 77 / 12%),0 1px 40px rgb(255 183 77 / 4%)}}
body.light-mode .nav{animation:navWarmGlow 6s ease-in-out infinite}
body.light-mode .nav.scrolled{animation:navWarmGlow 6s ease-in-out infinite}

/* Pain card hover — warm day interactions */
body.light-mode .pain-card:hover{transform:translateY(-8px) scale(1.02);box-shadow:0 20px 50px rgb(184 134 11 / 15%),0 0 40px rgb(255 183 77 / 8%);border-color:rgb(184 134 11 / 35%)}
body.light-mode .pain-card:hover .pain-card__icon{background:rgb(255 183 77 / 20%);transform:scale(1.1);box-shadow:0 0 20px rgb(255 183 77 / 20%)}
body.light-mode .pain-card:hover::before{background:linear-gradient(90deg,var(--gold),rgb(255 183 77 / 80%))}

/* Warm motes on hover — replace night stars */
body.light-mode .pain-card__stars span{background:rgb(255 183 77 / 60%) !important;width:3px !important;height:3px !important;box-shadow:0 0 6px rgb(255 183 77 / 30%)}
body.light-mode .pain-card:hover .pain-card__stars{opacity:1}
body.light-mode .pain-card:hover .pain-card__sun{opacity:0 !important}
body.light-mode .pain-card:hover .pain-card__icon{opacity:1;transform:scale(1.15);pointer-events:auto}

/* Pricing tier hover — warm amber glow */
body.light-mode .pricing-tier:hover{transform:translateY(-6px);box-shadow:0 16px 48px rgb(184 134 11 / 12%),0 0 30px rgb(255 183 77 / 6%);border-color:rgb(184 134 11 / 30%)}

/* Showcase card hover */
body.light-mode .showcase-card:hover{box-shadow:0 16px 40px rgb(184 134 11 / 10%),0 0 0 1px var(--gold)}

/* Button warm shine sweep */
body.light-mode .btn--primary::after{background:linear-gradient(90deg,transparent,rgb(255 220 150 / 35%),transparent)}
body.light-mode .btn--primary:hover{box-shadow:0 0 30px rgb(184 134 11 / 20%),0 8px 20px rgb(184 134 11 / 12%)}

/* Breathing warm glow — visible on light backgrounds */
@keyframes breatheWarm{0%,100%{box-shadow:0 0 24px rgb(255 183 77 / 8%),0 4px 20px rgb(184 134 11 / 4%)}50%{box-shadow:0 0 40px rgb(255 183 77 / 18%),0 0 70px rgb(255 183 77 / 8%),0 8px 30px rgb(184 134 11 / 6%)}}
body.light-mode .pricing-tier--featured{animation:breatheWarm 5s ease-in-out infinite}
body.light-mode .compare__good{animation:breatheWarm 5s ease-in-out infinite}
body.light-mode .perf-trust__score{animation:breatheWarm 5s ease-in-out infinite;border-color:var(--gold)}
body.light-mode .pricing-card{animation:breatheWarm 6s ease-in-out infinite}

/* Service feature hover */
body.light-mode .service-feature:hover{transform:translateY(-4px)}
body.light-mode .service-feature:hover .service-feature__icon{background:rgb(255 183 77 / 20%);box-shadow:0 0 12px rgb(255 183 77 / 15%)}

/* Compare vs circle */
body.light-mode .compare__vs span{background:#F0E6D0;border-color:rgb(184 134 11 / 15%)}

/* ====== SECTION GRADIENT VARIETY — each section unique ====== */
body.light-mode #why{background:linear-gradient(180deg,#E4EEF9 0%,#EDE8DC 100%)}
body.light-mode #how{background:linear-gradient(180deg,#DEEAF6 0%,#E8E0D0 50%,#F0E6D0 100%)}
body.light-mode #performance{background:linear-gradient(160deg,#E0ECF8 0%,#EAE2D4 60%,#F2E4C6 100%)}
body.light-mode #pricing{background:linear-gradient(180deg,#E2ECF6 0%,#EADEC8 100%)}

/* Ambient warm particles for day mode */
.ambient-warm-particle{position:absolute;border-radius:50%;background:radial-gradient(circle,rgb(255 183 77 / 30%) 0%,transparent 70%);pointer-events:none;z-index:0;opacity:0;transition:opacity 0.6s}
body.light-mode .ambient-warm-particle{opacity:1}

@keyframes warmDrift{0%{transform:translateY(0);opacity:0}10%{opacity:0.6}50%{transform:translateY(-60px) translateX(10px);opacity:0.4}100%{transform:translateY(-120px) translateX(-5px);opacity:0}}

/* --- Phase 4: Transition System (targeted, not universal) --- */
body.transitioning .section,body.transitioning .section--dark,body.transitioning .hero,body.transitioning .page-hero,body.transitioning .sunrise,body.transitioning .nav,body.transitioning .footer,body.transitioning .pain-card,body.transitioning .pricing-tier,body.transitioning .pricing-card,body.transitioning .compare__col,body.transitioning .compare__vs span,body.transitioning .cta,body.transitioning .cta__form,body.transitioning .service-feature,body.transitioning .form-input,body.transitioning .btn,body.transitioning .scroll-progress,body.transitioning .cursor-glow,body.transitioning .orb,body.transitioning .ambient-orb,body.transitioning .perf-screenshot__frame{transition:background-color 0.4s ease,color 0.4s ease,border-color 0.4s ease,box-shadow 0.4s ease,background 0.4s ease !important}
body.transitioning .wave-divider svg path{transition:fill 0.4s ease !important}
body.transitioning .cloud-wisp,body.transitioning .sunbeam,body.transitioning .night-element,body.transitioning .star,body.transitioning .shooting-star{transition:opacity 0.6s ease !important}


/* ====== APRIL 24 POLISH PASS ====== */
.showcase-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.6rem;position:relative;z-index:1}
.showcase-card{background:#fff;border:1px solid #E8E4DC;border-radius:28px;overflow:hidden;box-shadow:0 10px 28px rgb(17 18 27 / 5%);transition:transform .35s cubic-bezier(.16,1,.3,1),box-shadow .35s ease,border-color .35s ease}
.showcase-card:hover{transform:translateY(-6px);border-color:rgb(212 160 23 / 32%);box-shadow:0 18px 42px rgb(17 18 27 / 10%)}
.showcase-card__device{padding:0;background:#fbf7f1;aspect-ratio:2.5/1.25;overflow:hidden}
.showcase-card__device img{width:100%;height:100%;object-fit:cover;display:block}
.showcase-card__info{display:flex;align-items:center;gap:.9rem;padding:1.2rem 1.35rem;background:linear-gradient(180deg,#fff 0%,#fcfbf8 100%)}
.showcase-card__icon{width:44px;height:44px;border-radius:14px;background:rgb(212 160 23 / 8%);display:grid;place-items:center;flex:none}
.showcase-card__name{font-family:var(--font-heading);font-size:1.2rem;font-weight:700;color:var(--text-dark);letter-spacing:-.02em}

.proof-grid--portfolio{gap:1.9rem}
.proof-card--portfolio{padding:1.35rem 1.35rem 1.5rem;border-radius:28px;box-shadow:0 12px 28px rgb(17 18 27 / 6%);transition:transform .35s cubic-bezier(.16,1,.3,1),box-shadow .35s ease,border-color .35s ease}
.proof-card--portfolio:hover{transform:translateY(-6px);border-color:rgb(212 160 23 / 32%);box-shadow:0 22px 46px rgb(17 18 27 / 12%)}
.proof-card__visuals{position:relative;min-height:290px;margin-bottom:1.3rem;padding:1.2rem;border-radius:26px;background:radial-gradient(circle at top right,rgb(212 160 23 / 22%),transparent 34%),linear-gradient(180deg,#10131b 0%,#0a0d13 100%);border:1px solid rgb(255 255 255 / 6%);overflow:hidden}
.proof-card__visuals::before{content:'';position:absolute;inset:auto 4% 0;height:28%;background:linear-gradient(180deg,rgb(255 255 255 / 0%),rgb(255 255 255 / 3%));border-radius:999px;pointer-events:none}
.proof-card__visuals::after{content:'';position:absolute;inset:auto 12% 1.1rem;height:14px;border-radius:999px;background:radial-gradient(circle,rgb(244 230 201 / 22%) 0%,rgb(244 230 201 / 0%) 68%);pointer-events:none}
.proof-device--laptop{left:1.2rem;right:7.3rem;bottom:2rem;width:auto;aspect-ratio:1.48/1;border:9px solid #0e1119;border-bottom-width:24px;border-radius:18px 18px 12px 12px;background:#0d1017;box-shadow:0 22px 45px rgb(0 0 0 / 38%)}
.proof-device--laptop::after{width:114%;height:20px;bottom:-24px;background:linear-gradient(180deg,#dfd7cc 0%,#bab2a7 100%)}
.proof-device--phone{right:1.3rem;bottom:1.55rem;width:105px;aspect-ratio:.49/1;border:6px solid #0f131b;border-radius:28px;background:#0d1017;box-shadow:0 20px 34px rgb(0 0 0 / 42%)}
.proof-grid--about .proof-card__visuals{min-height:275px}

.blog-grid{grid-template-columns:repeat(auto-fit,minmax(min(100%,320px),1fr))}
.blog-card{min-width:0;border-radius:28px;box-shadow:0 12px 28px rgb(17 18 27 / 6%)}
.blog-card__img{padding:0;background:#11131b;border-bottom:1px solid rgb(255 255 255 / 6%);aspect-ratio:5/3.1;overflow:hidden;text-decoration:none;color:inherit;transition:filter 0.3s cubic-bezier(0.16,1,0.3,1)}
.blog-card__img img{width:100%;height:100%;display:block;object-fit:cover;transition:transform 0.45s cubic-bezier(0.16,1,0.3,1)}
.blog-card:hover .blog-card__img img{transform:scale(1.035)}
.blog-card__img:focus-visible{outline:3px solid rgb(212 160 23 / 42%);outline-offset:-6px}
.blog-card__body{padding:1.55rem 1.55rem 1.8rem}
.blog-card__title{font-size:1.22rem}
.article-cover{margin:0 0 2rem;border-radius:28px;overflow:hidden;border:1px solid #E8E4DC;box-shadow:0 18px 40px rgb(17 18 27 / 8%)}
.article-cover img{display:block;width:100%;height:auto}

@media(width <= 1024px){
  .showcase-grid,.proof-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .blog-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(width <= 768px){
  .showcase-grid,.proof-grid,.blog-grid{grid-template-columns:1fr}
  .page-hero__title{max-width:100%;overflow-wrap:anywhere}
  .page-hero__title em{display:block}
  .showcase-card__device{aspect-ratio:5/3}
  .proof-card__visuals{min-height:250px;padding:1rem}
  .proof-device--laptop{left:.85rem;right:5.9rem;bottom:1.6rem;border-width:7px;border-bottom-width:18px}
  .proof-device--phone{right:.9rem;bottom:1.2rem;width:86px;border-width:5px}
  .proof-grid--about .proof-card__visuals{min-height:250px}
  .article__next{padding:1.15rem;margin:2rem 0 1.5rem}
  .article__next-grid{grid-template-columns:1fr}
  .article__next-link{min-height:58px}
  .article__meta{gap:0.6rem;font-size:0.78rem}
  .article__meta span:last-child{flex-basis:100%}
  .article__answer,.article__proof,.article__faq{padding:1.15rem}
}

@media(width <= 420px){
  .page-hero__title{font-size:clamp(1.7rem,7vw,2.05rem);line-height:1.08;max-width:100%;overflow-wrap:break-word;letter-spacing:-0.02em}
  .page-hero__sub{max-width:100%;overflow-wrap:break-word}
  .showcase-card__info{padding:1rem 1rem 1.1rem}
  .showcase-card__name{font-size:1.08rem}
  .proof-card--portfolio{padding:1rem}
  .proof-card__visuals{min-height:214px;border-radius:22px}
  .proof-device--laptop{left:.72rem;right:4.8rem;bottom:1.45rem}
  .proof-device--phone{right:.68rem;bottom:1rem;width:74px}
  .blog-card__body{padding:1.25rem 1.2rem 1.4rem}
  .article-cover{border-radius:22px}
}


/* ====== SHOWCASE REFINEMENT ====== */
.proof-showcase .proof-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:3rem;align-items:start}
.proof-showcase .proof-card{background:transparent;border:none;border-radius:0;box-shadow:none;padding:0}
.proof-showcase .proof-card:hover{transform:none;box-shadow:none;border-color:transparent}
.proof-showcase .proof-card__visuals{position:relative;min-height:280px;margin:0 0 1.6rem;padding:0;border:none;border-radius:0;background:transparent;overflow:visible}
.proof-showcase .proof-card__visuals::before,.proof-showcase .proof-card__visuals::after{display:none}
.proof-showcase .proof-device img{object-fit:cover;object-position:top center}
.proof-showcase .proof-device--laptop{left:0;right:auto;bottom:1rem;width:min(86%,420px);aspect-ratio:1.56/1;border:8px solid #0f131b;border-bottom-width:20px;border-radius:16px 16px 10px 10px;background:#080b11;box-shadow:0 18px 32px rgb(0 0 0 / 35%)}
.proof-showcase .proof-device--laptop::before{content:'';position:absolute;top:0.45rem;left:50%;width:10px;height:10px;margin-left:-5px;border-radius:50%;background:rgb(255 255 255 / 16%);z-index:2}
.proof-showcase .proof-device--laptop::after{content:'';position:absolute;left:50%;bottom:-18px;transform:translateX(-50%);width:112%;height:16px;border-radius:0 0 18px 18px;background:linear-gradient(180deg,#ddd5ca 0%,#b9b0a4 100%)}
.proof-showcase .proof-device--phone{right:0.2rem;bottom:1rem;width:92px;aspect-ratio:.49/1;border:5px solid #0f131b;border-radius:24px;background:#080b11;box-shadow:0 16px 28px rgb(0 0 0 / 36%)}
.proof-showcase .proof-device--phone::before{content:'';position:absolute;top:9px;left:50%;transform:translateX(-50%);width:34%;height:8px;border-radius:999px;background:rgb(255 255 255 / 16%);z-index:2}
.proof-showcase .proof-card__label{color:rgb(212 160 23 / 90%)}
.proof-showcase .proof-card__title{color:#fff;font-size:1.65rem;margin-bottom:.85rem;letter-spacing:-.03em}
.proof-showcase .proof-card__text,.proof-showcase .proof-card__list li{color:rgb(247 242 232 / 78%)}
.proof-showcase .proof-card__list{margin:1rem 0 0;padding:0;list-style:none;display:grid;gap:.55rem}
.proof-showcase .proof-card__list li{padding-left:1rem;position:relative}
.proof-showcase .proof-card__list li::before{content:'';position:absolute;left:0;top:.7rem;width:5px;height:5px;border-radius:50%;background:var(--gold)}
.proof-showcase .proof-card__list a{color:#fff;text-decoration:underline;text-underline-offset:3px}
.proof-showcase .proof-card__list a:hover{color:var(--gold-light)}

@media(width <= 1024px){
  .proof-showcase .proof-grid{grid-template-columns:1fr;gap:3.2rem}
  .proof-showcase .proof-card__visuals{min-height:300px}
}

@media(width <= 768px){
  .proof-showcase .proof-card__visuals{min-height:230px}
  .proof-showcase .proof-device--laptop{width:min(82%,320px);border-width:6px;border-bottom-width:15px}
  .proof-showcase .proof-device--phone{width:74px;right:0}
  .proof-showcase .proof-card__title{font-size:1.35rem}
}


/* ====== SHOWCASE LAPTOP + LIGHT MODE FIX ====== */
.proof-showcase .proof-device--laptop{width:min(87%,430px);aspect-ratio:1.64/1;border:7px solid #0d1118;border-bottom-width:28px;border-radius:14px 14px 9px 9px;box-shadow:0 20px 36px rgb(0 0 0 / 34%)}
.proof-showcase .proof-device--laptop::after{width:120%;height:20px;bottom:-22px;border-radius:0 0 20px 20px;background:linear-gradient(180deg,#e0d8ce 0%,#b6aea3 100%);box-shadow:0 10px 22px rgb(0 0 0 / 18%)}
.proof-showcase .proof-device--phone{bottom:.9rem}

body.light-mode .proof-showcase{background:linear-gradient(180deg,#f5efe4 0%,#fbf7ef 100%)}
body.light-mode .proof-showcase .proof-card__label{color:#9a6a04}
body.light-mode .proof-showcase .proof-card__title{color:#1a1a2e}

body.light-mode .proof-showcase .proof-card__text,
body.light-mode .proof-showcase .proof-card__list li{color:#4a5568}
body.light-mode .proof-showcase .proof-card__list a{color:#8b6914}
body.light-mode .proof-showcase .proof-card__list a:hover{color:#b8860b}
body.light-mode .proof-showcase .proof-device--laptop{background:#0d1118;border-color:#111722;box-shadow:0 18px 32px rgb(17 18 27 / 18%)}
body.light-mode .proof-showcase .proof-device--phone{background:#0d1118;border-color:#111722;box-shadow:0 16px 28px rgb(17 18 27 / 18%)}

@media(width <= 768px){
  .proof-showcase .proof-device--laptop{width:min(84%,330px);border-width:6px;border-bottom-width:22px}
  .proof-showcase .proof-device--laptop::after{height:16px;bottom:-18px}
}
