/* ===========================
   NOVAQUBE — Apple-inspired
   Pure white, clean type, refined
   =========================== */

:root {
  /* Pure white aesthetic */
  --bg: #FFFFFF;
  --surface: #F5F5F7;
  --surface-2: #FAFAFB;
  --line: #D2D2D7;
  --line-soft: #EBEBED;

  /* Apple text greys */
  --text: #1D1D1F;
  --text-2: #515154;
  --text-3: #86868B;

  /* Brand accent — keep their blue */
  --blue: #2A3DB5;
  --blue-deep: #1A2580;
  --blue-light: #6F7DCF;
  --blue-pale: #EEF0FA;

  /* Functional accents */
  --green: #1FBA66;
  --coral: #FF6B4A;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 980px;

  --easing: cubic-bezier(0.16, 1, 0.3, 1);
  --easing-out: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1240px;
  --pad-y: clamp(80px, 10vw, 160px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--blue); color: #fff; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Onest', 'SF Pro Display', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'ss02';
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* =============================
   Typography — Apple display scale
   ============================= */
.eyebrow {
  font-family: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}
.eyebrow-light { color: var(--text-3); }
.eyebrow-light::before { background: var(--text-3); }

.display-xxl {
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.045em;
}
.display-xl {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.display-lg {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.display-md {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.display-sm {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.lede {
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.45;
  color: var(--text-2);
  font-weight: 400;
  letter-spacing: -0.012em;
}

.muted { color: var(--text-3); }
.text-blue { color: var(--blue); }
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 60%, var(--coral) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =============================
   Navigation — sticky, blur on scroll
   ============================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: 96px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.35s var(--easing), border-color 0.35s var(--easing), box-shadow 0.35s var(--easing), height 0.35s var(--easing);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 76px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.08);
}
.nav.scrolled .nav-logo img {
  height: 56px;
}
.nav-logo img {
  transition: height 0.35s var(--easing);
}
.nav-inner {
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
@media (min-width: 768px) {
  .nav-inner { padding: 0 32px; }
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 72px; width: auto; display: block; }
.nav-links { display: none; gap: 36px; align-items: center; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s ease;
  letter-spacing: -0.005em;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-cta {
  display: none;
  align-items: center; gap: 8px;
  background: var(--text);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  transition: transform 0.2s var(--easing), background 0.25s ease;
}
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }
.nav-cta:hover { transform: translateY(-1px); background: #000; }
.nav-cta svg { width: 14px; height: 14px; }

.menu-btn {
  display: flex; flex-direction: column; gap: 5px;
  padding: 10px;
  margin-right: -10px; /* visually align right edge */
  background: none; border: 0; cursor: pointer;
}
.menu-btn span { width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: all 0.3s var(--easing); }
@media (min-width: 900px) { .menu-btn { display: none; } }

/* Shrink logo a touch on smaller screens so the nav row sits balanced */
@media (max-width: 899px) {
  .nav-logo img { height: 52px; }
}

.mobile-menu {
  position: fixed; inset: 76px 0 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 40px 24px;
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--easing);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  padding: 16px 0;
  font-size: 22px; font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: -0.02em;
}

/* =============================
   Buttons
   ============================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 500;
  transition: transform 0.2s var(--easing), background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer; border: 0;
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--text); color: #fff; }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-secondary { background: var(--surface); color: var(--text); }
.btn-secondary:hover { background: var(--line-soft); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); padding: 14px 0; }
.btn-ghost:hover { color: var(--blue); }
.btn-ghost::after {
  content: '→'; transition: transform 0.3s var(--easing);
}
.btn-ghost:hover::after { transform: translateX(4px); }
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* =============================
   Sections
   ============================= */
.section { padding-top: var(--pad-y); padding-bottom: var(--pad-y); position: relative; }
.section-tight { padding-top: 80px; padding-bottom: 80px; }
.section-surface { background: var(--surface); }
.section-dark { background: #1D1D1F; color: #FFFFFF; }
.section-dark .lede { color: rgba(255,255,255,0.7); }
.section-dark .eyebrow { color: var(--blue-light); }
.section-dark .eyebrow::before { background: var(--blue-light); }

.section-head { margin-bottom: 64px; max-width: 900px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head .lede { margin-top: 24px; max-width: 720px; }

/* =============================
   Hero
   ============================= */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(42, 61, 181, 0.08) 0%, transparent 45%),
              radial-gradient(circle at 10% 80%, rgba(255, 107, 74, 0.05) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 32px; }
.hero .lede { max-width: 620px; margin-bottom: 48px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Page hero (smaller than home hero) */
.page-hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(42, 61, 181, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 920px; }
.page-hero h1 { margin: 24px 0 24px; }

/* Hero visual (right side mark) */
.hero-grid {
  display: grid; gap: 60px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.3fr 1fr; gap: 80px; } }

.hero-visual {
  position: relative; aspect-ratio: 1; max-width: 460px; margin: 0 auto;
  width: 100%;
}
@media (max-width: 999px) {
  .hero-visual { max-width: 360px; margin-top: 24px; }
}
@media (max-width: 600px) {
  .hero-visual { max-width: 300px; }
}

/* =============================
   Concentric arcs — premium hero visual
   Three rings rotating at different speeds, plus dotted outer ring
   ============================= */
.hero-arcs {
  position: relative;
  width: 100%; height: 100%;
}
.hero-arcs-svg {
  width: 100%; height: 100%;
  position: relative; z-index: 1;
  overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
  .hero-arcs-svg * { animation: none !important; }
  .hero-arcs-svg animateTransform,
  .hero-arcs-svg animate { display: none !important; }
}

/* Floating chips on hero — positioned at corners around the arcs, never overlapping */
.hero-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  font-size: 13px; font-weight: 500;
  animation: chipFloat 6s ease-in-out infinite;
  pointer-events: auto;
  white-space: nowrap;
}
.hero-chip-num { font-size: 11px; color: var(--text-3); font-weight: 400; }
.hero-chip-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale); color: var(--blue);
  flex-shrink: 0;
}
.hero-chip-icon svg { width: 18px; height: 18px; }

/* Three chips at three corners around the arc system */
.hero-chip.c1 { top: 4%; left: -12%; animation-delay: 0s; }
.hero-chip.c2 { top: 50%; right: -10%; transform: translateY(-50%); animation-delay: -2s; }
.hero-chip.c3 { bottom: 4%; left: 6%; animation-delay: -4s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-chip.c2 { animation-name: chipFloatCenter; }
@keyframes chipFloatCenter {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}

@media (max-width: 999px) {
  .hero-chip {
    padding: 10px 12px;
    font-size: 12px;
  }
  .hero-chip-icon { width: 28px; height: 28px; }
  .hero-chip-icon svg { width: 15px; height: 15px; }
  .hero-chip-num { font-size: 10px; }
  .hero-chip.c1 { left: -8%; }
  .hero-chip.c2 { right: -6%; }
  .hero-chip.c3 { left: 4%; bottom: 0; }
}
@media (max-width: 600px) {
  .hero-chip {
    padding: 8px 11px;
    font-size: 11px;
    border-radius: 10px;
  }
  .hero-chip-icon { width: 24px; height: 24px; border-radius: 6px; }
  .hero-chip-icon svg { width: 13px; height: 13px; }
  .hero-chip-num { font-size: 9px; }
  .hero-chip.c1 { top: 0; left: -2%; }
  .hero-chip.c2 { right: -2%; }
  .hero-chip.c3 { left: 2%; bottom: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-chip { animation: none; }
}

/* =============================
   Marquee — service strip
   ============================= */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 28px 0;
  background: #fff;
}
.marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.marquee-track span.dim { color: var(--text-3); font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================
   Service grid (home overview)
   ============================= */
.svc-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--easing), background 0.4s var(--easing);
  display: flex; flex-direction: column;
  min-height: 280px;
}
.svc-card:hover { transform: translateY(-4px); background: #EFEFF2; }
.svc-card-icon {
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.svc-card-icon svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.svc-card p { color: var(--text-2); flex: 1; font-size: 15px; line-height: 1.55; }
.svc-card-link {
  margin-top: 20px;
  font-size: 14px; font-weight: 500;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s var(--easing);
}
.svc-card:hover .svc-card-link { gap: 10px; }

/* Featured big service card */
.svc-card-featured {
  grid-column: 1 / -1;
  background: var(--text);
  color: #fff;
  padding: 56px;
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center;
}
@media (min-width: 800px) { .svc-card-featured { grid-template-columns: 1.1fr 1fr; padding: 72px; } }
.svc-card-featured h3 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.06; margin-bottom: 20px; }
.svc-card-featured p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 520px; }
.svc-card-featured .svc-card-icon { background: rgba(255,255,255,0.08); color: #fff; }
.svc-card-featured:hover { transform: none; background: #000; }

/* =============================
   Stats
   ============================= */
.stats-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex; align-items: baseline;
}
.stat-num span { font-size: 0.55em; font-weight: 500; color: var(--blue); margin-left: 4px; }
.stat-label {
  font-family: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-top: 14px;
}

/* =============================
   Feature rows (alternating layout for service detail pages)
   ============================= */
.feature-row {
  display: grid; gap: 60px;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line-soft);
}
.feature-row:last-child { border-bottom: 0; }
@media (min-width: 900px) { .feature-row { grid-template-columns: 1fr 1fr; gap: 80px; } }
.feature-row.flip .feature-content { order: 2; }
@media (max-width: 899px) { .feature-row.flip .feature-content { order: 1; } }
.feature-content h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; margin: 16px 0 20px; }
.feature-content p { color: var(--text-2); font-size: 17px; margin-bottom: 24px; max-width: 520px; }
.feature-list { list-style: none; display: grid; gap: 12px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text);
}
.feature-list li::before {
  content: ''; flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--blue-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 6l2 2 4-4' stroke='%232A3DB5' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
  border-radius: 50%;
  margin-top: 2px;
}
.feature-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/3;
  position: relative;
}
.feature-visual img, .feature-visual svg { width: 100%; height: 100%; object-fit: cover; }

/* =============================
   Big CTA panel
   ============================= */
.cta-panel {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: ''; position: absolute; inset: -50% -50% auto -50%;
  height: 80%;
  background: radial-gradient(ellipse at center top, rgba(111, 125, 207, 0.4), transparent 60%);
  pointer-events: none;
}
.cta-panel h2 { font-size: clamp(36px, 5vw, 68px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.04; margin-bottom: 20px; position: relative; }
.cta-panel p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 560px; margin: 0 auto 32px; position: relative; }
.cta-panel-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; }
.cta-panel .btn-primary { background: #fff; color: var(--text); }
.cta-panel .btn-primary:hover { background: var(--surface); }
.cta-panel .btn-secondary { background: rgba(255,255,255,0.1); color: #fff; }
.cta-panel .btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* =============================
   Work grid
   ============================= */
.work-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .work-grid { grid-template-columns: repeat(6, 1fr); grid-auto-flow: dense; }
  .work-card { grid-column: span 3; }
  .work-card.featured { grid-column: span 6; aspect-ratio: 16/7; }
  .work-card.tall { grid-column: span 3; grid-row: span 2; aspect-ratio: 4/5; }
}
.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--surface);
  cursor: pointer;
  transition: transform 0.5s var(--easing);
}
.work-card:hover { transform: translateY(-4px); }
.work-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s var(--easing);
}
.work-card:hover .work-bg { transform: scale(1.04); }
.work-info {
  position: absolute; left: 28px; right: 28px; bottom: 28px;
  color: #fff; z-index: 2;
}
.work-info::before {
  content: ''; position: absolute; inset: -120px -28px -28px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: -1;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.work-mono {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.9; margin-bottom: 10px;
}
.work-info h3 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.18; }
.work-card.featured .work-info h3 { font-size: clamp(28px, 3vw, 40px); }
.work-tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.work-tags span {
  font-size: 11px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  padding: 5px 11px; border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-pill {
  padding: 9px 18px;
  background: var(--surface);
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  border: 0; cursor: pointer;
  transition: all 0.25s ease;
  color: var(--text);
}
.filter-pill:hover { background: var(--line-soft); }
.filter-pill.active { background: var(--text); color: #fff; }

/* =============================
   Process / values / team
   ============================= */
.values-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.value-num {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--blue);
  margin-bottom: 24px;
}
.value-card h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.18; }
.value-card p { color: var(--text-2); font-size: 15px; line-height: 1.55; }

.process-list { display: flex; flex-direction: column; }
.process-step {
  padding: 28px 0;
  border-top: 1px solid var(--line-soft);
  display: grid; gap: 20px;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  transition: padding 0.3s var(--easing);
}
.process-step:hover { padding-left: 8px; }
.process-step:last-child { border-bottom: 1px solid var(--line-soft); }
.process-num {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--text-3);
  min-width: 48px;
}
.process-content h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.process-content p { color: var(--text-2); font-size: 16px; max-width: 640px; }

.team-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { display: flex; flex-direction: column; }
.team-photo {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  background-color: var(--surface);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: transform 0.4s var(--easing);
}
.team-card:hover .team-photo { transform: translateY(-4px); }
.team-card h4 { font-size: 17px; font-weight: 600; }
.team-card .role { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* =============================
   Testimonial
   ============================= */
.testimonial {
  text-align: center;
  max-width: 880px; margin: 0 auto;
}
.testimonial-quote {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 36px;
}
.testimonial-quote::before { content: '"'; }
.testimonial-quote::after { content: '"'; }
.testimonial-meta {
  font-size: 14px; color: var(--text-3);
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.testimonial-meta strong { color: var(--text); font-weight: 600; }

/* =============================
   FAQ
   ============================= */
.faq { max-width: 860px; }
.faq details {
  border-top: 1px solid var(--line-soft);
  padding: 24px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600; letter-spacing: -0.015em;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-2);
  transition: transform 0.3s var(--easing), background 0.25s ease, color 0.25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--text); color: #fff; border-color: var(--text); }
.faq details p {
  margin-top: 16px;
  color: var(--text-2);
  font-size: 16px; line-height: 1.6;
  max-width: 760px;
}

/* =============================
   Contact
   ============================= */
.contact-grid {
  display: grid; gap: 60px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; } }
.contact-info-row {
  border-top: 1px solid var(--line-soft);
  padding: 24px 0;
}
.contact-info-row:last-child { border-bottom: 1px solid var(--line-soft); }
.contact-info-label {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.contact-info-value { font-size: 18px; font-weight: 500; color: var(--text); letter-spacing: -0.015em; }

.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: 16px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3); margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font: inherit; font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 61, 181, 0.1);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.check-grid { display: grid; gap: 8px; grid-template-columns: 1fr 1fr; margin: 8px 0 24px; }
.check-pill { position: relative; }
.check-pill input { position: absolute; opacity: 0; }
.check-pill label {
  display: block;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-align: center;
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.check-pill input:checked + label {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.check-pill label:hover { border-color: var(--text); }

/* =============================
   Footer
   ============================= */
.footer {
  background: var(--surface);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 48px; } }
.footer-brand img { height: 64px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--text-2); font-size: 15px; max-width: 320px; }
.footer-col h5 {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 15px; color: var(--text-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-company {
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
}
.footer-company p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}
.footer-company strong {
  color: var(--text-2);
  font-weight: 600;
}
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--text-3);
}

/* =============================
   Reveal animations
   ============================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--easing), transform 0.9s var(--easing);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =============================
   Service icons (in svc-card-icon)
   ============================= */
.icon-circle {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale); color: var(--blue);
  margin-bottom: 24px;
}
.icon-circle svg { width: 26px; height: 26px; }

/* =============================
   Pricing tier cards (services hub or pricing hint)
   ============================= */
.tier-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }
.tier {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex; flex-direction: column;
}
.tier h3 { font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.tier .tier-price { font-size: 36px; font-weight: 700; letter-spacing: -0.03em; margin: 12px 0 6px; }
.tier .tier-price small { font-size: 14px; font-weight: 400; color: var(--text-3); }
.tier ul { list-style: none; margin: 24px 0; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.tier ul li { font-size: 14px; color: var(--text-2); padding-left: 24px; position: relative; }
.tier ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--blue); font-weight: 700;
}

/* =============================
   Tag chips
   ============================= */
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  background: var(--surface);
  border-radius: var(--radius-pill);
  color: var(--text-2);
}

/* =============================
   Helpers / utilities
   ============================= */
.divider { height: 1px; background: var(--line-soft); border: 0; margin: 0; }
.text-center { text-align: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* Industry pill row (home page, social proof) */
.industries {
  display: flex; gap: 36px;
  flex-wrap: wrap; align-items: center;
  opacity: 0.7;
}
.industries span {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
}

/* Process timeline visual aid */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 1px; background: var(--line-soft);
}
.timeline-item { position: relative; padding: 12px 0 24px; }
.timeline-item::before {
  content: ''; position: absolute; left: -28px; top: 18px;
  width: 9px; height: 9px;
  background: var(--blue); border-radius: 50%;
  outline: 4px solid #fff;
}
.timeline-item h4 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.timeline-item p { font-size: 14px; color: var(--text-2); }

/* =============================
   START-A-PROJECT WIZARD
   ============================= */
.wizard-shell {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Progress */
.wiz-progress {
  margin-bottom: 40px;
}
.wiz-progress-bar {
  height: 4px;
  background: var(--line-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}
.wiz-progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--coral));
  border-radius: 999px;
  transition: width 0.6s var(--easing);
}
.wiz-steps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-family: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.wiz-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--text-3);
  border: 1px solid var(--line-soft);
  transition: all 0.3s var(--easing);
  font-weight: 500;
}
.wiz-step-pill span {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--line-soft);
  color: var(--text-3);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s var(--easing);
}
.wiz-step-pill.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.wiz-step-pill.active span {
  background: var(--blue);
  color: #fff;
}
.wiz-step-pill.complete {
  background: var(--blue-pale);
  color: var(--blue);
  border-color: var(--blue-pale);
}
.wiz-step-pill.complete span {
  background: var(--blue);
  color: #fff;
}

/* Steps */
.wiz-step {
  display: none;
  animation: wizFadeIn 0.5s var(--easing);
}
.wiz-step.active {
  display: block;
}
@keyframes wizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .wiz-step { animation: none; }
}

.wiz-step-head {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}

.wiz-field {
  margin-bottom: 28px;
}
.wiz-label {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}
.wiz-form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 4px;
}
@media (min-width: 600px) { .wiz-form-row { grid-template-columns: 1fr 1fr; } }

#wizard-form input[type="text"],
#wizard-form input[type="email"],
#wizard-form textarea {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font: inherit;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
#wizard-form input:focus,
#wizard-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 61, 181, 0.1);
}
#wizard-form input.invalid,
#wizard-form textarea.invalid {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
}
#wizard-form textarea { min-height: 120px; resize: vertical; }

/* Service picker grid */
.service-card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-bottom: 12px;
}
@media (min-width: 600px) { .service-card-grid { grid-template-columns: 1fr 1fr; } }
.service-pick { cursor: pointer; }
.service-pick input { position: absolute; opacity: 0; pointer-events: none; }
.service-pick-inner {
  background: #fff;
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s var(--easing);
  position: relative;
}
.service-pick-icon {
  width: 40px; height: 40px;
  background: var(--surface);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: all 0.25s var(--easing);
}
.service-pick-icon svg { width: 20px; height: 20px; }
.service-pick-text { flex: 1; min-width: 0; }
.service-pick-text h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.service-pick-text p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.4;
}
.service-pick-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s var(--easing);
  color: transparent;
}
.service-pick-check svg { width: 12px; height: 12px; }
.service-pick:hover .service-pick-inner { border-color: var(--text-3); transform: translateY(-1px); }
.service-pick input:checked + .service-pick-inner {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.service-pick input:checked + .service-pick-inner .service-pick-text p { color: rgba(255,255,255,0.6); }
.service-pick input:checked + .service-pick-inner .service-pick-icon {
  background: var(--blue);
  color: #fff;
}
.service-pick input:checked + .service-pick-inner .service-pick-check {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Option pills (radio) */
.option-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.option-pill { cursor: pointer; }
.option-pill input { position: absolute; opacity: 0; pointer-events: none; }
.option-pill span {
  display: inline-block;
  padding: 12px 20px;
  background: #fff;
  border: 1.5px solid var(--line-soft);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s var(--easing);
}
.option-pill:hover span { border-color: var(--text-3); }
.option-pill input:checked + span {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* Wizard actions */
.wiz-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.wiz-actions .btn-secondary { background: #fff; }

.wiz-error {
  color: var(--coral);
  font-size: 13px;
  margin-top: 12px;
  min-height: 18px;
  font-weight: 500;
}

/* Summary card */
.wiz-summary {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.wiz-summary-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.wiz-summary-row:last-child { border-bottom: 0; padding-bottom: 0; }
.wiz-summary-label {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  font-weight: 500;
  padding-top: 2px;
}
.wiz-summary-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.wiz-summary-value .pill {
  display: inline-block;
  padding: 4px 10px;
  background: var(--surface);
  border-radius: 999px;
  font-size: 13px;
  margin: 2px 4px 2px 0;
}
.wiz-summary-value.empty { color: var(--text-3); font-style: italic; }
@media (max-width: 540px) {
  .wiz-summary-row { grid-template-columns: 1fr; gap: 6px; }
}

/* Success */
.wiz-success {
  text-align: center;
  padding: 40px 20px;
}
.wiz-success-icon {
  width: 72px; height: 72px;
  margin: 0 auto;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: successPop 0.6s var(--easing);
}
.wiz-success-icon svg { width: 32px; height: 32px; }
@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Trust strip */
.wiz-trust {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.wiz-trust-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) { .wiz-trust-row { grid-template-columns: repeat(4, 1fr); } }
.wiz-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
.wiz-trust-item strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}
.wiz-trust-item span {
  font-size: 12px;
  color: var(--text-3);
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Direct contact cards (below wizard) */
.contact-direct-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .contact-direct-grid { grid-template-columns: 1fr 1fr; } }
.contact-direct-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: block;
  transition: background 0.2s ease, transform 0.2s var(--easing);
}
.contact-direct-card:hover { background: var(--line-soft); transform: translateY(-2px); }
.contact-direct-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-direct-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* =============================
   BLOG
   ============================= */
.blog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.12);
}
.blog-card-cover {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--blue-pale);
}
.blog-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--text);
}
.blog-card-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
}
.blog-card-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
}

.blog-card-featured {
  grid-column: 1 / -1;
}
@media (min-width: 720px) {
  .blog-card-featured {
    flex-direction: row;
  }
  .blog-card-featured .blog-card-cover {
    flex: 1;
    aspect-ratio: auto;
    min-height: 360px;
  }
  .blog-card-featured .blog-card-body {
    flex: 1;
    padding: 48px;
    justify-content: center;
  }
  .blog-card-featured .blog-card-body h3 {
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -0.025em;
  }
  .blog-card-featured .blog-card-body p {
    font-size: 16px;
  }
}

/* Tags */
.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.blog-tag-blue { background: var(--blue-pale); color: var(--blue); }
.blog-tag-coral { background: #FFE9DE; color: var(--coral); }
.blog-tag-green { background: #E2F5EB; color: #1FBA66; }

/* Blog post page */
.blog-post-hero { padding-bottom: 24px; }
.blog-post-hero .container { max-width: 820px; }
.blog-post-meta-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.blog-post-author {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-post-author-text {
  display: flex;
  flex-direction: column;
}
.blog-post-author-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.blog-post-author-text span {
  font-size: 13px;
  color: var(--text-3);
  font-family: 'Geist Mono', monospace;
}

.blog-cover-figure {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 32px;
}
.blog-cover-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.blog-body-container {
  max-width: 720px;
  margin: 64px auto;
  padding: 0 32px;
}
.blog-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
}
.blog-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 56px 0 20px;
  color: var(--text);
}
.blog-body h2:first-child { margin-top: 0; }
.blog-body h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 36px 0 14px;
}
.blog-body p {
  margin-bottom: 20px;
  color: var(--text-2);
}
.blog-body strong {
  color: var(--text);
  font-weight: 600;
}
.blog-body code {
  font-family: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.92em;
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--blue);
}
.blog-body blockquote {
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-2);
}
.blog-body ul, .blog-body ol {
  margin: 0 0 20px 24px;
  color: var(--text-2);
}
.blog-body li { margin-bottom: 8px; }

.blog-figure {
  margin: 32px 0;
}
.blog-figure img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.blog-share-section {
  padding: 32px 0 64px;
}
.blog-end-card {
  background: var(--text);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}
.blog-end-card h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.blog-end-card p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto 28px;
}
.blog-end-card .btn-primary {
  background: #fff;
  color: var(--text);
}
.blog-end-card .btn-primary:hover { background: var(--surface); }

/* reCAPTCHA notice */
.wiz-recaptcha-note {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.wiz-recaptcha-note a {
  color: var(--text-3);
  text-decoration: underline;
}
.wiz-recaptcha-note a:hover { color: var(--blue); }

/* =============================
   ANIMATED DASHBOARD MOCKUPS
   ============================= */

/* Container chrome — looks like a real product dashboard */
.mock {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 
    0 1px 0 0 rgba(255,255,255,0.6) inset,
    0 30px 60px -20px rgba(15, 23, 42, 0.18),
    0 18px 36px -18px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  font-family: 'Onest', -apple-system, sans-serif;
  color: var(--text);
}
.mock-dark {
  background: var(--text);
  color: #fff;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.08) inset,
    0 30px 60px -20px rgba(0, 0, 0, 0.4),
    0 18px 36px -18px rgba(0, 0, 0, 0.3);
}
.mock-pad { padding: 24px 28px; }
.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mock-dark .mock-bar { border-bottom-color: rgba(255,255,255,0.08); }
.mock-bar-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(0,0,0,0.1);
}
.mock-dark .mock-bar-dot { background: rgba(255,255,255,0.15); }
.mock-bar-title {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-left: 8px;
}
.mock-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-3);
  text-transform: uppercase;
}
.mock-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1FBA66;
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .mock-live::before { animation: none; }
}

/* Common elements */
.mock-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 8px;
}
.mock-dark .mock-eyebrow { color: rgba(255,255,255,0.5); }

/* Trigger: animations only run when .mock-active is set on the .feature-visual */
.feature-visual .mock { opacity: 0.001; transform: translateY(8px); transition: opacity 0.4s, transform 0.5s var(--easing); }
.feature-visual.mock-active .mock { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .feature-visual .mock { opacity: 1; transform: none; transition: none; }
}

/* ===== Mockup: rankings list ===== */
.mock-rank-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateX(-12px);
}
.mock-active .mock-rank-row {
  animation: slideInRow 0.5s var(--easing) forwards;
}
.mock-active .mock-rank-row:nth-child(1) { animation-delay: 0.1s; }
.mock-active .mock-rank-row:nth-child(2) { animation-delay: 0.25s; }
.mock-active .mock-rank-row:nth-child(3) { animation-delay: 0.4s; }
.mock-active .mock-rank-row:nth-child(4) { animation-delay: 0.55s; }
.mock-active .mock-rank-row:nth-child(5) { animation-delay: 0.7s; }
@keyframes slideInRow {
  to { opacity: 1; transform: translateX(0); }
}
.mock-rank-row:last-child { border-bottom: 0; }
.mock-rank-pos {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  text-align: center;
}
.mock-rank-row.featured .mock-rank-pos {
  background: var(--text);
  color: #fff;
  border-radius: 6px;
  padding: 4px 0;
}
.mock-rank-kw { font-size: 14px; font-weight: 500; color: var(--text); }
.mock-rank-kw-sub { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.mock-rank-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
}
.mock-rank-trend.up { background: rgba(31, 186, 102, 0.12); color: #1FBA66; }
.mock-rank-trend.down { background: rgba(255, 107, 74, 0.12); color: var(--coral); }

/* ===== Mockup: traffic line chart ===== */
.mock-chart-area {
  position: relative;
  height: 200px;
  padding: 8px 0 24px;
}
.mock-chart-svg { width: 100%; height: 100%; }
.mock-chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.mock-active .mock-chart-line {
  animation: drawLine 1.6s var(--easing) forwards;
}
.mock-active .mock-chart-line.delayed {
  animation-delay: 0.4s;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
.mock-chart-fill {
  opacity: 0;
}
.mock-active .mock-chart-fill {
  animation: fadeArea 1s ease 1.2s forwards;
}
@keyframes fadeArea {
  to { opacity: 0.18; }
}
.mock-chart-dot {
  opacity: 0;
}
.mock-active .mock-chart-dot {
  animation: popDot 0.4s var(--easing) 1.6s forwards;
}
@keyframes popDot {
  0% { opacity: 0; r: 0; }
  60% { opacity: 1; r: 8; }
  100% { opacity: 1; r: 6; }
}
.mock-chart-x {
  display: flex;
  justify-content: space-between;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  padding-top: 8px;
}

/* ===== Mockup: KPI tile ===== */
.mock-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mock-kpi {
  background: var(--surface);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
}
.mock-active .mock-kpi { animation: kpiIn 0.5s var(--easing) forwards; }
.mock-active .mock-kpi:nth-child(1) { animation-delay: 0.15s; }
.mock-active .mock-kpi:nth-child(2) { animation-delay: 0.3s; }
.mock-active .mock-kpi:nth-child(3) { animation-delay: 0.45s; }
.mock-active .mock-kpi:nth-child(4) { animation-delay: 0.6s; }
@keyframes kpiIn { to { opacity: 1; transform: translateY(0); } }
.mock-dark .mock-kpi { background: rgba(255,255,255,0.05); }
.mock-kpi-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mock-dark .mock-kpi-label { color: rgba(255,255,255,0.5); }
.mock-kpi-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.mock-dark .mock-kpi-num { color: #fff; }
.mock-kpi-trend {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mock-kpi-trend.up { color: #1FBA66; }
.mock-kpi-trend.down { color: var(--coral); }
.mock-kpi-spark {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 50px;
  height: 24px;
  opacity: 0.6;
}
.mock-kpi-spark path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.mock-active .mock-kpi-spark path {
  animation: drawLine 1s var(--easing) 0.6s forwards;
}

/* ===== Mockup: search bar with results ===== */
.mock-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.mock-dark .mock-search { background: rgba(255,255,255,0.05); }
.mock-search-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text-3);
  position: relative;
  flex-shrink: 0;
}
.mock-search-icon::after {
  content: ''; position: absolute; right: -5px; bottom: -5px;
  width: 8px; height: 2px;
  background: var(--text-3);
  transform: rotate(45deg);
}
.mock-search-text {
  font-size: 14px;
  color: var(--text);
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
.mock-active .mock-search-text {
  animation: typeIn 1.4s steps(30) forwards;
  width: 0;
}
@keyframes typeIn {
  to { width: 100%; }
}
.mock-search-cursor {
  display: inline-block;
  width: 1.5px;
  height: 14px;
  background: var(--blue);
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
  vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }

/* ===== Mockup: keyword volume table rows ===== */
.mock-kw-row {
  display: grid;
  grid-template-columns: 1fr 80px 60px;
  gap: 12px;
  padding: 12px 0;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  opacity: 0;
}
.mock-active .mock-kw-row { animation: kpiIn 0.4s var(--easing) forwards; }
.mock-active .mock-kw-row:nth-child(1) { animation-delay: 0.2s; }
.mock-active .mock-kw-row:nth-child(2) { animation-delay: 0.35s; }
.mock-active .mock-kw-row:nth-child(3) { animation-delay: 0.5s; }
.mock-active .mock-kw-row:nth-child(4) { animation-delay: 0.65s; }
.mock-active .mock-kw-row:nth-child(5) { animation-delay: 0.8s; }
.mock-kw-row:last-child { border-bottom: 0; }
.mock-kw-label { font-size: 13px; color: var(--text); font-weight: 500; }
.mock-kw-vol {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--text-2);
}
.mock-kw-bar-track {
  height: 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.mock-kw-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 3px;
  width: 0;
  transition: width 1s var(--easing) 0.6s;
}
.mock-active .mock-kw-bar-fill { width: var(--fill, 50%); }

/* ===== Mockup: counter big number ===== */
.mock-counter {
  text-align: center;
  padding: 32px 0 16px;
}
.mock-counter-num {
  font-size: clamp(56px, 9vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.mock-dark .mock-counter-num { color: #fff; }
.mock-counter-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ===== Mockup: stars / rating ===== */
.mock-stars {
  display: inline-flex;
  gap: 4px;
  margin: 8px 0;
}
.mock-star {
  width: 18px; height: 18px;
  fill: rgba(0,0,0,0.08);
  transition: fill 0.4s var(--easing);
}
.mock-active .mock-star {
  fill: #FFB627;
  transition-delay: var(--delay, 0s);
}
.mock-active .mock-star:nth-child(1) { --delay: 0.4s; }
.mock-active .mock-star:nth-child(2) { --delay: 0.5s; }
.mock-active .mock-star:nth-child(3) { --delay: 0.6s; }
.mock-active .mock-star:nth-child(4) { --delay: 0.7s; }
.mock-active .mock-star:nth-child(5) { --delay: 0.8s; }

/* ===== Mockup: app listing ===== */
.mock-app-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.mock-app-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--coral));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}
.mock-app-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 50%);
}
.mock-app-meta { flex: 1; min-width: 0; }
.mock-app-title { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; }
.mock-app-cat { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.mock-app-install {
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.mock-app-install::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
}
.mock-active .mock-app-install::after {
  animation: shimmer 2.4s ease-in-out 1.2s infinite;
}
@keyframes shimmer {
  to { transform: translateX(100%); }
}

/* ===== Mockup: pyramid ===== */
.mock-pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 0;
}
.mock-pyramid-tier {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  transform: scaleX(0.8);
  transform-origin: center;
}
.mock-active .mock-pyramid-tier {
  animation: tierIn 0.5s var(--easing) forwards;
}
.mock-active .mock-pyramid-tier:nth-child(5) { animation-delay: 0.15s; }
.mock-active .mock-pyramid-tier:nth-child(4) { animation-delay: 0.3s; }
.mock-active .mock-pyramid-tier:nth-child(3) { animation-delay: 0.45s; }
.mock-active .mock-pyramid-tier:nth-child(2) { animation-delay: 0.6s; }
.mock-active .mock-pyramid-tier:nth-child(1) { animation-delay: 0.75s; }
@keyframes tierIn { to { opacity: 1; transform: scaleX(1); } }

/* ===== Mockup: identity grid ===== */
.mock-identity {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mock-id-cell {
  background: var(--surface);
  border-radius: 14px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: scale(0.92);
  overflow: hidden;
}
.mock-active .mock-id-cell { animation: idIn 0.45s var(--easing) forwards; }
.mock-active .mock-id-cell:nth-child(1) { animation-delay: 0.1s; }
.mock-active .mock-id-cell:nth-child(2) { animation-delay: 0.2s; }
.mock-active .mock-id-cell:nth-child(3) { animation-delay: 0.3s; }
.mock-active .mock-id-cell:nth-child(4) { animation-delay: 0.4s; }
.mock-active .mock-id-cell:nth-child(5) { animation-delay: 0.5s; }
.mock-active .mock-id-cell:nth-child(6) { animation-delay: 0.6s; }
@keyframes idIn { to { opacity: 1; transform: scale(1); } }

/* ===== Mockup: design system components ===== */
.mock-ds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mock-ds-comp {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
  opacity: 0;
}
.mock-active .mock-ds-comp { animation: kpiIn 0.5s var(--easing) forwards; }
.mock-active .mock-ds-comp:nth-child(1) { animation-delay: 0.15s; }
.mock-active .mock-ds-comp:nth-child(2) { animation-delay: 0.3s; }
.mock-active .mock-ds-comp:nth-child(3) { animation-delay: 0.45s; }
.mock-active .mock-ds-comp:nth-child(4) { animation-delay: 0.6s; }

/* ===== Mockup: kanban board ===== */
.mock-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mock-kanban-col {
  background: var(--surface);
  border-radius: 12px;
  padding: 12px 10px;
  min-height: 200px;
}
.mock-kanban-head {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mock-kanban-card {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
}
.mock-active .mock-kanban-card { animation: kpiIn 0.4s var(--easing) forwards; }
.mock-active .mock-kanban-card:nth-child(2) { animation-delay: 0.2s; }
.mock-active .mock-kanban-card:nth-child(3) { animation-delay: 0.35s; }
.mock-active .mock-kanban-card:nth-child(4) { animation-delay: 0.5s; }
.mock-active .mock-kanban-card:nth-child(5) { animation-delay: 0.65s; }

.mock-kanban-card-bar {
  height: 4px;
  border-radius: 2px;
  margin-top: 8px;
  background: rgba(0,0,0,0.08);
  overflow: hidden;
}
.mock-kanban-card-bar-fill {
  height: 100%;
  width: 0;
  background: var(--blue);
  border-radius: 2px;
  transition: width 1s var(--easing) 0.8s;
}
.mock-active .mock-kanban-card-bar-fill { width: var(--p, 50%); }

/* ===== Mockup: A/B test ===== */
.mock-ab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mock-ab-variant {
  background: var(--surface);
  border-radius: 14px;
  padding: 14px;
  position: relative;
  opacity: 0;
}
.mock-active .mock-ab-variant { animation: kpiIn 0.5s var(--easing) forwards; }
.mock-active .mock-ab-variant:nth-child(1) { animation-delay: 0.2s; }
.mock-active .mock-ab-variant:nth-child(2) { animation-delay: 0.4s; }
.mock-ab-variant.winner {
  background: linear-gradient(180deg, rgba(31, 186, 102, 0.08), rgba(31, 186, 102, 0.02));
  border: 1.5px solid rgba(31, 186, 102, 0.4);
}
.mock-ab-thumb {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  aspect-ratio: 16/10;
  border-radius: 8px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.mock-ab-variant:nth-child(2) .mock-ab-thumb {
  background: linear-gradient(135deg, var(--coral), #FF9170);
}
.mock-ab-thumb::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 30px; height: 30px;
  margin: -15px 0 0 -15px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  clip-path: polygon(35% 25%, 35% 75%, 75% 50%);
}
.mock-ab-name {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.06em;
}
.mock-ab-stat {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.mock-ab-bar {
  height: 4px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.mock-ab-bar-fill {
  height: 100%;
  width: 0;
  background: var(--text-3);
  transition: width 1s var(--easing) 0.8s;
}
.mock-ab-variant.winner .mock-ab-bar-fill { background: #1FBA66; }
.mock-active .mock-ab-bar-fill { width: var(--p, 50%); }
.mock-ab-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: #1FBA66;
  color: #fff;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  opacity: 0;
}
.mock-active .mock-ab-badge {
  animation: kpiIn 0.4s var(--easing) 1.4s forwards;
}

/* ===== Mockup: stack architecture ===== */
.mock-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-stack-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  opacity: 0;
  transform: translateX(-12px);
}
.mock-active .mock-stack-row { animation: stackIn 0.5s var(--easing) forwards; }
.mock-active .mock-stack-row:nth-child(1) { animation-delay: 0.1s; }
.mock-active .mock-stack-row:nth-child(2) { animation-delay: 0.25s; }
.mock-active .mock-stack-row:nth-child(3) { animation-delay: 0.4s; }
.mock-active .mock-stack-row:nth-child(4) { animation-delay: 0.55s; }
.mock-active .mock-stack-row:nth-child(5) { animation-delay: 0.7s; }
@keyframes stackIn { to { opacity: 1; transform: translateX(0); } }
.mock-stack-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.65;
  letter-spacing: 0.04em;
}

/* ===== Mockup: typography play ===== */
.mock-type {
  text-align: center;
  padding: 24px 0;
  position: relative;
}
.mock-type-words { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.mock-type-word {
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
}
.mock-active .mock-type-word { animation: kpiIn 0.5s var(--easing) forwards; }
.mock-active .mock-type-word:nth-child(1) { animation-delay: 0.1s; }
.mock-active .mock-type-word:nth-child(2) { animation-delay: 0.25s; }
.mock-active .mock-type-word:nth-child(3) { animation-delay: 0.4s; }
.mock-active .mock-type-word:nth-child(4) { animation-delay: 0.55s; }
.mock-active .mock-type-word:nth-child(5) { animation-delay: 0.7s; }

/* ===== Mockup: video pipeline ===== */
.mock-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.mock-pipe-step {
  background: var(--surface);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  opacity: 0;
}
.mock-active .mock-pipe-step { animation: kpiIn 0.4s var(--easing) forwards; }
.mock-active .mock-pipe-step:nth-child(1) { animation-delay: 0.15s; }
.mock-active .mock-pipe-step:nth-child(3) { animation-delay: 0.45s; }
.mock-active .mock-pipe-step:nth-child(5) { animation-delay: 0.75s; }
.mock-pipe-arrow {
  font-family: 'Geist Mono', monospace;
  color: var(--blue);
  font-size: 18px;
  opacity: 0;
}
.mock-active .mock-pipe-arrow { animation: kpiIn 0.4s var(--easing) forwards; }
.mock-active .mock-pipe-arrow:nth-child(2) { animation-delay: 0.3s; }
.mock-active .mock-pipe-arrow:nth-child(4) { animation-delay: 0.6s; }
.mock-pipe-step-icon {
  width: 32px; height: 32px;
  margin: 0 auto 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.mock-pipe-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.mock-pipe-variants {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.mock-pipe-variant {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.6);
}
.mock-active .mock-pipe-variant { animation: idIn 0.4s var(--easing) forwards; }
.mock-active .mock-pipe-variant:nth-child(1) { animation-delay: 1s; }
.mock-active .mock-pipe-variant:nth-child(2) { animation-delay: 1.1s; }
.mock-active .mock-pipe-variant:nth-child(3) { animation-delay: 1.2s; }
.mock-active .mock-pipe-variant:nth-child(4) { animation-delay: 1.3s; }
.mock-active .mock-pipe-variant:nth-child(5) { animation-delay: 1.4s; }
.mock-active .mock-pipe-variant:nth-child(6) { animation-delay: 1.5s; }

/* ===== Mockup: SERP result ===== */
.mock-serp-result {
  background: var(--surface);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(8px);
}
.mock-active .mock-serp-result { animation: kpiIn 0.45s var(--easing) forwards; }
.mock-active .mock-serp-result:nth-child(2) { animation-delay: 0.2s; }
.mock-active .mock-serp-result:nth-child(3) { animation-delay: 0.4s; }
.mock-active .mock-serp-result:nth-child(4) { animation-delay: 0.55s; }
.mock-serp-result.featured {
  background: linear-gradient(180deg, rgba(42, 61, 181, 0.08), rgba(42, 61, 181, 0.02));
  border: 1.5px solid rgba(42, 61, 181, 0.3);
  position: relative;
}
.mock-serp-tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 3px;
  margin-bottom: 6px;
}
.mock-serp-url { font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--text-3); margin-bottom: 4px; }
.mock-serp-title { font-size: 15px; font-weight: 600; color: var(--blue); letter-spacing: -0.01em; }
.mock-serp-snippet { font-size: 12px; color: var(--text-2); margin-top: 4px; line-height: 1.5; }
.mock-serp-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: #1FBA66;
  color: #fff;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  opacity: 0;
}
.mock-active .mock-serp-result.featured .mock-serp-badge {
  animation: kpiIn 0.4s var(--easing) 0.7s forwards;
}

/* Make feature-visual fit our mockups properly */
.feature-row .feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-row .feature-visual .mock {
  max-width: 540px;
  width: 100%;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mock *, .mock {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .mock-rank-row, .mock-kpi, .mock-kw-row, .mock-pyramid-tier, .mock-id-cell,
  .mock-ds-comp, .mock-kanban-card, .mock-ab-variant, .mock-stack-row,
  .mock-type-word, .mock-pipe-step, .mock-pipe-arrow, .mock-pipe-variant,
  .mock-serp-result, .mock-chart-line, .mock-chart-fill, .mock-chart-dot,
  .mock-search-text, .mock-kw-bar-fill, .mock-kanban-card-bar-fill,
  .mock-ab-bar-fill, .mock-ab-badge, .mock-serp-badge { 
    width: var(--fill, 100%) !important;
  }
}

/* =============================
   FEATURED PRICING TIER (Startup Launch Pack)
   ============================= */
.tier-featured {
  display: block;
  background: linear-gradient(135deg, #1D1D1F 0%, #2A3DB5 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-bottom: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
  box-shadow: 0 30px 60px -20px rgba(42, 61, 181, 0.35);
}
.tier-featured::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.tier-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 38px 70px -20px rgba(42, 61, 181, 0.45);
}
.tier-featured-badge {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.tier-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}
@media (min-width: 800px) {
  .tier-featured-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
}
.tier-featured h3 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.15;
}
.tier-featured-blurb {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 480px;
}
.tier-featured-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tier-featured-price-num {
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
}
.tier-featured-price-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tier-featured-cta {
  background: #fff;
  color: var(--text) !important;
}
.tier-featured-cta:hover { background: var(--surface); }
.tier-featured-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .tier-featured-list { grid-template-columns: 1fr 1fr; } }
.tier-featured-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}
.tier-featured-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  background: rgba(255, 107, 74, 0.25);
  color: var(--coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* =============================
   HOME PAGE — Startup Launch Pack feature
   ============================= */
.home-launch-pack {
  display: block;
  position: relative;
  background: linear-gradient(135deg, #1D1D1F 0%, #1A2580 50%, #2A3DB5 100%);
  border-radius: 28px;
  padding: clamp(40px, 6vw, 72px);
  color: #fff;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing);
  box-shadow: 0 40px 80px -30px rgba(42, 61, 181, 0.4),
              0 20px 40px -20px rgba(15, 23, 42, 0.3);
}
.home-launch-pack:hover {
  transform: translateY(-4px);
  box-shadow: 0 50px 90px -30px rgba(42, 61, 181, 0.5),
              0 28px 50px -20px rgba(15, 23, 42, 0.35);
}
.home-launch-pack-orb {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.4) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}
.home-launch-pack-orb-2 {
  top: auto; right: auto;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(111, 125, 207, 0.3) 0%, transparent 60%);
}
.home-launch-pack-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .home-launch-pack-content { grid-template-columns: 1.15fr 1fr; gap: 80px; }
}
.home-launch-pack-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 74, 0.15);
  border: 1px solid rgba(255, 107, 74, 0.45);
  color: #FFB098;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.home-launch-pack-badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
  animation: pulseGlow 1.8s ease-in-out infinite;
  box-shadow: 0 0 12px var(--coral);
}
@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .home-launch-pack-badge-pulse { animation: none; }
}
.home-launch-pack-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.home-launch-pack-title-accent {
  background: linear-gradient(90deg, #FFB098 0%, #FF6B4A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-launch-pack-blurb {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  max-width: 540px;
}
.home-launch-pack-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.home-launch-pack-cta {
  background: #fff !important;
  color: var(--text) !important;
}
.home-launch-pack-cta:hover { background: #FFE9DE !important; }
.home-launch-pack-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
.home-launch-pack-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 14px;
}
.home-launch-pack-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}
.home-launch-pack:hover .home-launch-pack-list li {
  background: rgba(255,255,255,0.06);
}
.home-launch-pack-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
  box-shadow: 0 4px 12px rgba(255, 107, 74, 0.4);
}

/* =============================
   VAT badges next to prices
   ============================= */
.home-launch-pack-vat {
  font-size: 0.4em;
  font-weight: 600;
  margin-left: 12px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.6);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.6); /* override gradient text */
  letter-spacing: 0.05em;
  font-family: 'Geist Mono', monospace;
}
.tier-featured-price-vat {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  align-self: center;
  margin-bottom: 6px;
}

/* =============================
   ANIMATIONS — Startup Launch Pack (home + services)
   ============================= */

/* Soft floating animation on the orbs in the home Launch Pack */
.home-launch-pack-orb {
  animation: orbFloat1 14s ease-in-out infinite;
}
.home-launch-pack-orb-2 {
  animation: orbFloat2 18s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 30px) scale(1.08); }
  66% { transform: translate(-20px, 50px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -40px) scale(1.1); }
}

/* Sweeping shimmer across the gradient background */
.home-launch-pack::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 40%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.05) 60%,
    transparent 100%);
  animation: shimmerSweep 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes shimmerSweep {
  0%, 100% { left: -100%; }
  50% { left: 200%; }
}

/* Stagger-fade the feature list items as the section reveals */
.home-launch-pack-list li {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s var(--easing), transform 0.5s var(--easing), background 0.2s ease;
}
.home-launch-pack.in .home-launch-pack-list li {
  opacity: 1;
  transform: translateX(0);
}
.home-launch-pack.in .home-launch-pack-list li:nth-child(1) { transition-delay: 0.15s; }
.home-launch-pack.in .home-launch-pack-list li:nth-child(2) { transition-delay: 0.25s; }
.home-launch-pack.in .home-launch-pack-list li:nth-child(3) { transition-delay: 0.35s; }
.home-launch-pack.in .home-launch-pack-list li:nth-child(4) { transition-delay: 0.45s; }
.home-launch-pack.in .home-launch-pack-list li:nth-child(5) { transition-delay: 0.55s; }
.home-launch-pack.in .home-launch-pack-list li:nth-child(6) { transition-delay: 0.65s; }
.home-launch-pack.in .home-launch-pack-list li:nth-child(7) { transition-delay: 0.75s; }
.home-launch-pack.in .home-launch-pack-list li:nth-child(8) { transition-delay: 0.85s; }

/* Pop-in animation on the price */
.home-launch-pack-title-accent {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}
.home-launch-pack.in .home-launch-pack-title-accent {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.4s;
}

/* Subtle glow throb on the CTA */
.home-launch-pack-cta {
  position: relative;
  overflow: hidden;
}
.home-launch-pack-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.4);
  animation: ctaGlow 2.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.5); }
  50% { box-shadow: 0 0 0 14px rgba(255, 107, 74, 0); }
}

/* =============================
   ANIMATIONS — Services page Featured tier (Startup Launch Pack card)
   ============================= */

/* Sweeping shimmer */
.tier-featured {
  transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing);
}
.tier-featured::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 100%);
  animation: shimmerSweep 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.tier-featured-grid > * { position: relative; z-index: 1; }

/* Animate orb on featured tier */
.tier-featured::before {
  animation: orbFloat1 16s ease-in-out infinite;
}

/* Pulsing badge */
.tier-featured-badge {
  position: relative;
  z-index: 1;
}
.tier-featured-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--coral);
  opacity: 0.3;
  filter: blur(8px);
  animation: badgePulse 2.4s ease-in-out infinite;
  z-index: -1;
}
@keyframes badgePulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

/* Stagger feature list items */
.tier-featured-list li {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--easing), transform 0.5s var(--easing);
}
.tier-featured.in .tier-featured-list li {
  opacity: 1;
  transform: translateY(0);
}
.tier-featured.in .tier-featured-list li:nth-child(1) { transition-delay: 0.2s; }
.tier-featured.in .tier-featured-list li:nth-child(2) { transition-delay: 0.28s; }
.tier-featured.in .tier-featured-list li:nth-child(3) { transition-delay: 0.36s; }
.tier-featured.in .tier-featured-list li:nth-child(4) { transition-delay: 0.44s; }
.tier-featured.in .tier-featured-list li:nth-child(5) { transition-delay: 0.52s; }
.tier-featured.in .tier-featured-list li:nth-child(6) { transition-delay: 0.6s; }
.tier-featured.in .tier-featured-list li:nth-child(7) { transition-delay: 0.68s; }
.tier-featured.in .tier-featured-list li:nth-child(8) { transition-delay: 0.76s; }

/* =============================
   ANIMATIONS — Project tier card (services page)
   ============================= */
/* Hover lift on the project card to make it feel alive even though it's "From Custom" */
.tier {
  transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing), background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(15, 23, 42, 0.2),
              0 16px 32px -18px rgba(15, 23, 42, 0.12);
}

/* Subtle animated gradient sweep on the first tier (Project) on hover */
.tier:first-child::after {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(42, 61, 181, 0.12) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.tier:first-child:hover::after { opacity: 1; }

/* Animated check ticks on the Project tier — they fill in sequence on reveal */
.tier ul li {
  position: relative;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s var(--easing), transform 0.4s var(--easing);
}
.tier.in ul li,
.in .tier ul li {
  opacity: 1;
  transform: translateX(0);
}
.tier.in ul li:nth-child(1), .in .tier ul li:nth-child(1) { transition-delay: 0.1s; }
.tier.in ul li:nth-child(2), .in .tier ul li:nth-child(2) { transition-delay: 0.2s; }
.tier.in ul li:nth-child(3), .in .tier ul li:nth-child(3) { transition-delay: 0.3s; }
.tier.in ul li:nth-child(4), .in .tier ul li:nth-child(4) { transition-delay: 0.4s; }
.tier.in ul li:nth-child(5), .in .tier ul li:nth-child(5) { transition-delay: 0.5s; }

.tier ul li::before {
  transform: scale(0);
  transition: transform 0.4s var(--easing);
}
.tier.in ul li::before,
.in .tier ul li::before {
  transform: scale(1);
}
.tier.in ul li:nth-child(1)::before, .in .tier ul li:nth-child(1)::before { transition-delay: 0.2s; }
.tier.in ul li:nth-child(2)::before, .in .tier ul li:nth-child(2)::before { transition-delay: 0.3s; }
.tier.in ul li:nth-child(3)::before, .in .tier ul li:nth-child(3)::before { transition-delay: 0.4s; }
.tier.in ul li:nth-child(4)::before, .in .tier ul li:nth-child(4)::before { transition-delay: 0.5s; }
.tier.in ul li:nth-child(5)::before, .in .tier ul li:nth-child(5)::before { transition-delay: 0.6s; }

/* Price number gentle pulse on the first tier */
.tier:first-child .tier-price {
  position: relative;
  display: inline-block;
}

/* Reduced motion: kill all animations */
@media (prefers-reduced-motion: reduce) {
  .home-launch-pack-orb,
  .home-launch-pack-orb-2,
  .home-launch-pack::before,
  .tier-featured::after,
  .tier-featured::before,
  .tier-featured-badge::before,
  .home-launch-pack-cta::after { animation: none !important; }
  .home-launch-pack-list li,
  .tier-featured-list li,
  .home-launch-pack-title-accent,
  .tier ul li,
  .tier ul li::before {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =============================
   HOME PAGE — Launch Pack section spacing
   Pull tight to the services grid above; modest padding below
   ============================= */
.home-launch-pack-section {
  padding-top: 0;
  padding-bottom: clamp(60px, 7vw, 100px);
}
@media (min-width: 900px) {
  .home-launch-pack-section { padding-top: 0; }
}

/* Also tighten the gap from launch pack to "Outcomes" stats section */
.home-launch-pack-section + .section,
.home-launch-pack-section + section {
  padding-top: clamp(60px, 7vw, 100px);
}
