/* ══════════════════════════════════════════════════════════
   AppendTech Landing — styles.css
   Figma source: AppendTech-Website / Home (node 2135:672)
   Canvas: 1728px · Fonts: Space Grotesk, Outfit
   ══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   1. Design Tokens
───────────────────────────────────────────── */
:root {
  /* Colors */
  --c-bg:              #0a0909;
  --c-primary:         #51e0cf;
  --c-primary-dark:    #009e9e;
  --c-white:           #ffffff;
  --c-text-muted:      rgba(255, 255, 255, 0.60);
  --c-glass:           rgba(255, 255, 255, 0.04);
  --c-border:          rgba(255, 255, 255, 0.10);
  --c-nav-border:      rgba(255, 255, 255, 0.04);

  /* Stat number gradient (all three share the same look, slightly different angles) */
  --grad-teal-1: linear-gradient(158.25deg, rgb(1,33,33) 10.8%, rgb(39,159,144) 36.4%, rgb(46,103,103) 97.2%);
  --grad-teal-2: linear-gradient(171.36deg, rgb(1,33,33) 10.8%, rgb(39,159,144) 36.4%, rgb(46,103,103) 97.2%);
  --grad-teal-3: linear-gradient(158.76deg, rgb(1,33,33) 10.8%, rgb(39,159,144) 36.4%, rgb(46,103,103) 97.2%);

  /* Typography */
  --font-grotesk: 'Space Grotesk', sans-serif;
  --font-outfit:  'Outfit', sans-serif;

  /* Layout */
  --nav-h:         88px;
  --container-max: 1440px;
  --section-px:    62px;          /* Side padding matching Figma's 62px */
  --section-px-sm: 24px;

  /* Motion tokens */
  --dur-micro:     120ms;
  --dur-ui:        200ms;
  --dur-emphasis:  300ms;
  --dur-entrance:  480ms;
  --dur-section:   620ms;
  --dur-ambient:   10s;
  --stagger-tight: 60ms;
  --stagger-base:  80ms;
  --stagger-loose: 100ms;
  --ease-out:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out-soft: cubic-bezier(0.16, 1.00, 0.30, 1);
  --ease-in:       cubic-bezier(0.55, 0.06, 0.68, 0.19);
  --ease-in-out:   cubic-bezier(0.65, 0.00, 0.35, 1);
  --rise-sm:       8px;
  --rise-md:       16px;
  --rise-lg:       20px;
}

/* ─────────────────────────────────────────────
   2. Reset & Base
───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Anchor targets clear the fixed navbar */
:target,
section[id],
[id] {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background-color: var(--c-bg);
  color: var(--c-white);
  font-family: var(--font-outfit);
  overflow-x: hidden;
  min-height: 100vh;
}

.ambient-glow,
.ambient-dust {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ambient-glow { z-index: 1; }
.ambient-dust { z-index: 2; }

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; }

/* Screen-reader only */
.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;
}

/* ─────────────────────────────────────────────
   3. Shared Buttons
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 9999px;
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.18px;
  line-height: 1.8;
  border: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  user-select: none;
}
.btn:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background-color: var(--c-primary);
  color: #0a0909;
  border-color: var(--c-border);
}
.btn--ghost {
  background-color: var(--c-glass);
  color: var(--c-white);
  border-color: var(--c-border);
}

/* ─────────────────────────────────────────────
   4. NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-px);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-nav-border);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.navbar__logo-icon     { width: 48px; height: 48px; object-fit: contain; }
.navbar__logo-wordmark { width: 179px; height: 20px; object-fit: contain; }

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
  padding: 0 16px;
}
.navbar__link {
  font-family: var(--font-grotesk);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-white);
  padding: 10px 14px;
  line-height: 1;
  border-radius: 8px;
  transition: color 0.2s ease;
}
.navbar__link:hover { color: var(--c-primary); }
.navbar__link--active,
.navbar__drawer-link--active { color: var(--c-primary); }

/* Right actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar__lang-wrap {
  position: relative;
}
.navbar__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
}
.navbar__lang:hover,
.navbar__lang-wrap.is-open .navbar__lang { background: var(--c-glass); }
.navbar__lang-flag    { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.navbar__lang-label   {
  font-family: var(--font-grotesk);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1;
}
.navbar__lang-chevron {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.navbar__lang-wrap.is-open .navbar__lang-chevron {
  transform: rotate(180deg);
}
.navbar__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 148px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: rgba(12, 14, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  z-index: 80;
}
.navbar__lang-menu[hidden] { display: none; }
.navbar__lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-family: var(--font-grotesk);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-white);
  text-decoration: none;
  white-space: nowrap;
}
.navbar__lang-option:hover,
.navbar__lang-option--active {
  background: var(--c-glass);
}
.navbar__drawer-lang {
  margin: 24px 0 8px;
  padding: 0 4px;
}
.navbar__drawer-lang-label {
  font-family: var(--font-grotesk);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 10px;
}
.navbar__drawer-lang-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.navbar__drawer-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
}
.navbar__drawer-lang-option--active,
.navbar__drawer-lang-option:hover {
  background: var(--c-glass);
}

/* Mobile hamburger (hidden on desktop) */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile drawer (hidden on desktop) */
.navbar__overlay,
.navbar__drawer {
  display: none;
}

.navbar__overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar__overlay--visible {
  opacity: 1;
  visibility: visible;
}

.navbar__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  width: min(280px, 85vw);
  height: 100vh;
  height: 100dvh;
  padding: calc(var(--nav-h) + 24px) 24px 32px;
  flex-direction: column;
  gap: 32px;
  background: rgba(10, 9, 9, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--c-nav-border);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.navbar__drawer--open {
  transform: translateX(0);
}

.navbar__drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.navbar__drawer-link {
  font-family: var(--font-grotesk);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-white);
  padding: 14px 12px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar__drawer-link:hover {
  color: var(--c-primary);
  background: var(--c-glass);
}

.navbar__drawer-cta {
  width: 100%;
  margin-top: auto;
}

body.menu-open {
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   5. HERO SECTION
───────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 1028px;
  overflow: hidden;
  background-color: #0a0909;
}

/* ── 5a. Grid lines background ──
   Figma: Container x=144, y=0, w=1440, h=256
   8 vertical dividers at page-x: 144, 480, 512, 848, 880, 1216, 1248, 1584 */
.hero__grid-lines {
  position: absolute;
  top: 0; left: 0;
  width: 1728px;       /* match Figma canvas */
  height: 256px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  /* Use repeating-linear-gradient to draw the 8 vertical lines at exact px positions */
  background:
    linear-gradient(90deg, transparent calc(144px - 0.5px), rgba(255,255,255,0.04) calc(144px - 0.5px), rgba(255,255,255,0.04) calc(144px + 0.5px), transparent calc(144px + 0.5px)),
    linear-gradient(90deg, transparent calc(480px - 0.5px), rgba(255,255,255,0.04) calc(480px - 0.5px), rgba(255,255,255,0.04) calc(480px + 0.5px), transparent calc(480px + 0.5px)),
    linear-gradient(90deg, transparent calc(512px - 0.5px), rgba(255,255,255,0.04) calc(512px - 0.5px), rgba(255,255,255,0.04) calc(512px + 0.5px), transparent calc(512px + 0.5px)),
    linear-gradient(90deg, transparent calc(848px - 0.5px), rgba(255,255,255,0.04) calc(848px - 0.5px), rgba(255,255,255,0.04) calc(848px + 0.5px), transparent calc(848px + 0.5px)),
    linear-gradient(90deg, transparent calc(880px - 0.5px), rgba(255,255,255,0.04) calc(880px - 0.5px), rgba(255,255,255,0.04) calc(880px + 0.5px), transparent calc(880px + 0.5px)),
    linear-gradient(90deg, transparent calc(1216px - 0.5px), rgba(255,255,255,0.04) calc(1216px - 0.5px), rgba(255,255,255,0.04) calc(1216px + 0.5px), transparent calc(1216px + 0.5px)),
    linear-gradient(90deg, transparent calc(1248px - 0.5px), rgba(255,255,255,0.04) calc(1248px - 0.5px), rgba(255,255,255,0.04) calc(1248px + 0.5px), transparent calc(1248px + 0.5px)),
    linear-gradient(90deg, transparent calc(1584px - 0.5px), rgba(255,255,255,0.04) calc(1584px - 0.5px), rgba(255,255,255,0.04) calc(1584px + 0.5px), transparent calc(1584px + 0.5px));
}
.hero__grid-col { display: none; } /* unused — lines drawn via background gradient */

/* ── 5b. Interactive breathing plasma ring ──
   Canvas is visually 842×842 on the reference desktop. The renderer keeps
   the geometric core exact while deforming only the additive outer field. */
.hero__glow {
  position: absolute;
  left: 50%;
  top: 588px;
  width: 842px;
  height: 842px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  overflow: visible;
  opacity: 1;
  translate: 0 0;
}

.hero__plasma {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: visible;
}

.hero__subtitle-plane {
  display: block;
  translate: 0 0;
}

/* Soft ambient + floor wash on hero bg */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 55% 40% at 50% 57%,
      rgba(0, 80, 75, 0.12) 0%,
      transparent 62%
    ),
    radial-gradient(
      ellipse 60% 35% at 50% 95%,
      rgba(81, 224, 207, 0.1) 0%,
      transparent 65%
    );
}

/* ── 5c. Eyebrow — top left ── */
.hero__eyebrow {
  position: absolute;
  top: 147px;
  left: var(--section-px);
  z-index: 5;
  font-family: var(--font-grotesk);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* ── 5d. Social proof pill — top right ── */
.hero__social-proof {
  position: absolute;
  top: 141px;
  right: var(--section-px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__avatars {
  display: flex;
  align-items: center;
}
.hero__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--c-bg);
  object-fit: cover;
  margin-left: -12px;
}
.hero__avatar:first-child { margin-left: 0; }

.hero__social-text {
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.42px;
  line-height: 1.5;
}
.hero__bracket {
  opacity: 0.6;
  object-fit: contain;
}
.hero__bracket--left  { transform: scaleX(-1); }

/* ── 5e. Headline ── */
.hero__headline-wrap {
  position: absolute;
  /* Figma: x=214, y=413, w=1324 — centered in 1728px = 214 from left */
  top: 413px;
  left: 50%;
  transform: translateX(-50%);
  width: 1324px;
  max-width: calc(100% - 40px);
  z-index: 5;
  text-align: center;
}
.hero__headline {
  font-family: var(--font-grotesk);
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero__headline-line {
  display: block;
  color: #ffffff;
  line-height: 1.39;
}
.hero__headline-line--ai {
  line-height: 1.4;
}

/* ── 5f. Subtitle ── */
.hero__subtitle {
  position: absolute;
  /* Figma: x=547, y=708, w=634 → center = 547+317=864 */
  top: 708px;
  left: 50%;
  transform: translateX(-50%);
  width: 634px;
  max-width: calc(100% - 40px);
  z-index: 5;
  font-family: var(--font-outfit);
  font-size: 20px;
  font-weight: 400;
  color: var(--c-text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ── 5g. CTA buttons ── */
.hero__ctas {
  position: absolute;
  top: 791px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__ctas .btn--ghost {
  background: transparent;
  border-color: var(--c-primary);
  color: var(--c-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero__ctas .btn--ghost:hover {
  background: rgba(81, 224, 207, 0.08);
  border-color: var(--c-primary);
}

/* ── 5h. Scroll indicator (fixed section navigator) ── */
.hero__scroll {
  position: fixed;
  right: 64px;
  bottom: 48px;
  top: auto;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 105px;
  background: var(--c-primary);
  border-radius: 27px;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background-color var(--dur-ui) var(--ease-out),
              transform var(--dur-ui) var(--ease-out);
}
.hero__scroll:hover {
  background: #6ee8da;
}
.hero__scroll:active {
  transform: scale(0.97);
}
.hero__scroll-label {
  font-family: var(--font-grotesk);
  font-size: 16px;
  font-weight: 700;
  color: #0a0909;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  line-height: 1;
  padding-top: 5px;
  padding-bottom: 2px;
}
.hero__scroll-arrow {
  width: 14px;
  height: 22px;
  object-fit: contain;
  transition: transform var(--dur-ui) var(--ease-out);
}
.hero__scroll--up .hero__scroll-arrow {
  transform: rotate(180deg);
}

/* ─────────────────────────────────────────────
   6. STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  width: 100%;
  padding: 0 var(--section-px);
  position: relative;
  z-index: 10;
  margin-top: 0px;
}

.stats-bar__card {
  max-width: 1295px;
  margin: 0 auto;
  transform: skewX(-10deg);
  border-radius: 16px;
  background: rgba(16, 22, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}

.stats-bar__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(81, 224, 207, 0.07) 0%,
    rgba(81, 224, 207, 0.02) 28%,
    transparent 55%
  );
  pointer-events: none;
}

.stats-bar__card-inner {
  transform: skewX(10deg);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 32px 80px;
  position: relative;
  z-index: 1;
}

/* Stat item */
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.stats-bar__label {
  font-family: var(--font-grotesk);
  font-size: 18px;
  font-weight: 700;
  /* Figma: gradient from rgba(255,255,255,0.56) to white */
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.36px;
  line-height: 1.556;
  white-space: nowrap;
}

/* Number + tag row */
.stats-bar__value-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

/* Large gradient number */
.stats-bar__number {
  font-family: var(--font-grotesk);
  font-size: 39px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 0.869;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  --stats-shine: linear-gradient(
    105deg,
    transparent 28%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0.78) 50%,
    rgba(255, 255, 255, 0.1) 60%,
    transparent 72%
  );
  background-size: 220% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: -120% 0, 0 0;
}
.stats-bar__number--1 {
  background-image: var(--stats-shine), var(--grad-teal-1);
}
.stats-bar__number--2 {
  background-image: var(--stats-shine), var(--grad-teal-2);
}
.stats-bar__number--3 {
  background-image: var(--stats-shine), var(--grad-teal-3);
}

@media (prefers-reduced-motion: no-preference) {
  .stats-bar__number {
    animation: statsNumberShine 2.8s linear infinite;
  }
  .stats-bar__number--1 { animation-delay: 0s; }
  .stats-bar__number--2 { animation-delay: 0.9s; }
  .stats-bar__number--3 { animation-delay: 1.8s; }
}

@keyframes statsNumberShine {
  0%   { background-position: -120% 0, 0 0; }
  100% { background-position: 120% 0, 0 0; }
}

/* Tag with decorative bracket ornaments — pure CSS, no images */
.stats-bar__tag {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2px;
}

.stats-bar__bracket {
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 22px;
}

/* Tall thin cyan opening arc */
.stats-bar__bracket--open {
  margin-right: 6px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.88);
  border-top: 1.5px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 100% 0 0 100% / 55% 0 0 55%;
}

/* Small white closing arc */
.stats-bar__bracket--close {
  margin-left: 6px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
}

.stats-bar__tag-text {
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.42px;
  line-height: 1.5;
  white-space: nowrap;
}

/* Vertical dividers between stats */
.stats-bar__divider {
  width: 1px;
  height: 107px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255,255,255,0.12) 30%,
    rgba(255,255,255,0.12) 70%,
    transparent 100%);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   8. SHARED SECTION UTILITIES
───────────────────────────────────────────── */
.section-heading {
  font-family: var(--font-grotesk);
  font-size: 55.78px;
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1.205;           /* 67.2 / 55.78 */
  /* Figma: gradient text white → #0f0c15 starting at 73.705% */
  background: linear-gradient(180deg, #ffffff 73.705%, #0f0c15 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-heading--centered { text-align: center; }

/* Split heading so gradient still applies when wrapping first letters */
/* (removed — select-text.js transfers gradient fill automatically) */

.select-text__inner {
  position: relative;
  display: inline-block;
  cursor: ew-resize;
}
.select-text__box {
  position: absolute;
  top: 0.06em;
  left: -0.06em;
  width: 1.2em;
  height: 1.05em; /* fallback; JS locks to first-line height */
  border: 1px solid #5ec8c8;
  pointer-events: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.select-text__handle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #ffffff;
  transition: transform 0.2s ease;
}
.select-text__handle--tl { top: -2.5px; left: -2.5px; }
.select-text__handle--tr { top: -2.5px; right: -2.5px; }
.select-text__handle--bl { bottom: -2.5px; left: -2.5px; }
.select-text__handle--br { bottom: -2.5px; right: -2.5px; }

.select-text.is-active .select-text__box {
  border-color: #7ee0e0;
  box-shadow: 0 0 0 1px rgba(94, 200, 200, 0.25);
}
.select-text.is-active .select-text__handle {
  transform: scale(1.35);
}

.section-subheading {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.5;
}
.section-subheading--centered { text-align: center; }

/* Teal corner bracket decoration (selectanimation approximation) */
.bracket-deco {
  display: inline-block;
  width: 56px; height: 65px;
  flex-shrink: 0;
  border: 1px solid #049c9d;
  /* Show only the corner portions via clip-path */
  -webkit-mask:
    linear-gradient(#000 0 0) top    2px left  2px / 12px 12px no-repeat,
    linear-gradient(#000 0 0) top    2px right 2px / 12px 12px no-repeat,
    linear-gradient(#000 0 0) bottom 2px left  2px / 12px 12px no-repeat,
    linear-gradient(#000 0 0) bottom 2px right 2px / 12px 12px no-repeat;
  mask:
    linear-gradient(#000 0 0) top    2px left  2px / 12px 12px no-repeat,
    linear-gradient(#000 0 0) top    2px right 2px / 12px 12px no-repeat,
    linear-gradient(#000 0 0) bottom 2px left  2px / 12px 12px no-repeat,
    linear-gradient(#000 0 0) bottom 2px right 2px / 12px 12px no-repeat;
}
.bracket-deco--sm { width: 40px; height: 46px; }

/* ─────────────────────────────────────────────
   9. SECTION 2 — SERVICES
───────────────────────────────────────────── */
.services {
  padding: 100px 92px 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

/* Header block */
.services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  position: relative;
}

/* Cards row */
.services__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Individual service card */
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 112px 20px 32px;
  border-radius: 12px;
  overflow: hidden;
  min-height: 388px;
}

/* Wool-carpet grain overlay */
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

.svc-card > * {
  z-index: 2;
}

/* Card color variants — from Figma */
.svc-card--blue  { background-color: #2f41a3; }
.svc-card--red   { background: linear-gradient(90deg, rgb(126,33,72) 0%, rgb(126,33,72) 100%); }
.svc-card--amber { background: linear-gradient(90deg, rgb(170,115,51) 0%, rgb(170,115,51) 100%); }
.svc-card--green { background-color: #224a38; }

/* "Our Services" badge pill (absolute top-left) */
.svc-card__badge {
  position: absolute;
  top: 24px; left: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--c-white);
  text-transform: capitalize;
  padding: 2px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50px;
  line-height: 1.8;
  white-space: nowrap;
}

/* Decorative card images */
.svc-card__deco {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
}
.svc-card__deco--right {
  width: 149px;
  top: 24px; right: 30px;
}
.svc-card__deco--left-mid {
  width: 153px;
  top: 24px; left: 155px;
}
.svc-card__deco--right-lg {
  width: 158px; height: 158px;
  top: 18px; right: 10px;
  object-fit: cover;
}

/* Card body */
.svc-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.svc-card__title {
  font-family: var(--font-grotesk);
  font-size: 24px;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.167;    /* 28 / 24 */
}

.svc-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.429;    /* 20 / 14 */
  flex: 1;
}

/* CTA button — full width black pill */
.svc-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  background: #000000;
  border-radius: 80px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.5;
  transition: opacity var(--dur-ui) var(--ease-out);
}
.svc-card__cta:hover { opacity: 1; }
.svc-card__cta-icon  {
  flex-shrink: 0;
  transition: transform 180ms var(--ease-out);
}

/* ─────────────────────────────────────────────
   10. SECTION 3 — OFFER SUITE
───────────────────────────────────────────── */
.offer-suite {
  padding: 80px 92px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

/* Section header: heading left + desc right */
.offer-suite__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.offer-suite__header-left {
  position: relative;
  flex-shrink: 0;
  width: 633px;
}

/* The bracket deco is absolutely positioned near the heading's start */
.offer-suite__header-left .bracket-deco--sm {
  position: absolute;
  top: 0; left: -4px;
}

.offer-heading {
  font-family: var(--font-grotesk);
  font-size: 55.78px;
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1.205;
  background: linear-gradient(180deg, #ffffff 73.705%, #0f0c15 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-suite__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.32px;
  line-height: 1.5625;   /* 25 / 16 */
  width: 572px;
  flex-shrink: 0;
  padding-top: 44px;     /* align roughly to middle of the heading block */
}

/* Cards */
.offer-suite__cards {
  display: grid;
  grid-template-columns: repeat(4, 400px);
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-top: 5px;
}
.offer-suite__cards::-webkit-scrollbar { display: none; }

/* Individual offer card */
.offer-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: linear-gradient(183.02deg, rgba(255,255,255,0.08) 1.09%, rgba(153,153,153,0.08) 97.47%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  width: 400px;
  flex-shrink: 0;
}

.offer-card__title {
  font-family: var(--font-grotesk);
  font-size: 23.81px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.48px;
  line-height: 1.21;    /* 28.8 / 23.81 */
}

.offer-card__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.offer-card__desc {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.857;   /* 26 / 14 */
}

.offer-card__list {
  list-style: disc;
  padding-left: 23.65px;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-grotesk);
  font-size: 15.77px;
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.712;   /* 27 / 15.77 */
}

/* Horizontal divider */
.offer-card__divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  /* Figma uses an image asset for this — approximated with CSS */
}

/* Link row */
.offer-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-grotesk);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.18px;
  line-height: 1.575;
  transition: opacity 0.2s ease;
}
.offer-card__link:hover { opacity: 0.8; }

/* Arrow button circle */
.offer-card__arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 52.59px;
  border: 0.531px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(2.125px);
  -webkit-backdrop-filter: blur(2.125px);
  flex-shrink: 0;
  box-shadow: inset 0px 1.063px 6.375px 0px rgba(255,255,255,0.10);
  transition: background 0.2s ease;
}
.offer-card__link:hover .offer-card__arrow-btn {
  background: rgba(255, 255, 255, 0.06);
}

/* Pagination nav */
.offer-suite__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.offer-suite__nav-btns {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.offer-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 24px;
  border: 1px solid #606060;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.offer-nav-btn:hover {
  border-color: var(--c-primary);
  background: rgba(81, 224, 207, 0.06);
}

/* Progress bar */
.offer-suite__progress {
  flex: 1;
  height: 2px;
  background: rgba(231, 231, 231, 0.50);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.offer-suite__progress-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 100%;
  background: var(--c-primary-dark);
  border-radius: 16px;
  transform: scaleX(0.08);
  transform-origin: left center;
  transition: transform var(--dur-ui) var(--ease-out);
}

.offer-suite:not(.is-scrollable) .offer-suite__nav {
  display: none;
}

/* ─────────────────────────────────────────────
   11. SHARED: SECTION LABEL (glass pill badge)
   Appears in Sections 4, 5, 6, 7, 8, 9
───────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 10px;
  height: 33px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0px 1px 1px 0px rgba(255,255,255,0.08),
    inset 0px 2px 12px 0px rgba(255,255,255,0.04);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.28px;
  line-height: 1.8;
  white-space: nowrap;
  width: fit-content;
}
.section-label__icon { flex-shrink: 0; }

/* ─────────────────────────────────────────────
   12. SECTION 4 — WHY APPENDTECH
───────────────────────────────────────────── */
.why-us {
  padding: 32px 92px;
  display: flex;
  gap: 62px;
  align-items: center;
  min-height: 801px;
}

/* Left text column */
.why-us__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 100px 0;
}

.why-us__text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.why-us__heading {
  font-family: var(--font-grotesk);
  font-size: 55.89px;
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1.203;
  /* Figma: gradient from-[rgba(255,255,255,0.56)] to-white (at 75%) */
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-us__body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.56);
  letter-spacing: -0.32px;
  line-height: 1.8;          /* 28.8 / 16 */
}

/* Right: 2-column feature cards */
.why-us__cards {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}

.why-us__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 350px;
}
.why-us__col--b {
  justify-content: flex-end;   /* right col sits lower, ending at same bottom */
  padding-top: 60px;
}

/* Feature card */
.feat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.01);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0px 0px 32px 0px rgba(255,255,255,0.03);
}

.feat-card__icon { flex-shrink: 0; }

.feat-card__icon-img--shake {
  transform-origin: center center;
}

@media (prefers-reduced-motion: no-preference) {
  .feat-card__icon-img--shake {
    animation: feat-icon-shake 1.8s ease-in-out infinite;
  }
}

@keyframes feat-icon-shake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  8%  { transform: translate(-1.5px, 0.5px) rotate(-2deg); }
  16% { transform: translate(1.5px, -0.5px) rotate(2deg); }
  24% { transform: translate(-1px, 1px) rotate(-1.5deg); }
  32% { transform: translate(1px, -1px) rotate(1.5deg); }
  40% { transform: translate(-0.5px, 0.5px) rotate(-1deg); }
  48% { transform: translate(0.5px, -0.5px) rotate(1deg); }
  56%, 100% { transform: translate(0, 0) rotate(0deg); }
}

.feat-card__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feat-card__title {
  font-family: var(--font-grotesk);
  font-size: 23.81px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 1.21;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feat-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.48);
  letter-spacing: -0.28px;
  line-height: 1.8;
}

.feat-card__stat-row {
  display: flex;
  justify-content: flex-end;
}

/* Stat pill at bottom of card */
.feat-card__stat-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 26px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0px 1px 1px 0px rgba(255,255,255,0.08),
    inset 0px 2px 12px 0px rgba(255,255,255,0.04);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.28px;
  line-height: 1;
  white-space: nowrap;
}

/* ─────────────────────────────────────────────
   12b. Decorative dotted path (between Why Us & Process)
───────────────────────────────────────────── */
.dotted-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.dotted-path__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.dotted-path__line {
  fill: none;
  stroke: #fff;
  stroke-width: 3px;
  stroke-dasharray: 4 9;
  stroke-linecap: round;
  animation: moveDots 0.7s linear infinite;
}

@keyframes moveDots {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -13;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dotted-path__line {
    animation: none;
  }
}

/* ─────────────────────────────────────────────
   13. SECTION 5 — HOW WE WORK
───────────────────────────────────────────── */
.process {
  padding: 100px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

/* Header */
.process__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 1020px;
  text-align: center;
  padding: 0 92px;
}

.process__heading {
  font-family: var(--font-grotesk);
  font-size: 55.78px;
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1.205;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process__subheading {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.32px;
  line-height: 1.8;
  max-width: 600px;
}

/* Steps container */
.process__steps {
  position: relative;
  width: 1070px;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  padding: 40px 0;
}

/* Dashed connecting path — rounded weave past steps 1 → 7 */
.process__path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  overflow: visible;
}

.process__path-line {
  fill: none;
  stroke: #fff;
  stroke-width: 3px;
  stroke-dasharray: 4 9;
  stroke-linecap: round;
  animation: moveDots 0.7s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .process__path-line {
    animation: none;
  }
}

/* Each step */
.process__step {
  position: relative;
  padding: 88px 0 92px;
  z-index: 2;
}

/* Odd steps (left column) */
.process__step--left { padding-left: 110px; }
/* Even steps (right column) — offset downward */
.process__step--right { padding-left: 110px; margin-top: 184px; }

/* Large ghost step number */
.process__num {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 157px;
  font-weight: 700;
  font-style: normal;
  color: rgba(6, 41, 41, 0.80);
  line-height: 0.75;
  user-select: none;
  pointer-events: none;
}

.process__step-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process__step-title {
  font-family: var(--font-grotesk);
  font-size: 36px;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.234;   /* 44 / 36 */
}

.process__step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #d9dde1;
  line-height: 1.515;   /* 24 / 16 */
  max-width: 413px;
}

/* Step 7 (last) — left col, reduced padding */
.process__step--7 { padding-bottom: 40px; }

/* ─────────────────────────────────────────────
   14. SECTION 6 — EXPERIMENT LAB
───────────────────────────────────────────── */
.exp-lab {
  position: relative;
  padding: 92px 150px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  overflow: hidden;
}

/* Side glow ellipses */
.exp-lab__glow {
  position: absolute;
  width: 349px; height: 357px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,158,158,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.exp-lab__glow--left  { left: -188px; top: -252px; }
.exp-lab__glow--right { right: -188px; top: 32px; }

/* Header row */
.exp-lab__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.exp-lab__header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.exp-lab__heading {
  font-family: var(--font-grotesk);
  font-size: 55.78px;
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1.205;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 1193px;
}

.exp-lab__subheading {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.32px;
  line-height: 1.8;
  max-width: 1193px;
}

.exp-lab__cta { flex-shrink: 0; }

/* Cards row */
.exp-lab__cards-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Nav circle buttons */
.exp-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 92.81px;
  border: 0.938px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(3.75px);
  -webkit-backdrop-filter: blur(3.75px);
  box-shadow: inset 0px 1.875px 11.25px 0px rgba(255,255,255,0.10);
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.exp-nav-btn:hover { background: rgba(255,255,255,0.06); }

/* Cards */
.exp-lab__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  flex: 1;
}

.exp-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
}

/* Type tag pill */
.exp-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-grotesk);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.18px;
  line-height: 1.333;
  white-space: nowrap;
  align-self: flex-start;
}

.exp-card__title {
  font-family: var(--font-grotesk);
  font-size: 17.86px;
  font-weight: 700;
  letter-spacing: -0.36px;
  line-height: 1.568;    /* 28 / 17.86 */
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.exp-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.32px;
  line-height: 1.8;
}

.exp-card__result {
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* ─────────────────────────────────────────────
   15. SECTION 7 — TESTIMONIALS
───────────────────────────────────────────── */
.testimonials {
  padding: 80px 92px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonials__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonials__heading {
  font-family: var(--font-grotesk);
  font-size: 55.78px;
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1.205;
  max-width: 721px;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Scrolling track */
.testimonials__track-wrap {
  overflow: hidden;
  width: 100%;
}

.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

/* Individual testimonial card */
.testi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 32px 32px 64px;
  border-radius: 40px 40px 0 0;
  border-top: 1px solid rgba(255,255,255,0);
  border-left: 1px solid rgba(255,255,255,0);
  border-right: 1px solid rgba(255,255,255,0);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5,5,5,0) 50%, #050505 103.39%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Teal radial background inside card */
.testi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(19,134,135,0.20) 0%, transparent 60%),
    rgba(0,0,0,0.67);
  pointer-events: none;
}

.testi-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.556;
}

.testi-card__badge { height: 28px; width: auto; }

.testi-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testi-card__title {
  font-family: var(--font-grotesk);
  font-size: 24px;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.333;
}

.testi-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: var(--c-white);
  line-height: 1.556;
  opacity: 0.88;
}

/* Footer row */
.testimonials__footer {
  display: flex;
  align-items: center;
  gap: 28px;
}

.testimonials__rating {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  max-width: 407px;
  flex-wrap: wrap;
}

.testimonials__score {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #fbfbfb;
  line-height: 1.167;
}

.testimonials__trust {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: #fbfbfb;
  line-height: 1.5;
  max-width: 268px;
}

.testimonials__progress-wrap {
  flex: 1;
  min-width: 0;
}

.testimonials__progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(231,231,231,0.5);
}

.testimonials__progress-fill {
  height: 100%;
  width: 100%;
  background: #009e9e;
  border-radius: 16px;
  transform: scaleX(0.08);
  transform-origin: left center;
  transition: transform var(--dur-ui) var(--ease-out);
}

.testimonials:not(.is-scrollable) .testimonials__progress-wrap,
.testimonials:not(.is-scrollable) .testimonials__nav {
  display: none;
}

.testimonials:not(.is-scrollable) .testimonials__footer {
  justify-content: flex-start;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.testi-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 24px;
  border: 1px solid #606060;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.testi-nav-btn:hover { border-color: #009e9e; background: rgba(0,158,158,0.08); }

/* ─────────────────────────────────────────────
   16. SECTION 8 — PRICING
───────────────────────────────────────────── */
.pricing {
  position: relative;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.pricing__glow {
  position: absolute;
  left: 50%;
  top: 293px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}
.pricing__glow img { display: block; }

.pricing__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.pricing__heading {
  font-family: var(--font-grotesk);
  font-size: 55.78px;
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1.205;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 784px;
}

.pricing__sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.32px;
  line-height: 1.8;
}

/* Plans grid */
.pricing__plans {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 32px;
  align-items: flex-end;
  width: 100%;
  max-width: 1198px;
}

/* Base plan card */
.plan-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 24px;
  border-radius: 21px;
  border: 1px solid rgba(255,255,255,0.11);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.08) 100%);
  backdrop-filter: blur(19.5px);
  -webkit-backdrop-filter: blur(19.5px);
  box-shadow:
    0px 15px 32px rgba(0,0,0,0.20),
    0px 59px 59px rgba(0,0,0,0.17),
    0px 133px 80px rgba(0,0,0,0.10);
  overflow: hidden;
}

/* Featured card wrapper */
.plan-card--featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 10px 4px 4px;
  background: #049c9d;
  border-radius: 28px;
  border: none;
  box-shadow:
    0px 8px 18px rgba(0,0,0,0.10),
    0px 33px 33px rgba(0,0,0,0.09),
    0px 73px 44px rgba(0,0,0,0.05);
  backdrop-filter: none;
}

.plan-card__popular {
  font-family: var(--font-grotesk);
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1.28px;
  line-height: 1.15;
  text-align: center;
}

/* Inner card inside featured wrapper */
.plan-card__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.11);
  background: linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.46) 100%);
  backdrop-filter: blur(19.5px);
  -webkit-backdrop-filter: blur(19.5px);
  box-shadow:
    0px 15px 32px rgba(0,0,0,0.20),
    0px 59px 59px rgba(0,0,0,0.17);
  overflow: hidden;
}

.plan-card__specs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan-card__plan-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plan-card__name {
  font-family: var(--font-grotesk);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: var(--c-white);
}
.plan-card__name--dark { color: #1a1a1a; }

.plan-card__tagline {
  font-family: var(--font-grotesk);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1.28px;
  line-height: 1.2;
  color: var(--c-white);
}
.plan-card__tagline--dark { color: #1a1a1a; }

/* Feature list */
.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  padding: 0; margin: 0;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-family: var(--font-grotesk);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.45px;
  line-height: 1.2;
  color: var(--c-white);
}
.plan-card__features li img { flex-shrink: 0; margin-top: 1px; }
.plan-card__features li .plan-check { flex-shrink: 0; margin-top: 1px; }
.plan-card__features--dark li { color: #1a1a1a; font-weight: 500; }

/* CTA buttons */
.plan-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.18px;
  color: var(--c-white);
  text-decoration: none;
  text-align: center;
  line-height: 1.8;
  transition: background 0.2s ease;
}
.plan-card__cta:hover { background: rgba(255,255,255,0.10); }

.plan-card__cta--teal {
  background: #51e0cf;
  border-color: rgba(255,255,255,0.10);
  color: #000000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.plan-card__cta--teal:hover { background: #3dccc0; }

/* ─────────────────────────────────────────────
   17. SECTION 9 — FAQ
───────────────────────────────────────────── */
.faq {
  position: relative;
  padding: 76px 92px;
  padding-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 52px;
  overflow: hidden;
}

/* Right decorative image */
.faq__deco {
  flex-shrink: 0;
  width: 658px;
  order: 2;
}
.faq__deco img { width: 100%; height: auto; display: block; }

/* Left content */
.faq__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  order: 1;
}

.faq__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__heading {
  font-family: var(--font-grotesk);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1.292;
  max-width: 819px;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq__sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.32px;
  line-height: 1.8;
}

/* FAQ accordion */
.faq__list {
  display: flex;
  flex-direction: column;
  max-width: 928px;
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 24px 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.32px;
  line-height: 1.8;
  transition: color 0.2s ease;
}
.faq__btn:hover { color: var(--c-white); }

.faq__icon {
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
  color: rgba(255,255,255,0.72);
  transition: transform 0.25s ease, color 0.2s ease;
  width: 24px; text-align: center;
}

.faq__btn[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  color: #009e9e;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-emphasis) var(--ease-out);
}
.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}
.faq__answer-inner {
  overflow: hidden;
  padding: 0 24px 0 36px;
}
.faq__item.is-open .faq__answer-inner {
  padding-bottom: 24px;
}
.faq__answer p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.60);
  letter-spacing: -0.30px;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   18. CTA BANNER — SECURE YOUR GROWTH
───────────────────────────────────────────── */
.cta-banner {
  padding: 80px 210px 91px;   /* x=210 side margin matches Figma; 91px bottom matches gap to footer */
  padding-top: 0;
}

.cta-banner__card {
  position: relative;
  width: 100%;
  max-width: 1308px;
  margin: 0 auto;
  min-height: 474px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  /* Dark base + teal glow at bottom-center */
  background: radial-gradient(
    ellipse 80% 130% at 97% 10%,
    rgba(32, 107, 107, 0.381) 0%,
    rgba(10, 23, 23, 0.95) 55%,
    rgba(14, 14, 14, 1) 100%
  );
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Softer teal radial at bottom */
.cta-banner__glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 100% 100% at 50% 100%,
    rgba(0, 158, 158, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Decorative sparkle stars container */
.cta-banner__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.cta-star {
  position: absolute;
  left: 0;
  top: 0;
  height: auto;
  aspect-ratio: 1 / 1;
  opacity: 0;
  will-change: left, top, transform, opacity;
}

.cta-star--xl { width: 160px; }
.cta-star--lg { width: 96px; }
.cta-star--md { width: 56px; }
.cta-star--sm { width: 36px; }
.cta-star--xs { width: 22px; }

/* Static placement when motion is reduced / before active */
@media (prefers-reduced-motion: reduce) {
  .cta-star { opacity: 0.7; }
  .cta-star--path-a { left: 4%;  top: 28%; }
  .cta-star--path-b { left: 78%; top: 12%; }
  .cta-star--path-c { left: 88%; top: 58%; }
  .cta-star--path-d { left: 18%; top: 8%; }
  .cta-star--path-e { left: 62%; top: 72%; }
}

/* Content block */
.cta-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 60px 200px;
  max-width: 100%;
}

.cta-banner__label { align-self: center; }

.cta-banner__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;   /* line 1 is regular weight */
  letter-spacing: -1.16px;
  line-height: 1.18;
  color: rgba(255,255,255,0.80);
}

/* Bold second line */
.cta-banner__heading strong {
  font-weight: 700;
  color: var(--c-white);
}

.cta-banner__sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.56);
  letter-spacing: -0.32px;
  line-height: 1.75;
  max-width: 560px;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

/* ─────────────────────────────────────────────
   19. FOOTER
   Colors sampled from Figma reference PNGs
───────────────────────────────────────────── */
.site-footer {
  position: relative;
  isolation: isolate;
  background-color: #050505;
  border-radius: 28px 28px 0 0;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

/* Gradient wash — top teal tint fading to #050505 (not flat black) */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      ellipse 95% 52% at 50% 0%,
      #0a2e2c 0%,
      #032121 16%,
      #031d1c 28%,
      transparent 58%
    ),
    linear-gradient(
      180deg,
      #032121 0%,
      #021a1a 10%,
      #031111 26%,
      #030f0f 42%,
      #050707 60%,
      #050505 76%,
      #050505 100%
    );
  pointer-events: none;
  z-index: 0;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

/* Newsletter */
.footer__newsletter {
  padding: 59px 0 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer__newsletter-left {
  flex: 1;
  min-width: 0;
  max-width: 598px;
}

.footer__newsletter-heading {
  font-family: var(--font-grotesk);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--c-white);
}

.footer__newsletter-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #6a7a7a;
  letter-spacing: -0.32px;
  line-height: 1.625;
  margin-top: 8px;
}

.footer__subscribe {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer__email-input {
  width: 284px;
  height: 48px;
  padding: 0 20px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
  outline: none;
  transition: border-color 0.2s ease;
}
.footer__email-input::placeholder { color: rgba(255, 255, 255, 0.32); }
.footer__email-input:focus { border-color: rgba(0, 158, 158, 0.6); }
.footer__email-input:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
}

.footer__email-btn {
  height: 48px;
  padding: 0 28px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-grotesk);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer__email-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Horizontal divider */
.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* Main footer content */
.footer__main {
  padding: 56px 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

/* Brand column */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 400px;
  max-width: 100%;
  flex-shrink: 0;
}

.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer__logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__logo-wordmark {
  width: 179px;
  height: 20px;
  object-fit: contain;
}

.footer__brand-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: #616767;
  line-height: 1.714;
  letter-spacing: -0.14px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: background 0.2s ease;
}
.footer__social-btn:hover { background: rgba(255, 255, 255, 0.10); }
.footer__social-btn svg { display: block; }

/* Nav columns */
.footer__nav {
  display: flex;
  gap: 100px;
  flex-shrink: 0;
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.footer__nav-heading {
  font-family: var(--font-grotesk);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.4;
  color: var(--c-white);
  text-transform: none;
}

.footer__nav-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__nav-group a {
  display: block;
  padding: 4px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  color: #c8d1d0;
  text-decoration: none;
  letter-spacing: -0.15px;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.footer__nav-group a:hover { color: #ffffff; }

/* Copyright bar */
.footer__bottom {
  padding: 31px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: #bfbfbf;
  letter-spacing: -0.14px;
  white-space: nowrap;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.footer__legal a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: #c4c4c4;
  text-decoration: none;
  letter-spacing: -0.14px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.footer__legal a:hover { color: #ffffff; }

/* ─────────────────────────────────────────────
   7. RESPONSIVE
───────────────────────────────────────────── */

/* ── Large desktop (1440px+) — already matches Figma ── */
@media (min-width: 1729px) {
  .hero { max-width: 1728px; margin: 0 auto; }
}

/* ── Mid desktop (1024–1440px) — scale down proportionally ── */
@media (max-width: 1440px) {
  .hero__headline { font-size: clamp(56px, 6vw, 100px); }
  .hero__glow {
    width: clamp(500px, 55vw, 842px);
    height: clamp(500px, 55vw, 842px);
    top: clamp(480px, 52vw, 588px);
  }
}

/* ── Large desktop: section widths ── */
@media (max-width: 1600px) {
  .services { padding-left: 60px; padding-right: 60px; }
  .offer-suite { padding-left: 60px; padding-right: 60px; }
  .offer-suite__cards { grid-template-columns: repeat(4, 1fr); }
  .offer-card { width: auto; }
  .offer-suite__header-left { width: 45%; }
  .offer-suite__desc { width: 45%; padding-top: 32px; }
}

/* ── Mid desktop (1024–1293px) — footer brand+nav overflow fix ── */
@media (max-width: 1300px) {
  .footer__brand { width: auto; flex: 1; min-width: 0; }
  .footer__main { justify-content: flex-start; gap: 60px; }
  .footer__nav { gap: 80px; }
}

/* ── Tablet (768–1023px) ── */
/* ── Sections 4-6 large desktop tweaks ── */
@media (max-width: 1600px) {
  .why-us { padding: 32px 60px; }
  .why-us__col { width: 310px; }
  .process__steps { width: 960px; }
  .exp-lab { padding: 92px 92px; }
}

@media (max-width: 1023px) {
  :root {
    --section-px: 40px;
  }

  .navbar__nav  { display: none; }
  .navbar__lang-wrap { display: none; }
  .navbar__hamburger { display: flex; }

  .navbar__overlay { display: block; }
  .navbar__drawer { display: flex; }

  .hero {
    height: auto;
    min-height: 100vh;
    padding-bottom: 60px;
  }

  .hero__eyebrow,
  .hero__social-proof {
    position: static;
    transform: none;
    top: auto; left: auto; right: auto;
  }

  /* Rearrange hero content into normal flow */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    gap: 0;
  }

  .hero__eyebrow {
    width: auto;
    text-align: center;
    font-size: 14px;
    order: 1;
    margin-bottom: 20px;
  }
  .hero__social-proof { order: 2; margin-bottom: 32px; }
  .hero__headline-wrap {
    position: static;
    transform: none;
    order: 3;
    width: 90%;
    max-width: 700px;
    margin-bottom: 24px;
  }
  .hero__headline { font-size: clamp(40px, 7vw, 80px); }
  .hero__subtitle {
    position: static;
    transform: none;
    order: 4;
    width: 90%;
    max-width: 560px;
    font-size: 18px;
    margin-bottom: 32px;
  }
  .hero__ctas {
    position: static;
    transform: none;
    order: 5;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero__scroll { display: none; }

  .hero__glow {
    width: clamp(360px, 52vw, 480px);
    height: clamp(360px, 52vw, 480px);
    top: 52%;
    left: 50%;
  }

  .stats-bar { padding: 0 var(--section-px); }
  .stats-bar__card {
    transform: none;
    border-radius: 14px;
  }
  .stats-bar__card-inner {
    transform: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 32px 40px;
    gap: 24px;
  }
  .stats-bar__divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg,
      transparent 0%, rgba(255,255,255,0.12) 30%,
      rgba(255,255,255,0.12) 70%, transparent 100%);
    margin: 0 auto;
  }

  /* Services section */
  .services {
    padding: 64px 40px 80px;
    gap: 36px;
  }
  .services__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .section-heading { font-size: 40px; letter-spacing: -0.8px; }

  /* Offer Suite */
  .offer-suite { padding: 60px 40px; gap: 32px; }
  .offer-suite__header { flex-direction: column; gap: 24px; }
  .offer-suite__header-left { width: 100%; }
  .offer-suite__desc { width: 100%; padding-top: 0; font-size: 15px; }
  .offer-heading { font-size: 40px; }
  .offer-suite__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    overflow-x: visible;
  }
  .offer-card { width: auto; }

  /* CTA banner — tablet */
  .cta-banner { padding: 60px 40px; }
  .cta-banner__content { padding: 48px 40px; }

  /* Sec 7 — tablet */
  .testimonials { padding: 60px 40px; }
  .testimonials__heading { font-size: 40px; }
  .testimonials__track { grid-template-columns: repeat(2, 1fr); }

  /* Sec 8 — tablet */
  .pricing { padding: 60px 40px; }
  .pricing__heading { font-size: 40px; }
  .pricing__plans { flex-direction: column; align-items: stretch; max-width: 560px; }

  /* Sec 9 — tablet */
  .faq { padding: 60px 40px; }
  .faq__deco { width: 400px; }
  .faq__heading { font-size: 36px; }

  /* Footer — tablet */
  .site-footer { padding: 0 40px; border-radius: 24px 24px 0 0; }
  .footer__newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .footer__subscribe { width: 100%; }
  .footer__email-input { flex: 1; min-width: 0; width: auto; }
  .footer__brand { width: auto; flex: 1; min-width: 0; }
  .footer__main { justify-content: flex-start; gap: 48px; flex-wrap: wrap; }
  .footer__nav { gap: 48px; flex: 1; justify-content: flex-end; }

  /* Sec 4 — tablet */
  .why-us {
    flex-direction: column;
    padding: 60px 40px;
    min-height: unset;
    gap: 40px;
  }
  .why-us__left { padding: 0; }
  .why-us__cards { flex-direction: row; width: 100%; }
  .why-us__col { flex: 1; min-width: 0; }
  .why-us__col--b { padding-top: 0; }

  /* Sec 5 — tablet */
  .process__heading { font-size: 40px; }
  .process__steps { width: 100%; padding: 0 40px; }
  .process__step { padding: 60px 0 40px 90px; }
  .process__step--right { padding-top: 130px; }
  .process__num { font-size: 120px; }
  .process__step-title { font-size: 28px; }

  /* Sec 6 — tablet */
  .exp-lab { padding: 60px 40px; }
  .exp-lab__heading { font-size: 40px; }
  .exp-lab__cards { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 767px) {
  :root {
    --section-px: var(--section-px-sm);
    --section-px-sm: 20px;
    --nav-h: 64px;
    --section-gap: 48px;
  }

  /* ── Navbar ── */
  .navbar { padding: 0 var(--section-px-sm); }
  .navbar__logo-icon { width: 40px; height: 40px; }
  .navbar__logo-wordmark { width: 120px; }
  .navbar__actions { display: none; }
  .navbar__hamburger span { background: var(--c-primary); }

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero__eyebrow {
    font-size: 12px;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
  }

  .hero__social-proof {
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .hero__social-text { font-size: 12px; }

  .hero__headline-wrap {
    width: 100%;
    max-width: 340px;
    margin-bottom: 16px;
  }

  .hero__headline {
    font-size: clamp(32px, 9vw, 40px);
    letter-spacing: -0.8px;
  }

  .hero__subtitle {
    font-size: 16px;
    max-width: 340px;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 12px;
    margin-bottom: 0;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__glow {
    width: min(300px, 88vw);
    height: min(300px, 88vw);
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero__ctas .btn--ghost {
    background: transparent;
    border-color: var(--c-primary);
  }

  .btn { font-size: 13px; padding: 10px 20px; }

  /* ── Stats bar — compact horizontal row ── */
  .stats-bar { padding: 0 var(--section-px-sm); margin-top: 16px; }

  .stats-bar__card {
    transform: none;
    border-radius: 12px;
  }

  .stats-bar__card-inner {
    transform: none;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    grid-template-rows: auto;
    padding: 16px 12px;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .stats-bar__divider {
    width: 1px;
    height: 40px;
    margin: 0;
    background: linear-gradient(180deg,
      transparent 0%, rgba(255,255,255,0.12) 30%,
      rgba(255,255,255,0.12) 70%, transparent 100%);
  }

  .stats-bar__item { gap: 6px; min-width: 0; }

  .stats-bar__label {
    font-size: 10px;
    white-space: normal;
    line-height: 1.3;
  }

  .stats-bar__number { font-size: 22px; }

  .stats-bar__value-row {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .stats-bar__tag { display: none; }

  /* ── Services ── */
  .services { padding: var(--section-gap) var(--section-px-sm); gap: 32px; }
  .services__cards { grid-template-columns: 1fr; gap: 16px; }
  .section-heading { font-size: 32px; letter-spacing: -0.5px; }
  .section-subheading { font-size: 14px; }

  .svc-card {
    min-height: auto;
    padding: 80px 20px 24px;
    gap: 16px;
  }

  .svc-card__title { font-size: 20px; }
  .svc-card__desc { font-size: 13px; }
  .svc-card__cta { width: 100%; }

  /* ── Offer Suite ── */
  .offer-suite { padding: var(--section-gap) var(--section-px-sm); gap: 28px; }
  .offer-suite__header { gap: 16px; }
  .offer-suite__header-left .bracket-deco--sm { position: static; margin-bottom: 8px; }
  .offer-suite__cards { grid-template-columns: 1fr; gap: 16px; }
  .offer-heading { font-size: 32px; }
  .offer-suite__desc { font-size: 14px; }
  .offer-card { width: 100%; padding: 24px; }
  .offer-card__title { font-size: 20px; }
  .offer-suite__nav { gap: 16px; }
  .offer-nav-btn { width: 40px; height: 40px; }

  /* ── Why AppendTech ── */
  .why-us {
    padding: var(--section-gap) var(--section-px-sm);
    gap: 32px;
  }
  .why-us__left { padding: 0; gap: 12px; }
  .why-us__heading { font-size: 32px; }
  .why-us__body { font-size: 14px; }
  .why-us__cards { flex-direction: column; gap: 16px; }
  .why-us__col { width: 100%; }
  .why-us__col--b { padding-top: 0; }
  .feat-card { padding: 24px; }
  .feat-card__title { font-size: 20px; }
  .feat-card__desc { font-size: 13px; }

  /* ── Process ── */
  .process { padding: var(--section-gap) 0 32px; gap: 40px; }
  .process__header { padding: 0 var(--section-px-sm); }
  .process__heading { font-size: 30px; }
  .process__subheading { font-size: 14px; }
  .process__steps {
    grid-template-columns: 1fr;
    padding: 0 var(--section-px-sm);
  }
  .process__path { display: none; }
  .process__step,
  .process__step--right { padding: 32px 0 16px 60px !important; }
  .process__num { font-size: 72px; }
  .process__step-title { font-size: 20px; }
  .process__step-desc { font-size: 14px; max-width: 100%; }

  /* ── Experiment Lab ── */
  .exp-lab { padding: var(--section-gap) var(--section-px-sm); gap: 32px; }
  .exp-lab__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .exp-lab__heading { font-size: 30px; }
  .exp-lab__subheading { font-size: 14px; }
  .exp-lab__cta { width: 100%; justify-content: center; }
  .exp-lab__cards-wrap { width: 100%; }
  .exp-lab__cards { grid-template-columns: 1fr; gap: 16px; width: 100%; }
  .exp-nav-btn { display: none; }
  .exp-card { padding: 24px; }

  /* ── Testimonials — scroll-snap carousel ── */
  .testimonials { padding: var(--section-gap) var(--section-px-sm); gap: 32px; }
  .testimonials__heading { font-size: 30px; max-width: 100%; }
  .testimonials__track-wrap { overflow: visible; }

  .testimonials__track {
    display: flex;
    grid-template-columns: unset;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .testimonials__track::-webkit-scrollbar { display: none; }

  .testi-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    gap: 32px;
    padding: 24px 24px 40px;
    border-radius: 24px 24px 0 0;
  }

  .testi-card__title { font-size: 20px; }
  .testi-card__text { font-size: 16px; }

  .testimonials__footer {
    flex-wrap: wrap;
    gap: 16px;
  }
  .testimonials__rating { max-width: 100%; }
  .testimonials__score { font-size: 36px; }
  .testimonials__trust { font-size: 14px; max-width: 100%; }
  .testimonials__progress-wrap { order: 10; width: 100%; flex: none; }

  /* ── Pricing ── */
  .pricing { padding: var(--section-gap) var(--section-px-sm); gap: 40px; }
  .pricing__glow { top: 200px; opacity: 0.4; }
  .pricing__glow img { width: 280px; height: auto; }
  .pricing__heading { font-size: 30px; }
  .pricing__sub { font-size: 14px; }
  .pricing__plans {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    gap: 20px;
  }
  .plan-card { width: 100%; gap: 24px; }
  .plan-card--featured { width: 100%; }
  .plan-card__tagline { font-size: 24px; }
  .plan-card__cta { width: 100%; }

  /* ── FAQ ── */
  .faq {
    flex-direction: column;
    padding: var(--section-gap) var(--section-px-sm);
    gap: 32px;
    align-items: center;
  }
  .faq__content { order: 1; width: 100%; }
  .faq__deco {
    order: 2;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .faq__heading { font-size: 28px; }
  .faq__sub { font-size: 14px; }
  .faq__btn { font-size: 15px; padding: 20px 0; }

  /* ── CTA banner ── */
  .cta-banner { padding: 40px var(--section-px-sm); }
  .cta-banner__card { min-height: auto; border-radius: 20px; }
  .cta-banner__content {
    padding: 40px 24px;
    gap: 16px;
  }
  .cta-banner__heading { font-size: 28px; }
  .cta-banner__sub { font-size: 14px; }
  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 8px;
  }
  .cta-banner__actions .btn {
    width: 100%;
    text-align: center;
  }
  .cta-star--xl { width: 72px; }
  .cta-star--lg { width: 48px; }
  .cta-star--md { width: 32px; }
  .cta-star--sm { width: 24px; }
  .cta-star--xs { width: 16px; }

  /* ── Footer ── */
  .site-footer {
    padding: 0 var(--section-px-sm);
    border-radius: 20px 20px 0 0;
    background-color: #050505;
  }

  .site-footer::before {
    background:
      radial-gradient(
        ellipse 75% 48% at 88% 0%,
        #132626 0%,
        #0e2424 18%,
        transparent 52%
      ),
      linear-gradient(
        180deg,
        #0e2424 0%,
        #041f1f 12%,
        #031818 24%,
        #031010 46%,
        #050707 68%,
        #050505 82%,
        #050505 100%
      );
  }

  .footer__newsletter {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 0 32px;
    gap: 24px;
  }

  .footer__newsletter-heading {
    font-size: 32px;
    letter-spacing: -0.6px;
    line-height: 1.2;
  }

  .footer__newsletter-sub {
    font-size: 14px;
    margin-top: 6px;
    color: #6a7a7a;
  }

  .footer__subscribe {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .footer__email-input {
    flex: 1;
    min-width: 0;
    width: auto;
    height: 44px;
    font-size: 13px;
    padding: 0 16px;
  }

  .footer__email-btn {
    flex-shrink: 0;
    height: 44px;
    padding: 0 22px;
    font-size: 14px;
    width: auto;
  }

  .footer__main {
    flex-direction: column;
    gap: 36px;
    padding: 32px 0;
  }

  .footer__brand { width: 100%; gap: 16px; }

  .footer__logo-icon { width: 40px; height: 40px; }
  .footer__logo-wordmark { width: 140px; }

  .footer__brand-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #616767;
  }

  .footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 12px;
    width: 100%;
    flex-wrap: unset;
    justify-content: unset;
  }

  .footer__nav-group { gap: 12px; }

  .footer__nav-heading {
    font-size: 14px;
    font-weight: 700;
  }

  .footer__nav-group a {
    font-size: 13px;
    padding: 2px 0;
    color: #e0e0e0;
  }

  .footer__nav-group a:hover { color: #ffffff; }

  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 0 32px;
  }

  .footer__copyright {
    font-size: 12px;
    white-space: normal;
    color: #cdcdcd;
  }

  .footer__legal {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .footer__legal a {
    font-size: 12px;
    color: #e0e0e0;
  }

  .footer__legal a:hover { color: #ffffff; }
}

/* ─────────────────────────────────────────────
   SERVICE PAGE
───────────────────────────────────────────── */

/* ── Service hero ── */
.service-hero {
  position: relative;
  min-height: 520px;
  padding: calc(var(--nav-h) + 64px) var(--section-px) 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0a0909;
}

.service-hero__glow {
  position: absolute;
  top: 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.service-hero__glow--left {
  left: -120px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(81, 224, 207, 0.18) 0%, rgba(81, 224, 207, 0.06) 40%, transparent 70%);
}

.service-hero__glow--right {
  right: -120px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(81, 224, 207, 0.18) 0%, rgba(81, 224, 207, 0.06) 40%, transparent 70%);
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.service-hero__badge { margin-bottom: 4px; }

.service-hero__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--c-white);
}

.service-hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.56);
  letter-spacing: -0.32px;
  line-height: 1.8;
  max-width: 640px;
}

.service-hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

/* ── Service detail grid ── */
.sp-grid-section {
  padding: 80px var(--section-px) 100px;
}

.sp-grid {
  max-width: 1295px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sp-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: 16px;
  background: rgba(16, 22, 22, 0.72);
  border: 1px solid rgba(81, 224, 207, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.sp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(ellipse 80% 100% at 20% 0%, rgba(81, 224, 207, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sp-card__icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(81, 224, 207, 0.12);
  border: 1px solid rgba(81, 224, 207, 0.25);
  color: var(--c-primary);
  flex-shrink: 0;
}

.sp-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-grotesk);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--c-white);
}

.sp-card__desc {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.56);
  letter-spacing: -0.3px;
  line-height: 1.7;
}

.sp-card__includes {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-card__includes-heading {
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.28px;
}

.sp-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
  letter-spacing: -0.28px;
  line-height: 1.5;
}

.sp-card__check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: block;
}

.sp-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-card__price {
  font-family: var(--font-grotesk);
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.56);
  letter-spacing: -0.28px;
}

.sp-card__price strong {
  color: var(--c-white);
  font-weight: 600;
}

.sp-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 4px 4px 20px;
  border-radius: 999px;
  border: 1px solid rgba(81, 224, 207, 0.22);
  background: rgba(8, 18, 18, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: var(--c-white);
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color var(--dur-ui) var(--ease-out),
              background var(--dur-ui) var(--ease-out);
}

.sp-card__cta:hover {
  border-color: rgba(81, 224, 207, 0.4);
  background: rgba(12, 24, 24, 0.85);
}

.sp-card__cta-label {
  line-height: 1;
}

.sp-card__cta-arrow {
  display: block;
  width: 68px;
  height: 48px;
  flex-shrink: 0;
  transition: transform 180ms var(--ease-out);
}

/* ── Service testimonials ── */
.svc-testimonials {
  padding: 80px var(--section-px) 100px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.svc-testimonials__header {
  max-width: 1295px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.svc-testimonials__header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: 640px;
}

.svc-testimonials__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.96px;
  line-height: 1.2;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.svc-testimonials__sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.56);
  letter-spacing: -0.3px;
  line-height: 1.7;
  max-width: 320px;
  padding-top: 48px;
}

.svc-testimonials__carousel {
  max-width: 1295px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.svc-testimonials__track-wrap {
  flex: 1;
  overflow: hidden;
}

.svc-testimonials__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.svc-testimonials__track::-webkit-scrollbar { display: none; }

.svc-testi-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  background: rgba(16, 22, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-testi-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.3px;
  line-height: 1.7;
  flex: 1;
}

.svc-testi-card__attr {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 99px;
  background: rgba(81, 224, 207, 0.1);
  border: 1px solid rgba(81, 224, 207, 0.2);
  font-family: var(--font-grotesk);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-primary);
  letter-spacing: -0.26px;
}

.svc-testimonials__nav-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.svc-testimonials__nav-btn:hover {
  border-color: var(--c-primary);
  background: rgba(81, 224, 207, 0.08);
  color: var(--c-primary);
}

/* ── CSS plan checkmarks (service page) ── */
.plan-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
}

.plan-check--light {
  background: rgba(81, 224, 207, 0.15);
}

.plan-check--light::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 3px;
  width: 4px;
  height: 7px;
  border-right: 1.5px solid var(--c-primary);
  border-bottom: 1.5px solid var(--c-primary);
  transform: rotate(45deg);
}

.plan-check--dark {
  background: rgba(0, 0, 0, 0.12);
}

.plan-check--dark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 3px;
  width: 4px;
  height: 7px;
  border-right: 1.5px solid #0a0909;
  border-bottom: 1.5px solid #0a0909;
  transform: rotate(45deg);
}

/* ── CSS pricing glow (replaces SVG on service page) ── */
.pricing__glow--css {
  width: 500px;
  height: 500px;
  top: 50%;
  transform: translate(-50%, -30%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(81, 224, 207, 0.2) 0%, rgba(81, 224, 207, 0.06) 45%, transparent 70%);
  opacity: 1;
}

.pricing--service { padding-top: 60px; }

/* ── Service page responsive ── */
@media (max-width: 1023px) {
  .service-hero {
    min-height: 440px;
    padding: calc(var(--nav-h) + 48px) var(--section-px) 64px;
  }

  .service-hero__glow { width: 280px; height: 280px; }

  .sp-grid-section { padding: 60px var(--section-px) 80px; }
  .sp-grid { grid-template-columns: 1fr; gap: 20px; }

  .svc-testimonials { padding: 60px var(--section-px) 80px; gap: 36px; }
  .svc-testimonials__header { flex-direction: column; gap: 16px; }
  .svc-testimonials__sub { padding-top: 0; max-width: none; }

  .svc-testi-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 767px) {
  .service-hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 32px) var(--section-px-sm) 48px;
  }

  .service-hero__glow--left { left: -180px; }
  .service-hero__glow--right { right: -180px; }

  .service-hero__inner { gap: 20px; }

  .service-hero__heading { font-size: 36px; }

  .service-hero__sub { font-size: 14px; }

  .service-hero__ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .service-hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .sp-grid-section { padding: var(--section-gap) var(--section-px-sm); }
  .sp-card { padding: 24px; gap: 16px; }
  .sp-card__title { font-size: 22px; }
  .sp-card__footer { flex-direction: column; align-items: stretch; gap: 12px; }
  .sp-card__cta { justify-content: center; }

  .svc-testimonials { padding: var(--section-gap) var(--section-px-sm); gap: 28px; }
  .svc-testimonials__heading { font-size: 28px; }

  .svc-testimonials__carousel { gap: 12px; }

  .svc-testimonials__nav-btn {
    width: 36px;
    height: 36px;
  }

  .svc-testi-card {
    flex: 0 0 85vw;
    min-width: 0;
    padding: 24px;
  }

  .pricing--service { padding: var(--section-gap) var(--section-px-sm); }
}

/* ─────────────────────────────────────────────
   SHARED PAGE PRIMITIVES
───────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) var(--section-px) 64px;
  text-align: center;
  overflow: hidden;
  background: #0a0909;
}

.page-hero__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(81, 224, 207, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--c-white);
}

.page-hero__meta {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.48);
}

.page-hero--split .page-hero__inner,
.page-hero--split > .cs-hero__inner,
.page-hero--split > .resources-hero__inner {
  max-width: 1295px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  padding: 0 var(--section-px) 52px 0;
  max-width: 1295px;
  margin: 0 auto;
}

.filter-pill {
  padding: 10px 24px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-white);
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.filter-pill:hover { border-color: rgba(81, 224, 207, 0.4); color: var(--c-white); }

.filter-pill--active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #0a0909;
}

.prose-legal {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--section-px) 80px;
}

.prose-legal section { margin-bottom: 40px; }

.prose-legal h2 {
  font-family: var(--font-grotesk);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 16px;
  letter-spacing: -0.44px;
}

.prose-legal h3 {
  font-family: var(--font-grotesk);
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin: 24px 0 12px;
  letter-spacing: -0.34px;
}

.prose-legal p,
.prose-legal li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.56);
  letter-spacing: -0.3px;
}

.prose-legal ul {
  margin-top: 12px;
  padding-left: 20px;
  list-style: disc;
}

.prose-legal li { margin-bottom: 8px; }

.prose-legal a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-legal a:hover { color: #ffffff; }

.newsletter-inline {
  padding: 0 var(--section-px) 80px;
}

.newsletter-inline__inner {
  max-width: 1295px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  border-radius: 20px;
  background: rgba(16, 22, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-inline__heading {
  font-family: var(--font-grotesk);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 6px;
}

.newsletter-inline__sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
}

.newsletter-inline__form {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.newsletter-inline__input {
  padding: 12px 20px;
  border-radius: 99px 0 0 99px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  background: rgba(0, 0, 0, 0.4);
  color: var(--c-white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  min-width: 220px;
}

.newsletter-inline__btn {
  padding: 12px 24px;
  border-radius: 0 99px 99px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-white);
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* ── Case Study ── */
.cs-hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) var(--section-px) 80px;
  overflow: hidden;
  background: #0a0909;
}

.cs-hero__glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(81, 224, 207, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cs-hero__inner {
  max-width: 1295px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cs-hero__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.28px;
  line-height: 1.15;
  margin: 16px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs-hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cs-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero--split > .cs-hero__inner,
.cs-hero .cs-hero__inner {
  grid-template-columns: 1fr auto;
  gap: 64px;
}

.cs-hero__orbit {
  position: relative;
  width: 460px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-hero__orbit-img {
  display: block;
  width: 100%;
  height: auto;
}

.cs-grid-section { padding: 0 var(--section-px) 80px; }

.cs-grid {
  max-width: 1295px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 52px;
}

.cs-card {
  padding: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0px 0px 32px 0px rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cs-card__tag {
  font-family: var(--font-grotesk);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.4px;
}

.cs-card__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.cs-card__title {
  font-family: var(--font-grotesk);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs-card__desc {
  font-family: var(--font-grotesk);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}

.cs-card__metrics {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-card__metrics li {
  font-family: var(--font-grotesk);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.cs-card__link {
  font-family: var(--font-grotesk);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.cs-card__link:hover {
  color: var(--c-primary);
}

/* ── Case Study detail ── */
.cs-detail__hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) var(--section-px) 48px;
  overflow: hidden;
  background: #0a0909;
}

.cs-detail__glow {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(81, 224, 207, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cs-detail__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-detail__back {
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.56);
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s;
}

.cs-detail__back:hover {
  color: var(--c-primary);
}

.cs-detail__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.28px;
  line-height: 1.15;
  margin: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs-detail__lede {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
}

.cs-detail__metrics {
  padding: 0 var(--section-px) 56px;
}

.cs-detail__metrics-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 32px 0 rgba(255, 255, 255, 0.03);
}

.cs-detail__metrics-label {
  font-family: var(--font-grotesk);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 16px;
}

.cs-detail__metrics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cs-detail__metrics-list li {
  font-family: var(--font-grotesk);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.36px;
  color: var(--c-white);
  line-height: 1.35;
}

.cs-detail__body {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--section-px) 80px;
}

.cs-detail__section {
  margin-bottom: 48px;
}

.cs-detail__section:last-child {
  margin-bottom: 0;
}

.cs-detail__section-heading {
  font-family: var(--font-grotesk);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
  color: var(--c-white);
  margin: 0 0 16px;
}

.cs-detail__p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin: 0 0 16px;
}

.cs-detail__p:last-child {
  margin-bottom: 0;
}

.cs-detail__steps,
.cs-detail__items {
  margin: 16px 0 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-detail__steps li,
.cs-detail__items li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.cs-detail__steps li::marker,
.cs-detail__items li::marker {
  color: var(--c-primary);
}

.cs-detail__cta {
  padding: 0 var(--section-px) 100px;
}

.cs-detail__cta-inner {
  max-width: 1295px;
  margin: 0 auto;
  padding: 48px 60px;
  border-radius: 20px;
  background: #131313;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cs-detail__cta-heading {
  font-family: var(--font-grotesk);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.56px;
  color: var(--c-white);
  margin: 0 0 8px;
}

.cs-detail__cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

.cs-detail__cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cs-mid-cta {
  padding: 0 var(--section-px) 100px;
}

.cs-mid-cta__inner {
  position: relative;
  overflow: hidden;
  max-width: 1295px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
  background: #131313;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-mid-cta__inner::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 280px;
  height: 240px;
  background: radial-gradient(ellipse at top left, rgba(81, 224, 207, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.cs-mid-cta__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.cs-mid-cta__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--c-white);
}

.cs-mid-cta__sub {
  font-family: var(--font-grotesk);
  font-weight: 300;
  font-size: 16px;
  color: #b3b3b3;
}

.cs-mid-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Resources ── */
.resources-hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) var(--section-px) 80px;
  overflow: hidden;
  background: #0a0909;
}

.resources-hero__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(81, 224, 207, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.resources-hero__inner {
  max-width: 1295px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.resources-hero__content {
  padding-top: 0;
  margin-top: 0;
}

.resources-hero__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.28px;
  line-height: 1.15;
  margin: 0 0 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.resources-hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 28px;
}

.resources-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero--split > .resources-hero__inner {
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: start;
}

.resources-hero__graphic {
  position: relative;
  width: 460px;
  max-width: 100%;
  margin: -34px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resources-hero__graphic .lab-figure {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.lab-figure__orb,
.lab-figure__glass,
.lab-figure__balance,
.lab-figure__beam,
.lab-figure__stick,
.lab-figure__ball {
  transform-box: view-box;
}

/* Fixed fulcrum — center ball does not orbit with the beam */
.lab-figure__ball--center {
  transform-origin: 315px 234px;
}

/* Beam pivots on the center ball */
.lab-figure__beam {
  transform-origin: 315px 234px;
}

/* Nudge stick right and seat it on the fulcrum ball */
.lab-figure__stick {
  transform: translate(18px, 6px);
}

/* Roll along stick tangent (~20°): (0.9405, 0.3398) */
.lab-figure__ball--small {
  transform-origin: 233px 72px;
}

.lab-figure__ball {
  cursor: pointer;
  transition: filter 280ms ease;
}

.lab-figure__ball:hover {
  filter: brightness(1.12);
}

@media (prefers-reduced-motion: no-preference) {
  .lab-figure__orb {
    transform-origin: 315px 230px;
    animation: lab-orb-breathe 7s ease-in-out infinite;
  }

  /*
    Beam + rolling ball share one loop.
    Ball travels the full stick (left tip → right tip).
    Beam dips toward the ball's side: left down when ball is left, right when right.
  */
  .lab-figure__beam {
    animation: lab-beam-tilt 10s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  }

  .lab-figure__ball--small {
    animation: lab-ball-roll 10s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  }

  /* Anchor ball: subtle compression only — no positional drift */
  .lab-figure__ball--center {
    animation: lab-ball-anchor 10s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  }

  .resources-hero__graphic:hover .lab-figure__beam,
  .resources-hero__graphic:hover .lab-figure__ball--small,
  .resources-hero__graphic:hover .lab-figure__ball--center {
    animation-duration: 7s;
  }
}

@keyframes lab-orb-breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.96; }
}

/* Ball left → left rises; ball right → right rises */
@keyframes lab-beam-tilt {
  0%, 100% { transform: rotate(-25deg); }
  50% { transform: rotate(5deg); }
}

/*
  Full stick travel along tangent (0.9405, 0.3398).
  ~245px ≈ left tip → right tip, seated on the beam.
  Roll ≈ arc / radius ≈ 245 / 39 ≈ 360°.
*/
@keyframes lab-ball-roll {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1.01, 0.99);
  }
  50% {
    transform: translate(230.4px, 83.3px) rotate(360deg) scale(0.99, 1.01);
  }
}

@keyframes lab-ball-anchor {
  0%, 100% {
    transform: scale(1.015, 0.985);
  }
  50% {
    transform: scale(0.99, 1.01);
  }
}

.resource-grid-section { padding: 0 var(--section-px) 80px; }

.resource-grid {
  max-width: 1295px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 52px;
}

.resource-card {
  padding: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0px 0px 32px 0px rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.resource-card__label {
  font-family: var(--font-grotesk);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.4px;
}

.resource-card__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.resource-card__title {
  font-family: var(--font-grotesk);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.resource-card__desc {
  font-family: var(--font-grotesk);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}

.resource-card__meta {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-grotesk);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.resource-card__link {
  font-family: var(--font-grotesk);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.resource-card__link:hover {
  color: var(--c-primary);
}

.newsletter-lab {
  padding: 0 var(--section-px) 100px;
}

.newsletter-lab__inner {
  position: relative;
  overflow: hidden;
  max-width: 1295px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 60px;
  border-radius: 20px;
  background: #131313;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-lab__inner::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 280px;
  height: 240px;
  background: radial-gradient(ellipse at top left, rgba(81, 224, 207, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-lab__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.newsletter-lab__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--c-white);
}

.newsletter-lab__sub {
  font-family: var(--font-grotesk);
  font-weight: 300;
  font-size: 16px;
  color: #b3b3b3;
}

.newsletter-lab__form {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.newsletter-lab__input {
  width: 284px;
  height: 48px;
  padding: 0 20px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: inset 0px 0px 24px 1px rgba(255, 255, 255, 0.04);
  color: var(--c-white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
}

.newsletter-lab__input::placeholder { color: #999999; }

.newsletter-lab__btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--c-white);
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.18px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.newsletter-lab__btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Contact ── */
.contact-hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) var(--section-px) 64px;
  text-align: center;
  overflow: hidden;
  background: #0a0909;
}

.contact-hero__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(81, 224, 207, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-hero__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--c-white);
  margin: 20px 0 40px;
  letter-spacing: -1px;
}

.contact-hero__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.contact-info-card {
  padding: 24px;
  border-radius: 16px;
  background: rgba(16, 22, 22, 0.72);
  border: 1px solid rgba(81, 224, 207, 0.12);
}

.contact-info-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(81, 224, 207, 0.12);
  border: 1px solid rgba(81, 224, 207, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  margin-bottom: 16px;
}

.contact-info-card__label {
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 6px;
}

.contact-info-card__value {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.5;
}

.contact-form-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px var(--section-px);
}

.contact-form-section__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 32px;
  letter-spacing: -0.64px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__field label {
  display: block;
  font-family: var(--font-grotesk);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 22, 22, 0.6);
  color: var(--c-white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.contact-form__field textarea { resize: vertical; min-height: 120px; }

.contact-form__dropzone {
  padding: 0;
  margin-bottom: 0;
  height: 120px;
  border-radius: 12px;
  border: 1px dashed rgba(81, 224, 207, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: inset 0px 0px 24px 0px rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: -0.28px;
  color: rgba(255, 255, 255, 0.4);
  text-align: left;
  transition: border-color 0.2s ease;
}

.contact-form__dropzone img {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.contact-form__dropzone-icon { display: block; font-size: 24px; margin-bottom: 8px; }

.contact-form__submit { width: 100%; justify-content: center; padding: 16px; }

.contact-form__note {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.36);
}

.contact-social {
  padding: 0 var(--section-px) 80px;
  text-align: center;
}

.contact-social__heading {
  font-family: var(--font-grotesk);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 24px;
}

.contact-social__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-social__btn {
  padding: 12px 28px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-white);
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s;
}

.contact-social__btn:hover { border-color: var(--c-primary); color: var(--c-primary); }

/* ── About ── */
.about-hero-v2 {
  padding: calc(var(--nav-h) + 50px) var(--section-px) 50px;
  background: #0a0909;
}

.about-hero-v2__inner {
  max-width: 1604px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.about-hero-v2__card {
  position: relative;
  z-index: 3;
  width: 791px;
  max-width: 65%;
  height: 520px;
  flex-shrink: 0;
  margin-right: -260px;
  padding: 80px;
  border-radius: 20px 99px 80px 20px;
  background: rgba(4, 156, 157, 0.2);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-hero-v2__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.28px;
  line-height: 1.2;
  margin-top: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-v2__body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-top: 14px;
}

.about-hero-v2__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.about-hero-v2__photo {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.about-hero-v2__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story {
  position: relative;
  padding: 100px var(--section-px);
  overflow: hidden;
}

.about-story__inner {
  max-width: 1604px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.about-story__left {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.about-story__glow {
  position: absolute;
  top: -180px;
  left: -220px;
  width: 349px;
  height: 357px;
  background: radial-gradient(ellipse, rgba(81, 224, 207, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.about-story__heading {
  position: relative;
  font-family: var(--font-grotesk);
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1.2;
  margin-top: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-story__body {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.8;
  margin-top: 14px;
}

.about-story__note {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-top: auto;
  padding-top: 20px;
}

.about-story__note img { flex-shrink: 0; }

.about-story__note p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.8;
}

.about-story-steps {
  list-style: none;
  width: 556px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.about-story-step {
  position: relative;
  display: flex;
  gap: 40px;
  padding-bottom: 60px;
}

.about-story-step:last-child { padding-bottom: 0; }

.about-story-step__num {
  position: relative;
  flex-shrink: 0;
  width: 30px;
  font-family: var(--font-grotesk);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
  color: rgba(255, 255, 255, 0.16);
}

.about-story-step__num::after {
  content: '';
  position: absolute;
  top: 34px;
  bottom: -60px;
  left: 14px;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.about-story-step:last-child .about-story-step__num::after { display: none; }

.about-story-step__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-story-step__title {
  font-family: var(--font-grotesk);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-story-step__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.8;
}

.about-principles {
  padding: 50px var(--section-px) 100px;
}

.about-principles__header {
  max-width: 1028px;
  margin: 0 auto 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.about-principles__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1.2;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-principles__sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.8;
}

.about-principles__grid {
  max-width: 1584px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 80px;
}

.about-principle-card {
  border-left: 1px solid #049c9d;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-principle-card__title {
  font-family: var(--font-grotesk);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  background-image: url("/assets/images/about-principle-texture.png");
  background-size: cover;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-principle-card__desc {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #b3b3b3;
  line-height: 1.6;
}

.about-team {
  --team-active-w: 680px;
  --team-active-h: 420px;
  --team-inactive-w: 540px;
  --team-inactive-h: 340px;
  --team-gap: 40px;
  background: #000;
  padding: 80px 0 110px;
  overflow: hidden;
}

.about-team__header {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 0 var(--section-px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.about-team__badge {
  height: 28px;
  padding: 0 12px 0 8px;
  gap: 6px;
  font-size: 12px;
  letter-spacing: -0.12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin-bottom: 18px;
}

.about-team__badge .section-label__icon {
  width: 14px;
  height: 14px;
}

.about-team__heading {
  max-width: 700px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-grotesk);
  font-size: clamp(32px, 2.9vw, 42px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.15;
}

.about-team__heading-line {
  display: block;
}

.about-team__heading-line--muted {
  color: #8a8a8a;
}

.about-team__heading-line--strong {
  color: #ffffff;
}

.about-team__sub {
  max-width: 560px;
  margin: 22px 0 0;
  font-family: var(--font-grotesk);
  font-size: 13px;
  font-weight: 400;
  color: #6e6e6e;
  line-height: 1.55;
}

.about-team__carousel {
  position: relative;
  width: 100%;
}

.about-team__track-wrap {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  /* Peek cards sit under the next button; don't steal its clicks */
  pointer-events: none;
}

.about-team__track {
  display: flex;
  align-items: center;
  gap: var(--team-gap);
  will-change: transform;
  transition: transform 0.45s ease;
  padding-left: calc(50vw - var(--team-active-w) / 2);
}

.about-team__card {
  position: relative;
  flex-shrink: 0;
  width: var(--team-inactive-w);
  height: var(--team-inactive-h);
  border-radius: 18px;
  background: #121212;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42% 58%;
  opacity: 0.35;
  filter: blur(7px);
  transform: scale(0.96);
  transform-origin: center center;
  transition:
    width 0.45s ease,
    height 0.45s ease,
    opacity 0.45s ease,
    filter 0.45s ease,
    transform 0.45s ease;
}

.about-team__card.is-active {
  width: var(--team-active-w);
  height: var(--team-active-h);
  opacity: 1;
  filter: none;
  transform: scale(1);
  pointer-events: auto;
}

.about-team__portrait {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.about-team__photo {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 110%;
  object-fit: contain;
  object-position: bottom left;
  pointer-events: none;
  user-select: none;
  /* Drop solid black plate behind cutout portraits */
  mix-blend-mode: lighten;
}

.about-team__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  padding: 32px 40px 32px 8px;
  text-align: left;
  z-index: 1;
}

.about-team__info--solo {
  grid-column: 1 / -1;
  padding-left: 40px;
  max-width: 420px;
}

.about-team__intro {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-team__greeting,
.about-team__role {
  margin: 0;
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-white);
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.about-team__bio {
  margin: 18px 0 0;
  max-width: 340px;
  font-family: var(--font-grotesk);
  font-size: 13px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.55;
}

.about-team__stat {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-grotesk);
  font-weight: 500;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.1px;
  white-space: nowrap;
}

.about-team__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  font-family: var(--font-grotesk);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-team__linkedin:hover {
  color: var(--c-primary);
}

.about-team__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-team__nav-btn svg {
  pointer-events: none;
  display: block;
}

.about-team__nav-btn--next { right: 16px; }

.about-team__nav-btn:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.about-timeline {
  padding: 0 var(--section-px) 80px;
}

.about-timeline__header {
  max-width: 1295px;
  margin: 0 auto 48px;
}

.about-timeline__heading {
  position: relative;
  font-family: var(--font-grotesk);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-timeline__heading-mark {
  display: inline-block;
  border: 1px solid #049c9d;
  padding: 0 1px;
  margin-right: -1px;
}

.about-timeline__grid {
  max-width: 1295px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 30px;
  row-gap: 32px;
}

.about-timeline__card {
  grid-column: span 2;
  border-radius: 20px;
  border: 1px solid #1f1f1f;
  overflow: hidden;
  background: #0a0a0a;
}

.about-timeline__card--wide:nth-of-type(4) { grid-column: 2 / span 2; }
.about-timeline__card--wide:nth-of-type(5) { grid-column: 4 / span 2; }

.about-timeline__band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 120px;
  border-bottom: 1px solid #262626;
  background: #0a0a0a;
}

.about-timeline__band-year {
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.about-timeline__band-glow {
  border-left: 1px solid #262626;
  background-color: #121818;
  background-image:
    url("/assets/images/about-timeline-texture.png"),
    linear-gradient(
      155deg,
      rgba(4, 156, 157, 0.42) 0%,
      rgba(4, 156, 157, 0.18) 42%,
      rgba(4, 156, 157, 0.06) 100%
    );
  background-size: cover, auto;
  background-position: center, center;
  background-blend-mode: overlay, normal;
}

.about-timeline__year {
  font-family: var(--font-grotesk);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1.12px;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-timeline__text {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-timeline__title {
  font-family: var(--font-grotesk);
  font-weight: 500;
  font-size: 20px;
  color: var(--c-white);
}

.about-timeline__desc {
  font-family: var(--font-grotesk);
  font-size: 18px;
  color: #8c8c8c;
  line-height: 1.5;
}

/* ── New pages responsive ── */
@media (max-width: 1023px) {
  .cs-hero .cs-hero__inner,
  .resources-hero .resources-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-mid-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-hero__cards {
    grid-template-columns: 1fr;
  }

  .about-hero-v2__inner {
    flex-direction: column;
  }

  .about-hero-v2__card {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding: 48px;
    border-radius: 20px;
  }

  .about-hero-v2__photo {
    width: 100%;
    height: 360px;
  }

  .about-story__inner {
    flex-direction: column;
    gap: 60px;
  }

  .about-story-steps { width: 100%; }

  .about-principles__grid {
    grid-template-columns: 1fr;
    padding: 0;
    row-gap: 48px;
  }

  .about-timeline__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-timeline__card,
  .about-timeline__card--wide,
  .about-timeline__card--wide:nth-of-type(4),
  .about-timeline__card--wide:nth-of-type(5) {
    grid-column: span 1;
  }

  .about-team__nav-btn { display: none; }

  .about-team {
    --team-active-w: min(560px, 78vw);
    --team-active-h: 360px;
    --team-inactive-w: min(440px, 62vw);
    --team-inactive-h: 290px;
    --team-gap: 32px;
  }

  .about-team__greeting,
  .about-team__role {
    font-size: 18px;
  }

  .about-team__bio {
    font-size: 12px;
    max-width: 280px;
  }

  .newsletter-inline__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .newsletter-lab__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-inline__form,
  .newsletter-lab__form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-inline__input {
    border-radius: 99px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
  }

  .newsletter-inline__btn { border-radius: 99px; width: 100%; }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 32px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-pill { flex-shrink: 0; }
}

@media (max-width: 767px) {
  .page-hero { padding: calc(var(--nav-h) + 48px) var(--section-px-sm) 48px; }

  .prose-legal { padding: 0 var(--section-px-sm) 60px; }

  .newsletter-inline { padding: 0 var(--section-px-sm) 60px; }

  .cs-hero,
  .resources-hero,
  .about-hero-v2,
  .contact-hero {
    padding: calc(var(--nav-h) + 40px) var(--section-px-sm) 48px;
  }

  .about-story {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-team {
    --team-active-w: calc(100vw - (var(--section-px-sm) * 2));
    --team-inactive-w: var(--team-active-w);
    --team-active-h: auto;
    --team-inactive-h: auto;
    --team-gap: 16px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-team__header {
    margin-bottom: 32px;
    padding: 0 var(--section-px-sm);
  }

  .about-team__heading {
    font-size: clamp(26px, 7vw, 34px);
  }

  .about-team__sub {
    font-size: 12px;
    margin-top: 16px;
  }

  .about-team__track {
    padding-left: calc(50vw - var(--team-active-w) / 2);
  }

  .about-team__card,
  .about-team__card.is-active {
    width: var(--team-active-w);
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 16px;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .about-team__card:not(.is-active) {
    opacity: 0;
    visibility: hidden;
  }

  .about-team__portrait {
    height: 240px;
  }

  .about-team__photo {
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    object-position: bottom center;
  }

  .about-team__info,
  .about-team__info--solo {
    padding: 20px 24px 28px;
    max-width: none;
  }

  .about-team__greeting,
  .about-team__role {
    font-size: 18px;
  }

  .about-team__bio {
    max-width: none;
  }

  .cs-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .cs-grid-section,
  .resource-grid-section,
  .cs-mid-cta,
  .cs-detail__hero,
  .cs-detail__metrics,
  .cs-detail__body,
  .cs-detail__cta,
  .about-story,
  .about-principles,
  .about-timeline,
  .newsletter-lab {
    padding-left: var(--section-px-sm);
    padding-right: var(--section-px-sm);
  }

  .cs-detail__metrics-list {
    grid-template-columns: 1fr;
  }

  .cs-detail__cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
  }

  .cs-detail__cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cs-detail__cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-section {
    padding: 60px var(--section-px-sm);
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .cs-hero__ctas,
  .resources-hero__ctas,
  .about-hero-v2__ctas,
  .cs-mid-cta__actions {
    flex-direction: column;
  }

  .cs-hero__ctas .btn,
  .resources-hero__ctas .btn,
  .about-hero-v2__ctas .btn,
  .cs-mid-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cs-hero__orbit {
    width: min(100%, 320px);
  }

  .resources-hero__graphic {
    width: min(100%, 240px);
  }

  .about-story-step,
  .about-story-step__body {
    gap: 16px;
  }

  .about-timeline__grid {
    grid-template-columns: 1fr;
  }

  .newsletter-lab__form {
    flex-direction: column;
  }

  .newsletter-lab__input,
  .newsletter-lab__btn {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */
.contact-hero__inner { margin-bottom: 48px; }

.contact-hero__inner .page-hero__heading { margin-top: 16px; }

.contact-cards {
  position: relative;
  z-index: 1;
  max-width: 1008px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
}

.contact-card {
  flex: 1;
  min-width: 0;
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: inset 0px 0px 24px 0px rgba(255, 255, 255, 0.04);
  text-align: center;
}

.contact-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0px 2px 12px 0px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__title {
  font-family: var(--font-grotesk);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.36px;
  line-height: 1.55;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-card__value {
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
  letter-spacing: -0.28px;
}

/* Form section */
.contact-form-section {
  padding: 48px var(--section-px) 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  background: var(--c-bg);
}

.contact-form-section__heading {
  max-width: 760px;
  font-family: var(--font-grotesk);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.64px;
  line-height: 1.4;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form {
  width: 100%;
  max-width: 592px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__row {
  display: flex;
  gap: 24px;
}

.contact-form__field {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-form__label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form__req { color: var(--c-primary); -webkit-text-fill-color: var(--c-primary); }

.contact-form__input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: inset 0px 0px 24px 1px rgba(255, 255, 255, 0.04);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--c-white);
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form__input::placeholder { color: #999999; }
.contact-form__input:focus { border-color: rgba(81, 224, 207, 0.5); }
.contact-form__input.is-invalid,
.contact-form__textarea.is-invalid {
  border-color: rgba(255, 107, 107, 0.7);
}

.contact-form__textarea {
  width: 100%;
  height: 164px;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: inset 0px 0px 24px 1px rgba(255, 255, 255, 0.04);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--c-white);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.contact-form__textarea:focus { border-color: rgba(81, 224, 207, 0.5); }

.contact-form__error {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #ff6b6b;
  letter-spacing: -0.12px;
}

.contact-form__field .contact-form__dropzone {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
}

.contact-form__dropzone.is-invalid {
  border-color: rgba(255, 107, 107, 0.7);
}

.contact-form__dropzone span {
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form__submit {
  width: 100%;
  height: 48px;
  border-radius: 54px;
  border: none;
  background: var(--c-primary);
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  color: #0a0f0f;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.contact-form__submit:hover { opacity: 0.88; transform: translateY(-1px); }
.contact-form__submit:active { transform: translateY(0); }
.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-form__status {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: -0.28px;
  margin: 0;
}

.contact-form__status--success {
  color: var(--c-primary);
}

.contact-form__status--error {
  color: #ff6b6b;
}

.contact-form__note {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: -0.28px;
}

/* Connect with us */
.contact-social {
  padding: 48px var(--section-px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.contact-social__heading {
  font-family: var(--font-grotesk);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: -0.48px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.56) 0%, #ffffff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-social__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-social__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0px 2px 12px 0px rgba(255, 255, 255, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--c-white);
  letter-spacing: -0.28px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-social__link:hover {
  border-color: var(--c-primary);
  background: rgba(81, 224, 207, 0.08);
}

@media (max-width: 1023px) {
  .contact-cards { flex-direction: column; }
  .contact-card { width: 100%; }
}

@media (max-width: 767px) {
  .contact-form-section { padding: 40px var(--section-px-sm) 64px; }
  .contact-social { padding: 40px var(--section-px-sm); }
  .contact-form__row { flex-direction: column; gap: 20px; }
  .contact-social__row { gap: 10px; }
  .contact-social__link { padding: 9px 16px; font-size: 13px; }
}

/* ══════════════════════════════════════════════════════════
   30. MOTION SYSTEM
   Tokens live in :root. Reveal/hero/micro-interactions below.
══════════════════════════════════════════════════════════ */

/* ── Focus-visible (sitewide) ── */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Navbar scrolled + link underline ── */
.navbar {
  transition: background-color var(--dur-ui) var(--ease-out),
              border-color var(--dur-ui) var(--ease-out);
}
.navbar--scrolled {
  background: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

.navbar__link {
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1.5px;
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .navbar__link:hover::after,
  .navbar__link:focus-visible::after,
  .navbar__link--active::after {
    transform: scaleX(1);
  }
}

/* Hamburger → X */
.navbar__hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  z-index: 310;
}
.navbar__hamburger span {
  position: absolute;
  left: 8px;
  width: 24px;
  transition: transform var(--dur-emphasis) var(--ease-in-out),
              opacity var(--dur-emphasis) var(--ease-in-out),
              top var(--dur-emphasis) var(--ease-in-out);
}
.navbar__hamburger span:nth-child(1) { top: 12px; }
.navbar__hamburger span:nth-child(2) { top: 19px; }
.navbar__hamburger span:nth-child(3) { top: 26px; }
.navbar__hamburger.is-open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.is-open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* Drawer: faster close + link stagger on open */
.navbar__drawer {
  transition: transform 300ms var(--ease-out);
}
.navbar__drawer:not(.navbar__drawer--open) {
  transition-duration: 220ms;
  transition-timing-function: var(--ease-in);
}
.navbar__drawer--open .navbar__drawer-link {
  animation: drawerLinkIn 280ms var(--ease-out) both;
}
.navbar__drawer--open .navbar__drawer-link:nth-child(1) { animation-delay: 40ms; }
.navbar__drawer--open .navbar__drawer-link:nth-child(2) { animation-delay: 80ms; }
.navbar__drawer--open .navbar__drawer-link:nth-child(3) { animation-delay: 120ms; }
.navbar__drawer--open .navbar__drawer-link:nth-child(4) { animation-delay: 160ms; }
.navbar__drawer--open .navbar__drawer-link:nth-child(5) { animation-delay: 200ms; }
@keyframes drawerLinkIn {
  from { opacity: 0; translate: 12px 0; }
  to   { opacity: 1; translate: 0 0; }
}

/* ── Buttons press ── */
.btn {
  transition: opacity var(--dur-ui) var(--ease-out),
              transform var(--dur-micro) var(--ease-out),
              background-color var(--dur-ui) var(--ease-out),
              border-color var(--dur-ui) var(--ease-out);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}

/* ── Reveal base (visible by default; hide only when motion OK) ── */
@media (prefers-reduced-motion: no-preference) {
  .js-enabled [data-reveal] {
    opacity: 0;
    translate: 0 var(--rise-md);
    transition:
      opacity var(--dur-entrance) var(--ease-out-soft),
      translate var(--dur-entrance) var(--ease-out-soft);
  }
  .js-enabled [data-reveal].is-visible {
    opacity: 1;
    translate: 0 0;
  }

  /* Process: directional on desktop */
  @media (min-width: 1024px) {
    .js-enabled .process__step--left[data-reveal] {
      translate: -10px var(--rise-md);
    }
    .js-enabled .process__step--right[data-reveal] {
      translate: 10px var(--rise-md);
    }
    .js-enabled .process__step[data-reveal].is-visible {
      translate: 0 0;
    }
  }
}

/* Stats: preserve skew — animate via translate on card (independent) */
.stats-bar__card {
  transition:
    opacity var(--dur-entrance) var(--ease-out-soft),
    translate var(--dur-entrance) var(--ease-out-soft);
}

/* ── Hero load choreography ── */
@media (prefers-reduced-motion: no-preference) {
  .js-enabled .hero:not(.is-ready) .hero__eyebrow,
  .js-enabled .hero:not(.is-ready) .hero__social-proof {
    opacity: 0;
    translate: 0 var(--rise-sm);
  }
  .js-enabled .hero:not(.is-ready) .hero__headline-line {
    opacity: 0;
    translate: 0 var(--rise-lg);
  }
  .js-enabled .hero:not(.is-ready) .hero__subtitle,
  .js-enabled .hero:not(.is-ready) .hero__ctas {
    opacity: 0;
    translate: 0 var(--rise-md);
  }
  .js-enabled:not(.motion-ready):has(.hero) #section-scroll {
    opacity: 0;
  }
  .js-enabled .hero:not(.is-ready) .hero__glow {
    opacity: 0;
  }

  .hero__eyebrow,
  .hero__social-proof,
  .hero__headline-line,
  .hero__subtitle,
  .hero__ctas,
  .hero__glow,
  #section-scroll {
    transition:
      opacity 480ms var(--ease-out-soft),
      translate 480ms var(--ease-out-soft);
  }
  .hero__glow {
    transition: opacity 900ms var(--ease-out-soft);
  }

  .hero.is-ready .hero__eyebrow {
    opacity: 1;
    translate: 0 0;
    transition-delay: 0ms;
  }
  .hero.is-ready .hero__social-proof {
    opacity: 1;
    translate: 0 0;
    transition-delay: 60ms;
  }
  .hero.is-ready .hero__headline-line:nth-child(1) {
    opacity: 1;
    translate: 0 0;
    transition-delay: 120ms;
    transition-duration: 550ms;
  }
  .hero.is-ready .hero__headline-line:nth-child(2) {
    opacity: 1;
    translate: 0 0;
    transition-delay: 200ms;
    transition-duration: 550ms;
  }
  .hero.is-ready .hero__subtitle {
    opacity: 1;
    translate: 0 0;
    transition-delay: 300ms;
  }
  .hero.is-ready .hero__ctas {
    opacity: 1;
    translate: 0 0;
    transition-delay: 380ms;
  }
  .js-enabled.motion-ready #section-scroll,
  .js-enabled:not(:has(.hero)) #section-scroll {
    opacity: 1;
    transition-delay: 600ms;
    transition-duration: 400ms;
  }
  .hero.is-ready .hero__glow {
    opacity: 1;
    transition-delay: 0ms;
  }
}

@media (prefers-reduced-motion: no-preference) and (max-width: 767px) {
  .hero__eyebrow,
  .hero__social-proof,
  .hero__headline-line,
  .hero__subtitle,
  .hero__ctas {
    transition-duration: 400ms;
  }
  .hero.is-ready .hero__social-proof { transition-delay: 40ms; }
  .hero.is-ready .hero__headline-line:nth-child(1) { transition-delay: 80ms; }
  .hero.is-ready .hero__headline-line:nth-child(2) { transition-delay: 140ms; }
  .hero.is-ready .hero__subtitle { transition-delay: 200ms; }
  .hero.is-ready .hero__ctas { transition-delay: 260ms; }
}

/* ── Card micro-interactions (pointer devices only) ── */
@media (hover: hover) and (pointer: fine) {
  .svc-card,
  .offer-card,
  .feat-card,
  .exp-card,
  .testi-card,
  .plan-card,
  .sp-card,
  .svc-testi-card,
  .cs-card,
  .resource-card,
  .about-principle-card,
  .about-timeline__card,
  .contact-card {
    transition:
      transform var(--dur-ui) var(--ease-out),
      border-color var(--dur-ui) var(--ease-out),
      box-shadow var(--dur-ui) var(--ease-out);
  }

  .svc-card:hover,
  .offer-card:hover,
  .feat-card:hover,
  .exp-card:hover,
  .plan-card:hover,
  .sp-card:hover,
  .svc-testi-card:hover,
  .cs-card:hover,
  .resource-card:hover,
  .about-principle-card:hover,
  .about-timeline__card:hover,
  .contact-card:hover {
    transform: translateY(-4px);
  }

  .svc-card:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25); }
  .offer-card:hover,
  .feat-card:hover,
  .exp-card:hover,
  .sp-card:hover,
  .svc-testi-card:hover,
  .cs-card:hover,
  .resource-card:hover,
  .about-principle-card:hover,
  .about-timeline__card:hover,
  .contact-card:hover {
    border-color: rgba(81, 224, 207, 0.28);
  }
  .plan-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
  }
  .plan-card--featured:hover {
    transform: translateY(-4px);
  }

  .svc-card__deco {
    transition: transform 320ms var(--ease-out);
  }
  .svc-card:hover .svc-card__deco {
    transform: translateY(-6px);
  }

  .svc-card__cta {
    transition: opacity var(--dur-ui) var(--ease-out);
  }
  .svc-card__cta:hover { opacity: 1; }
  .svc-card__cta-icon {
    transition: transform 180ms var(--ease-out);
  }
  .svc-card:hover .svc-card__cta-icon,
  .svc-card__cta:hover .svc-card__cta-icon {
    transform: translateX(4px);
  }

  .sp-card__cta {
    transition: border-color var(--dur-ui) var(--ease-out),
                background var(--dur-ui) var(--ease-out),
                transform var(--dur-ui) var(--ease-out);
  }
  .sp-card__cta-arrow {
    transition: transform 180ms var(--ease-out);
  }
  .sp-card:hover .sp-card__cta-arrow,
  .sp-card__cta:hover .sp-card__cta-arrow {
    transform: translateX(3px);
  }

  .offer-card__arrow-btn {
    transition: transform 180ms var(--ease-out), background 180ms var(--ease-out);
  }
  .offer-card:hover .offer-card__arrow-btn {
    transform: translateX(4px);
  }

  .feat-card__icon {
    transition: transform var(--dur-ui) var(--ease-out);
  }
  .feat-card:hover .feat-card__icon {
    transform: scale(1.06);
  }

  .offer-nav-btn:active,
  .testi-nav-btn:active,
  .about-team__nav-btn:active,
  .svc-testimonials__nav-btn:active,
  .footer__social-btn:active {
    transform: scale(0.97);
  }

  .footer__social-btn {
    transition: transform 160ms var(--ease-out), background 160ms var(--ease-out);
  }
  .footer__social-btn:hover {
    transform: scale(1.08);
  }
}

@media (hover: none), (pointer: coarse) {
  .svc-card:active,
  .offer-card:active,
  .feat-card:active,
  .plan-card:active,
  .sp-card:active,
  .cs-card:active,
  .resource-card:active,
  .about-principle-card:active,
  .contact-card:active {
    transform: scale(0.985);
  }
}

/* Filter card fade */
[data-category] {
  transition: opacity 150ms var(--ease-out), transform 150ms var(--ease-out);
}
[data-category].is-filtering-out {
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
}

/* ── Process ambient pause ── */
.process--paused .process__path-line {
  animation-play-state: paused;
}

/* ── Pricing popular badge settle ── */
@media (prefers-reduced-motion: no-preference) {
  .js-enabled .plan-card__popular {
    transition: opacity 320ms var(--ease-out-soft), transform 320ms var(--ease-out-soft);
  }
  .js-enabled .plan-card--featured:not(.is-visible) .plan-card__popular {
    opacity: 0;
    transform: scale(0.9);
  }
  .js-enabled .plan-card--featured.is-visible .plan-card__popular {
    opacity: 1;
    transform: scale(1);
    transition-delay: 120ms;
  }
}

/* ── CTA stars traverse the banner while visible ── */
@media (prefers-reduced-motion: no-preference) {
  .cta-banner--active .cta-star--path-a {
    animation: ctaStarTraverseA 22s linear infinite;
  }
  .cta-banner--active .cta-star--path-b {
    animation: ctaStarTraverseB 18s linear infinite;
    animation-delay: -6s;
  }
  .cta-banner--active .cta-star--path-c {
    animation: ctaStarTraverseC 16s linear infinite;
    animation-delay: -3s;
  }
  .cta-banner--active .cta-star--path-d {
    animation: ctaStarTraverseD 20s linear infinite;
    animation-delay: -10s;
  }
  .cta-banner--active .cta-star--path-e {
    animation: ctaStarTraverseE 14s linear infinite;
    animation-delay: -4s;
  }
}

/* Left → right, low arc */
@keyframes ctaStarTraverseA {
  0%   { left: -12%; top: 16%; opacity: 0; transform: rotate(0deg); }
  8%   { opacity: 0.85; }
  92%  { opacity: 0.85; }
  100% { left: 108%; top: 64%; opacity: 0; transform: rotate(28deg); }
}

/* Right → left, high diagonal */
@keyframes ctaStarTraverseB {
  0%   { left: 108%; top: 6%; opacity: 0; transform: rotate(-8deg); }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.9; }
  100% { left: -14%; top: 76%; opacity: 0; transform: rotate(18deg); }
}

/* Bottom-left → top-right */
@keyframes ctaStarTraverseC {
  0%   { left: -10%; top: 92%; opacity: 0; transform: rotate(12deg); }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: 106%; top: -18%; opacity: 0; transform: rotate(-16deg); }
}

/* Top → bottom, slight drift right */
@keyframes ctaStarTraverseD {
  0%   { left: 22%; top: -22%; opacity: 0; transform: rotate(0deg); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.8; }
  100% { left: 68%; top: 108%; opacity: 0; transform: rotate(22deg); }
}

/* Fast horizontal mid sweep */
@keyframes ctaStarTraverseE {
  0%   { left: -10%; top: 40%; opacity: 0; transform: rotate(-6deg); }
  8%   { opacity: 0.95; }
  92%  { opacity: 0.95; }
  100% { left: 110%; top: 26%; opacity: 0; transform: rotate(14deg); }
}

/* ── Footer reveal ── */
@media (prefers-reduced-motion: no-preference) {
  .js-enabled .site-footer[data-reveal] {
    opacity: 0;
    translate: 0 12px;
    transition:
      opacity 500ms var(--ease-out-soft),
      translate 500ms var(--ease-out-soft);
  }
  .js-enabled .site-footer[data-reveal].is-visible {
    opacity: 1;
    translate: 0 0;
  }
}

/* ── Offer / testi nav buttons ── */
.offer-nav-btn,
.testi-nav-btn {
  padding: 0;
  line-height: 0;
  opacity: 1;
  transition: opacity var(--dur-ui) var(--ease-out),
              border-color var(--dur-ui) var(--ease-out),
              background var(--dur-ui) var(--ease-out),
              transform var(--dur-micro) var(--ease-out);
}
.offer-nav-btn:disabled,
.testi-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.offer-nav-btn img,
.testi-nav-btn img {
  display: block;
  pointer-events: none;
}

/* Exp lab: no side nav — cards fill width */
.exp-lab__cards-wrap {
  gap: 0;
}

/* ── Mobile blur reductions ── */
@media (max-width: 768px) {
  .offer-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .plan-card,
  .plan-card__inner {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  @media (prefers-reduced-motion: no-preference) {
    .js-enabled [data-reveal] {
      transition-duration: 400ms;
    }
  }
}

/* Cap stagger on mobile via shorter delays set in JS (80→ already short); group feel */
@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  .js-enabled [data-reveal][data-reveal-index="3"],
  .js-enabled [data-reveal][data-reveal-index="4"],
  .js-enabled [data-reveal][data-reveal-index="5"],
  .js-enabled [data-reveal][data-reveal-index="6"] {
    transition-delay: 80ms !important; /* cap long staggers */
  }
}

/* Global reduced-motion safety net */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js-enabled [data-reveal],
  .js-enabled .hero .hero__eyebrow,
  .js-enabled .hero .hero__social-proof,
  .js-enabled .hero .hero__headline-line,
  .js-enabled .hero .hero__subtitle,
  .js-enabled .hero .hero__ctas,
  .js-enabled .hero .hero__glow,
  .js-enabled #section-scroll,
  .js-enabled .site-footer {
    opacity: 1 !important;
    translate: 0 0 !important;
  }
}
