/* ============================================================
   Greentick — hero.css   ·   "Nordic Cinematic Finance" concept
   Standalone premium design system for /hero-website.
   No framework, no build step. Brand tokens inherited from the
   production site, extended with a cinematic dark palette + VFX.
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand (from production main.css) */
  --green-900: #0F3D2E;
  --green-700: #1F7A55;
  --green-500: #2FA577;
  --green-300: #6FD3A5;
  --green-100: #E6F4EC;

  /* Cinematic dark base */
  --forest-950: #061410;
  --forest-900: #0A2218;
  --forest-850: #0C2A1E;
  --forest-800: #103325;

  /* Glow / VFX accents (used sparingly) */
  --glow:       #2FE6A0;   /* bright emerald — light & sheen */
  --glow-teal:  #1FC6B0;   /* aurora cool edge */
  --glow-cool:  #4F86F7;   /* faint northern-lights violet-blue */

  /* Text on dark */
  --t-hi:  #F1F7F4;
  --t-mid: #A9BFB4;
  --t-low: #74897E;

  /* Light surfaces */
  --ink-900: #0B1410;
  --ink-700: #2D3A33;
  --ink-500: #6B7872;
  --ink-300: #B9C4BE;
  --ink-200: #E5E9E7;
  --ink-50:  #F6F9F7;
  --white:   #FFFFFF;

  /* Glass */
  --glass-bg:     rgba(255, 255, 255, 0.045);
  --glass-bg-2:   rgba(255, 255, 255, 0.07);
  --glass-line:   rgba(255, 255, 255, 0.10);
  --glass-line-2: rgba(255, 255, 255, 0.16);

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

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

  /* Layout */
  --content-max: 1200px;
  --pad: clamp(20px, 5vw, 48px);

  /* Radii */
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-pill: 999px;

  /* Motion */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 160ms;
  --t-base: 280ms;
  --t-slow: 600ms;

  /* Shadows */
  --shadow-glow: 0 0 0 1px rgba(47,230,160,0.12), 0 24px 60px -20px rgba(47,230,160,0.28);
  --shadow-card: 0 24px 60px -28px rgba(0,0,0,0.55);
  --shadow-lift: 0 40px 90px -40px rgba(0,0,0,0.65);
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--forest-950);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: rgba(47,230,160,0.28); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Visually hidden, but focusable (skip link) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.sr-only:focus {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  width: auto; height: auto; padding: 12px 18px; margin: 0;
  clip: auto; white-space: normal;
  background: var(--green-700); color: #fff; border-radius: var(--r-pill); font-weight: 600;
}

/* ---------- 3. Type scale (fluid) ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.6rem, 1.2rem + 5.4vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 1.2rem + 2.8vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.6rem); letter-spacing: -0.02em; }
h4 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-300);
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-300));
}
.eyebrow.center::before { display: none; }

.lead { font-size: clamp(1.075rem, 1rem + 0.5vw, 1.3rem); line-height: 1.55; }
.mono { font-family: var(--font-mono); }
.gradient-text {
  background: linear-gradient(100deg, var(--green-300) 0%, var(--glow) 50%, var(--green-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 4. Layout ---------- */
.container { width: 100%; max-width: var(--content-max); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
/* offset anchor landings for the fixed header */
:where(#services, #why, #pricing, #team, #contact, #main) { scroll-margin-top: 92px; }
/* tighter services head so cards peek when landing from "See services" */
#services .section-head { margin-bottom: clamp(28px, 3.5vw, 48px); }
#services .section-head h2 { font-size: clamp(1.6rem, 1.15rem + 1.9vw, 2.5rem); }
.section-head h2 { margin-block: var(--s-4) 0; }
.section-head .sub { margin-top: var(--s-4); font-size: 1.075rem; }

/* Light vs dark section surfaces */
.section--light { background: var(--ink-50); color: var(--ink-700); }
.section--light h2, .section--light h3 { color: var(--green-900); }
.section--paper { background: var(--white); color: var(--ink-700); }
.section--paper h2, .section--paper h3 { color: var(--green-900); }
.section--dark { background: var(--forest-950); color: var(--t-mid); }
.section--dark h2, .section--dark h3 { color: var(--t-hi); }
.section--light .eyebrow,
.section--paper .eyebrow { color: var(--green-700); }
.section--light .eyebrow::before,
.section--paper .eyebrow::before { background: linear-gradient(90deg, transparent, var(--green-700)); }

/* Smooth tonal seam between dark hero and light body */
.seam-fade {
  height: 120px; margin-top: -120px; position: relative; z-index: 2;
  background: linear-gradient(180deg, transparent, var(--ink-50));
  pointer-events: none;
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  height: 52px; padding-inline: var(--s-6);
  font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em;
  border: 1px solid transparent; border-radius: var(--r-pill);
  white-space: nowrap; position: relative; overflow: hidden;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease),
              background var(--t-base) var(--ease), color var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.btn .arrow { transition: transform var(--t-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: linear-gradient(180deg, var(--green-500), var(--green-700));
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, var(--shadow-glow);
}
.btn-primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 0 0 1px rgba(47,230,160,0.2), 0 30px 70px -22px rgba(47,230,160,0.45); transform: translateY(-2px); }
/* moving sheen */
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  transform: translateX(-120%);
}
.btn-primary:hover::after { animation: sheen 900ms var(--ease) forwards; }
@keyframes sheen { to { transform: translateX(120%); } }

.btn-ghost {
  background: var(--glass-bg-2); color: var(--t-hi);
  border-color: var(--glass-line-2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); transform: translateY(-2px); }

.btn-dark { background: var(--green-900); color: var(--white); }
.btn-dark:hover { background: #0b2c20; transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-light { background: var(--white); color: var(--green-900); }
.btn-light:hover { background: var(--green-100); transform: translateY(-2px); }
.btn-lg { height: 58px; padding-inline: var(--s-7); font-size: 16.5px; }

/* ---------- 6. Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease), backdrop-filter var(--t-base);
  border-bottom: 1px solid transparent;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-5);
  height: 76px;
}
.site-header.scrolled {
  background: rgba(6, 20, 16, 0.72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--glass-line);
}
.brand { display: inline-flex; align-items: center; height: 40px; }
.brand img { height: 30px; width: auto; }
.site-nav { display: none; gap: var(--s-6); align-items: center; }
.site-nav a {
  color: var(--t-mid); font-size: 15px; font-weight: 500; position: relative; padding-block: 4px;
  transition: color var(--t-fast) var(--ease);
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--glow); transition: width var(--t-base) var(--ease-out);
}
.site-nav a:hover { color: var(--t-hi); }
.site-nav a:hover::after { width: 100%; }
.header-cta { display: none; align-items: center; gap: var(--s-3); }
.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--glass-line-2); border-radius: var(--r-pill); overflow: hidden;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
}
.lang-switch a { padding: 7px 11px; color: var(--t-low); transition: background var(--t-fast), color var(--t-fast); }
.lang-switch a.active { background: rgba(47,230,160,0.16); color: var(--green-300); }
.lang-switch a:not(.active):hover { color: var(--t-hi); }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--glass-bg-2); border: 1px solid var(--glass-line-2);
  border-radius: 12px;
}
.nav-toggle .ln { width: 18px; height: 1.5px; background: var(--t-hi); border-radius: 2px; transition: transform var(--t-base) var(--ease), opacity var(--t-base); }
.nav-toggle[aria-expanded="true"] .ln:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .ln:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .ln:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 76px 0 auto 0; z-index: 99;
  background: rgba(6, 20, 16, 0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-line);
  padding: var(--s-5) var(--pad) var(--s-7);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a { display: block; padding: var(--s-4) 0; color: var(--t-hi); font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--glass-line); }
.mobile-nav .btn { width: 100%; margin-top: var(--s-5); }

@media (min-width: 940px) {
  .site-nav, .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- 7. HERO ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding-block: clamp(108px, 12vh, 150px) clamp(56px, 8vw, 104px);
  background:
    radial-gradient(120% 90% at 50% -10%, var(--forest-800) 0%, var(--forest-900) 38%, var(--forest-950) 78%);
}
/* aurora layers — soft Nordic glow band, kept subtle behind the flow lines */
.hero-aurora { position: absolute; inset: -20% -10% auto -10%; height: 90%; z-index: -3; filter: blur(70px); opacity: 0.45; }
.hero-aurora span { position: absolute; display: block; border-radius: 50%; mix-blend-mode: screen; }
.hero-aurora .a1 { top: -6%; left: 8%;  width: 46vw; height: 46vw; background: radial-gradient(circle, rgba(47,230,160,0.42), transparent 62%); animation: drift1 18s var(--ease) infinite alternate; }
.hero-aurora .a2 { top: -16%; right: 4%; width: 42vw; height: 42vw; background: radial-gradient(circle, rgba(31,198,176,0.34), transparent 62%); animation: drift2 22s var(--ease) infinite alternate; }
.hero-aurora .a3 { top: 18%; left: 36%; width: 36vw; height: 36vw; background: radial-gradient(circle, rgba(79,134,247,0.22), transparent 60%); animation: drift3 26s var(--ease) infinite alternate; }
@keyframes drift1 { to { transform: translate3d(6%, 5%, 0) scale(1.12); } }
@keyframes drift2 { to { transform: translate3d(-7%, 7%, 0) scale(1.08); } }
@keyframes drift3 { to { transform: translate3d(4%, -6%, 0) scale(1.15); } }

/* fine grid + vignette */
.hero-grid {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 25%, #000 35%, transparent 75%);
          mask-image: radial-gradient(120% 80% at 50% 25%, #000 35%, transparent 75%);
}
.hero-noise { position: absolute; inset: 0; z-index: -1; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.5) 0.5px, transparent 0.5px);
  background-size: 3px 3px; mix-blend-mode: overlay; opacity: 0.05;
}

/* financial flow lines + checkpoint pulses (calm, accounting-native) */
.hero-flow {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(130% 90% at 60% 35%, #000 45%, transparent 82%);
          mask-image: radial-gradient(130% 90% at 60% 35%, #000 45%, transparent 82%);
}
.hero-flow .fl {
  fill: none; stroke: var(--glow-teal); stroke-width: 1; vector-effect: non-scaling-stroke;
  stroke-linecap: round; opacity: 0.16; stroke-dasharray: 2 17;
  animation: flow-drift 11s linear infinite;
}
.hero-flow .fl:nth-child(2) { stroke: var(--green-500); animation-duration: 14s; opacity: 0.13; }
.hero-flow .fl:nth-child(3) { animation-duration: 17s; opacity: 0.12; }
.hero-flow .fl:nth-child(4) { stroke: var(--green-300); animation-duration: 13s; opacity: 0.10; }
.hero-flow .fl:nth-child(5) { animation-duration: 19s; opacity: 0.12; }
.hero-flow .fl:nth-child(6) { stroke: var(--green-500); animation-duration: 15s; opacity: 0.10; }
@keyframes flow-drift { to { stroke-dashoffset: -190; } }
.hero-flow .fn {
  fill: var(--glow); transform-box: fill-box; transform-origin: center;
  filter: drop-shadow(0 0 4px rgba(47,230,160,0.8));
  animation: node-pulse 4.5s ease-in-out infinite;
}
.hero-flow .fn:nth-child(2) { animation-delay: 0.9s; }
.hero-flow .fn:nth-child(3) { animation-delay: 1.8s; }
.hero-flow .fn:nth-child(4) { animation-delay: 2.6s; }
.hero-flow .fn:nth-child(5) { animation-delay: 3.3s; }
.hero-flow .fn:nth-child(6) { animation-delay: 1.3s; }
@keyframes node-pulse { 0%, 100% { opacity: 0.18; transform: scale(0.7); } 50% { opacity: 0.85; transform: scale(1.15); } }

.hero-inner { display: grid; gap: clamp(48px, 6vw, 80px); align-items: center; }
@media (min-width: 1000px) { .hero-inner { grid-template-columns: 1.05fr 0.95fr; } }

.hero-pill {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 7px 14px 7px 10px; border-radius: var(--r-pill);
  background: var(--glass-bg-2); border: 1px solid var(--glass-line-2);
  font-size: 13px; color: var(--t-mid); margin-bottom: var(--s-5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--glow); box-shadow: 0 0 0 4px rgba(47,230,160,0.18); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(47,230,160,0.18); } 50% { box-shadow: 0 0 0 7px rgba(47,230,160,0.04); } }
.hero-pill b { color: var(--t-hi); font-weight: 600; }

.hero h1 { color: var(--t-hi); max-width: 20ch; font-size: clamp(2.05rem, 1.3rem + 2.3vw, 3.35rem); line-height: 1.06; }
.hero h1 .accent { display: inline; }
.hero .lead { color: var(--t-mid); max-width: 54ch; margin-top: var(--s-4); font-size: clamp(1rem, 0.95rem + 0.35vw, 1.18rem); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.hero-assure { display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-5); font-size: 13.5px; color: var(--t-low); }
.hero-assure .tick { color: var(--glow); }
/* hero trust line */
.hero-trust { display: flex; align-items: flex-start; gap: var(--s-2); margin-top: var(--s-4); font-size: 13px; color: var(--t-low); line-height: 1.45; }
.hero-trust .tick { color: var(--glow); flex-shrink: 0; }
.hero-trust b { color: var(--t-mid); font-weight: 600; }

/* hero stat strip */
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  margin-top: clamp(24px, 3vw, 40px);
  background: var(--glass-line); border: 1px solid var(--glass-line);
  border-radius: var(--r-md); overflow: hidden;
}
@media (min-width: 560px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stats .stat { background: rgba(8,24,18,0.6); padding: var(--s-4) var(--s-4); }
.hero-stats .stat .n { font-family: var(--font-mono); font-size: clamp(1.2rem, 0.95rem + 1vw, 1.6rem); font-weight: 600; color: var(--t-hi); letter-spacing: -0.02em; white-space: nowrap; }
.hero-stats .stat .l { font-size: 12px; color: var(--t-low); margin-top: 4px; line-height: 1.35; }

/* hero visual — floating glass console */
.hero-visual { position: relative; perspective: 1400px; }
.console {
  position: relative; border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(20,46,35,0.9), rgba(9,26,19,0.92));
  border: 1px solid var(--glass-line-2);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(47,230,160,0.05) inset;
  padding: var(--s-5);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transform: rotateX(6deg) rotateY(-7deg);
  transform-style: preserve-3d;
}
.console-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-4); }
.console-top .dots { display: flex; gap: 6px; }
.console-top .dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.console-top .tag { font-family: var(--font-mono); font-size: 11px; color: var(--green-300); letter-spacing: 0.05em; }
.console h4 { color: var(--t-hi); font-size: 14px; }
.console .muted { color: var(--t-low); font-size: 12px; }

.ledger-row {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--glass-line); border-radius: 12px;
  background: rgba(255,255,255,0.025); margin-bottom: var(--s-3);
}
.ledger-row:last-child { margin-bottom: 0; }
.ledger-row .ic {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center; color: var(--green-300);
  background: rgba(47,230,160,0.10); border: 1px solid rgba(47,230,160,0.18);
}
.ledger-row .ic svg { width: 17px; height: 17px; }
.ledger-row .body { flex: 1; min-width: 0; }
.ledger-row .body .t { display: block; color: var(--t-hi); font-size: 13.5px; font-weight: 500; line-height: 1.3; }
.ledger-row .body .s { display: block; color: var(--t-low); font-size: 11.5px; line-height: 1.3; margin-top: 1px; }
.badge { font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; padding: 4px 9px; border-radius: var(--r-pill); white-space: nowrap; }
.badge.ok { color: var(--glow); background: rgba(47,230,160,0.12); border: 1px solid rgba(47,230,160,0.22); }
.badge.due { color: #FFCE85; background: rgba(255,180,80,0.10); border: 1px solid rgba(255,180,80,0.22); }

.console-progress { margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--glass-line); }
.console-progress .pr-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--s-3); }
.console-progress .pr-top .lab { font-size: 12px; color: var(--t-mid); }
.console-progress .pr-top .val { font-family: var(--font-mono); font-size: 12px; color: var(--green-300); }
.track { height: 7px; border-radius: var(--r-pill); background: rgba(255,255,255,0.07); overflow: hidden; }
.track .fill { height: 100%; width: 92%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--green-500), var(--glow)); box-shadow: 0 0 14px rgba(47,230,160,0.5); }

/* floating chips around console */
.float-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: var(--s-2);
  padding: 10px 14px; border-radius: 14px;
  background: rgba(10,28,21,0.82); border: 1px solid var(--glass-line-2);
  box-shadow: var(--shadow-card); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  font-size: 12.5px; color: var(--t-hi); white-space: nowrap;
}
.float-chip .mk { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--green-700); color: #fff; }
.float-chip .mk svg { width: 15px; height: 15px; }
.float-chip small { display: block; color: var(--t-low); font-size: 10.5px; }
.float-chip.c1 { top: -22px; left: -28px; animation: floaty 6s var(--ease) infinite; }
.float-chip.c2 { bottom: 36px; right: -34px; animation: floaty 7s var(--ease) infinite 0.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 520px) { .float-chip.c1 { left: -8px; top: -16px; } .float-chip.c2 { right: -6px; } }

/* ---------- 8. Marquee trust strip ---------- */
.marquee-wrap { padding-block: clamp(40px, 5vw, 64px); border-block: 1px solid var(--glass-line); background: var(--forest-950); position: relative; }
.marquee-label { text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--t-low); margin-bottom: var(--s-6); }
.marquee { display: flex; gap: var(--s-8); width: max-content; animation: scroll-x 32s linear infinite; }
.marquee-mask { -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); overflow: hidden; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
.marquee .item { font-size: 19px; font-weight: 600; color: var(--t-low); letter-spacing: -0.01em; transition: color var(--t-base); white-space: nowrap; }
.marquee .item:hover { color: var(--green-300); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- 9. Value pillars ---------- */
.pillars { display: grid; gap: var(--s-5); }
@media (min-width: 760px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { padding: var(--s-6); border-radius: var(--r-md); background: var(--white); border: 1px solid var(--ink-200); }
.pillar .pic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--green-100); color: var(--green-700); margin-bottom: var(--s-4); }
.pillar .pic svg { width: 24px; height: 24px; }
.pillar h3 { color: var(--green-900); font-size: 1.2rem; margin-bottom: var(--s-2); }
.pillar p { color: var(--ink-700); font-size: 15.5px; line-height: 1.6; }

/* ---------- 10. Services ---------- */
.svc-grid { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  position: relative; display: flex; flex-direction: column; gap: var(--s-3);
  padding: var(--s-6); border-radius: var(--r-md); overflow: hidden;
  background: var(--glass-bg); border: 1px solid var(--glass-line);
  color: var(--t-mid); isolation: isolate;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base), background var(--t-base);
}
/* pointer-following glow */
.svc-card::before {
  content: ""; position: absolute; z-index: -1; inset: -1px;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 0%), rgba(47,230,160,0.16), transparent 60%);
  opacity: 0; transition: opacity var(--t-base) var(--ease);
}
.svc-card:hover { transform: translateY(-4px); border-color: rgba(47,230,160,0.35); background: var(--glass-bg-2); }
.svc-card:hover::before { opacity: 1; }
.svc-card .ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  color: var(--green-300); background: rgba(47,230,160,0.08); border: 1px solid rgba(47,230,160,0.18);
  transition: transform var(--t-base) var(--ease-out);
}
.svc-card:hover .ic { transform: scale(1.06) rotate(-3deg); }
.svc-card .ic svg { width: 24px; height: 24px; }
.svc-card h3 { color: var(--t-hi); font-size: 1.22rem; }
.svc-card p { font-size: 14.5px; line-height: 1.6; }
.svc-card .more { margin-top: auto; padding-top: var(--s-3); display: inline-flex; align-items: center; gap: 6px; color: var(--green-300); font-weight: 600; font-size: 13.5px; }
.svc-card .more .arrow { transition: transform var(--t-base) var(--ease-out); }
.svc-card:hover .more .arrow { transform: translateX(4px); }

/* ---------- 11. Why — split feature ---------- */
.split { display: grid; gap: clamp(40px, 5vw, 72px); align-items: center; }
@media (min-width: 940px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse > :first-child { order: 2; } }
.feature-list { display: grid; gap: var(--s-5); margin-top: var(--s-6); }
.feature-item { display: flex; gap: var(--s-4); }
.feature-item .fnum {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  color: var(--green-900); background: var(--green-100); border: 1px solid rgba(31,122,85,0.18);
}
.feature-item h4 { color: var(--green-900); font-size: 1.075rem; margin-bottom: 4px; }
.feature-item p { color: var(--ink-700); font-size: 15px; line-height: 1.6; }

/* glass quote / proof panel (dark on light) */
.proof-panel {
  position: relative; border-radius: var(--r-lg); padding: clamp(28px, 4vw, 48px); overflow: hidden;
  background: radial-gradient(120% 120% at 0% 0%, var(--forest-800), var(--forest-950));
  border: 1px solid var(--glass-line-2); color: var(--t-mid);
  box-shadow: var(--shadow-card);
}
.proof-panel .glow-orb { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(47,230,160,0.3), transparent 65%); top: -90px; right: -70px; filter: blur(20px); }
.proof-panel .qmark { font-family: Georgia, serif; font-size: 64px; line-height: 0.6; color: var(--green-300); opacity: 0.5; }
.proof-panel blockquote { margin: var(--s-4) 0 0; font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem); line-height: 1.4; color: var(--t-hi); font-weight: 500; letter-spacing: -0.01em; }
.proof-panel .by { margin-top: var(--s-5); display: flex; align-items: center; gap: var(--s-3); }
.proof-panel .by .av { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--glass-line-2); }
.proof-panel .by .nm { color: var(--t-hi); font-weight: 600; font-size: 14.5px; }
.proof-panel .by .rl { color: var(--t-low); font-size: 12.5px; }

/* ---------- 12. Process timeline ---------- */
.steps { display: grid; gap: var(--s-5); counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); position: relative; } }
.step { position: relative; padding: var(--s-6); border-radius: var(--r-md); background: var(--white); border: 1px solid var(--ink-200); transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.step .sn { counter-increment: step; font-family: var(--font-mono); font-size: 13px; color: var(--green-700); font-weight: 500; letter-spacing: 0.1em; }
.step .sn::before { content: "0" counter(step); }
.step .sdot { display: block; width: 12px; height: 12px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px var(--green-100); margin: var(--s-4) 0; }
.step h3 { color: var(--green-900); font-size: 1.22rem; margin-bottom: var(--s-2); }
.step p { color: var(--ink-700); font-size: 15px; line-height: 1.6; }
/* connecting line on desktop */
@media (min-width: 860px) {
  .steps::before { content: ""; position: absolute; top: 104px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--green-300), transparent); z-index: 0; }
}

/* ---------- 13. Founders ---------- */
.founders { display: grid; gap: var(--s-5); }
@media (min-width: 860px) { .founders { grid-template-columns: 1fr 1fr; } }
.founder {
  display: flex; flex-direction: column; gap: var(--s-4); padding: clamp(24px, 3vw, 40px);
  border-radius: var(--r-lg); background: var(--glass-bg); border: 1px solid var(--glass-line);
  transition: border-color var(--t-base), transform var(--t-base) var(--ease-out);
}
.founder:hover { border-color: rgba(47,230,160,0.3); transform: translateY(-3px); }
.founder .top { display: flex; align-items: center; gap: var(--s-4); }
.founder .av { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--glass-line-2); flex-shrink: 0; }
.founder .nm { color: var(--t-hi); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.founder .rl { color: var(--green-300); font-size: 12.5px; font-family: var(--font-mono); margin-top: 3px; }
.founder p { color: var(--t-mid); font-size: 14.5px; line-height: 1.65; }
.founder .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.founder .chips span { font-size: 11.5px; font-family: var(--font-mono); color: var(--t-mid); padding: 5px 10px; border-radius: var(--r-pill); background: rgba(255,255,255,0.04); border: 1px solid var(--glass-line); }

/* ---------- 14. Pricing / fixed-fee band ---------- */
.fee-band { display: grid; gap: clamp(32px, 4vw, 56px); align-items: center; }
@media (min-width: 900px) { .fee-band { grid-template-columns: 1fr 1fr; } }
.fee-points { display: grid; gap: var(--s-4); }
.fee-point { display: flex; gap: var(--s-3); align-items: flex-start; color: var(--ink-700); font-size: 16px; }
.fee-point .ck { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--green-100); color: var(--green-700); }
.fee-point .ck svg { width: 15px; height: 15px; }
.fee-card {
  position: relative; border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); overflow: hidden;
  background: linear-gradient(170deg, var(--green-900), var(--forest-950)); color: var(--t-mid);
  border: 1px solid var(--glass-line-2); box-shadow: var(--shadow-card);
}
.fee-card .orb { position: absolute; bottom: -100px; left: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(47,230,160,0.28), transparent 65%); filter: blur(10px); }
.fee-card .k { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-300); }
.fee-card .big { color: var(--t-hi); font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem); font-weight: 700; letter-spacing: -0.025em; margin: var(--s-3) 0; line-height: 1.1; }
.fee-card p { font-size: 15px; line-height: 1.6; }
.fee-card .btn { margin-top: var(--s-6); }

/* ---------- 15. FAQ ---------- */
.faq { display: grid; gap: var(--s-3); max-width: 800px; margin-inline: auto; }
.faq-item { border: 1px solid var(--ink-200); border-radius: var(--r-md); background: var(--white); overflow: hidden; transition: border-color var(--t-base), box-shadow var(--t-base); }
.faq-item[open] { border-color: var(--green-300); box-shadow: var(--shadow-card); }
.faq-item summary { list-style: none; cursor: pointer; padding: var(--s-5) var(--s-6); display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); font-weight: 600; font-size: 1.0625rem; color: var(--green-900); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-item summary .pm::before, .faq-item summary .pm::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--green-700); transition: transform var(--t-base) var(--ease); }
.faq-item summary .pm::before { width: 14px; height: 2px; }
.faq-item summary .pm::after { width: 2px; height: 14px; }
.faq-item[open] summary .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-item .ans { padding: 0 var(--s-6) var(--s-6); color: var(--ink-700); font-size: 15.5px; line-height: 1.65; }

/* ---------- 16. Final CTA ---------- */
.cta-final { position: relative; isolation: isolate; overflow: hidden; text-align: center; border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 96px) var(--pad);
  background: radial-gradient(120% 130% at 50% 0%, var(--forest-800), var(--forest-950) 70%);
  border: 1px solid var(--glass-line-2); }
.cta-final .orb-a, .cta-final .orb-b { position: absolute; border-radius: 50%; z-index: -1; filter: blur(50px); }
.cta-final .orb-a { width: 40vw; height: 40vw; max-width: 480px; max-height: 480px; top: -20%; left: -5%; background: radial-gradient(circle, rgba(47,230,160,0.3), transparent 62%); }
.cta-final .orb-b { width: 36vw; height: 36vw; max-width: 420px; max-height: 420px; bottom: -25%; right: -5%; background: radial-gradient(circle, rgba(31,198,176,0.24), transparent 62%); }
.cta-final h2 { color: var(--t-hi); max-width: 18ch; margin-inline: auto; }
.cta-final p { color: var(--t-mid); max-width: 48ch; margin: var(--s-4) auto 0; font-size: 1.075rem; }
.cta-final .hero-cta { justify-content: center; }

/* ---------- 17. Footer ---------- */
.site-footer { background: var(--forest-950); color: var(--t-mid); padding-block: clamp(56px, 7vw, 88px) var(--s-7); border-top: 1px solid var(--glass-line); }
.footer-grid { display: grid; gap: var(--s-7); grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img { height: 30px; margin-bottom: var(--s-4); }
.footer-brand p { max-width: 34ch; font-size: 14.5px; line-height: 1.6; color: var(--t-low); }
.footer-col h4 { color: var(--t-hi); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); margin-bottom: var(--s-4); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.footer-col a { color: var(--t-mid); font-size: 14.5px; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--green-300); }
.footer-bar { margin-top: var(--s-8); padding-top: var(--s-5); border-top: 1px solid var(--glass-line); display: flex; flex-direction: column; gap: var(--s-3); font-size: 12.5px; color: var(--t-low); }
@media (min-width: 640px) { .footer-bar { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bar .legal { display: flex; gap: var(--s-5); flex-wrap: wrap; }

/* ---------- 18. Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* ---------- 20. Service detail pages ---------- */
.detail-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding-block: clamp(120px, 15vh, 172px) clamp(48px, 7vw, 88px);
  background: radial-gradient(120% 100% at 50% -20%, var(--forest-800) 0%, var(--forest-900) 45%, var(--forest-950) 85%);
}
.detail-hero .glow {
  position: absolute; z-index: -2; top: -34%; left: 50%; transform: translateX(-50%);
  width: 80vw; max-width: 900px; height: 460px;
  background: radial-gradient(circle at 50% 0, rgba(47,230,160,0.20), transparent 60%); filter: blur(40px);
}
.crumb { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--t-low); transition: color var(--t-fast) var(--ease); }
.crumb:hover { color: var(--green-300); }
.crumb .arrow { transition: transform var(--t-base) var(--ease-out); }
.crumb:hover .arrow { transform: translateX(-3px); }
.detail-hero .eyebrow { margin-top: var(--s-5); }
.detail-hero h1 { color: var(--t-hi); max-width: 20ch; margin-top: var(--s-4); font-size: clamp(2.2rem, 1.4rem + 3vw, 3.6rem); }
.detail-hero .lead { color: var(--t-mid); max-width: 60ch; margin-top: var(--s-5); }
.detail-hero .hero-cta { margin-top: var(--s-6); }

.detail-body { background: var(--ink-50); color: var(--ink-700); }
.detail-grid { display: grid; gap: clamp(40px, 5vw, 64px); align-items: start; }
@media (min-width: 960px) { .detail-grid { grid-template-columns: 1.6fr 1fr; } }

.prose h2 { color: var(--green-900); font-size: clamp(1.4rem, 1.1rem + 1vw, 1.95rem); margin-top: var(--s-8); margin-bottom: var(--s-5); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { color: var(--green-900); font-size: 1.1rem; margin-top: var(--s-5); margin-bottom: var(--s-2); }
.prose p { color: var(--ink-700); line-height: 1.65; margin-bottom: var(--s-4); }
.prose p:last-child { margin-bottom: 0; }
.prose ul { color: var(--ink-700); line-height: 1.65; margin: 0 0 var(--s-4); padding-left: var(--s-5); }
.prose li { margin-bottom: var(--s-2); }
.prose a { color: var(--green-700); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--green-500); }
.prose strong { color: var(--ink-900); }
.legal-meta { color: var(--ink-500); font-size: 14px; font-family: var(--font-mono); }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.check-list li { position: relative; padding-left: 34px; color: var(--ink-700); line-height: 1.55; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--green-100); }
.check-list li::after { content: ""; position: absolute; left: 7px; top: 8px; width: 8px; height: 5px; border-left: 2px solid var(--green-700); border-bottom: 2px solid var(--green-700); transform: rotate(-45deg); }

.howcards { display: grid; gap: var(--s-4); }
@media (min-width: 680px) { .howcards { grid-template-columns: repeat(3, 1fr); } }
.howcard { padding: var(--s-6); background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--r-md); transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base); }
.howcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.howcard .hn { font-family: var(--font-mono); font-size: 12px; color: var(--green-700); letter-spacing: 0.12em; }
.howcard h3 { color: var(--green-900); font-size: 1.1rem; margin: var(--s-3) 0 var(--s-2); }
.howcard p { color: var(--ink-700); font-size: 14.5px; line-height: 1.55; margin: 0; }

.aside-cta { position: relative; overflow: hidden; padding: clamp(24px, 3vw, 32px); border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--green-900), var(--forest-950)); color: var(--t-mid);
  border: 1px solid var(--glass-line-2); box-shadow: var(--shadow-card); }
@media (min-width: 960px) { .aside-cta { position: sticky; top: 100px; } }
.aside-cta .orb { position: absolute; bottom: -90px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(47,230,160,0.25), transparent 65%); filter: blur(10px); }
.aside-cta h3 { color: var(--t-hi); font-size: 1.2rem; margin-bottom: var(--s-3); }
.aside-cta p { font-size: 14.5px; line-height: 1.55; }
.aside-cta .btn { width: 100%; margin-top: var(--s-5); }
.aside-cta .divider2 { height: 1px; background: var(--glass-line); margin: var(--s-5) 0; border: 0; }
.aside-cta .email { font-size: 13.5px; color: var(--t-low); }
.aside-cta .email a { color: var(--green-300); font-weight: 600; }

.related-grid { display: grid; gap: var(--s-4); grid-template-columns: 1fr; margin-top: var(--s-6); }
@media (min-width: 640px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card { padding: var(--s-5) var(--s-6); border-radius: var(--r-md); background: var(--glass-bg); border: 1px solid var(--glass-line); color: var(--t-hi); font-weight: 600; display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); transition: border-color var(--t-base), transform var(--t-base) var(--ease-out), background var(--t-base); }
.related-card:hover { border-color: rgba(47,230,160,0.35); background: var(--glass-bg-2); transform: translateY(-3px); }
.related-card .arrow { color: var(--green-300); transition: transform var(--t-base) var(--ease-out); }
.related-card:hover .arrow { transform: translateX(4px); }

/* ---------- 21. Review-pass components (tag, panel label, contact form) ---------- */
.svc-tag {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-300); padding: 4px 9px; border-radius: var(--r-pill);
  background: rgba(47,230,160,0.08); border: 1px solid rgba(47,230,160,0.2);
}
.svc-card--adjacent { border-style: dashed; }
.svc-card--adjacent:hover { border-style: solid; }

.panel-label {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-300); margin-bottom: var(--s-3);
}

.contact-section { position: relative; isolation: isolate; overflow: hidden; }
.contact-section .orb-a, .contact-section .orb-b { position: absolute; border-radius: 50%; z-index: -1; filter: blur(60px); }
.contact-section .orb-a { width: 40vw; height: 40vw; max-width: 460px; max-height: 460px; top: -10%; left: -6%; background: radial-gradient(circle, rgba(47,230,160,0.16), transparent 62%); }
.contact-section .orb-b { width: 36vw; height: 36vw; max-width: 420px; max-height: 420px; bottom: -20%; right: -6%; background: radial-gradient(circle, rgba(31,198,176,0.13), transparent 62%); }

.contact-grid { display: grid; gap: clamp(24px, 4vw, 48px); align-items: start; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1.5fr 1fr; } }

.quote-form { background: var(--glass-bg); border: 1px solid var(--glass-line); border-radius: var(--r-lg); padding: clamp(20px, 3vw, 32px); min-width: 0; max-width: 100%; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); min-width: 0; }
.fgrid .field.full { grid-column: 1 / -1; }
@media (max-width: 560px) { .fgrid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; max-width: 100%; }
.field label { font-size: 13px; font-weight: 600; color: var(--t-hi); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 15px; color: var(--t-hi);
  width: 100%; min-width: 0; max-width: 100%;
  padding: 11px 13px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-line-2); border-radius: 10px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236FD3A5' stroke-width='1.6' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.field input::placeholder, .field textarea::placeholder { color: var(--t-low); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--glow); box-shadow: 0 0 0 3px rgba(47,230,160,0.18); }
.field textarea { resize: vertical; min-height: 120px; }
.field option { color: #0B1410; }
.quote-form .btn { width: 100%; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: var(--s-3) 0 0; font-size: 13.5px; color: var(--green-300); }

.contact-aside .ca-card { background: linear-gradient(170deg, var(--green-900), var(--forest-950)); border: 1px solid var(--glass-line-2); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-card); }
.contact-aside h3 { color: var(--t-hi); font-size: 1.15rem; margin-bottom: var(--s-5); }
.ca-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-4); }
.ca-list li { display: grid; gap: 3px; font-size: 14.5px; color: var(--t-mid); }
.ca-list .ca-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t-low); }
.ca-list a { color: var(--t-hi); }
.ca-list a:hover { color: var(--green-300); }
.ca-note { margin-top: var(--s-5); padding-top: var(--s-5); border-top: 1px solid var(--glass-line); font-size: 13px; color: var(--t-low); line-height: 1.55; }
.ca-note .tick { color: var(--glow); }

/* ---------- 19. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .console { transform: none; }
  .hero-aurora { opacity: 0.4; }
  .hero-flow .fn { opacity: 0.5; transform: none; }
}
