/* ============================================================
   Section title pattern (used by Services + later sections)
   ============================================================ */
section { padding: 120px 0; }
.section-title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 0 32px;
}
.section-title .left { display: flex; flex-direction: column; gap: 16px; }
.section-title h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
  padding-top: 0.1em;
  max-width: 14ch;
}
.section-title h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue-500);
}
.section-title p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
  max-width: 50ch;
}

/* ============================================================
   SERVICES — 6-col grid (desktop) / horizontal carousel (mobile)
   ============================================================ */
#services { background: var(--bg); }
.use-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
/* On desktop, .cards-strip is transparent — its children inherit the grid */
.cards-strip { display: contents; }
.carousel-indicator { display: none; }
.swipe-hint { display: none; }
.use {
  background: white;
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: 28px;
  min-height: 240px;
  display: flex; flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.use:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 111, 255, 0.25);
  box-shadow: 0 12px 24px -8px rgba(42, 111, 255, 0.15);
}
.use.span-2 { grid-column: span 2; }
.use.span-3 { grid-column: span 3; }
.use.span-6 { grid-column: span 6; }

.use .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-500);
  letter-spacing: 0;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.use:hover .ic { transform: scale(1.08); }
.use h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--text);
  margin: 8px 0 0;
}
.use .desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}
.use ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex; flex-direction: column;
  gap: 6px;
}
.use li {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.use li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--blue-500);
  font-weight: 700;
  font-size: 16px;
  opacity: 0.6;
  transition: opacity 250ms ease-out;
}
.use:hover li:nth-child(1)::before { opacity: 1; transition-delay: 0ms; }
.use:hover li:nth-child(2)::before { opacity: 1; transition-delay: 60ms; }
.use:hover li:nth-child(3)::before { opacity: 1; transition-delay: 120ms; }
.use:hover li:nth-child(4)::before { opacity: 1; transition-delay: 180ms; }
.use .cat {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: auto;
}

/* Featured (.span-6) — electric blue card, horizontal layout, flagship sizing */
.use.featured {
  background: linear-gradient(135deg, #2A6FFF 0%, #1B4FE8 100%);
  border-color: transparent;
  color: white;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: stretch;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 50px -20px rgba(42, 111, 255, 0.45);
  min-height: auto;
}
.use.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(600px 300px at 80% 30%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(600px 300px at 80% 30%, black, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
/* Permanent ribbon SVG inside featured card (ambient detail) */
.use.featured .featured-ribbon {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.use.featured .featured-ribbon path {
  fill: none;
  stroke: var(--blue-300);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 4 16;
  opacity: 0.18;
  animation: ribbon-flow 30s linear infinite;
}
@keyframes ribbon-flow {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1000; }
}
.use.featured > .featured-content,
.use.featured > .featured-uses,
.use.featured > .featured-build-note { position: relative; z-index: 2; }
.use.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(42, 111, 255, 0.6);
  border-color: transparent;
}
.use.featured .ic {
  background: rgba(255,255,255,0.18);
  color: white;
}
.use.featured h3 {
  color: white;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 14px 0 8px;
}
.use.featured .desc {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.55;
  max-width: 50ch;
  margin: 0;
}
.use.featured .cat {
  color: white;
  opacity: 0.7;
}
.use.featured .featured-content {
  display: flex; flex-direction: column;
  gap: 8px;
}
.use.featured .featured-content .cat {
  margin-top: auto;
  padding-top: 24px;
}
.use.featured .featured-uses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 56px;
  list-style: none; padding: 0; margin: 0;
  align-content: center;
}
.use.featured .featured-uses li {
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  padding-left: 14px;
  line-height: 1.5;
}
.use.featured .featured-uses li::before {
  color: white;
  opacity: 0.85;
}
/* Bullet cascade does NOT apply to featured (it has its own ambient ribbon) */
.use.featured:hover .featured-uses li::before { opacity: 0.85; }

/* "In build" note — honest separation from what already ships */
.use.featured .featured-build-note {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

/* Callout strip below grid */
.services-callout {
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 36px 40px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line-l);
}
.services-callout p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
  max-width: 56ch;
}
.services-callout p em {
  font-style: italic;
  color: var(--blue-600);
  font-weight: 400;
}
/* Callout CTA — white bg, blue border, blue text (matches secondary CTA treatment) */
.services-callout .btn-callout {
  background: white;
  color: var(--blue-600);
  border: 1px solid rgba(42, 111, 255, 0.18);
  padding: 12px 22px;
  font-weight: 500;
}
.services-callout .btn-callout:hover {
  background: rgba(42, 111, 255, 0.04);
  border-color: rgba(42, 111, 255, 0.45);
  transform: translateY(-1px);
}

/* ============================================================
   HOW WE WORK (Step 5) — 4-step process timeline
   ============================================================ */
#process { background: var(--bg); }
.how-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.how-card {
  background: white;
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: 32px;
  min-height: 280px;
  display: flex; flex-direction: column;
  gap: 12px;
  /* Entrance animation initial state */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1) var(--stagger-delay, 0ms),
              transform 600ms cubic-bezier(0.4, 0, 0.2, 1) var(--stagger-delay, 0ms),
              border-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.how-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.how-card:hover {
  border-color: rgba(42, 111, 255, 0.25);
  box-shadow: 0 12px 24px -8px rgba(42, 111, 255, 0.15);
}
.how-card .step {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--text);
}
.how-card .step em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue-500);
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 8px 0 0;
}
.how-card .desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
.how-card .when {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line-l);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.14em;
}

/* ============================================================
   LIVE PROJECTS (Step 6) — 2x2 grid with status badges
   ============================================================ */
#projects { background: var(--bg); }
.projects-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.project-card {
  background: white;
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 14px;
  /* Entrance animation initial state — same pattern as .how-card */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1) var(--stagger-delay, 0ms),
              transform 600ms cubic-bezier(0.4, 0, 0.2, 1) var(--stagger-delay, 0ms),
              border-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 111, 255, 0.25);
  box-shadow: 0 12px 24px -8px rgba(42, 111, 255, 0.15);
}

/* Featured project card — full-width, blue gradient (mirrors .use.featured) */
.project-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #2A6FFF 0%, #1B4FE8 100%);
  border-color: transparent;
  padding: 44px 48px;
  box-shadow: 0 16px 50px -20px rgba(42, 111, 255, 0.45);
}
.project-card.featured:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 24px 60px -20px rgba(42, 111, 255, 0.6);
}
.project-card.featured h3 { color: white; font-size: 30px; }
.project-card.featured .desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  max-width: 72ch;
}
.project-card.featured .cat { color: rgba(255, 255, 255, 0.7); }
.project-card.featured .when {
  color: rgba(255, 255, 255, 0.7);
  border-top-color: rgba(255, 255, 255, 0.18);
}
/* in-prod badge is solid blue → invisible on blue bg; override to translucent white */
.project-card.featured .status-badge.in-prod {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

/* Status badges — brand tokens only */
.status-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}
.status-badge.in-prod {
  background: var(--blue-500);
  color: white;
}
.status-badge.in-build {
  background: var(--chrome-400);
  color: white;
}
/* "Pilot" — early but real: ghost badge, dashed accent */
.status-badge.pilot {
  background: var(--paper-2);
  color: var(--text-soft);
  border: 1px dashed var(--blue-400);
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 4px 0 0;
  line-height: 1.2;
}
.project-card .cat {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.project-card .desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}
.project-card .when {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line-l);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
/* Task 10: live-demo teaser line + CTA inside Voice Agent portfolio card */
.project-card__teaser {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
.project-card__teaser-btn {
  align-self: flex-start;
  margin-top: 4px;
}
.project-card__teaser-btn:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

/* ============================================================
   ABOUT (Step 7) — Founder photo + copy, light bg, personal tone
   ============================================================ */
#about { background: var(--bg); }
.about-block {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;

  /* Entrance animation initial state — single block */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about-block.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Stat card (replaces photo for v2.0 — see TODO in HTML) */
.about-stats {
  width: 320px;
  height: 400px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-l);
  background: white;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about-stats:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(11, 15, 26, 0.10);
}
.about-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 14px 0;
}
.about-stats .stat + .stat {
  border-top: 1px dashed var(--paper-line);
}
.about-stats .num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--text);
}
.about-stats .num em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue-500);
}
.about-stats .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.about-copy {
  display: flex; flex-direction: column;
  gap: 24px;
  max-width: 56ch;
}
.founder-name h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
}
.founder-name .role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 10px;
  display: block;
}
.about-copy .bio {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}
.about-copy .closer {
  font-size: 19px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
  margin: 4px 0 0;
}
.about-copy .btn { align-self: flex-start; margin-top: 8px; }

/* ============================================================
   PRICING (Step 8) — 3 tiers, Growth featured (dark, scaled, blue glow)
   ============================================================ */
#pricing { background: var(--bg); }
.pricing-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 32px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tier {
  background: white;
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
  /* Entrance animation */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1) var(--stagger-delay, 0ms),
              transform 600ms cubic-bezier(0.4, 0, 0.2, 1) var(--stagger-delay, 0ms),
              border-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.tier.in-view {
  opacity: 1;
  transform: translateY(0);
}
.tier:hover {
  border-color: rgba(42, 111, 255, 0.25);
  box-shadow: 0 12px 24px -8px rgba(42, 111, 255, 0.15);
}

.tier h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}
.tier .tagline {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
  min-height: 3em;
}

.tier .price-block {
  display: flex; flex-direction: column;
  gap: 14px;
  padding: 4px 0;
}
.tier .price-row { display: flex; flex-direction: column; gap: 2px; }
.tier .price-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.tier .price-amount {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.1;
}

.tier .divider {
  height: 0;
  border-top: 1px dashed var(--paper-line);
  margin: 4px 0;
}

.tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.tier li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.tier li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--blue-500);
  font-weight: 700;
  font-size: 16px;
}
.tier .footer-tag {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--paper-line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.tier .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* Featured tier — Growth (dark gradient, scale, blue glow) */
.tier.featured {
  background:
    radial-gradient(circle at top right, rgba(42, 111, 255, 0.18), transparent 60%),
    linear-gradient(135deg, #0B0F1A 0%, #07090F 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 24px 64px -16px rgba(42, 111, 255, 0.35);
  z-index: 2;
  /* Resting state: scale 1 (matches neighbors when hidden) */
  transform: translateY(24px) scale(1);
}
.tier.featured.in-view {
  /* In-view: lift to scale(1.04) for visual emphasis */
  transform: translateY(0) scale(1.04);
}
.tier.featured:hover {
  border-color: transparent;
  box-shadow: 0 28px 72px -16px rgba(42, 111, 255, 0.5);
}
.tier.featured h3 { color: white; }
.tier.featured .tagline { color: rgba(255, 255, 255, 0.75); }
.tier.featured .price-label { color: rgba(255, 255, 255, 0.55); }
.tier.featured .price-amount { color: white; }
.tier.featured .divider { border-top-color: rgba(255, 255, 255, 0.12); }
.tier.featured li { color: rgba(255, 255, 255, 0.92); }
.tier.featured li::before { color: var(--blue-400); }
.tier.featured .footer-tag {
  color: rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 0.12);
}
.tier.featured .badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--grad-electric);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -4px rgba(42, 111, 255, 0.5);
  white-space: nowrap;
}

/* Clarifier note below grid */
.pricing-note {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 0 32px;
  text-align: center;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ============================================================
   FAQ (Step 9) — Alpine accordion, single-open, flat dividers
   ============================================================ */
#faq { background: var(--bg); }
.faq-block {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
  /* Entrance — single trigger for whole block (not per-item) */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-block.in-view {
  opacity: 1;
  transform: translateY(0);
}
.faq-item {
  border-bottom: 1px solid var(--paper-line);
}
.faq-item:first-child {
  border-top: 1px solid var(--paper-line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  transition: color 200ms ease-out;
}
.faq-q:hover { color: var(--blue-500); }
.faq-q:hover svg { color: var(--blue-500); }
.faq-q svg {
  flex-shrink: 0;
  color: var(--text-soft);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
              color 200ms ease-out;
}
.faq-q[aria-expanded="true"] svg {
  transform: rotate(180deg);
  color: var(--blue-500);
}
.faq-a {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
  padding: 0 48px 24px 0;
  max-width: 64ch;
}

/* FAQ closer — CTA block below items */
.faq-closer {
  text-align: center;
  margin: 64px auto 0;
  max-width: 560px;
  padding: 0 32px;
}
.faq-closer h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.15;
}
.faq-closer p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0 0 28px;
}
.faq-closer .ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   STEP 10 — Final CTA + Cal.com embed + Footer
   ============================================================ */

/* --- Section 1: Final CTA Block ------------------------------ */
#get-started {
  background: var(--bg);
  padding: 120px 0 80px;
}
.cta-final-block {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.cta-final-block .eyebrow {
  display: block;
  margin-bottom: 24px;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 auto;
  padding-top: 0.15em;
  max-width: 18ch;
  overflow: visible;
}
.cta-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--blue-500);
}
.cta-subhead {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-soft);
  margin: 16px auto 48px;
  max-width: 560px;
  line-height: 1.5;
}
.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  text-align: left;
}
.cta-card {
  position: relative;
  padding: 48px;
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  gap: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-card .cta-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}
.cta-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 8px 0 0;
}
.cta-card .cta-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}
.cta-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Left card — dark (Chat) */
.cta-card.dark {
  background:
    radial-gradient(circle at top right, rgba(42, 111, 255, 0.15), transparent 60%),
    linear-gradient(135deg, #0B0F1A 0%, #07090F 100%);
  color: white;
  box-shadow: 0 16px 50px -20px rgba(42, 111, 255, 0.35);
}
.cta-card.dark .cta-icon {
  background: rgba(42, 111, 255, 0.18);
  color: white;
}
.cta-card.dark h3 { color: white; }
.cta-card.dark .cta-body { color: rgba(255, 255, 255, 0.7); }
.cta-card.dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px -16px rgba(42, 111, 255, 0.5);
}
.cta-card.dark .cta-ribbon {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta-card.dark .cta-ribbon path {
  fill: none;
  stroke: var(--blue-300);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 4 16;
  opacity: 0.18;
  animation: ribbon-flow 30s linear infinite;
}
.cta-card.dark > *:not(.cta-ribbon) { position: relative; z-index: 1; }

/* Right card — light (Book) */
.cta-card.light {
  background: var(--paper-2);
  border: 1px solid var(--paper-line);
  color: var(--text);
}
.cta-card.light .cta-icon {
  background: white;
  border: 1px solid var(--paper-line);
  color: var(--blue-500);
}
.cta-card.light h3 { color: var(--text); }
.cta-card.light .cta-body { color: var(--text-soft); }
.cta-card.light:hover {
  transform: translateY(-3px);
  border-color: rgba(42, 111, 255, 0.35);
  box-shadow: 0 12px 28px -10px rgba(11, 15, 26, 0.10);
}

/* CTA block — staggered entrance */
.cta-final-block .eyebrow,
.cta-final-block .cta-heading,
.cta-final-block .cta-subhead,
.cta-final-block .cta-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-final-block.in-view .eyebrow,
.cta-final-block.in-view .cta-heading {
  opacity: 1; transform: translateY(0);
  transition-delay: 0ms;
}
.cta-final-block.in-view .cta-subhead {
  opacity: 1; transform: translateY(0);
  transition-delay: 100ms;
}
.cta-final-block.in-view .cta-card:nth-child(1) {
  opacity: 1; transform: translateY(0);
  transition-delay: 200ms;
}
.cta-final-block.in-view .cta-card:nth-child(2) {
  opacity: 1; transform: translateY(0);
  transition-delay: 300ms;
}

/* --- Section 2: Cal.com embed ------------------------------- */
#book {
  background: var(--bg);
  padding: 0 0 120px;
}
.cal-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cal-wrap.in-view {
  opacity: 1; transform: translateY(0);
}
.cal-frame {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--paper-line);
  background: var(--paper-2);
  overflow: hidden;
  box-shadow: 0 12px 32px -16px rgba(11, 15, 26, 0.08);
  min-height: 720px;
}
.cal-iframe {
  display: block;
  width: 100%;
  height: 720px;
  overflow: auto;
  border: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 400ms ease-out;
}
.cal-iframe.loaded { opacity: 1; }
.cal-skeleton {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--paper-2) 0%, var(--paper-3) 50%, var(--paper-2) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  z-index: 1;
}
.cal-skeleton.hidden { display: none; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.cal-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  text-align: center;
  gap: 16px;
  min-height: 480px;
}
.cal-fallback.visible {
  display: flex;
}
.cal-fallback h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
}
.cal-fallback p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-soft);
  margin: 0 0 8px;
  max-width: 44ch;
}

/* --- Booking choice screen ---------------------------------- */
.book-choice-screen {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px 64px;
}
.book-choice-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.book-choice-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
  text-align: center;
}
.choice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.choice-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: white;
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: left;
  cursor: pointer;
  transition: border-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.choice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 111, 255, 0.25);
  box-shadow: 0 12px 24px -8px rgba(42, 111, 255, 0.15);
}
.choice-card__label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.2;
}
.choice-card__sub {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}
.book-back {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px 24px;
}
.book-back__btn {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  cursor: pointer;
  transition: color 200ms ease-out;
}
.book-back__btn:hover {
  color: var(--blue-500);
}
.choice-card:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 2px; }
.book-back__btn:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 3px; border-radius: 2px; }
.book-agent-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px 64px;
}
.book-agent-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 32px;
}

/* --- Voice Agent mini-form (Task 9) ----------------------------- */
.va-form__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: -16px 0 32px;
  max-width: 560px;
}

.va-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.va-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Reset <fieldset> used for radio group so it looks identical to sibling <div> fields */
fieldset.va-form__field {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.va-form__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.va-form__input,
.va-form__select {
  background: var(--paper-2);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-lg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
  padding: 11px 14px;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.va-form__input::placeholder {
  color: var(--text-soft);
  opacity: 0.6;
}

.va-form__input:focus-visible,
.va-form__select:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 0;
  border-color: var(--blue-500);
}

.va-form__phone-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
}

.va-form__select--country {
  width: auto;
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.va-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.va-form__input--phone {
  width: 100%;
}

.va-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.va-form__radio-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
}

.va-form__radio-label input[type="radio"] {
  accent-color: var(--blue-500);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.va-form__field--consent {
  margin-top: 4px;
}

.va-form__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
  cursor: pointer;
}

.va-form__checkbox {
  accent-color: var(--blue-500);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.va-form__privacy-link {
  color: var(--blue-500);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s;
}
.va-form__privacy-link:hover { color: var(--blue-600); }

.va-form__submit {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-pill);
  min-width: 180px;
}

.va-form__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.va-form__spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: va-spin 0.6s linear infinite;
  flex-shrink: 0;
}

@keyframes va-spin {
  to { transform: rotate(360deg); }
}

.va-form__error {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper-3);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  margin-top: 4px;
}

.va-form__error p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
}

.va-form__error-btn {
  align-self: flex-start;
}

.va-form__confirmation {
  max-width: 560px;
  padding: 24px 28px;
  background: var(--paper-2);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-lg);
}

.va-form__confirmation-text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

.va-form__screening-notice {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--paper-line);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-soft);
}

.va-form__screening-notice p {
  margin: 0;
}

.va-form__screening-notice p + p {
  margin-top: 4px;
}

.va-form__screening-phone {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  color: var(--text);
  background: var(--paper-3);
  border: 1px solid var(--paper-line);
  border-radius: 6px;
  padding: 1px 6px;
  white-space: nowrap;
  text-decoration: none;
}

a.va-form__screening-phone:hover,
a.va-form__screening-phone:focus-visible {
  background: var(--paper-2);
  border-color: var(--text);
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .va-form__phone-row {
    grid-template-columns: 1fr;
  }
  .va-form__select--country {
    width: 100%;
  }
  .va-form__radios {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- Section 3: Footer -------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, #0B0F1A 0%, #07090F 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}
.footer-anim {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-anim.in-view {
  opacity: 1; transform: translateY(0);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 20px;
}
/* .footer-brand img — moved to critical inline CSS in index.html (line ~441) to avoid deferred-swap flash + browser cache issues. */
.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 16px 0 0;
  max-width: 280px;
  line-height: 1.5;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.footer-col li a,
.footer-col li span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 200ms ease-out, transform 200ms ease-out;
}
.footer-col li a:hover {
  color: white;
  transform: translateX(2px);
}
.footer-col li a svg {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  transition: color 200ms ease-out;
}
.footer-col li a:hover svg { color: white; }

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
/* Lang toggle variant for dark footer */
.lang-toggle.on-dark {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.55);
}
.lang-toggle.on-dark:hover { border-color: rgba(255, 255, 255, 0.4); }
.lang-toggle.on-dark .opt.active { color: white; }
.lang-toggle.on-dark .sep { color: rgba(255, 255, 255, 0.25); }

/* ============================================================
   STEP 10.5 — Cookie consent banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--paper-line);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px -16px rgba(11, 15, 26, 0.18);
  padding: 28px 32px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.cookie-banner[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0 0 8px;
}
.cookie-banner__body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-soft);
  margin: 0 0 20px;
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner__btn--ghost {
  background: transparent;
  color: var(--text-soft);
  border: 1px solid var(--paper-line);
}
.cookie-banner__btn--ghost:hover {
  border-color: var(--text-soft);
  color: var(--text);
}
.cookie-banner__btn--primary {
  background: var(--grad-electric);
  color: white;
}
.cookie-banner__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -4px rgba(42, 111, 255, 0.4);
}
.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px dashed var(--paper-line);
  gap: 16px;
  cursor: pointer;
}
.cookie-toggle:last-of-type { border-bottom: none; }
.cookie-toggle__info strong {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.cookie-toggle__info span {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.cookie-toggle input[type="checkbox"] {
  width: 18px; height: 18px;
  cursor: pointer;
  accent-color: var(--blue-500);
  flex-shrink: 0;
}
.cookie-toggle input[disabled] { cursor: not-allowed; opacity: 0.6; }
.cookie-banner__customize { padding-top: 4px; }

/* Cookie preferences link in footer */
.footer-cookie-link {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 200ms ease-out;
}
.footer-cookie-link:hover { color: white; }
.footer-bottom .sep-dot {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
}

/* Reduced motion: include all Step 10 entrance-animated elements */
@media (prefers-reduced-motion: reduce) {
  .how-card,
  .project-card,
  .about-block,
  .tier,
  .faq-block,
  .cta-final-block .eyebrow,
  .cta-final-block .cta-heading,
  .cta-final-block .cta-subhead,
  .cta-final-block .cta-card,
  .cal-wrap,
  .footer-anim {
    opacity: 1;
    transform: none;
    transition: border-color 300ms, box-shadow 300ms;
  }
  .tier.featured {
    transform: scale(1.04);
  }
}
.todo-section {
  padding: 80px 0;
  text-align: center;
  border-top: 1px dashed var(--line-l);
}
.todo-section .label {
  display: inline-block;
  padding: 8px 16px;
  background: var(--paper-2);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  text-transform: uppercase;
}

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 880px) {
  .nav-inner { padding: 14px 20px; gap: 12px; }
  .nav-links { display: none; }
  .nav-brand .word { display: none; }

  .hero { padding: 56px 0 72px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
  }
  .hero h1 { max-width: none; }
  .hero-sub { font-size: 17px; }

  .container { padding: 0 20px; }

  .hero-card {
    aspect-ratio: auto;
    min-height: 460px;
    padding: 24px 20px;
  }
  .bubble { max-width: 85%; font-size: 13px; }
  .hero-card-ribbon { opacity: 0.5; }

  /* Sections: tighter padding on mobile */
  section { padding: 80px 0; }
  .section-title {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 auto 40px;
    padding: 0 20px;
    align-items: start;
  }
  .section-title h2 { max-width: none; font-size: clamp(32px, 8vw, 44px); }

  /* Services on mobile: 5 normal cards = horizontal scroll-snap carousel,
     featured card = full-width below (always visible). */
  .use-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0;
    grid-template-columns: none;
  }
  .cards-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 4px 24px;
    scroll-padding: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cards-strip::-webkit-scrollbar { display: none; }
  .cards-strip .use,
  .cards-strip .use.span-2,
  .cards-strip .use.span-3 {
    flex: 0 0 85%;
    min-width: 280px;
    grid-column: auto;
    scroll-snap-align: start;
    min-height: 280px;
  }

  /* Carousel indicator (5 dashes) */
  .carousel-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    padding: 0 24px;
  }
  .carousel-indicator span {
    width: 24px;
    height: 2px;
    background: var(--paper-line);
    border-radius: 1px;
    transition: background 250ms ease-out;
  }
  .carousel-indicator span.on {
    background: var(--blue-500);
  }
  .swipe-hint {
    display: block;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-soft);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: -4px 0 0;
    transition: opacity 400ms ease-out;
  }
  .swipe-hint.hidden { opacity: 0; pointer-events: none; }

  /* Featured card on mobile: stays full-width below carousel */
  .use.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 24px;
    margin: 0 20px;
  }
  .use.featured h3 { font-size: 22px; }
  .use.featured .featured-uses { grid-template-columns: 1fr; gap: 12px; }
  .use.featured .featured-content .cat { padding-top: 16px; }

  .services-callout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px 0;
    margin: 24px 20px 0;
  }
  .services-callout p { font-size: 18px; }
  .services-callout .btn-callout { width: 100%; justify-content: center; }

  /* How we work: stack vertically */
  .how-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 20px;
  }
  .how-card {
    padding: 24px;
    min-height: auto;
    gap: 10px;
  }

  /* Projects: stack vertically */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }
  .project-card {
    padding: 28px 24px;
    gap: 12px;
  }
  .project-card h3 { font-size: 22px; }
  .project-card .desc { font-size: 14px; }
  .project-card.featured { padding: 28px 24px; }
  .project-card.featured h3 { font-size: 22px; }
  .project-card.featured .desc { font-size: 14px; }

  /* Step 10.5 — Cookie banner */
  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 24px;
    max-width: none;
  }
  .cookie-banner__actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-banner__btn { width: 100%; }

  /* Step 10 — Final CTA */
  #get-started { padding: 80px 0 60px; }
  .cta-final-block { padding: 0 20px; }
  .cta-heading { font-size: 40px; max-width: none; }
  .cta-subhead { font-size: 17px; margin: 16px auto 36px; }
  .cta-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cta-card { padding: 32px 24px; }
  .cta-card h3 { font-size: 22px; }

  /* Step 10 — Cal.com embed + booking choice screen */
  #book { padding: 0 0 80px; }
  .cal-wrap { padding: 0 20px; }
  .cal-frame { min-height: 600px; }
  .cal-iframe { height: 600px; }
  .cal-fallback { padding: 60px 24px; min-height: 400px; }
  .book-choice-screen { padding: 0 20px 48px; }
  .book-choice-inner { gap: 32px; }
  .choice-cards { grid-template-columns: 1fr; gap: 16px; }
  .choice-card { padding: 28px 24px; }
  .choice-card__label { font-size: 20px; }
  .book-back { padding: 0 20px 20px; }
  .book-agent-wrap { padding: 0 20px 48px; }

  /* Step 10 — Footer */
  .site-footer { padding: 60px 0 24px; }
  .footer-anim { padding: 0 20px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    margin-top: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* FAQ: tighter spacing, smaller question font */
  .faq-block { padding: 0 20px; }
  .faq-q { font-size: 16px; padding: 20px 0; gap: 16px; }
  .faq-a { font-size: 15px; padding: 0 24px 20px 0; }
  .faq-closer { padding: 0 20px; margin-top: 48px; }
  .faq-closer h3 { font-size: 26px; }
  .faq-closer .ctas { flex-direction: column; align-items: stretch; }
  .faq-closer .btn { justify-content: center; }

  /* Pricing: stack tiers vertically, drop scale on Growth */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 16px 20px 0;
  }
  .tier { padding: 32px 24px; }
  .tier .tagline { min-height: 0; }
  .tier.featured.in-view {
    transform: translateY(0); /* no scale on mobile to avoid overflow */
  }
  @media (prefers-reduced-motion: reduce) {
    .tier.featured { transform: none; }
  }
  .pricing-note { margin-top: 36px; padding: 0 20px; font-size: 14px; }

  /* About: photo on top centered, copy below */
  .about-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }
  .about-stats {
    width: 280px;
    height: 350px;
    margin: 0 auto;
    padding: 24px 20px;
  }
  .about-stats .num { font-size: 48px; }
  .about-copy { max-width: none; }
  .founder-name h3 { font-size: 30px; }
  .about-copy .bio { font-size: 17px; }
  .about-copy .closer { font-size: 18px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(36px, 9vw, 56px); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }

  /* Single column for use cards on smallest screens */
  .use-grid { grid-template-columns: 1fr; }
  .use.span-2, .use.span-3, .use.span-6 { grid-column: span 1; }
}
