/* =====================================================================
   GrowthOS AI — Marketing Site v6
   Editorial white luxury: gallery-white, cinematic photography,
   massive serif typography, asymmetric layout. Aesop × Apple × Bottega.
   ===================================================================== */

:root {
  --ink-0: #ffffff;
  --ink-1: #fafaf7;
  --ink-2: #f3f1ea;
  --ink-3: #ebe7dc;
  --navy-1: #0a0d18;
  --navy-2: #14182a;
  --line: rgba(10, 13, 24, 0.10);
  --line-strong: rgba(10, 13, 24, 0.22);
  --gold-1: #b8860b;
  --gold-2: #a37c1f;
  --gold-3: #7d5f12;
  --champagne: #c79a36;
  --gold-glow: rgba(184, 134, 11, 0.18);
  --cream: #faf7f0;
  --text: #0a0d18;
  --text-dim: #545968;
  --text-dimmer: #8a8e9a;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-optical-sizing: auto;
  background: var(--ink-0);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold-2); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- AMBIENT BACKGROUND -------------------------------------- */
.bg-ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(184, 134, 11, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 90% 30%, rgba(10, 13, 24, 0.03) 0%, transparent 55%),
              radial-gradient(ellipse 70% 50% at 10% 70%, rgba(184, 134, 11, 0.04) 0%, transparent 60%),
              var(--ink-0);
}
.bg-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.85'/></svg>");
}

/* ---------- TYPOGRAPHY --------------------------------------------- */
.display {
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.display-1 { font-size: clamp(3.2rem, 8.2vw, 7.4rem); font-weight: 500; }
.display-2 { font-size: clamp(2.6rem, 5.6vw, 4.8rem); font-weight: 500; }
.display-3 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 600; }

.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold-2);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 60ch;
}

.gold { color: var(--gold-1); }
.italic-serif {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ---------- BUTTONS ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease), box-shadow 0.4s var(--ease-out), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-3) 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18) inset,
              0 1px 0 rgba(10, 13, 24, 0.25) inset,
              0 8px 30px -8px var(--gold-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset,
              0 1px 0 rgba(10, 13, 24, 0.35) inset,
              0 14px 40px -8px var(--gold-glow);
}
.btn-ghost {
  background: rgba(10, 13, 24, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 22px;
}
.btn-ghost:hover {
  background: rgba(10, 13, 24, 0.07);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- NAV ---------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.brand img { width: 32px; height: 32px; object-fit: contain; }
.brand .ai { color: var(--gold-1); }
.brand-logo-only img { width: auto; height: 38px; }
@media (max-width: 700px) {
  .brand-logo-only img { height: 32px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: var(--text-dim);
}
.nav-links a { transition: color 0.2s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav .btn { padding: 11px 18px; font-size: 14px; }

/* ---------- MOBILE MENU ------------------------------------------- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  flex-shrink: 0;
}
.nav-toggle:hover { border-color: var(--gold-2); }
.nav-toggle .bar {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  margin: 3px 0;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid var(--line);
  z-index: 99;
  padding: 24px 28px 32px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s var(--ease-out), opacity 0.25s var(--ease);
  max-height: calc(100vh - 76px);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { border-bottom: 1px solid var(--line); }
.mobile-menu li:last-child { border-bottom: none; }
.mobile-menu a {
  display: block;
  padding: 18px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
}
.mobile-menu a .arrow { color: var(--gold-2); float: right; opacity: 0.7; }
.mobile-menu .menu-cta {
  display: block;
  margin-top: 20px;
  padding: 16px;
  text-align: center;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-3) 100%);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
}

/* ---------- HERO --------------------------------------------------- */
.hero {
  position: relative;
  padding: 200px 0 140px;
  overflow: hidden;
  isolation: isolate;
}
.hero-image .hero-bg-img {
  position: absolute;
  inset: 0;
  background: url("../img/hero-accent.jpg") center 30% / cover no-repeat;
  z-index: -2;
  filter: saturate(108%) contrast(105%);
}
.hero-image .hero-bg-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.72) 30%,
    rgba(255, 255, 255, 0.68) 60%,
    rgba(255, 255, 255, 0.94) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 13, 24, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 13, 24, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 60%);
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(20px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1020px;
  margin: 0 auto;
}
.hero h1 {
  margin: 26px auto 26px;
  max-width: 18ch;
}
.hero h1 .gold { display: inline-block; }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-dim);
  max-width: 60ch;
  margin: 0 auto 38px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-receipts {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--text-dimmer);
  letter-spacing: -0.005em;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-receipts .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-2);
  opacity: 0.7;
}

/* ---------- LOGO STRIP / STATS BAR -------------------------------- */
.stats-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 13, 24, 0.012) 0%, transparent 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-cell {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat-cell:last-child { border-right: 0; }
.stat-num {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-num .gold { color: var(--gold-1); }
.stat-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dimmer);
  margin-top: 14px;
}
@media (max-width: 820px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: 0; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ---------- GENERIC SECTION --------------------------------------- */
.section { padding: 130px 0; position: relative; }
.section-head { max-width: 740px; margin: 0 auto 72px; text-align: center; }
.section-head h2 { margin-top: 22px; }
.section-head .lead { margin: 24px auto 0; }

@media (max-width: 720px) {
  .section { padding: 90px 0; }
  .section-head { margin-bottom: 52px; }
}

/* ---------- PROBLEM ----------------------------------------------- */
.problem {
  padding: 110px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.problem h2 { margin-bottom: 24px; }
.problem-list {
  list-style: none;
  display: grid;
  gap: 22px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(10, 13, 24, 0.018);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.problem-item:hover {
  border-color: var(--line-strong);
  background: rgba(10, 13, 24, 0.03);
}
.problem-item .x {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(220, 80, 80, 0.14);
  color: #f08080;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.problem-item p { color: var(--text-dim); font-size: 15px; }
.problem-item p b { color: var(--text); font-weight: 600; }
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- SERVICES ---------------------------------------------- */
.services { background: linear-gradient(180deg, transparent, rgba(10,13,24,0.012) 50%, transparent); }
.service-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 110px;
  position: relative;
}
.service-feature:last-of-type { margin-bottom: 0; }
.service-feature.reverse { grid-template-columns: 1fr 1.05fr; }
.service-feature.reverse .svc-text { order: 2; }
.service-feature.reverse .svc-visual { order: 1; }
.service-feature h3 { margin: 22px 0 20px; }
.svc-text .lead { margin-bottom: 26px; }
.svc-bullets {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.svc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dim);
}
.svc-bullets li b { color: var(--text); font-weight: 600; }
.svc-bullets .tick {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(212, 169, 72, 0.14);
  color: var(--gold-1);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  margin-top: 3px;
}

.svc-visual {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 36px;
  background: linear-gradient(160deg, #0e1226 0%, #050714 100%);
  border: 1px solid rgba(212, 169, 72, 0.18);
  min-height: 360px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(10, 13, 24, 0.22);
}
.svc-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212, 169, 72, 0.18), transparent 60%);
  opacity: 0.85;
  pointer-events: none;
}
/* Scoped text + child overrides so dark-island UI mocks always read on white page */
.svc-visual,
.svc-visual .voice-call-row .name,
.svc-visual .pixel-card .nm { color: #f3eee3; }
.svc-visual .voice-call-row {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.svc-visual .voice-call-row.active {
  border-color: rgba(212, 169, 72, 0.55);
  background: rgba(212, 169, 72, 0.12);
}
.svc-visual .voice-call-row .dotted { background: rgba(255, 255, 255, 0.22); }
.svc-visual .voice-call-row .meta { color: rgba(243, 238, 227, 0.55); }
.svc-visual .voice-stat { border-top-color: rgba(255, 255, 255, 0.08); }
.svc-visual .voice-stat-label { color: rgba(243, 238, 227, 0.55); }
.svc-visual .pixel-card {
  background: rgba(8, 12, 28, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}
.svc-visual .pixel-card .em { color: rgba(243, 238, 227, 0.62); }

/* Voice Caller mockup */
.voice-mock {
  position: relative;
  z-index: 1;
}
.voice-call-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(10, 13, 24, 0.04);
  border: 1px solid var(--line);
  margin-bottom: 12px;
  font-size: 13.5px;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.voice-call-row.active {
  border-color: rgba(212, 169, 72, 0.55);
  background: rgba(212, 169, 72, 0.08);
}
.voice-call-row .pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold-1);
  box-shadow: 0 0 0 0 var(--gold-glow);
  animation: pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
.voice-call-row .dotted { width: 9px; height: 9px; border-radius: 50%; background: rgba(10,13,24,0.18); flex-shrink: 0; }
.voice-call-row .name { color: var(--text); font-weight: 500; }
.voice-call-row .meta { color: var(--text-dimmer); margin-left: auto; font-variant-numeric: tabular-nums; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 169, 72, 0.6); }
  100% { box-shadow: 0 0 0 14px rgba(212, 169, 72, 0); }
}
.voice-stat {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.voice-stat-num {
  font-size: 28px; font-weight: 600; color: var(--gold-1);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.voice-stat-label { font-size: 12px; color: var(--text-dimmer); text-transform: uppercase; letter-spacing: 0.12em; }

/* Super Pixel mockup */
.pixel-mock {
  position: relative;
  z-index: 1;
  height: 320px;
}
.pixel-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-1);
  box-shadow: 0 0 10px var(--gold-glow);
  animation: pixel-blink 3s ease-in-out infinite;
}
@keyframes pixel-blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.pixel-card {
  position: absolute;
  background: rgba(10, 16, 36, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
  min-width: 220px;
}
.pixel-card .nm { color: var(--text); font-weight: 600; font-size: 13px; }
.pixel-card .em { color: var(--text-dim); font-size: 11.5px; margin-top: 2px; }
.pixel-card .tg {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: rgba(212, 169, 72, 0.14);
  color: var(--gold-1);
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

@media (max-width: 880px) {
  .service-feature, .service-feature.reverse {
    grid-template-columns: 1fr; gap: 36px;
  }
  .service-feature.reverse .svc-text { order: 1; }
  .service-feature.reverse .svc-visual { order: 2; }
}

/* ---------- SECONDARY SERVICE CARDS ------------------------------- */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.svc-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(10, 13, 24, 0.018) 0%, transparent 100%);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease-out), background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(10, 13, 24, 0.03) 0%, transparent 100%);
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(212, 169, 72, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.svc-card:hover::after { opacity: 1; }
.svc-card-num {
  font-size: 12px;
  color: var(--gold-1);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}
.svc-card h4 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 18px 0 14px;
  line-height: 1.15;
}
.svc-card p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
}
.svc-card p b { color: var(--text); font-weight: 600; }
@media (max-width: 720px) { .svc-cards { grid-template-columns: 1fr; } }

/* ---------- RECEIPTS / RESULTS ------------------------------------ */
.receipts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.receipt-tile {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(10, 13, 24, 0.018);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease-out);
  text-align: left;
}
.receipt-tile:hover {
  border-color: rgba(212, 169, 72, 0.4);
  background: rgba(212, 169, 72, 0.04);
  transform: translateY(-2px);
}
.receipt-tile .big {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--gold-1);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.receipt-tile .who {
  margin-top: 14px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}
.receipt-tile .what {
  color: var(--text-dimmer);
  font-size: 13px;
  margin-top: 4px;
}
@media (max-width: 880px) { .receipts-grid { grid-template-columns: repeat(2, 1fr); } }

.campaign-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.campaign-tile {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  position: relative;
}
.campaign-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.campaign-tile:hover img { transform: scale(1.04); }
.campaign-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 6, 13, 0.7) 100%);
  pointer-events: none;
}
.campaign-tile .cap {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  font-size: 12.5px;
  color: var(--text);
  font-weight: 500;
  z-index: 1;
}
@media (max-width: 720px) { .campaign-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- FOUNDERS ---------------------------------------------- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}
@media (max-width: 1100px) {
  .founders-grid { grid-template-columns: 1fr 1fr; }
}
.founder-card {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(10, 13, 24, 0.022) 0%, transparent 100%);
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: border-color 0.4s var(--ease);
}
.founder-card:hover { border-color: var(--line-strong); }
.founder-card .portrait {
  flex-shrink: 0;
  width: 132px; height: 132px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--ink-3);
  position: relative;
}
.founder-card .portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder-card .name {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.founder-card .role {
  font-size: 13px;
  color: var(--gold-1);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}
.founder-card .bio {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; gap: 18px; padding: 32px; }
  .founder-card .portrait { width: 96px; height: 96px; }
}

/* ---------- FAQ --------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-1);
  transition: transform 0.4s var(--ease-out);
  display: inline-block;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), margin 0.5s var(--ease-out);
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 360px;
  margin-top: 16px;
}

/* ---------- FINAL CTA --------------------------------------------- */
.final-cta {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  color: #fff;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 20, 0.78) 0%, rgba(4, 8, 20, 0.62) 40%, rgba(4, 8, 20, 0.78) 100%),
    url("../img/bg-cta.jpg") center/cover no-repeat;
  pointer-events: none;
}
.final-cta .eyebrow { color: var(--gold-1); }
.final-cta h2 { color: #fff; }
.final-cta .italic-serif.gold { color: var(--gold-1); }
.final-cta .lead { color: rgba(255, 255, 255, 0.82); }
.final-cta .micro { color: rgba(255, 255, 255, 0.55); }
.final-cta .btn-ghost { color: #fff; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); }
.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.final-cta h2 { margin: 24px auto 26px; }
.final-cta .lead { margin: 0 auto 42px; }
.final-cta .micro {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-dimmer);
  letter-spacing: 0.02em;
}

/* ---------- FOOTER ------------------------------------------------ */
.footer {
  padding: 60px 0 50px;
  border-top: 1px solid var(--line);
  color: var(--text-dimmer);
  font-size: 13px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  flex-wrap: wrap;
}
.footer .brand { font-size: 16px; color: var(--text); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--text-dimmer); flex-basis: 100%; text-align: center; margin-top: 8px; }
@media (max-width: 700px) {
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { gap: 8px 18px; font-size: 12.5px; }
}

/* ---------- SCROLL REVEAL ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  .hero-orb, .voice-call-row .pulse, .pixel-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- ELEVENLABS WIDGET POSITION ---------------------------- */
elevenlabs-convai {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}
/* Hide ElevenLabs branding via ::part() — widget exposes named parts */
elevenlabs-convai::part(powered-by),
elevenlabs-convai::part(branding),
elevenlabs-convai::part(banner),
elevenlabs-convai::part(footer) {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
}
/* Direct class targets — for badge elements that render in light DOM */
.elevenlabs-badge-container,
.made-with-elevenlabs,
[class*="elevenlabs-badge"],
[class*="made-with-eleven"],
[class*="powered-by-eleven"],
[class*="elevenagents"],
[class*="eleven-agents"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* Any link pointing at elevenlabs / elevenagents domains near the widget */
a[href*="elevenlabs.io"],
a[href*="elevenagents.com"],
a[href*="elevenagents.ai"],
a[href*="11labs.io"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ---------- SHOWCASE BLOCKS ---------------------------------------- */
.showcase {
  padding: 40px 0 20px;
}
.showcase-wide {
  padding: 80px 0 40px;
}
.showcase-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  box-shadow: 0 30px 80px -30px rgba(10, 13, 24, 0.18),
              0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
.showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s var(--ease-out);
}
.showcase-frame:hover img { transform: scale(1.02); }
.showcase-frame figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 36px;
  background: linear-gradient(0deg, rgba(10, 13, 24, 0.85) 0%, rgba(10, 13, 24, 0.55) 60%, transparent 100%);
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.01em;
  font-weight: 500;
  line-height: 1.5;
}
.showcase-frame figcaption .gold { color: var(--gold-1); font-weight: 600; }
@media (max-width: 700px) {
  .showcase-frame figcaption { padding: 18px 20px; font-size: 13px; }
}

/* ---------- SECTION BACKGROUND IMAGES ------------------------------ */
.section-bg {
  position: relative;
  isolation: isolate;
}
.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.32;
  filter: saturate(105%) contrast(105%);
}
.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.74) 22%,
    rgba(255, 255, 255, 0.66) 50%,
    rgba(255, 255, 255, 0.80) 80%,
    rgba(255, 255, 255, 0.96) 100%);
  z-index: -1;
  pointer-events: none;
}
.section-bg-services::before { background-image: url("../img/bg-services.jpg"); }
.section-bg-results::before { background-image: url("../img/bg-results.jpg"); }
.section-bg > .container { position: relative; z-index: 1; }

/* ---------- CASE STUDY CARDS (Klaviyo-style image cards) ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .case-grid { grid-template-columns: 1fr; }
}
.case-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -30px rgba(10, 13, 24, 0.22);
  isolation: isolate;
}
.case-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  z-index: 0;
}
.case-card:hover img { transform: scale(1.05); }
.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0.10) 0%, rgba(4, 8, 20, 0.32) 45%, rgba(4, 8, 20, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
}
.case-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 32px 28px;
  color: #fff;
  z-index: 2;
}
.case-metric {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gold-1);
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  margin-bottom: 6px;
}
.case-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.86);
  margin-bottom: 10px;
}
.case-line {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  max-width: 42ch;
}
@media (max-width: 700px) {
  .case-card { aspect-ratio: 16 / 11; }
  .case-overlay { padding: 22px 22px 20px; }
  .case-metric { font-size: 40px; }
}

/* ---------- TECH STACK STRIP -------------------------------------- */
.stack-strip {
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 13, 24, 0.02) 0%, transparent 100%);
}
.stack-head {
  text-align: center;
  margin-bottom: 26px;
}
.stack-head .eyebrow { color: var(--gold-2); }
.stack-sub {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 15px;
}
.stack-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.stack-row span:not(.dot) {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--navy-1);
  opacity: 0.55;
  transition: opacity 0.2s var(--ease);
}
.stack-row span:not(.dot):hover { opacity: 1; color: var(--gold-3); }
.stack-row .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-2);
  opacity: 0.5;
}
@media (max-width: 700px) {
  .stack-row { gap: 10px 16px; }
  .stack-row span:not(.dot) { font-size: 13px; }
  .stack-row .dot { display: none; }
}

/* ---------- LEGAL PAGES (Privacy / Terms / Cookies) --------------- */
.legal-page main { padding: 180px 0 120px; }
.legal-page .legal-head { margin-bottom: 48px; }
.legal-page .legal-head .eyebrow { color: var(--gold-2); }
.legal-page .legal-head h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 18px 0 14px;
  color: var(--text);
}
.legal-page .legal-head .effective { color: var(--text-dim); font-size: 14px; letter-spacing: 0.04em; }
.legal-page .legal-body {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
}
.legal-page .legal-body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 48px 0 14px;
  letter-spacing: -0.01em;
}
.legal-page .legal-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 10px;
  letter-spacing: -0.005em;
}
.legal-page .legal-body p,
.legal-page .legal-body ul,
.legal-page .legal-body ol { margin-bottom: 16px; }
.legal-page .legal-body ul,
.legal-page .legal-body ol { padding-left: 22px; }
.legal-page .legal-body li { margin-bottom: 8px; }
.legal-page .legal-body strong { color: var(--text); font-weight: 600; }
.legal-page .legal-body a {
  color: var(--gold-3);
  border-bottom: 1px solid rgba(184, 134, 11, 0.35);
  transition: border-color 0.2s var(--ease);
}
.legal-page .legal-body a:hover { border-color: var(--gold-2); }
.legal-page .legal-toc {
  background: var(--ink-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 40px;
  font-size: 14px;
}
.legal-page .legal-toc h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 10px;
}
.legal-page .legal-toc ol {
  columns: 2;
  column-gap: 32px;
  padding-left: 18px;
  margin: 0;
}
.legal-page .legal-toc li { margin-bottom: 4px; color: var(--text-dim); }
.legal-page .legal-toc a { color: var(--text); border-bottom: none; }
.legal-page .legal-toc a:hover { color: var(--gold-3); }
@media (max-width: 720px) {
  .legal-page .legal-toc ol { columns: 1; }
}
.legal-footnote {
  margin-top: 48px;
  padding: 22px 26px;
  background: var(--ink-2);
  border-left: 3px solid var(--gold-2);
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.legal-footnote b { color: var(--text); }
