/* ==========================================================================
   TaskDoners: design system and components
   Tokens, base, layout, components. Motion lives in animations.css.
   ========================================================================== */

:root {
  /* Brand palette (from TaskDoners Website.docx) */
  --green-950: #071E11;
  --green-900: #0B2E1B;   /* deepest background, derived from primary */
  --green-800: #144D2E;   /* primary, main brand surface */
  --lime:      #87D33F;   /* secondary, accents, highlights, CTAs */
  --green-500: #19D14A;   /* supporting, hover and success states */
  --white:     #FFFFFF;   /* main text on dark */
  --white-80:  rgba(255, 255, 255, .8);
  --white-70:  rgba(255, 255, 255, .7);
  --white-50:  rgba(255, 255, 255, .5);
  --white-24:  rgba(255, 255, 255, .24);
  --white-12:  rgba(255, 255, 255, .12);
  --white-06:  rgba(255, 255, 255, .06);
  --cream:     #F4F7F0;   /* light sections */
  --ink:       #0B2E1B;   /* text on light sections */
  --ink-70:    rgba(11, 46, 27, .72);
  --ink-12:    rgba(11, 46, 27, .12);

  /* Type */
  --font-display: 'Syne', 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Motion tokens (mirrored in js/main.js) */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --dur-fast: 200ms;
  --dur-base: 600ms;
  --dur-slow: 1000ms;

  /* Layout */
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1440px;
  --radius: 24px;
  --header-h: 84px;
  --section-y: clamp(88px, 12vw, 176px);
}

/* ---------- Reset and base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
html:not(.lenis) { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: var(--green-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
main { display: block; outline: none; }
::selection { background: var(--lime); color: var(--ink); }

:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 6px; }
.section--cream :focus-visible { outline-color: var(--green-800); }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 300; padding: 12px 18px; border-radius: 999px; background: var(--lime); color: var(--ink); font-weight: 700; transform: translateY(-160%); transition: transform var(--dur-fast) var(--ease-out); }
.skip-link:focus { transform: none; }

.icon { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- Layout ---------- */

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--section-y); }
.section--tight { padding-top: clamp(40px, 6vw, 80px); }
.section--deep { background: var(--green-800); }
.section--cream { background: var(--cream); color: var(--ink); }
.section__foot { margin-top: clamp(40px, 6vw, 72px); }

.grid { display: grid; gap: clamp(16px, 2vw, 24px); grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Typography ---------- */

.display, .h1, .h2, .h3, .statement__text, .footer__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-wrap: balance;
}
.display { font-size: clamp(2.9rem, min(8.6vw, 13.5vh), 9.5rem); line-height: .94; letter-spacing: -.045em; }
.h1 { font-size: clamp(2.6rem, 7vw, 6.6rem); line-height: .98; letter-spacing: -.04em; max-width: 16ch; }
.h2 { font-size: clamp(2.1rem, 4.8vw, 4.4rem); line-height: 1.02; letter-spacing: -.035em; }
.h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.15; letter-spacing: -.02em; }
.lead { font-size: clamp(1.05rem, 1.35vw, 1.25rem); line-height: 1.6; color: var(--white-70); max-width: 56ch; }
.section--cream .lead { color: var(--ink-70); }

/* Masked words used by the reveal animation */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .1em; margin-bottom: -.1em; }
.split .w > span { display: inline-block; }
.split .hl > span { color: var(--lime); }
.section--cream .split .hl { background: linear-gradient(transparent 62%, rgba(135, 211, 63, .55) 62%, rgba(135, 211, 63, .55) 92%, transparent 92%); }
.section--cream .split .hl > span { color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--lime); margin-bottom: clamp(18px, 2.4vw, 28px);
}
.section--cream .eyebrow { color: var(--green-800); }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(135, 211, 63, .18); }
.eyebrow__num { display: inline-grid; place-items: center; min-width: 38px; height: 26px; padding: 0 8px; border-radius: 999px; border: 1px solid currentColor; font-size: .72rem; letter-spacing: .06em; }

/* Underline that grows in from the left and leaves to the right */
.ul { position: relative; }
.ul::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease-out); }
a:hover .ul::after, button:hover .ul::after, a:focus-visible .ul::after { transform: scaleX(1); transform-origin: left; }

.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.link-arrow .icon { transition: transform .5s var(--ease-out); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ---------- Buttons ---------- */

.btn {
  --mx: 0px; --my: 0px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 54px; padding: 0 12px 0 26px; border-radius: 999px;
  font-weight: 700; font-size: .98rem; letter-spacing: -.005em; white-space: nowrap;
  transform: translate3d(var(--mx), var(--my), 0);
  transition: background-color .4s var(--ease-out), color .4s var(--ease-out), border-color .4s var(--ease-out), transform .6s var(--ease-out);
}
.btn__label { display: block; overflow: hidden; height: 1.3em; line-height: 1.3em; }
.btn__roll { display: flex; flex-direction: column; transition: transform .55s var(--ease-out); }
.btn__roll > span { display: block; height: 1.3em; }
.btn:hover .btn__roll, .btn:focus-visible .btn__roll { transform: translateY(-50%); }
.btn__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(11, 46, 27, .12); transition: transform .55s var(--ease-out), background-color .4s; }
.btn__icon .icon { width: 17px; height: 17px; }
.btn:hover .btn__icon { transform: rotate(-45deg); }
.btn:hover .btn__icon:has(.icon--fill) { transform: scale(1.1) rotate(-8deg); }

.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--green-500); }
.btn--ghost { color: var(--white); box-shadow: inset 0 0 0 1px var(--white-24); }
.btn--ghost .btn__icon { background: var(--white-12); }
.btn--ghost:hover { background: var(--white); color: var(--ink); }
.btn--ghost:hover .btn__icon { background: rgba(11, 46, 27, .1); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark .btn__icon { background: rgba(255, 255, 255, .14); }
.btn--dark:hover { background: var(--green-800); }
.btn--sm { height: 44px; padding: 0 8px 0 18px; font-size: .9rem; gap: 10px; }
.btn--sm .btn__icon { width: 28px; height: 28px; }
.btn--lg { height: 62px; padding: 0 14px 0 30px; font-size: 1.04rem; }
.btn--lg .btn__icon { width: 38px; height: 38px; }
.btn--block { width: 100%; justify-content: space-between; }

/* ---------- Logo ---------- */

.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.03em; }
.logo__mark { width: 34px; height: 34px; transition: transform .7s var(--ease-out); }
.logo:hover .logo__mark { transform: rotate(-12deg) scale(1.05); }
.logo__word span { color: var(--lime); }

/* ---------- Header ---------- */

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
  transition: transform .6s var(--ease-out), background-color .5s var(--ease-out), border-color .5s, backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { background: rgba(11, 46, 27, .72); -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%); border-color: var(--white-12); }
.site-header.is-hidden { transform: translateY(-100%); }
.no-js .site-header { background: rgba(11, 46, 27, .92); border-color: var(--white-12); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__actions { display: flex; align-items: center; gap: 12px; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; font-weight: 600; font-size: .95rem; color: var(--white-80); transition: color var(--dur-fast); }
.nav__link:hover, .nav__link[aria-expanded="true"], .nav__link[aria-current="page"] { color: var(--white); }
.nav__chev { width: 15px; height: 15px; transition: transform .45s var(--ease-out); }
.nav__link[aria-expanded="true"] .nav__chev { transform: rotate(180deg); }
.has-drop { position: relative; }

@media (min-width: 1120px) {
  .nav { display: block; }
  .burger { display: none !important; }
}

/* Mega menu */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: rgba(7, 30, 17, .96); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-block: 1px solid var(--white-12);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .45s var(--ease-out), transform .55s var(--ease-out), visibility 0s linear .55s;
}
.mega__inner { display: grid; grid-template-columns: repeat(3, 1fr) 1.15fr; gap: 40px; padding-block: 44px 52px; }
.mega__col, .mega__feature { opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease-out), transform .6s var(--ease-out); transition-delay: calc(var(--ci) * 60ms); }
.mega__title { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.mega__col li a { display: block; padding: 6px 0; color: var(--white-70); font-weight: 500; transition: color var(--dur-fast), transform .4s var(--ease-out); }
.mega__col li a:hover, .mega__col li a[aria-current="page"] { color: var(--white); transform: translateX(6px); }
.mega__feature { padding: 28px; border-radius: var(--radius); background: var(--green-800); display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.mega__feature p:not(.mega__title) { color: var(--white-80); }
.mega__feature .mega__title { margin: 0; }

.drop {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px; padding: 10px;
  background: rgba(7, 30, 17, .96); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--white-12); border-radius: 18px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .4s var(--ease-out), transform .5s var(--ease-out), visibility 0s linear .5s;
}
.drop a { display: block; padding: 10px 14px; border-radius: 10px; color: var(--white-80); font-weight: 500; transition: background-color var(--dur-fast), color var(--dur-fast); }
.drop a:hover { background: var(--white-06); color: var(--white); }

.has-panel.is-open .mega, .has-panel.is-open .drop,
.no-js .has-panel:hover .mega, .no-js .has-panel:hover .drop,
.no-js .has-panel:focus-within .mega, .no-js .has-panel:focus-within .drop {
  opacity: 1; visibility: visible; transform: none; transition-delay: 0s;
}
.has-panel.is-open .mega__col, .has-panel.is-open .mega__feature,
.no-js .has-panel:hover .mega__col, .no-js .has-panel:hover .mega__feature { opacity: 1; transform: none; }

/* Burger */
.burger { position: relative; z-index: 2; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--white-24); transition: background-color .3s; }
.burger:hover { background: var(--white-06); }
.burger__lines { position: relative; width: 20px; height: 10px; }
.burger__lines span { position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: transform .6s var(--ease-out), top .6s var(--ease-out); }
.burger__lines span:first-child { top: 0; }
.burger__lines span:last-child { top: 8px; }
.burger[aria-expanded="true"] .burger__lines span:first-child { top: 4px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__lines span:last-child { top: 4px; transform: rotate(-45deg); }
.no-js .burger { display: none; }

@media (max-width: 560px) { .header__cta { display: none; } }

/* Mobile menu */
.mobile-menu {
  --mx: calc(100% - 40px); --my: 40px;
  position: fixed; inset: 0; z-index: 95; background: var(--green-800);
  clip-path: circle(0% at var(--mx) var(--my));
  transition: clip-path .8s var(--ease-in-out);
  visibility: hidden;
}
.mobile-menu.is-open { clip-path: circle(150% at var(--mx) var(--my)); visibility: visible; }
.mobile-menu.is-closing { visibility: visible; }
.mobile-menu__inner { height: 100%; overflow-y: auto; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; padding-block: calc(var(--header-h) + 24px) 40px; }
.mobile-menu__list a { display: flex; align-items: baseline; gap: 14px; padding: 6px 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 8vw, 3.4rem); line-height: 1.05; letter-spacing: -.03em; }
.mobile-menu__num { font-family: var(--font-body); font-size: .8rem; font-weight: 600; color: var(--lime); letter-spacing: .06em; }
.mobile-menu__sub { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.mobile-menu__sub a { display: inline-block; padding: 8px 14px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--white-24); font-size: .9rem; font-weight: 600; }
.mobile-menu__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.mobile-menu li, .mobile-menu__sub, .mobile-menu__foot { opacity: 0; transform: translateY(30px); transition: opacity .5s var(--ease-out), transform .7s var(--ease-out); }
.mobile-menu.is-open li, .mobile-menu.is-open .mobile-menu__sub, .mobile-menu.is-open .mobile-menu__foot { opacity: 1; transform: none; transition-delay: calc(250ms + var(--i, 0) * 55ms); }
.mobile-menu__sub li { opacity: 1; transform: none; }

/* ---------- Socials ---------- */

.socials { display: flex; gap: 10px; }
.socials a { --mx: 0px; --my: 0px; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--white-24); transform: translate3d(var(--mx), var(--my), 0); transition: background-color .35s, color .35s, box-shadow .35s, transform .6s var(--ease-out); }
.socials a:hover { background: var(--lime); color: var(--ink); box-shadow: none; }
.socials .icon { width: 19px; height: 19px; }

/* ---------- Decorative backgrounds ---------- */

.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob--a { width: min(70vw, 900px); aspect-ratio: 1; top: -30%; right: -18%; background: radial-gradient(circle, rgba(25, 209, 74, .28), rgba(25, 209, 74, 0) 62%); }
.blob--b { width: min(60vw, 760px); aspect-ratio: 1; bottom: -40%; left: -22%; background: radial-gradient(circle, rgba(135, 211, 63, .18), rgba(135, 211, 63, 0) 62%); }
.blob--c { width: min(80vw, 1000px); aspect-ratio: 1; top: -50%; right: -20%; background: radial-gradient(circle, rgba(135, 211, 63, .26), rgba(135, 211, 63, 0) 60%); }
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Home hero ---------- */

.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: space-between; padding-top: calc(var(--header-h) + clamp(40px, 8vh, 96px)); padding-bottom: clamp(32px, 5vw, 56px); overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(var(--white-06) 1px, transparent 1px), linear-gradient(90deg, var(--white-06) 1px, transparent 1px); background-size: 96px 96px; -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 10%, transparent 70%); mask-image: radial-gradient(ellipse at 70% 30%, #000 10%, transparent 70%); }
.hero__inner { position: relative; }
.hero__line { display: block; }
.hero__bottom { display: grid; gap: 28px; margin-top: clamp(32px, 5vw, 56px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 900px) {
  .hero__bottom { grid-template-columns: 1.1fr 1fr; align-items: end; }
  .hero__actions { justify-content: flex-end; }
}
.hero__badge { --mx: 0px; --my: 0px; position: absolute; right: var(--gutter); top: 0; width: clamp(110px, 12vw, 164px); aspect-ratio: 1; display: none; place-items: center; border-radius: 50%; transform: translate3d(var(--mx), var(--my), 0); transition: transform .6s var(--ease-out); }
.hero__badge-text { position: absolute; inset: 0; width: 100%; height: 100%; fill: var(--white-70); font-family: var(--font-body); font-weight: 700; font-size: 15.5px; letter-spacing: .2em; }
.hero__badge-arrow { display: grid; place-items: center; width: 52%; aspect-ratio: 1; border-radius: 50%; background: var(--lime); color: var(--ink); transform: rotate(90deg); transition: transform .6s var(--ease-out); }
.hero__badge:hover .hero__badge-arrow { transform: rotate(90deg) scale(1.08); }
@media (min-width: 1000px) { .hero__badge { display: grid; } }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: clamp(48px, 7vw, 88px); border-top: 1px solid var(--white-12); }
.stat { padding: 24px 16px 0 0; }
.stat dt { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.04em; color: var(--lime); }
.stat dd { margin-top: 8px; color: var(--white-70); font-size: .92rem; max-width: 22ch; }
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } .stat + .stat { padding-left: 24px; border-left: 1px solid var(--white-12); } }
@media (max-width: 799px) { .stat:nth-child(n + 3) { margin-top: 20px; } }

/* ---------- Page hero ---------- */

.page-hero { position: relative; padding-top: calc(var(--header-h) + clamp(64px, 12vh, 140px)); padding-bottom: clamp(64px, 9vw, 128px); overflow: hidden; isolation: isolate; border-bottom: 1px solid var(--white-12); }
.page-hero--short { padding-bottom: clamp(48px, 6vw, 88px); }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; }
.page-hero__intro { margin-top: clamp(20px, 3vw, 32px); }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(28px, 4vw, 44px); }
.crumbs { margin-bottom: 28px; font-size: .88rem; color: var(--white-50); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: '/'; margin-right: 6px; color: var(--white-24); }
.crumbs a { color: var(--white-70); transition: color var(--dur-fast); }
.crumbs a:hover { color: var(--lime); }
.crumbs [aria-current] { color: var(--white); }

/* ---------- Section head ---------- */

.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px 48px; }
.section-head__main { max-width: 860px; }
.section-head__side { max-width: 440px; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.rule { display: block; height: 1px; margin: clamp(32px, 4vw, 48px) 0 clamp(36px, 5vw, 64px); background: var(--white-12); transform-origin: left; }
.section--cream .rule { background: var(--ink-12); }

/* ---------- Marquee ---------- */

.marquee { overflow: hidden; padding-block: clamp(22px, 3vw, 34px); border-block: 1px solid var(--white-12); background: var(--green-800); }
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__row { display: flex; flex: none; }
.marquee__item { display: inline-flex; align-items: center; gap: clamp(20px, 3vw, 40px); padding-right: clamp(20px, 3vw, 40px); font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 4vw, 3.4rem); letter-spacing: -.03em; line-height: 1.1; white-space: nowrap; }
.marquee__item:nth-child(even) { color: transparent; -webkit-text-stroke: 1px var(--white-50); }
.marquee__star { color: var(--lime); display: inline-grid; }
.marquee__star .icon { width: clamp(22px, 2.6vw, 34px); height: clamp(22px, 2.6vw, 34px); }

/* ---------- Cards ---------- */

.card {
  --rx: 0deg; --ry: 0deg; --lift: 0px; --gx: 50%; --gy: 50%;
  position: relative; display: flex; flex-direction: column; gap: 14px; overflow: hidden;
  padding: clamp(24px, 2.4vw, 32px); border-radius: var(--radius);
  background: rgba(255, 255, 255, .035); box-shadow: inset 0 0 0 1px var(--white-12);
  text-align: left;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translate3d(0, var(--lift), 0);
  transition: transform .7s var(--ease-out), box-shadow .45s var(--ease-out), background-color .45s;
}
.card:hover { --lift: -6px; box-shadow: inset 0 0 0 1px rgba(135, 211, 63, .55), 0 24px 60px -30px rgba(135, 211, 63, .45); }
.card__glow { position: absolute; inset: 0; pointer-events: none; opacity: 0; background: radial-gradient(420px circle at var(--gx) var(--gy), rgba(135, 211, 63, .14), transparent 60%); transition: opacity .45s; }
.card:hover .card__glow { opacity: 1; }
.card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.card__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: rgba(135, 211, 63, .12); color: var(--lime); transition: transform .7s var(--ease-out), background-color .4s, color .4s; }
.card__icon .icon { width: 24px; height: 24px; }
.card:hover .card__icon { transform: rotate(-8deg) scale(1.06); background: var(--lime); color: var(--ink); }
.card__cat, .card__meta { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white-50); }
.card__meta { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.card__meta span + span::before { content: ''; display: inline-block; width: 4px; height: 4px; margin-right: 14px; border-radius: 50%; background: var(--lime); vertical-align: middle; }
.card__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.35rem, 1.8vw, 1.65rem); line-height: 1.15; letter-spacing: -.02em; }
.card__text { color: var(--white-70); }
.card__more { margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-weight: 600; font-size: .95rem; }
.card__more .icon { width: 20px; height: 20px; color: var(--lime); transition: transform .6s var(--ease-out); }
.card:hover .card__more .icon { transform: rotate(45deg); }
.card__more time { color: var(--white-50); font-weight: 500; font-size: .85rem; }

.section--cream .card { background: var(--white); box-shadow: 0 1px 0 var(--ink-12), inset 0 0 0 1px var(--ink-12); color: var(--ink); }
.section--cream .card:hover { box-shadow: inset 0 0 0 1px rgba(20, 77, 46, .45), 0 28px 60px -30px rgba(11, 46, 27, .4); }
.section--cream .card__text, .section--cream .card__cat, .section--cream .card__meta, .section--cream .card__more time { color: var(--ink-70); }
.section--cream .card__icon { background: rgba(20, 77, 46, .1); color: var(--green-800); }
.section--cream .card__more .icon { color: var(--green-800); }

/* Article cards */
.card--article { padding: 0 0 clamp(24px, 2.4vw, 30px); }
.card--article > :not(.card__art) { margin-inline: clamp(22px, 2.4vw, 30px); }
.card__art { display: block; aspect-ratio: 16 / 10; overflow: hidden; margin-bottom: 10px; }
.card__art-inner { display: block; width: 100%; height: 100%; transition: transform 1s var(--ease-out); }
.card__art--0 .card__art-inner { background: radial-gradient(circle at 20% 30%, var(--lime), transparent 45%), radial-gradient(circle at 80% 80%, var(--green-500), transparent 50%), var(--green-800); }
.card__art--1 .card__art-inner { background: conic-gradient(from 200deg at 60% 50%, var(--green-800), var(--lime), var(--green-500), var(--green-800)); }
.card__art--2 .card__art-inner { background: repeating-linear-gradient(135deg, var(--green-800) 0 18px, #1b5e39 18px 36px), var(--green-800); }
.card:hover .card__art-inner { transform: scale(1.06); }

/* Sample cards */
.card--sample { min-height: 340px; }
.card__subject { color: var(--lime); font-weight: 700; font-size: .95rem; margin-top: 18px; }
.card--sample .card__title { font-size: clamp(1.25rem, 1.6vw, 1.5rem); }
.card__foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--white-12); display: flex; justify-content: space-between; align-items: center; color: var(--white-70); font-size: .9rem; }
.card__foot .icon { color: var(--lime); transition: transform .6s var(--ease-out); }
.card:hover .card__foot .icon { transform: rotate(45deg); }
.card__excerpt { color: var(--white-70); font-size: .95rem; }
.js .card--sample .card__excerpt { display: none; }
.card--end { justify-content: center; align-items: flex-start; background: var(--lime); color: var(--ink); box-shadow: none; }
.card--end .icon { width: 36px; height: 36px; transition: transform .6s var(--ease-out); }
.card--end:hover { background: var(--green-500); }
.card--end:hover .icon { transform: translateX(8px); }

/* Social cards */
.card--social .card__icon { margin-bottom: 20px; }

/* ---------- Features ---------- */

.features { display: grid; gap: 1px; background: var(--white-12); border-radius: var(--radius); overflow: hidden; box-shadow: inset 0 0 0 1px var(--white-12); }
@media (min-width: 640px) { .features--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .features--4 { grid-template-columns: repeat(4, 1fr); } }
.feature { padding: clamp(28px, 3vw, 40px); background: var(--green-900); display: flex; flex-direction: column; gap: 14px; transition: background-color .5s var(--ease-out); }
.section--deep .feature { background: var(--green-800); }
.feature:hover { background: #0f3a22; }
.section--deep .feature:hover { background: #185a36; }
.feature__icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 20px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(135, 211, 63, .5); color: var(--lime); transition: transform .8s var(--ease-out), background-color .4s, color .4s; }
.feature:hover .feature__icon { transform: rotate(360deg); background: var(--lime); color: var(--ink); }
.feature__title { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -.02em; line-height: 1.2; }
.feature p { color: var(--white-70); }

/* ---------- Steps ---------- */

.steps { display: grid; gap: clamp(36px, 4vw, 48px) clamp(20px, 3vw, 40px); }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { display: flex; flex-direction: column; gap: 14px; }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(3.4rem, 6vw, 5.4rem); line-height: .9; letter-spacing: -.05em; color: var(--lime); }
.section--cream .step__num { color: var(--green-800); }
.step__line { display: block; height: 1px; background: var(--white-24); margin-block: 10px 8px; transform-origin: left; }
.section--cream .step__line { background: var(--ink-12); }
.step__title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -.02em; }
.step p { color: var(--white-70); }
.section--cream .step p { color: var(--ink-70); }

/* ---------- Split blocks and art ---------- */

.split-block { display: grid; gap: clamp(40px, 6vw, 96px); align-items: center; }
@media (min-width: 900px) {
  .split-block { grid-template-columns: 1fr 1.15fr; }
  .split-block--rev .split-block__media { order: 2; }
}
.split-block__body { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.split-block__body p:not(.eyebrow):not(.lead) { color: var(--white-70); max-width: 60ch; }
.section--cream .split-block__body p:not(.eyebrow):not(.lead) { color: var(--ink-70); }
.split-block__media { display: grid; place-items: center; }

.art { position: relative; width: min(100%, 460px); aspect-ratio: 1; display: grid; place-items: center; }
.art--rings span { position: absolute; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(135, 211, 63, .4); }
.art--rings span:nth-child(1) { inset: 0; }
.art--rings span:nth-child(2) { inset: 14%; box-shadow: inset 0 0 0 1px rgba(135, 211, 63, .55); background: radial-gradient(circle, rgba(25, 209, 74, .12), transparent 70%); }
.art--rings span:nth-child(3) { inset: 30%; background: var(--lime); box-shadow: 0 0 120px rgba(135, 211, 63, .45); }
.art--rings > .icon { position: relative; width: 22%; height: 22%; color: var(--ink); }
.art--stack span { position: absolute; width: 62%; aspect-ratio: 3 / 4; border-radius: 28px; }
.art--stack span:nth-child(1) { background: var(--green-800); transform: rotate(-12deg) translateX(-18%); }
.art--stack span:nth-child(2) { background: var(--green-500); transform: rotate(4deg); opacity: .9; }
.art--stack span:nth-child(3) { background: var(--lime); transform: rotate(14deg) translateX(18%); }

.statement__text { font-size: clamp(1.9rem, 4.4vw, 4rem); line-height: 1.1; letter-spacing: -.03em; max-width: 24ch; }

/* ---------- Horizontal samples ---------- */

.hscroll { overflow: hidden; padding-block: clamp(72px, 8vw, 120px); }
.hscroll .rule { margin-bottom: clamp(28px, 3vw, 40px); }
.hscroll__viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); }
.hscroll__viewport::-webkit-scrollbar { display: none; }
.hscroll__track { display: flex; gap: clamp(16px, 2vw, 24px); width: max-content; padding-bottom: 8px; }
.hscroll__track > .card { width: clamp(280px, 28vw, 400px); flex: none; scroll-snap-align: start; }
.hscroll.is-pinned .hscroll__viewport { overflow: visible; scroll-snap-type: none; }
@media (min-width: 1440px) { .hscroll__viewport { padding-inline: calc((100vw - var(--max)) / 2 + var(--gutter)); } }

/* ---------- Slider ---------- */

.slider__viewport { overflow: hidden; margin-inline: -4px; padding: 4px; touch-action: pan-y; cursor: grab; }
.slider__viewport:active { cursor: grabbing; }
.slider__track { display: flex; gap: 24px; transition: transform .9s var(--ease-out); }
.slider__track.is-dragging { transition: none; }
.slide { flex: 0 0 100%; display: flex; flex-direction: column; gap: 22px; padding: clamp(28px, 3.4vw, 48px); border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink-12); user-select: none; }
@media (min-width: 900px) { .slide { flex-basis: calc((100% - 24px) / 2); } }
.slide__mark { font-family: var(--font-display); font-size: 5rem; line-height: .6; color: var(--lime); height: 36px; }
.slide blockquote p { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.55; font-weight: 500; }
.slide figcaption { margin-top: auto; display: flex; align-items: center; gap: 14px; color: var(--ink-70); font-size: .92rem; }
.slide figcaption strong { display: block; color: var(--ink); font-size: 1rem; }
.slide__avatar { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--green-800); color: var(--lime); font-family: var(--font-display); font-weight: 700; }
.slider__controls { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.slider__btn { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--ink-12); color: var(--ink); transition: background-color .35s, color .35s, transform .5s var(--ease-out); }
.slider__btn:hover { background: var(--ink); color: var(--white); }
.slider__btn:active { transform: scale(.94); }
.slider__dots { display: flex; gap: 8px; }
.slider__dots button { width: 28px; height: 4px; border-radius: 4px; background: var(--ink-12); position: relative; overflow: hidden; }
.slider__dots button::after { content: ''; position: absolute; inset: 0; background: var(--green-800); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out); }
.slider__dots button[aria-current="true"]::after { transform: scaleX(1); }

/* ---------- Accordion ---------- */

.acc { border-top: 1px solid var(--white-12); }
.section--cream .acc { border-color: var(--ink-12); }
.acc__item { border-bottom: 1px solid var(--white-12); }
.section--cream .acc__item { border-color: var(--ink-12); }
.acc__h { font: inherit; }
.acc__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; text-align: left; font-weight: 600; font-size: clamp(1.02rem, 1.3vw, 1.18rem); transition: color var(--dur-fast); }
.acc__btn:hover { color: var(--lime); }
.section--cream .acc__btn:hover { color: var(--green-800); }
.acc__icon { position: relative; flex: none; width: 36px; height: 36px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--white-24); transition: background-color .4s, box-shadow .4s, transform .6s var(--ease-out); }
.section--cream .acc__icon { box-shadow: inset 0 0 0 1px var(--ink-12); }
.acc__icon::before, .acc__icon::after { content: ''; position: absolute; top: 50%; left: 50%; width: 12px; height: 1.6px; margin: -.8px 0 0 -6px; border-radius: 2px; background: currentColor; transition: transform .6s var(--ease-out); }
.acc__icon::after { transform: rotate(90deg); }
.acc__item.is-open .acc__icon { background: var(--lime); color: var(--ink); box-shadow: none; transform: rotate(180deg); }
.acc__item.is-open .acc__icon::after { transform: rotate(0deg); }
.acc__inner p { padding-bottom: 26px; color: var(--white-70); max-width: 68ch; }
.section--cream .acc__inner p { color: var(--ink-70); }
.js .acc__panel { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .6s var(--ease-out), visibility 0s linear .6s; }
.js .acc__item.is-open .acc__panel { grid-template-rows: 1fr; visibility: visible; transition-delay: 0s; }
.js .acc__inner { overflow: hidden; min-height: 0; }
.js .acc__inner p { opacity: 0; transform: translateY(-8px); transition: opacity .4s var(--ease-out), transform .6s var(--ease-out); }
.js .acc__item.is-open .acc__inner p { opacity: 1; transform: none; transition-delay: .1s; }

.faq-split { display: grid; gap: 40px 64px; }
@media (min-width: 1000px) {
  .faq-split { grid-template-columns: 5fr 7fr; align-items: start; }
  .faq-split__head { position: sticky; top: calc(var(--header-h) + 32px); }
}
.faq-split__head { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }

/* ---------- CTA band ---------- */

.cta-band { position: relative; overflow: hidden; isolation: isolate; background: var(--green-800); padding-block: clamp(88px, 11vw, 160px); }
.cta-band__bg { position: absolute; inset: 0; z-index: -1; }
.cta-band__inner { display: grid; gap: 36px 64px; align-items: end; }
.cta-band .h2 { font-size: clamp(2.4rem, 5.6vw, 5.2rem); max-width: 14ch; }
.cta-band__side { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.cta-band__side .lead { color: var(--white-80); }
@media (min-width: 1000px) { .cta-band__inner { grid-template-columns: 1.4fr 1fr; } }

/* ---------- Tabs and filters ---------- */

.tabs { position: relative; display: inline-flex; flex-wrap: wrap; gap: 2px; padding: 6px; border-radius: 999px; background: var(--white-06); box-shadow: inset 0 0 0 1px var(--white-12); margin-bottom: clamp(40px, 5vw, 64px); }
.tabs__indicator { --x: 0px; --w: 60px; position: absolute; top: 6px; bottom: 6px; left: 6px; right: 6px; border-radius: 999px; background: var(--lime); clip-path: inset(0 calc(100% - var(--x) - var(--w)) 0 var(--x) round 999px); transition: clip-path .6s var(--ease-out); pointer-events: none; }
.tabs__btn { position: relative; z-index: 1; padding: 11px 22px; border-radius: 999px; font-weight: 700; font-size: .95rem; color: var(--white-80); transition: color .4s var(--ease-out); }
.tabs__btn:hover { color: var(--white); }
.tabs__btn.is-active { color: var(--ink); }
.no-js .tabs { display: none; }
@media (max-width: 520px) { .tabs { border-radius: 22px; } .tabs__indicator { border-radius: 16px; } }

.svc-group + .svc-group { margin-top: clamp(64px, 8vw, 112px); }
.svc-group__head { display: grid; gap: 10px 24px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--white-12); }
.svc-group__head .eyebrow__num { color: var(--lime); justify-self: start; }
.svc-group__head p { color: var(--white-70); max-width: 60ch; }
@media (min-width: 900px) { .svc-group__head { grid-template-columns: auto 1fr auto; align-items: center; } }
.svc-group, [data-samples-grid] > .card { transition: opacity .45s var(--ease-out), transform .6s var(--ease-out); }
.is-filtered-out { opacity: 0 !important; transform: translateY(16px) scale(.98) !important; pointer-events: none; }

.filters { display: grid; gap: 16px; margin-bottom: clamp(36px, 5vw, 56px); }
.filters__group { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.filters__label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white-50); min-width: 56px; }
.no-js .filters { display: none; }
.empty { padding: 48px 0; color: var(--white-70); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--white-24); font-size: .9rem; font-weight: 600; color: var(--white-80); transition: background-color .35s var(--ease-out), color .35s, box-shadow .35s; }
button.chip:hover { color: var(--white); box-shadow: inset 0 0 0 1px var(--lime); }
button.chip.is-active { background: var(--lime); color: var(--ink); box-shadow: none; }
.chips--sm .chip { padding: 5px 12px; font-size: .8rem; }
.chips-bar { border-bottom: 1px solid var(--white-12); padding-block: 22px; }
.chips-bar__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; }
.chips-bar__label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); }

/* ---------- Service page blocks ---------- */

.include { padding: clamp(26px, 2.6vw, 34px); border-radius: var(--radius); background: var(--white); box-shadow: inset 0 0 0 1px var(--ink-12); display: flex; flex-direction: column; gap: 12px; transition: transform .7s var(--ease-out), box-shadow .45s; }
.include:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px rgba(20, 77, 46, .4), 0 28px 60px -34px rgba(11, 46, 27, .45); }
.include__num { font-family: var(--font-display); font-weight: 700; color: var(--green-800); font-size: .95rem; }
.include__title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -.02em; line-height: 1.2; }
.include p { color: var(--ink-70); }

.who { --rx: 0deg; --ry: 0deg; padding: clamp(28px, 3vw, 40px); border-radius: var(--radius); box-shadow: inset 0 0 0 1px var(--white-12); display: flex; flex-direction: column; gap: 14px; transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .7s var(--ease-out), box-shadow .45s; }
.who:hover { box-shadow: inset 0 0 0 1px rgba(135, 211, 63, .55); }
.who__icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 16px; border-radius: 50%; background: var(--lime); color: var(--ink); }
.who__title { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -.02em; }
.who p { color: var(--white-70); }

.turnaround { display: grid; gap: 40px 80px; }
@media (min-width: 1000px) { .turnaround { grid-template-columns: 1fr 1.1fr; align-items: start; } }
.turnaround__body { display: flex; flex-direction: column; align-items: flex-start; gap: 32px; }
.turnaround__opts { width: 100%; border-top: 1px solid var(--white-12); }
.turnaround__opts li { display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--white-12); }
.turnaround__opts span { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--lime); }
.turnaround__opts p { color: var(--white-70); }

/* ---------- Other pages ---------- */

.compare { display: grid; gap: 40px 80px; }
@media (min-width: 1000px) { .compare { grid-template-columns: 1fr 1.2fr; } }
.compare__list { display: grid; gap: 4px; }
.compare__list li { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--ink-12); font-size: 1.05rem; color: var(--ink-70); }
.compare__list strong { color: var(--ink); }
.compare__list .icon { flex: none; width: 28px; height: 28px; padding: 5px; border-radius: 50%; background: var(--lime); color: var(--ink); }

.rows { border-top: 1px solid var(--white-12); }
.row { display: grid; gap: 12px 40px; padding: clamp(28px, 4vw, 48px) 0; border-bottom: 1px solid var(--white-12); }
.row__num { font-family: var(--font-display); font-weight: 700; color: var(--lime); }
.row__title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 3rem); line-height: 1.05; letter-spacing: -.03em; transition: transform .7s var(--ease-out), color .4s; }
.row:hover .row__title { transform: translateX(12px); color: var(--lime); }
.row p { color: var(--white-70); max-width: 52ch; }
@media (min-width: 900px) { .row { grid-template-columns: 80px 1.1fr 1fr; align-items: baseline; } }

.writer { --rx: 0deg; --ry: 0deg; padding: 30px; border-radius: var(--radius); box-shadow: inset 0 0 0 1px var(--white-12); background: rgba(255, 255, 255, .03); display: flex; flex-direction: column; gap: 10px; transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .7s var(--ease-out), box-shadow .45s; }
.writer:hover { box-shadow: inset 0 0 0 1px rgba(135, 211, 63, .55); }
.writer__avatar { display: grid; place-items: center; width: 76px; height: 76px; margin-bottom: 14px; border-radius: 50%; background: linear-gradient(135deg, var(--lime), var(--green-500)); color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -.02em; }
.writer__subject { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.2; letter-spacing: -.02em; }
.writer__qual { color: var(--lime); font-weight: 600; font-size: .92rem; margin-bottom: 8px; }

.masonry { columns: 1; column-gap: 24px; }
@media (min-width: 700px) { .masonry { columns: 2; } }
@media (min-width: 1100px) { .masonry { columns: 3; } }
.review { break-inside: avoid; margin-bottom: 24px; padding: 32px; border-radius: var(--radius); box-shadow: inset 0 0 0 1px var(--white-12); background: rgba(255, 255, 255, .03); display: flex; flex-direction: column; gap: 18px; }
.review__stars { display: flex; gap: 3px; color: var(--lime); }
.review__stars .icon { width: 17px; height: 17px; fill: currentColor; }
.review blockquote p { font-size: 1.1rem; line-height: 1.6; }
.review figcaption { color: var(--white-70); font-size: .92rem; }
.review figcaption strong { color: var(--white); }

.ticks { display: grid; gap: 14px; margin-top: 24px; }
.ticks li { display: flex; gap: 14px; color: var(--ink-70); }
.ticks .icon { flex: none; color: var(--green-800); margin-top: 3px; }
.prose-block { max-width: 820px; }

.faq-page { display: grid; gap: 48px 80px; }
@media (min-width: 1000px) {
  .faq-page { grid-template-columns: 240px 1fr; align-items: start; }
  .faq-page__nav { position: sticky; top: calc(var(--header-h) + 32px); }
}
.faq-page__nav { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.faq-page__nav ul { display: flex; flex-wrap: wrap; gap: 8px 20px; }
@media (min-width: 1000px) { .faq-page__nav ul { flex-direction: column; } }
.faq-page__nav a { font-weight: 600; color: var(--white-80); }
.faq-page__nav a:hover { color: var(--lime); }
.faq-group + .faq-group { margin-top: clamp(56px, 7vw, 88px); }
.faq-group .h3 { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.faq-group .eyebrow__num { color: var(--lime); font-family: var(--font-body); }

/* ---------- Contact ---------- */

.contact { display: grid; gap: 24px; }
@media (min-width: 1000px) { .contact { grid-template-columns: 1.7fr 1fr; align-items: start; } }
.contact__main, .contact__side { display: grid; gap: 24px; }
.contact-card { position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: clamp(28px, 3vw, 40px); border-radius: var(--radius); box-shadow: inset 0 0 0 1px var(--white-12); background: rgba(255, 255, 255, .03); }
.contact-card p { color: var(--white-70); }
.contact-card--primary { padding: clamp(32px, 4.4vw, 64px); background: radial-gradient(circle at 90% 0%, rgba(135, 211, 63, .32), transparent 55%), var(--green-800); box-shadow: inset 0 0 0 1px rgba(135, 211, 63, .35); gap: 18px; }
.contact-card--primary p { color: var(--white-80); max-width: 46ch; }
.contact-card__badge { padding: 6px 12px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-card__icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--green-500); color: var(--white); }
.contact-card__icon .icon { width: 30px; height: 30px; }
.contact-card__icon--quiet { width: 50px; height: 50px; background: var(--white-06); color: var(--lime); }
.contact-card__icon--quiet .icon { width: 22px; height: 22px; }
.contact-card__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; letter-spacing: -.03em; }
.contact-card__title--sm { font-size: 1.35rem; }
.contact-card__number { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 4.6vw, 3.6rem); letter-spacing: -.03em; line-height: 1; color: var(--lime); transition: color .3s; }
.contact-card__number:hover { color: var(--white); }
.social-list { width: 100%; }
.social-list a { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--white-12); font-weight: 600; }
.social-list a .icon { color: var(--lime); }
.social-list__handle { margin-left: auto; color: var(--white-50); font-weight: 500; font-size: .88rem; }

.builder { padding: clamp(28px, 3.4vw, 48px); border-radius: var(--radius); box-shadow: inset 0 0 0 1px var(--white-12); display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.builder__head { display: grid; gap: 8px; }
.builder__head p { color: var(--white-70); max-width: 60ch; }
.builder__grid { width: 100%; display: grid; gap: 18px; }
@media (min-width: 700px) { .builder__grid { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--white-80); }
.field--full { grid-column: 1 / -1; }
.field input, .field select, .field textarea { width: 100%; padding: 15px 16px; border-radius: 14px; border: 0; background: var(--white-06); box-shadow: inset 0 0 0 1px var(--white-12); color: var(--white); font-weight: 500; color-scheme: dark; transition: box-shadow .3s, background-color .3s; }
.field select option, .field select optgroup { background: var(--green-900); color: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 2px var(--lime); }
.field [aria-invalid="true"] { box-shadow: inset 0 0 0 2px #ff8a7a; }
.builder__error { color: #ffb4a8; font-weight: 600; }

/* ---------- Prose ---------- */

.prose-wrap { max-width: 860px; }
.prose-meta { color: var(--white-50); font-size: .9rem; margin-bottom: 24px; }
.prose { font-size: 1.08rem; line-height: 1.8; color: var(--white-80); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.2; letter-spacing: -.02em; color: var(--white); margin-top: 2.2em; }
.prose h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); margin-top: 1.8em; }
.prose h2:first-child { margin-top: 0; }
.prose strong { color: var(--white); }
.prose ul, .prose ol { display: grid; gap: .6em; padding-left: 0; }
.prose ul li { position: relative; padding-left: 28px; }
.prose ul li::before { content: ''; position: absolute; left: 4px; top: .72em; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.prose ol { counter-reset: n; }
.prose ol li { position: relative; padding-left: 40px; counter-increment: n; }
.prose ol li::before { content: counter(n, decimal-leading-zero); position: absolute; left: 0; top: 0; font-family: var(--font-display); font-weight: 700; color: var(--lime); }
.prose blockquote { padding: 8px 0 8px 24px; border-left: 2px solid var(--lime); font-size: 1.2rem; color: var(--white); }
.prose-cta { margin-top: 56px; padding: 32px; border-radius: var(--radius); background: var(--green-800); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.prose-cta p { color: var(--white-80); max-width: 42ch; }

/* ---------- Modal ---------- */

.modal { width: min(720px, calc(100% - 32px)); max-height: calc(100svh - 48px); padding: 0; border: 0; border-radius: 28px; background: var(--green-800); color: var(--white); box-shadow: 0 40px 120px -20px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(135, 211, 63, .3); }
.modal::backdrop { background: rgba(4, 18, 10, .62); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.modal__inner { position: relative; max-height: inherit; overflow-y: auto; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.modal__close { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--white-24); transition: background-color .3s, color .3s, transform .5s var(--ease-out); }
.modal__close:hover { background: var(--white); color: var(--ink); transform: rotate(90deg); }
.modal__meta { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); padding-right: 56px; }
.modal__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.15; letter-spacing: -.02em; padding-right: 40px; }
.modal__excerpt { font-size: 1.05rem; line-height: 1.8; color: var(--white-80); }
.modal__note { font-size: .9rem; color: var(--white-50); }

/* ---------- 404 ---------- */

.notfound { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; isolation: isolate; padding-block: calc(var(--header-h) + 40px) 80px; }
.notfound__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.notfound__code { font-family: var(--font-display); font-weight: 800; font-size: clamp(6rem, 22vw, 18rem); line-height: .85; letter-spacing: -.06em; color: transparent; -webkit-text-stroke: 1.5px var(--lime); }

/* ---------- Footer ---------- */

.site-footer { position: relative; background: var(--green-950); overflow: hidden; }
.footer__inner { padding-top: clamp(88px, 11vw, 160px); }
.footer__cta { display: grid; gap: 28px; padding-bottom: clamp(64px, 8vw, 112px); border-bottom: 1px solid var(--white-12); }
.footer__title { font-size: clamp(3rem, 10vw, 9rem); line-height: .92; letter-spacing: -.05em; }
.footer__cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; }
.footer__cta-note { color: var(--white-70); }
.footer__cta-note a { color: var(--white); font-weight: 700; }
.footer__grid { display: grid; gap: 40px 32px; padding-block: clamp(56px, 7vw, 88px); grid-template-columns: 1fr 1fr; }
.footer__brand { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer__tagline { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--lime); }
.footer__about { color: var(--white-70); max-width: 36ch; }
.footer__head { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--white-50); margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { color: var(--white-80); font-weight: 500; transition: color var(--dur-fast); }
.footer__col a:hover { color: var(--white); }
.footer__contact { grid-column: 1 / -1; }
.footer__contact li { display: grid; gap: 2px; }
.footer__contact li + li { margin-top: 8px; }
.footer__label { font-size: .8rem; color: var(--white-50); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: repeat(3, 1fr); } .footer__contact { grid-column: auto; } }
@media (min-width: 1160px) { .footer__grid { grid-template-columns: 1.6fr repeat(4, 1fr); } .footer__brand { grid-column: auto; } }
.footer__word { width: 100%; height: auto; margin-bottom: 12px; overflow: visible; user-select: none; }
.footer__word text { font-family: var(--font-display); font-weight: 800; font-size: 190px; letter-spacing: -.04em; fill: transparent; stroke: rgba(135, 211, 63, .38); stroke-width: 1.2; }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-block: 28px; border-top: 1px solid var(--white-12); color: var(--white-50); font-size: .88rem; }
.footer__legal ul { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer__legal a:hover { color: var(--white); }
@media (max-width: 760px) { .footer__legal { padding-bottom: calc(104px + env(safe-area-inset-bottom)); } }
@media (min-width: 761px) { .footer__legal { padding-right: 88px; } }

/* ---------- WhatsApp bubble ---------- */

.wa-float { position: fixed; z-index: 90; right: max(16px, env(safe-area-inset-right)); bottom: calc(18px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.wa-float__btn { position: relative; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--green-500); color: var(--white); box-shadow: 0 14px 34px -8px rgba(25, 209, 74, .6), 0 4px 12px rgba(0, 0, 0, .25); transition: transform .6s var(--ease-spring), background-color .3s; }
.wa-float__btn:hover { transform: scale(1.08); }
.wa-float__btn .icon { width: 30px; height: 30px; position: relative; }
.wa-float__ring { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 2px var(--green-500); opacity: 0; }
.wa-float__card {
  position: relative; width: min(330px, calc(100vw - 32px)); padding: 22px; border-radius: 22px;
  background: var(--white); color: var(--ink); box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .55);
  display: flex; flex-direction: column; gap: 16px;
  transform-origin: bottom right;
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(.86);
  transition: opacity .35s var(--ease-out), transform .55s var(--ease-spring), visibility 0s linear .55s;
}
.wa-float__card[hidden] { display: flex; }
.no-js .wa-float__card { display: none; }
.wa-float.is-open .wa-float__card { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.wa-float__close { position: absolute; top: 12px; right: 12px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--ink-70); transition: background-color .3s, transform .5s var(--ease-out); }
.wa-float__close:hover { background: var(--ink-12); transform: rotate(90deg); }
.wa-float__close .icon { width: 18px; height: 18px; }
.wa-float__head { display: flex; align-items: center; gap: 12px; }
.wa-float__avatar { position: relative; }
.wa-float__avatar .logo__mark { width: 44px; height: 44px; }
.wa-float__online { position: absolute; right: -2px; bottom: -2px; width: 13px; height: 13px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 3px var(--white); }
.wa-float__name { font-weight: 800; }
.wa-float__status { font-size: .82rem; color: var(--ink-70); }
.wa-float__msg { padding: 14px 16px; border-radius: 4px 16px 16px 16px; background: var(--cream); font-size: .95rem; line-height: 1.5; }

/* ---------- Progress, cursor, preloader, transition base ---------- */

.progress { position: fixed; top: 0; left: 0; right: 0; z-index: 110; height: 2px; pointer-events: none; }
.progress span { display: block; height: 100%; background: var(--lime); transform: scaleX(0); transform-origin: left; }

.cursor { display: none; }
.preloader { display: none; }
.transition { position: fixed; inset: 0; z-index: 150; pointer-events: none; }
.transition__panel { position: absolute; inset: 0; background: var(--green-800); transform: scaleY(0); transform-origin: bottom; }
.transition__panel::after { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--lime); }
