/* =============================================================
   VOCO — Design System
   Tokens, reset, layout, components, sections, motion
   ============================================================= */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Core palette */
  --ink:        #0A0A0C;
  --ink-soft:   #15151A;
  --ink-mid:    #1E1E26;
  --paper:      #F7F6F2;
  --gold:       #E8B23A;
  --gold-strong:#C48F1F;
  --gold-bright:#F5C84D;
  --gold-dim:   #A67C20;
  --voco:       #FF7A59;
  --voco-dim:   #C9502C;
  --muted:      #8A8A93;
  --muted-light:#AEAEB8;
  --border:     rgba(255,255,255,0.07);
  --border-gold:rgba(232,178,58,0.25);

  /* Typography */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Figtree', system-ui, sans-serif;

  /* Scale — fluid display */
  --text-xs:   clamp(0.75rem,  1vw,   0.8125rem);
  --text-sm:   clamp(0.875rem, 1.2vw, 0.9375rem);
  --text-base: clamp(1rem,     1.4vw, 1.0625rem);
  --text-md:   clamp(1.125rem, 1.6vw, 1.25rem);
  --text-lg:   clamp(1.375rem, 2vw,   1.625rem);
  --text-xl:   clamp(1.75rem,  3vw,   2.25rem);
  --text-2xl:  clamp(2.25rem,  4.5vw, 3.5rem);
  --text-3xl:  clamp(2.75rem,  6vw,   5rem);

  /* Spacing */
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-24:  6rem;
  --sp-32:  8rem;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-full: 9999px;

  /* Z-index scale */
  --z-base:    1;
  --z-sticky:  100;
  --z-dropdown:200;
  --z-modal:   300;
  --z-toast:   400;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 560ms;
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--gold); }

ul { list-style: none; }

/* ── CONTAINER ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── SECTION TYPOGRAPHY ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--paper);
  margin-bottom: var(--sp-8);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  padding: 0.6875rem 1.375rem;
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold-bright);
  color: #000;
  border-color: var(--gold-bright);
}
.btn-primary:hover {
  background: var(--gold-strong);
  border-color: var(--gold-strong);
  color: #000;
  box-shadow: 0 0 32px rgba(232,178,58,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(247,246,242,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: transparent;
  padding-inline: 0.75rem;
}
.btn-ghost:hover { color: var(--paper); }

.btn-lg {
  font-size: var(--text-base);
  padding: 0.9rem 1.75rem;
}

/* ── NAV ─────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: transparent;
  transition: background var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(10,10,12,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--sp-4) clamp(1.25rem, 5vw, 3rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--paper);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--paper); }
.nav-logo .logo-diamond { color: var(--gold); font-size: 0.9em; }
.nav-logo .logo-word { letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-left: auto;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
}
.nav-links a:not(.btn) {
  color: #CECED6;
}
.nav-links a:not(.btn):hover { color: var(--paper); }
.nav-login { color: #CECED6 !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: var(--sp-2);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--paper);
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-4) clamp(1.25rem, 5vw, 3rem) var(--sp-6);
  background: rgba(10,10,12,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.nav-drawer a {
  font-size: var(--text-md);
  font-weight: 500;
  color: #CECED6;
}
.nav-drawer .btn { align-self: flex-start; margin-top: var(--sp-2); }
.nav-drawer.open { display: flex; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-canvas canvas {
  width: 100%;
  height: 100%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--sp-32) clamp(1.25rem, 5vw, 3rem) var(--sp-24);
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--voco);
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.1s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
  color: var(--paper);
  max-width: 16ch;
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.2s forwards;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: var(--text-md);
  color: var(--muted-light);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: var(--sp-8);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.35s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.45s forwards;
}

/* Demo player */
.demo-player {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.55s forwards;
}

.demo-play {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: rgba(255,122,89,0.12);
  border: 1.5px solid rgba(255,122,89,0.3);
  color: var(--voco);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
  opacity: 0.5;
  flex-shrink: 0;
}

.demo-track {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.demo-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted-light);
}
.demo-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
}
.demo-waveform span {
  display: block;
  width: 3px;
  background: var(--muted);
  border-radius: 2px;
  opacity: 0.4;
}
.demo-waveform span:nth-child(1)  { height: 6px; }
.demo-waveform span:nth-child(2)  { height: 10px; }
.demo-waveform span:nth-child(3)  { height: 14px; }
.demo-waveform span:nth-child(4)  { height: 10px; }
.demo-waveform span:nth-child(5)  { height: 8px; }
.demo-waveform span:nth-child(6)  { height: 12px; }
.demo-waveform span:nth-child(7)  { height: 16px; }
.demo-waveform span:nth-child(8)  { height: 12px; }
.demo-waveform span:nth-child(9)  { height: 8px; }
.demo-waveform span:nth-child(10) { height: 10px; }
.demo-waveform span:nth-child(11) { height: 14px; }
.demo-waveform span:nth-child(12) { height: 10px; }
.demo-waveform span:nth-child(13) { height: 6px; }
.demo-waveform span:nth-child(14) { height: 8px; }
.demo-waveform span:nth-child(15) { height: 4px; }

.demo-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 3px 10px;
  flex-shrink: 0;
}

/* ── PROBLEM ─────────────────────────────────────────────────── */
.problem {
  padding-block: var(--sp-32);
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--paper);
  margin-bottom: var(--sp-6);
}
.problem-text p {
  color: var(--muted-light);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: var(--sp-4);
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-left: var(--sp-6);
  border-left: 2px solid var(--border-gold);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-desc {
  font-size: var(--text-sm);
  color: var(--muted);
  max-width: 26ch;
  line-height: 1.4;
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-it-works {
  padding-block: var(--sp-32);
}

.steps-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--sp-6);
  align-items: start;
}

.step {
  background: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.step:hover {
  border-color: var(--border-gold);
  box-shadow: 0 0 40px rgba(232,178,58,0.06);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,178,58,0.07);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
}
.step h3 {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--paper);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.015em;
}
.step p {
  font-size: var(--text-sm);
  color: var(--muted-light);
  line-height: 1.65;
  max-width: 32ch;
}

.step-connector {
  align-self: center;
  width: 24px;
  height: 1px;
  background: var(--border-gold);
  margin-top: 2rem;
}

/* ── FEATURES ────────────────────────────────────────────────── */
.features {
  padding-block: var(--sp-32);
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4);
}

.feature-card {
  background: var(--ink-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.feature-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 40px rgba(232,178,58,0.06);
  transform: translateY(-2px);
}

.fc-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
}
.fc-wide .fc-icon { flex-shrink: 0; }

.fc-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,122,89,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
}
.fc-wide .fc-icon { margin-bottom: 0; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--paper);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.feature-card p {
  font-size: var(--text-sm);
  color: var(--muted-light);
  line-height: 1.65;
  max-width: 42ch;
}

.badge-lite {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,122,89,0.12);
  color: var(--voco);
  border: 1px solid rgba(255,122,89,0.25);
  border-radius: var(--r-full);
  padding: 2px 8px;
}

/* ── INTEGRATIONS ────────────────────────────────────────────── */
.integrations {
  padding-block: var(--sp-32);
}

.integrations-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.integrations-copy h2 { margin-bottom: var(--sp-6); }
.integrations-copy p {
  color: var(--muted-light);
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: var(--sp-6);
}

.integration-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  border: 1.5px solid;
}
.pill-live {
  color: var(--paper);
  border-color: var(--border-gold);
  background: rgba(232,178,58,0.06);
}
.pill-soon {
  color: var(--muted);
  border-color: var(--border);
  background: transparent;
}
.pill-status {
  font-size: var(--text-xs);
  font-weight: 500;
  opacity: 0.65;
}

.integrations-note {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
  max-width: 44ch;
  margin-bottom: 0 !important;
}

/* Flow diagram */
.flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  background: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

.flow-arrow {
  font-size: 1.25rem;
  color: var(--border-gold);
  transform: rotate(90deg);
}

.flow-node {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}

.flow-caller {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted-light);
}
.flow-voco {
  background: rgba(232,178,58,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
}
.flow-split {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  width: 100%;
}
.flow-pos {
  background: rgba(255,122,89,0.08);
  border: 1px solid rgba(255,122,89,0.2);
  color: var(--voco);
}
.flow-notify {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--muted-light);
  font-size: var(--text-xs);
}
.flow-dash {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--muted-light);
  font-size: var(--text-xs);
}

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing {
  padding-block: var(--sp-32);
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-sub {
  font-size: var(--text-md);
  color: var(--muted-light);
  max-width: 52ch;
  margin-bottom: var(--sp-12);
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--ink-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.pricing-card:hover { box-shadow: 0 8px 48px rgba(0,0,0,0.3); }

.pricing-card-featured {
  background: var(--ink-soft);
  border-color: var(--border-gold);
  box-shadow: 0 0 0 1px var(--border-gold), 0 24px 64px rgba(232,178,58,0.1);
}

.plan-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--r-full);
  padding: 3px 10px;
  margin-bottom: var(--sp-4);
}

.plan-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--paper);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--sp-2);
}
.price-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--paper);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-per {
  font-size: var(--text-sm);
  color: var(--muted);
}

.plan-minutes {
  font-size: var(--text-sm);
  color: var(--voco);
  font-weight: 600;
  margin-bottom: var(--sp-6);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--muted-light);
  line-height: 1.5;
}
.plan-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8em;
  margin-top: 0.2em;
  flex-shrink: 0;
}

.plan-note {
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
  max-width: 36ch;
}

.plan-cta { width: 100%; justify-content: center; }

.pricing-overage {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-top: var(--sp-8);
  line-height: 1.6;
}
.pricing-overage a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq {
  padding-block: var(--sp-32);
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--ink-soft);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}
.faq-item[open] { border-color: var(--border-gold); }
.faq-item:hover { border-color: rgba(232,178,58,0.15); }

.faq-item summary {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--paper);
  padding: var(--sp-6);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  user-select: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }

.faq-item p {
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: var(--text-sm);
  color: var(--muted-light);
  line-height: 1.7;
  max-width: 60ch;
}

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  padding-block: var(--sp-32);
  background: linear-gradient(135deg, var(--ink-soft) 0%, rgba(30,20,5,0.9) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
  text-wrap: balance;
}
.cta-inner p {
  font-size: var(--text-md);
  color: var(--muted-light);
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-8);
  background: #07070A;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-16);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-8);
}

.footer-brand { max-width: 280px; }

.footer-family-lock {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: var(--sp-3);
  text-decoration: none;
}
.footer-family-lock:hover { color: var(--paper); }
.footer-family-lock .logo-diamond { color: var(--gold); }
.footer-family-name { letter-spacing: -0.01em; }

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--sp-4);
  line-height: 1.5;
}

.footer-cross-sell {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.5;
}
.footer-cross-sell a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-col strong {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-2);
}
.footer-col a {
  font-size: var(--text-sm);
  color: var(--muted);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--muted);
}
.footer-product-line a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-product-line a:hover { color: var(--paper); }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ── KEYFRAMES ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal.will-reveal {
    opacity: 1;
    transform: none;
  }
  .hero-tag,
  .hero-headline,
  .hero-sub,
  .hero-actions,
  .demo-player {
    animation: none;
    opacity: 1;
  }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps-flow {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .step-connector { display: none; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { padding-top: var(--sp-24); }
  .hero-headline { max-width: 100%; }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .integrations-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
  .footer-brand { max-width: 100%; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }

  .fc-wide {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .demo-player { flex-wrap: wrap; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .integration-pills { flex-direction: column; align-items: flex-start; }
}

/* ── LEGAL PAGES ─────────────────────────────────────────────── */
.legal-page {
  padding-top: 7rem;
  padding-bottom: var(--sp-32);
}

.legal-content {
  max-width: 720px;
  margin-inline: auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}

.legal-date {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--sp-12);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.02em;
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
}

.legal-content p {
  color: var(--muted-light);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
  max-width: 68ch;
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.legal-content ul li {
  color: var(--muted-light);
  line-height: 1.75;
  margin-bottom: var(--sp-2);
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- applied brand logo (nav) --- */
.nav-logo{display:flex;align-items:center;text-decoration:none;}
.nav-logo .logo-plate{display:inline-flex;align-items:center;background:var(--paper,#F7F6F2);padding:5px 10px;border-radius:10px;box-shadow:0 1px 4px rgba(0,0,0,.22);}
.nav-logo .logo-plate .logo-img{height:26px;width:auto;display:block;}

/* --- hero ambiance photo (restaurant) --- */
.hero{
  background-image:
    linear-gradient(180deg, rgba(10,10,12,.78) 0%, rgba(10,10,12,.88) 55%, rgba(10,10,12,.97) 100%),
    url('/public/assets/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-canvas{ opacity:.5; }

/* hero overlay tuned for ambiance + legibility */
.hero{
  background-image:
    linear-gradient(180deg, rgba(10,10,12,.42) 0%, rgba(10,10,12,.58) 55%, rgba(10,10,12,.82) 100%),
    url('/public/assets/hero-bg.webp');
}
.hero-headline{ text-shadow: 0 2px 24px rgba(0,0,0,.55); }
.hero-sub{ text-shadow: 0 1px 14px rgba(0,0,0,.5); }
