/* Quill landing · gojiberry-grade system: white airy canvas, warm orange/coral
   accents, light Fustat display type with tight tracking, DM Mono labels and
   counters, product-UI browser mockups, numbered scrollytelling steps, bento
   grid with mono labels, integration strip, testimonial cards, sharp buttons
   with a hover label-swap. Truthful Quill copy throughout. */

:root {
  /* Canvas — white + warm off-whites (gojiberry) */
  --paper: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #FAFAFA;
  --surface-warm: #FBF6F2;     /* faint peach panel */
  --surface-3: #F5F4F2;        /* warm grey */

  /* Ink */
  --ink: #0A0A0A;
  --ink-2: #1E1E1E;
  --ink-3: #5E5E5E;
  --ink-4: #919191;

  /* Brand — warm orange / coral / red family */
  --brand: #FA651E;            /* primary orange */
  --brand-2: #E2551A;          /* hover */
  --brand-deep: #C2410C;       /* deep, used for text-on-white (5:1) */
  --brand-light: #FD8A6B;      /* coral */
  --brand-peach: #FFC59E;      /* peach */
  --brand-red: #FF462E;        /* hot coral-red */
  --brand-yellow: #FAC800;     /* accent yellow */
  --brand-text: #C2410C;       /* accessible accent text on white */
  --brand-dim: rgba(250, 101, 30, 0.08);
  --brand-tint: rgba(250, 101, 30, 0.12);
  --brand-glow: rgba(250, 101, 30, 0.30);
  --green: #34C759;

  --line: rgba(10, 10, 10, 0.08);
  --line-2: rgba(10, 10, 10, 0.14);

  /* Dark section (safety) */
  --dark: #0A0A0A;
  --dark-2: #141414;
  --dark-ink: #F4F2EF;
  --dark-ink-2: #A8A39C;
  --dark-line: rgba(255, 255, 255, 0.10);

  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.05);
  --shadow-md: 0 2px 4px rgba(10, 10, 10, 0.04), 0 12px 28px -8px rgba(10, 10, 10, 0.12);
  --shadow-lg: 0 1px 2px rgba(10, 10, 10, 0.06), 0 32px 64px -16px rgba(10, 10, 10, 0.20);
  --shadow-warm: 0 30px 70px -28px rgba(194, 65, 12, 0.45);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Fustat', 'Inter', -apple-system, sans-serif;
  --mono: 'DM Mono', ui-monospace, 'SF Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: -0.006em;
  font-feature-settings: 'ss01', 'cv11', 'tnum';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Type ────────────────────────────────────────────────────────── */
/* Fustat is a light, rounded grotesque; gojiberry runs it at weight 400
   with very tight negative tracking and near-1.0 line-height. */
h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 1.2rem + 5.2vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.0;
}
h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 1.2rem + 2.8vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}
h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 500; letter-spacing: -0.03em; }

.hl, .accent { color: var(--brand); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-text);
  margin-bottom: 18px;
}
.eyebrow-dark { color: var(--brand-light); }

/* ── Announcement bar ────────────────────────────────────────────── */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 13px; font-weight: 500;
  padding: 9px 16px;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.announce a { color: var(--brand-light); font-weight: 600; text-decoration: none; }
.announce a:hover { color: #fff; }

/* ── Nav (floating pill) ─────────────────────────────────────────── */
.nav { position: sticky; top: 14px; z-index: 50; padding: 0 20px; margin-top: 14px; }
.nav-inner {
  display: flex; align-items: center; gap: 32px; height: 60px;
  max-width: 1160px; margin: 0 auto; padding: 0 12px 0 22px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled .nav-inner { box-shadow: var(--shadow-md); border-color: var(--line-2); }
.wordmark {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.04em;
}
.mark { width: 22px; height: 22px; color: var(--brand); }
.nav-links { display: flex; gap: 28px; margin-left: 18px; }
/* gojiberry-style nav item: label + tiny mono index, with hover label-swap */
.nav-links a {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: baseline; gap: 7px;
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  transition: color 0.15s ease;
}
.nav-links a .idx { font-family: var(--mono); font-size: 10px; color: var(--ink-4); letter-spacing: 0; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav-links-signin { display: none; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 38px; height: 38px; padding: 0 9px;
  background: transparent; border: 1px solid var(--line-2); border-radius: 8px; cursor: pointer;
}
.nav-toggle span { display: block; height: 1.5px; width: 100%; border-radius: 2px; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.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(-5.5px) rotate(-45deg); }

/* ── Buttons ─────────────────────────────────────────────────────── */
/* gojiberry buttons are near-square with an arrow. Primary = orange fill. */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--brand); color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  padding: 12px 20px; border-radius: 9px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(194,65,12,0.2), 0 8px 20px -8px var(--brand-glow);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn-primary:hover { background: var(--brand-2); transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 12px 28px -8px var(--brand-glow); }
.btn-primary:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--brand); }
.btn-primary::after { content: '→'; font-size: 14px; transition: transform 0.16s ease; }
.btn-primary:hover::after { transform: translateX(3px); }

.btn-ghost {
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  padding: 11px 16px; border-radius: 9px;
  transition: color 0.15s ease, background 0.15s ease;
}
.btn-ghost:hover { color: var(--brand-text); background: var(--brand-dim); }

/* Dark button (used on white hero secondary + nav) */
.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  padding: 12px 18px; border-radius: 9px;
  transition: transform 0.16s ease, background 0.16s ease;
}
.btn-dark:hover { background: #2a2a2a; transform: translateY(-1px); }

/* On warm gradient panels (subpage heroes, CTA band) */
.btn-white {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: #fff; color: var(--brand-deep);
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  padding: 14px 26px; border-radius: 10px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.btn-white::after { content: '→'; transition: transform 0.16s ease; }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 14px 32px -8px rgba(0,0,0,0.4); }
.btn-white:hover::after { transform: translateX(3px); }
.btn-clear {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  color: #fff; font-size: 15px; font-weight: 600;
  padding: 14px 22px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.16s ease, border-color 0.16s ease;
}
.btn-clear:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.7); }
.btn-lg { font-size: 16px; padding: 16px 30px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 600; color: var(--brand-text);
  transition: gap 0.15s ease;
}
.link-arrow::after { content: '→'; transition: transform 0.15s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ── Hero (white, gojiberry style) ───────────────────────────────── */
.hero { padding: 60px 20px 0; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -10% 0 auto 0; height: 620px; z-index: -1;
  background:
    radial-gradient(ellipse 38% 50% at 82% 8%, rgba(253,138,107,0.20), transparent 60%),
    radial-gradient(ellipse 42% 46% at 12% 4%, rgba(250,200,0,0.10), transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 980px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 500; color: var(--ink-2);
  padding: 7px 8px 7px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line-2);
  box-shadow: var(--shadow-sm); margin-bottom: 28px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(52,199,89,0.6); }
.hero-badge .chip { font-family: var(--mono); font-size: 10px; color: var(--brand-text); background: var(--brand-dim); border-radius: 999px; padding: 3px 9px; }
.hero h1 { max-width: 16ch; margin: 0 auto; color: var(--ink); }
.hero h1 .accent { color: var(--brand); }
.hero-sub {
  margin: 26px auto 0; max-width: 56ch;
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.22rem);
  color: var(--ink-3); line-height: 1.55;
}

/* Hero input + CTA row (gojiberry "enter your website") */
.hero-form {
  display: flex; align-items: center; gap: 8px;
  max-width: 520px; margin: 34px auto 0;
  background: #fff; border: 1px solid var(--line-2);
  border-radius: 12px; padding: 7px 7px 7px 8px;
  box-shadow: var(--shadow-md);
}
.hero-form input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--sans); font-size: 15px; color: var(--ink); padding: 10px 10px;
}
.hero-form input::placeholder { color: var(--ink-4); }
.hero-form .btn-primary { padding: 12px 20px; white-space: nowrap; }
.hero-note { margin-top: 16px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--ink-4); }

/* Trust row (light) */
.trust-row {
  margin-top: 22px; list-style: none;
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
}
.trust-row li { font-size: 13px; font-weight: 500; color: var(--ink-3); display: inline-flex; align-items: center; gap: 7px; }
.trust-row li::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--brand-dim); color: var(--brand-text); font-size: 9px; font-weight: 700;
}

/* Browser-chrome product mockup */
.browser {
  position: relative; margin: 52px auto 0; max-width: 1020px;
  background: #fff; border: 1px solid var(--line-2);
  border-radius: 16px 16px 0 0; overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(10,10,10,0.4), var(--shadow-lg);
}
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #E0E0E0; }
.browser-bar i:nth-child(1) { background: #FF5F57; }
.browser-bar i:nth-child(2) { background: #FEBC2E; }
.browser-bar i:nth-child(3) { background: #28C840; }
.browser-url {
  margin: 0 auto; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 11px; color: var(--ink-4);
  background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 5px 16px;
}
.browser-url::before { content: '🔒'; font-size: 9px; opacity: 0.6; }
.browser img { width: 100%; display: block; }

/* ── Logo / integration strip ────────────────────────────────────── */
.logos { padding: 44px 0 8px; text-align: center; }
.logos p { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 24px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.logos-row span {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em;
  color: var(--ink-3); opacity: 0.78; transition: opacity 0.2s ease, color 0.2s ease;
}
.logos-row span:hover { opacity: 1; color: var(--ink); }
.logos-row .lg-ic { font-size: 18px; }
.lg-img { width: 22px; height: 22px; object-fit: contain; display: inline-block; vertical-align: middle; }
.hub-tile img { width: 30px; height: 30px; object-fit: contain; }
.integ-ic img { width: 26px; height: 26px; object-fit: contain; }
.logos-row span { filter: grayscale(0.15); }

/* ── Numbered feature steps (scrollytelling 1/4 … 4/4) ───────────── */
.steps { padding: 96px 0 30px; }
.steps-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.steps-head h2 .accent { color: var(--brand); }
.step-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.step-card {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: 22px;
  padding: 30px 30px 0; overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.step-count { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; color: var(--ink-4); margin-bottom: 16px; }
.step-count .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.step-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--ink-3); line-height: 1.6; padding-bottom: 26px; }
.step-card.step-warm { background: linear-gradient(168deg, var(--surface-warm), var(--surface)); border-color: rgba(250,101,30,0.18); }
/* mini chips used inside step illustrations */
.step-viz { margin-top: auto; display: flex; gap: 8px; flex-wrap: wrap; padding-bottom: 26px; }
.chip-row { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 12px; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.chip-row .dot { width: 6px; height: 6px; border-radius: 50%; }
.dot-green { background: var(--green); } .dot-orange { background: var(--brand); } .dot-yellow { background: var(--brand-yellow); }

/* ── Subpage hero (warm gradient panel — kept for subpages) ──────── */
.page-hero { padding: 26px 20px 0; }
.page-hero-panel {
  position: relative; max-width: 1200px; margin: 0 auto;
  padding: 66px 32px; border-radius: 26px; text-align: center; color: #fff; overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 86% 4%, rgba(255,197,158,0.55), transparent 60%),
    radial-gradient(ellipse 46% 50% at 8% 96%, rgba(255,70,46,0.5), transparent 60%),
    linear-gradient(152deg, #FF8A3D 0%, #FA651E 48%, #E2461C 100%);
  box-shadow: var(--shadow-warm);
}
.page-hero-panel::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 0); background-size: 22px 22px; mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 78%); pointer-events: none; }
.page-hero-panel h1 { position: relative; max-width: 18ch; margin: 0 auto; color: #fff; font-size: clamp(2.2rem, 1.3rem + 3.6vw, 3.6rem); }
.page-hero-panel h1 em { font-style: normal; color: #FFE2CF; }
.page-hero-panel .hero-sub { position: relative; max-width: 56ch; color: rgba(255,255,255,0.92); }
.page-hero-panel .hero-badge { color: #fff; background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.28); box-shadow: none; margin-bottom: 22px; }
.page-hero-panel .hero-badge .chip { color: #fff; background: rgba(255,255,255,0.2); }
.hero-actions { position: relative; margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Pricing ─────────────────────────────────────────────────────── */
.pricing-wrap { padding: 80px 0 40px; display: grid; grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: linear-gradient(168deg, var(--surface-warm), var(--surface));
  border: 1px solid rgba(250,101,30,0.28);
  border-radius: 22px; padding: 36px 32px; box-shadow: var(--shadow-md);
}
.price-card-dark {
  background: var(--ink); color: var(--dark-ink); border-color: rgba(255,255,255,0.1);
}
.price-card-dark .price-list li { color: var(--dark-ink-2); }
.price-card-dark .price-list li::before { background: rgba(250,101,30,0.18); color: var(--brand-light); }
.price-card-dark .price-features h3, .price-card-dark h2, .price-card-dark h3 { color: #fff; }
.price-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-text); margin-bottom: 14px; }
.price-card-dark .price-label { color: var(--brand-light); }
.price-tag { font-family: var(--display); font-size: 3.2rem; font-weight: 400; letter-spacing: -0.045em; color: var(--ink); line-height: 1; }
.price-card-dark .price-tag { color: #fff; }
.price-tag span { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--ink-3); margin-left: 8px; letter-spacing: 0; }
.price-card-dark .price-tag span { color: var(--dark-ink-2); }
.price-badge { display: inline-block; font-size: 12px; font-weight: 600; color: var(--brand-text); background: var(--brand-dim); border: 1px solid rgba(250,101,30,0.22); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.price-card .btn-primary, .price-card .btn-white { width: 100%; justify-content: center; margin-top: 22px; padding: 13px; font-size: 15px; }
.price-note { margin-top: 14px; font-size: 12.5px; color: var(--ink-4); text-align: center; }
.price-card-dark .price-note { color: var(--dark-ink-2); }
.price-features h3 { font-size: 1.05rem; margin-bottom: 18px; }
.price-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.price-card-dark .price-list { grid-template-columns: 1fr; }
.price-list li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink-2); line-height: 1.45; }
.price-list li::before { content: '✓'; position: absolute; left: 0; top: 1px; display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--brand-dim); color: var(--brand-text); font-size: 9px; font-weight: 700; }
@media (max-width: 860px) { .pricing-wrap { grid-template-columns: 1fr; gap: 18px; } .price-list { grid-template-columns: 1fr; } }

/* 3-tier pricing grid */
.price-3 { padding: 44px 0 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-3 .price-card { display: flex; flex-direction: column; padding: 30px 26px; }
.price-3 .price-list { grid-template-columns: 1fr; gap: 11px; margin-top: 4px; }
.price-3 .price-card .btn-primary, .price-3 .price-card .btn-white { margin-top: 22px; }
.price-tier { font-family: var(--display); font-size: 1.35rem; font-weight: 500; letter-spacing: -0.03em; color: var(--ink); }
.price-card-dark .price-tier { color: #fff; }
.price-blurb { font-size: 13px; color: var(--ink-3); line-height: 1.5; margin: 6px 0 18px; min-height: 38px; }
.price-card-dark .price-blurb { color: var(--dark-ink-2); }
.price-pop { position: relative; border-color: rgba(250,101,30,0.45); box-shadow: 0 0 0 2px var(--brand-dim), var(--shadow-md); }
.price-pop-tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--brand); border-radius: 999px; padding: 4px 12px; }
.price-feats-h { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); margin: 22px 0 12px; }
.price-card-dark .price-feats-h { color: var(--dark-ink-2); }
@media (max-width: 820px) { .price-3 { grid-template-columns: 1fr; } }

/* ── Build / 3-step section (Connect · Prospect · Convert) ────────── */
.build { padding: 96px 0 30px; }
.build-head { text-align: center; max-width: 780px; margin: 0 auto; }
.build-head h2 .accent { color: var(--brand); }
.build-steps-tabs { display: flex; justify-content: center; gap: 0; margin: 32px auto 0; max-width: 520px; border: 1px solid var(--line); border-radius: 999px; padding: 5px; background: var(--surface-2); }
.build-steps-tabs span { flex: 1; text-align: center; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-3); padding: 9px 0; border-radius: 999px; }
.build-steps-tabs span:first-child { background: #fff; color: var(--brand-text); box-shadow: var(--shadow-sm); }
.flow-cards { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.flow-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.flow-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.flow-step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--brand-dim); color: var(--brand-text);
  font-family: var(--mono); font-size: 14px; font-weight: 500;
  margin-bottom: 18px;
}
.flow-card h3 { margin-bottom: 9px; font-size: 1.35rem; }
.flow-card p { font-size: 14.5px; color: var(--ink-3); line-height: 1.6; }

/* ── Cloud + Local duo ───────────────────────────────────────────── */
.duo-section { padding: 60px 0 40px; }
.duo-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.duo-head h2 .accent { color: var(--brand); }
.duo-head .duo-lede { margin-top: 14px; color: var(--ink-3); font-size: 15.5px; line-height: 1.6; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.duo-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 22px; padding: 34px 32px; box-shadow: var(--shadow-sm);
}
.duo-card-accent { background: linear-gradient(168deg, var(--surface-warm), var(--surface)); border-color: rgba(250,101,30,0.2); }
.duo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--brand-dim); font-size: 22px; margin-bottom: 18px;
}
.duo-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.duo-card > p { color: var(--ink-2); font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.duo-list { list-style: none; display: grid; gap: 10px; }
.duo-list li { position: relative; padding-left: 26px; font-size: 14px; color: var(--ink-2); }
.duo-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--brand-dim); color: var(--brand-text); font-size: 9px; font-weight: 700;
}

/* ── Alternating features ────────────────────────────────────────── */
.features { padding: 60px 0; }
.feature { display: grid; grid-template-columns: 0.44fr 0.56fr; gap: 56px; align-items: center; padding: 44px 0; }
.feature-flip .feature-copy { order: 2; }
.feature-flip .shot-frame { order: 1; }
.feature-copy h2 { margin-bottom: 14px; }
.feature-copy h2 .accent { color: var(--brand); }
.feature-copy > p { color: var(--ink-2); font-size: 15.5px; line-height: 1.62; max-width: 44ch; margin-bottom: 22px; }
.shot-frame {
  position: relative; background: linear-gradient(160deg, var(--surface-warm), var(--surface-3));
  border: 1px solid var(--line); border-radius: 20px; padding: 22px 22px 0; box-shadow: var(--shadow-md);
}
.shot-frame > .titlebar { display: none; }
.shot-frame img {
  width: 100%; border-radius: 12px 12px 0 0;
  border: 1px solid var(--line); border-bottom: none;
  box-shadow: 0 18px 40px -16px rgba(194,65,12,0.28);
}

/* ── Bento (mono labels, gojiberry) ──────────────────────────────── */
.bento-section { padding: 70px 0; }
.bento-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.bento-head h2 .accent { color: var(--brand); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 18px; }
.bento-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.bento-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-text); margin-bottom: 14px; }
.bento-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.bento-card p { font-size: 14px; color: var(--ink-3); line-height: 1.58; }
.bento-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--brand-dim); font-size: 18px; margin-bottom: 16px;
}
.bento-lg {
  grid-row: span 2; grid-column: span 1; display: flex; flex-direction: column;
  background: linear-gradient(168deg, var(--surface-warm), var(--surface));
  padding-bottom: 0; overflow: hidden;
}
.bento-lg .bento-body { padding-bottom: 18px; }
.bento-shot { margin-top: auto; border-radius: 12px 12px 0 0; overflow: hidden; border: 1px solid var(--line); border-bottom: none; box-shadow: 0 12px 30px -12px rgba(194,65,12,0.24); }
.bento-wide { grid-column: span 2; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(135deg, var(--surface-warm), var(--surface)); }

/* ── Integrations grid ───────────────────────────────────────────── */
.integ-section { padding: 70px 0; }
.integ-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.integ-head h2 .accent { color: var(--brand); }
.integ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.integ-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 18px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.integ-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.integ-ic { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: var(--surface-warm); border: 1px solid var(--line); }
.integ-card .nm { font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: -0.02em; color: var(--ink); }
.integ-card .sub { font-size: 12px; color: var(--ink-4); }

/* ── Safety (dark) ───────────────────────────────────────────────── */
.safety {
  margin-top: 30px; padding: 104px 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.045) 1px, transparent 0) 0 0 / 30px 30px,
    radial-gradient(ellipse 50% 50% at 85% 0%, rgba(250,101,30,0.16), transparent 60%),
    var(--dark);
  color: var(--dark-ink);
}
.safety h2 { color: #fff; max-width: 19ch; }
.safety h2 .accent { color: var(--brand-light); }
.safety-lede { margin-top: 20px; font-size: 1.12rem; color: var(--dark-ink-2); max-width: 54ch; line-height: 1.62; }
.arch { margin-top: 50px; display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.arch-node { font-family: var(--mono); font-size: 13px; padding: 13px 19px; border: 1px solid var(--dark-line); border-radius: 10px; background: rgba(255,255,255,0.025); white-space: nowrap; }
.arch-li { border-color: rgba(253,138,107,0.5); color: var(--brand-light); background: rgba(250,101,30,0.10); }
.arch-link { width: 56px; height: 1px; background: linear-gradient(90deg, var(--dark-line), rgba(253,138,107,0.7)); position: relative; }
.arch-link::after { content: ''; position: absolute; right: 0; top: -2.5px; border-left: 6px solid rgba(253,138,107,0.8); border-top: 3px solid transparent; border-bottom: 3px solid transparent; }
.arch-note { margin-top: 18px; font-family: var(--mono); font-size: 11.5px; color: var(--dark-ink-2); letter-spacing: 0.05em; }
.mech-grid { list-style: none; margin-top: 54px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 52px; }
.mech-grid li { font-size: 14.5px; color: var(--dark-ink); padding: 16px 0 16px 28px; border-top: 1px solid var(--dark-line); position: relative; }
.mech-grid li::before { content: ''; position: absolute; left: 2px; top: 23px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-light); box-shadow: 0 0 10px rgba(253,138,107,0.7); }

/* ── Stats ───────────────────────────────────────────────────────── */
.stats { padding: 92px 0 8px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-2); }
.stat { padding: 34px 28px 10px 0; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat + .stat { padding-left: 28px; }
.stat-n { font-family: var(--display); font-size: clamp(2.4rem, 1.5rem + 2.4vw, 3.2rem); font-weight: 400; letter-spacing: -0.05em; color: var(--ink); }
.stat-n .accent { color: var(--brand); }
.stat-unit { font-family: var(--mono); font-size: 0.34em; font-weight: 500; color: var(--ink-4); margin-left: 8px; letter-spacing: 0; }
.stat p { margin-top: 12px; font-size: 14px; color: var(--ink-3); max-width: 32ch; line-height: 1.55; }

/* ── Testimonials ────────────────────────────────────────────────── */
.quotes-section { padding: 30px 0 80px; }
.quotes-head { text-align: center; max-width: 700px; margin: 0 auto 44px; }
.quotes-head h2 .accent { color: var(--brand); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; }
.quote-card.q-warm { background: linear-gradient(168deg, var(--surface-warm), var(--surface)); border-color: rgba(250,101,30,0.18); }
.quote-stars { color: var(--brand); font-size: 13px; letter-spacing: 2px; }
.quote-card p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.quote-by { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.quote-av { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; background: var(--surface-3); border: 1px solid var(--line); }
.quote-meta .nm { font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: -0.02em; color: var(--ink); }
.quote-meta .rl { font-size: 12px; color: var(--ink-4); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq { padding: 110px 0; }
.faq-grid { display: grid; grid-template-columns: 0.38fr 0.62fr; gap: 60px; align-items: start; }
.faq-grid h2 .accent { color: var(--brand); }
.faq-list details { border-top: 1px solid var(--line); padding: 4px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em; padding: 20px 38px 20px 0; position: relative; transition: color 0.15s ease; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--mono); font-size: 18px; color: var(--ink-4); transition: transform 0.2s ease, color 0.2s ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--brand-text); }
.faq-list summary:hover { color: var(--brand-text); }
.faq-list details p { padding: 0 38px 22px 0; color: var(--ink-2); font-size: 14.5px; max-width: 64ch; line-height: 1.62; }

/* ── CTA band (warm gradient) ────────────────────────────────────── */
.cta-band { padding: 30px 20px 90px; }
.cta-panel {
  position: relative; max-width: 1100px; margin: 0 auto;
  padding: 80px 32px; border-radius: 28px; text-align: center; color: #fff; overflow: hidden;
  background:
    radial-gradient(ellipse 50% 70% at 50% 120%, rgba(255,197,158,0.5), transparent 60%),
    linear-gradient(152deg, #FF8A3D 0%, #FA651E 50%, #E2461C 100%);
  box-shadow: var(--shadow-warm);
}
.cta-panel::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 0); background-size: 22px 22px; mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000 30%, transparent 75%); pointer-events: none; }
.cta-panel h2 { position: relative; color: #fff; font-size: clamp(2.2rem, 1.3rem + 3vw, 3.2rem); max-width: 18ch; margin: 0 auto; }
.cta-sub { position: relative; margin: 16px auto 0; max-width: 48ch; color: rgba(255,255,255,0.92); font-size: 1.08rem; }
.cta-panel .btn-white { position: relative; margin-top: 30px; }
/* hero-form variant on the dark/warm CTA */
.cta-panel .hero-form { margin-top: 30px; }
.cta-note { position: relative; margin-top: 20px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; color: rgba(255,255,255,0.85); }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr; gap: 44px; }
.footer-blurb { margin-top: 16px; font-size: 14px; color: var(--ink-3); max-width: 32ch; line-height: 1.6; }
.footer h4 { font-family: var(--mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-4); margin-bottom: 18px; }
.footer-grid a { display: block; font-size: 14px; color: var(--ink-2); padding: 6px 0; transition: color 0.15s ease; }
.footer-grid a:hover { color: var(--brand-text); }
.footer-bottom { margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--ink-4); }
.mono-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; }

/* ── Animated flow viz (floating cards + live connectors) ────────── */
.flow-viz { padding: 16px 0 24px; }
.flow-eyebrow {
  text-align: center; font-family: var(--mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-text); margin-bottom: 26px;
}
.fv-stage { position: relative; max-width: 1080px; height: 460px; margin: 0 auto; }
.fv-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(250,101,30,0.16) 1.4px, transparent 0);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 78% 80% at 50% 50%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 78% 80% at 50% 50%, #000 25%, transparent 80%);
}
.fv-wires { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.fv-wires path {
  fill: none; stroke: rgba(250,101,30,0.45); stroke-width: 1.5;
  stroke-dasharray: 3 9; stroke-linecap: round;
  animation: fvDash 1.3s linear infinite;
}
@keyframes fvDash { to { stroke-dashoffset: -24; } }

.fv-card, .fv-node, .fv-note, .fv-pill, .fv-cal { position: absolute; animation: fvFloat 5.5s ease-in-out infinite; animation-delay: var(--fd, 0s); }
@keyframes fvFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.fv-card, .fv-note, .fv-cal { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); }
.fv-hl { border-color: rgba(250,101,30,0.45); box-shadow: 0 0 0 3px var(--brand-dim), var(--shadow-md); }
.fv-row { display: flex; align-items: flex-start; gap: 11px; }
.fv-grow { flex: 1; min-width: 0; }
.fv-t { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.fv-s { font-size: 12px; color: var(--ink-4); margin-top: 2px; }
.fv-ic { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; flex-shrink: 0; }

.fv-c-visit { left: 0; top: 64px; width: 262px; padding: 15px 16px; }
.fv-c-target {
  left: 70px; top: 150px; font-size: 12.5px; font-weight: 600; color: var(--brand-text);
  background: var(--brand-dim); border: 1px solid rgba(250,101,30,0.22);
  border-radius: 999px; padding: 8px 15px;
}
.fv-c-target b { opacity: 0.7; }
.fv-c-follow { left: 0; top: 190px; width: 300px; padding: 15px 16px; }
.fv-done { display: inline-block; margin-top: 11px; font-size: 11.5px; font-weight: 600; color: #1F9D55; background: rgba(52,199,89,0.12); border-radius: 999px; padding: 4px 11px; }

.fv-cal { left: 484px; top: 22px; width: 112px; padding: 14px 12px; text-align: center; }
.fv-cal-d { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--ink-4); }
.fv-cal-n { font-family: var(--display); font-size: 30px; font-weight: 500; letter-spacing: -0.04em; color: var(--brand); line-height: 1.1; }
.fv-cal-a { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--ink-3); margin-top: 4px; }
.fv-greendot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.fv-node {
  left: 452px; top: 184px; display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 999px; padding: 10px 18px; box-shadow: var(--shadow-md);
}
.fv-spin { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--brand-dim); border-top-color: var(--brand); animation: fvSpin 0.9s linear infinite; }
@keyframes fvSpin { to { transform: rotate(360deg); } }

.fv-note { right: 0; width: 288px; display: flex; align-items: flex-start; gap: 11px; border-radius: 14px; padding: 12px 14px; font-size: 13px; color: var(--ink-2); }
.fv-nt { font-size: 13px; color: var(--ink-2); line-height: 1.35; }
.fv-nt b { color: var(--ink); font-weight: 600; }
.fv-n1 { top: 74px; }
.fv-n2 { top: 150px; }
.fv-n3 { top: 200px; }
.fv-av { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; color: #fff; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.fv-av img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; display: block; background: var(--surface-3); border: 1px solid var(--line); }
.fv-av[data-li]::after {
  content: 'in'; position: absolute; right: -3px; bottom: -3px;
  width: 15px; height: 15px; border-radius: 4px;
  background: #0A66C2; color: #fff; font-size: 8px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; border: 2px solid var(--surface);
}
.fv-unread { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); margin-left: auto; margin-top: 4px; flex-shrink: 0; animation: fvPulse 1.6s ease-in-out infinite; }
@keyframes fvPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

@media (prefers-reduced-motion: reduce) {
  .fv-card, .fv-node, .fv-note, .fv-pill, .fv-cal, .fv-wires path, .fv-spin, .fv-unread { animation: none; }
}
@media (max-width: 820px) {
  .fv-stage { height: auto; display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 340px; }
  .fv-grid, .fv-wires { display: none; }
  .fv-card, .fv-node, .fv-note, .fv-pill, .fv-cal { position: static; width: 100%; max-width: 320px; animation: none; }
  .fv-cal { width: 120px; }
  .fv-c-target { width: max-content; }
}

/* ══ gojiberry-style motion ════════════════════════════════════════ */

/* Hover label-swap: two stacked copies, the first slides up and out while
   the second slides in from below. Used on nav links + primary buttons. */
.swap { position: relative; display: inline-grid; overflow: hidden; vertical-align: bottom; }
.swap > span { grid-area: 1 / 1; display: block; transition: transform 0.34s cubic-bezier(0.5,0,0.1,1), opacity 0.34s ease; }
.swap > span:nth-child(2) { transform: translateY(110%); opacity: 0; }
.swap-host:hover .swap > span:nth-child(1),
.swap:hover > span:nth-child(1) { transform: translateY(-110%); opacity: 0; }
.swap-host:hover .swap > span:nth-child(2),
.swap:hover > span:nth-child(2) { transform: translateY(0); opacity: 1; }

/* Word-by-word headline reveal (JS wraps each word in .word > i) */
.h-stagger .word { display: inline-block; overflow: hidden; vertical-align: top; }
.h-stagger .word > i { display: inline-block; font-style: inherit; transform: translateY(105%); opacity: 0; transition: transform 0.7s cubic-bezier(0.2,1,0.3,1), opacity 0.7s ease; transition-delay: var(--wd, 0s); }
.h-stagger.in .word > i { transform: translateY(0); opacity: 1; }

/* Count-up numbers animate their value via JS; this just primes them. */
.count { font-variant-numeric: tabular-nums; }

/* Logo marquee — content duplicated in HTML, track scrolls infinitely */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 0; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .logos-row { padding: 0 28px; flex-wrap: nowrap; justify-content: flex-start; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Feature frames that hold a built mockup instead of a screenshot */
.shot-frame.shot-mock { padding: 20px; }
.shot-frame.shot-mock .mock-mini, .shot-frame.shot-mock .mock-msg { box-shadow: var(--shadow-sm); border: 1px solid var(--line); }

/* ══ Built product mockups (replace the static PNGs) ════════════════ */
.mock { display: grid; grid-template-columns: 168px 1fr; background: var(--surface); min-height: 460px; }
.mock-nav { border-right: 1px solid var(--line); padding: 16px 14px; background: var(--surface-2); display: flex; flex-direction: column; gap: 4px; }
.mock-brand { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: -0.03em; margin-bottom: 14px; }
.mock-brand .b-dot { width: 18px; height: 18px; border-radius: 6px; background: var(--brand); }
.mock-nav a { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--ink-3); padding: 7px 9px; border-radius: 8px; }
.mock-nav a .ni { width: 14px; height: 14px; border-radius: 4px; background: var(--line-2); }
.mock-nav a.on { background: var(--brand-dim); color: var(--brand-text); font-weight: 600; }
.mock-nav a.on .ni { background: var(--brand); }
.mock-main { padding: 18px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.mock-h { display: flex; align-items: center; justify-content: space-between; }
.mock-h .t { font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: -0.03em; }
.mock-live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10px; color: var(--ink-3); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; }
.mock-live .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: fvPulse 1.5s ease-in-out infinite; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-stat { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 13px; }
.mock-stat .l { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); }
.mock-stat .v { font-family: var(--display); font-weight: 600; font-size: 24px; letter-spacing: -0.04em; color: var(--ink); margin-top: 3px; }
.mock-stat .v small { font-size: 12px; color: var(--brand-text); margin-left: 3px; }
.mock-spark { display: flex; align-items: flex-end; gap: 3px; height: 20px; margin-top: 8px; }
.mock-spark i { flex: 1; background: var(--brand-dim); border-radius: 2px 2px 0 0; transform-origin: bottom; animation: sparkGrow 2.4s ease-in-out infinite alternate; }
.mock-spark i:nth-child(odd) { background: rgba(250,101,30,0.22); }
@keyframes sparkGrow { from { transform: scaleY(0.45); } to { transform: scaleY(1); } }
.mock-cols { display: grid; grid-template-columns: 1fr 1.05fr; gap: 12px; flex: 1; min-height: 0; }
.mock-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; min-width: 0; }
.mock-card .ct { font-size: 11px; font-weight: 600; color: var(--ink-2); margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.mock-card .ct span { font-family: var(--mono); font-size: 9px; color: var(--ink-4); font-weight: 400; }
/* Funnel bars grow on a loop */
.mock-funnel-row { display: grid; grid-template-columns: 64px 1fr 30px; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 10px; color: var(--ink-3); }
.mock-bar { height: 9px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.mock-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand-light), var(--brand)); transform-origin: left; transform: scaleX(0); animation: barGrow 3.4s cubic-bezier(0.4,0,0.1,1) infinite; }
.mock-funnel-row .pct { text-align: right; font-family: var(--mono); color: var(--ink-2); }
@keyframes barGrow { 0% { transform: scaleX(0); } 35%,100% { transform: scaleX(var(--w,1)); } }
/* Streaming activity feed */
.mock-feed { overflow: hidden; position: relative; }
.mock-feed-list { display: flex; flex-direction: column; gap: 9px; animation: feedUp 9s linear infinite; }
@keyframes feedUp { 0%,12% { transform: translateY(0); } 33%,45% { transform: translateY(-38px); } 66%,78% { transform: translateY(-76px); } 100% { transform: translateY(-114px); } }
.mock-feed-row { display: flex; align-items: center; gap: 9px; font-size: 10.5px; color: var(--ink-2); }
.mock-feed-row .fi { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: #fff; }
.fi-c { background: #0A66C2; } .fi-r { background: var(--brand); } .fi-b { background: var(--green); } .fi-s { background: #6366F1; }
.mock-feed-row b { color: var(--ink); font-weight: 600; }
.mock-feed-row time { margin-left: auto; font-family: var(--mono); font-size: 9px; color: var(--ink-4); }

/* Mini mock: scored prospect rows (feature section) */
.mock-mini { background: var(--surface); border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 9px; }
.mock-prow { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; opacity: 0; animation: rowIn 0.5s ease forwards; }
.mock-prow:nth-child(1){animation-delay:.1s}.mock-prow:nth-child(2){animation-delay:.25s}.mock-prow:nth-child(3){animation-delay:.4s}.mock-prow:nth-child(4){animation-delay:.55s}
@keyframes rowIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.mock-av { width: 28px; height: 28px; border-radius: 50%; background: var(--surface-3); flex-shrink: 0; }
.mock-pn { font-size: 12px; font-weight: 600; color: var(--ink); }
.mock-pr { font-size: 10px; color: var(--ink-4); }
.mock-tier { margin-left: auto; font-family: var(--mono); font-size: 9px; font-weight: 500; padding: 3px 8px; border-radius: 999px; }
.tier-1 { background: rgba(52,199,89,0.12); color: #1F9D55; } .tier-2 { background: rgba(250,200,0,0.16); color: #946A00; } .tier-3 { background: var(--line); color: var(--ink-4); }

/* Mini mock: a message Claude is typing */
.mock-msg { background: var(--surface); border-radius: 12px; padding: 16px; }
.mock-bubble { background: #fff; border: 1px solid var(--line); border-radius: 12px 12px 12px 3px; padding: 12px 14px; font-size: 12.5px; color: var(--ink-2); line-height: 1.5; max-width: 92%; }
.mock-bubble .caret { display: inline-block; width: 2px; height: 14px; background: var(--brand); margin-left: 2px; vertical-align: -2px; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.mock-msg-meta { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 11px; color: var(--ink-4); }
.mock-chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 9px; color: var(--brand-text); background: var(--brand-dim); border-radius: 999px; padding: 4px 9px; }

@media (prefers-reduced-motion: reduce) {
  .mock-spark i, .mock-bar i, .mock-feed-list, .mock-prow, .mock-bubble .caret, .marquee-track, .mock-live .pulse { animation: none !important; }
  .mock-bar i { transform: scaleX(var(--w,1)); }
  .mock-prow { opacity: 1; }
  .h-stagger .word > i { transform: none; opacity: 1; transition: none; }
}
@media (max-width: 600px) {
  .mock { grid-template-columns: 1fr; min-height: 0; }
  .mock-nav { flex-direction: row; overflow: hidden; border-right: none; border-bottom: 1px solid var(--line); }
  .mock-nav a:not(.on) { display: none; }
  .mock-cols { grid-template-columns: 1fr; }
}

/* ══ gojiberry fidelity layer ══════════════════════════════════════ */

/* Corner crop-mark brackets (gojiberry's signature panel motif) — all four
   corners drawn with one pseudo-element via eight thin gradients. */
.bracketed { position: relative; }
.bracketed::before {
  content: ''; position: absolute; inset: -7px; pointer-events: none; z-index: 1;
  --bc: rgba(10,10,10,0.18); --bl: 13px;
  background:
    linear-gradient(var(--bc),var(--bc)) 0 0/var(--bl) 1px,
    linear-gradient(var(--bc),var(--bc)) 0 0/1px var(--bl),
    linear-gradient(var(--bc),var(--bc)) 100% 0/var(--bl) 1px,
    linear-gradient(var(--bc),var(--bc)) 100% 0/1px var(--bl),
    linear-gradient(var(--bc),var(--bc)) 0 100%/var(--bl) 1px,
    linear-gradient(var(--bc),var(--bc)) 0 100%/1px var(--bl),
    linear-gradient(var(--bc),var(--bc)) 100% 100%/var(--bl) 1px,
    linear-gradient(var(--bc),var(--bc)) 100% 100%/1px var(--bl);
  background-repeat: no-repeat;
}

/* Numbered pill (1/4, 01) with a small blocks glyph */
.npill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--brand-text); background: var(--brand-dim); border: 1px solid rgba(250,101,30,0.18); border-radius: 999px; padding: 6px 13px; margin-bottom: 18px; }
.npill svg { width: 14px; height: 14px; }

/* gojiberry section divider: a centered + tick on a hairline */
.gline { position: relative; height: 1px; background: var(--line); max-width: 1160px; margin: 0 auto; }
.gline::after { content: '+'; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: var(--ink-4); background: var(--paper); padding: 0 8px; font-size: 13px; }

/* ── Hero: soft peach wash + faint side line-art ─────────────────── */
.hero { background:
  radial-gradient(ellipse 70% 42% at 78% -4%, rgba(253,138,107,0.18), transparent 62%),
  radial-gradient(ellipse 60% 38% at 14% -8%, rgba(255,197,158,0.20), transparent 60%),
  linear-gradient(180deg, #FFF7F2 0%, #FFFFFF 52%); }
.hero::before { display: none; }
.hero-rating { margin-top: 22px; display: inline-flex; align-items: center; gap: 12px; }
.hero-rating .stars { color: var(--brand); font-size: 15px; letter-spacing: 3px; }
.hero-rating .rtxt { font-size: 13px; color: var(--ink-3); }
.hero-rating .rtxt b { color: var(--ink); font-weight: 600; }
.hero-avstack { display: inline-flex; }
.hero-avstack span { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; background: var(--surface-3); }
.hero-avstack span:first-child { margin-left: 0; }

/* Dark launch button (gojiberry hero) — black with an orange arrow square */
.btn-launch { display: inline-flex; align-items: stretch; background: var(--ink); border-radius: 9px; overflow: hidden; font-size: 14px; font-weight: 600; color: #fff; transition: transform 0.16s ease, background 0.16s ease; }
.btn-launch:hover { transform: translateY(-1px); background: #000; }
.btn-launch .bl-ic { display: flex; align-items: center; justify-content: center; width: 38px; background: var(--brand); color: #fff; font-size: 14px; }
.btn-launch .bl-tx { padding: 12px 18px; white-space: nowrap; }
.hero-form.hero-form-launch { padding: 6px 6px 6px 8px; }

/* Browser video */
.browser video { width: 100%; display: block; background: var(--surface-2); }
.browser-vidwrap { position: relative; line-height: 0; }

/* ── Custom video player (scrub, speed, captions, sound) ─────────────── */
.qplayer { position: relative; }
.qplayer video { display: block; width: 100%; }
/* custom caption overlay */
.qp-caption { position: absolute; left: 50%; bottom: 58px; transform: translateX(-50%); max-width: 82%; z-index: 3; text-align: center; font-size: 14px; line-height: 1.35; color: #fff; background: rgba(8,8,10,0.72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); padding: 6px 12px; border-radius: 8px; pointer-events: none; }
.qp-caption[hidden] { display: none; }
/* centre play button when paused */
.qp-bigplay { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; z-index: 4; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; background: rgba(10,10,10,0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.28); border-radius: 999px; cursor: pointer; transition: transform 0.15s ease, background 0.15s ease; }
.qp-bigplay:hover { transform: scale(1.06); background: rgba(10,10,10,0.72); }
.qp-bigplay[hidden] { display: none; }
/* control bar */
.qp-bar { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 10px 12px 11px; background: linear-gradient(to top, rgba(8,8,10,0.78), rgba(8,8,10,0.0)); opacity: 0; transform: translateY(4px); transition: opacity 0.2s ease, transform 0.2s ease; }
.qplayer:hover .qp-bar, .qplayer:focus-within .qp-bar, .qp-bar.show { opacity: 1; transform: none; }
.qp-btn { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; min-width: 26px; height: 26px; padding: 0 7px; font-family: var(--mono); font-size: 12px; line-height: 1; color: #fff; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.16); border-radius: 7px; cursor: pointer; transition: background 0.14s ease; }
.qp-btn:hover { background: rgba(255,255,255,0.24); }
.qp-tx { font-weight: 600; letter-spacing: 0.02em; }
.qp-btn[aria-pressed="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }
.qp-time { flex-shrink: 0; font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.86); min-width: 30px; text-align: center; }
.qp-seek { flex: 1; -webkit-appearance: none; appearance: none; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.26); cursor: pointer; outline: none; }
.qp-seek::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 13px; height: 13px; border-radius: 50%; background: #fff; border: 2px solid var(--brand); cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,0.35); }
.qp-seek::-moz-range-thumb { width: 13px; height: 13px; border-radius: 50%; background: #fff; border: 2px solid var(--brand); cursor: pointer; }
.qp-seek::-webkit-slider-runnable-track { height: 4px; border-radius: 999px; background: linear-gradient(to right, var(--brand) var(--seek,0%), rgba(255,255,255,0.26) var(--seek,0%)); }
@media (max-width: 560px) { .qp-bar { gap: 7px; padding: 8px 9px; } .qp-time { display: none; } }

/* ── Numbered feature rows (scrollytelling) ──────────────────────── */
.feats { padding: 40px 0 30px; }
.feat { display: grid; grid-template-columns: 0.82fr 1fr; gap: 48px; align-items: center; padding: 30px 0; border-top: 1px solid var(--line); }
.feat:first-of-type { border-top: none; }
.feat-flip .feat-copy { order: 2; }
.feat-flip .feat-viz { order: 1; }
.feat-copy h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.1rem); letter-spacing: -0.04em; line-height: 1.05; color: var(--ink); margin-bottom: 12px; }
.feat-copy h3 .accent { color: var(--brand); }
.feat-copy > p { font-size: 15px; color: var(--ink-3); line-height: 1.6; max-width: 46ch; }
.feat-powered { margin-top: 18px; display: inline-flex; align-items: center; gap: 9px; font-size: 12px; color: var(--ink-4); }
.feat-powered b { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: -0.02em; }
.feat-powered .claude { color: var(--brand); font-size: 15px; }
.feat-viz { position: relative; min-height: 300px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(180deg, var(--surface-2), #fff); padding: 26px; display: flex; align-items: center; justify-content: center; overflow: hidden; }

/* Illustration: avatars + signal labels rising from a node */
.viz-signals { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.viz-avgrid { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; max-width: 320px; }
.viz-av { width: 38px; height: 38px; border-radius: 50%; background: var(--surface-3); border: 2px solid #fff; box-shadow: var(--shadow-sm); animation: fvFloat 5s ease-in-out infinite; }
.viz-av:nth-child(2n){ animation-delay:.6s } .viz-av:nth-child(3n){ animation-delay:1.1s } .viz-av:nth-child(4n){ animation-delay:.3s }
.viz-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.viz-tag { font-size: 11px; color: var(--ink-2); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px 11px; box-shadow: var(--shadow-sm); }
.viz-tag .d { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); margin-right: 6px; vertical-align: 1px; }

/* Illustration: ICP filter list */
.viz-list { width: 100%; max-width: 330px; display: flex; flex-direction: column; gap: 9px; }
.viz-li { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 9px 12px; font-size: 12px; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.viz-li .k { width: 22px; height: 22px; border-radius: 6px; background: var(--brand-dim); flex-shrink: 0; }
.viz-li .pass { margin-left: auto; color: #1F9D55; font-weight: 600; }
.viz-li.dim { opacity: 0.5; } .viz-li.dim .pass { color: var(--ink-4); }

/* Illustration: calendar / scheduler */
.viz-cal { width: 100%; max-width: 360px; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); font-size: 10px; }
.viz-cal-h { display: grid; grid-template-columns: 34px repeat(4,1fr); border-bottom: 1px solid var(--line); }
.viz-cal-h span { padding: 7px 4px; font-family: var(--mono); color: var(--ink-4); text-align: center; border-left: 1px solid var(--line); }
.viz-cal-h span:first-child { border-left: none; }
.viz-cal-row { display: grid; grid-template-columns: 34px repeat(4,1fr); min-height: 38px; border-bottom: 1px solid var(--line); }
.viz-cal-row:last-child { border-bottom: none; }
.viz-cal-t { font-family: var(--mono); color: var(--ink-4); padding: 5px 4px; }
.viz-cal-c { border-left: 1px solid var(--line); padding: 3px; position: relative; }
.viz-ev { border-radius: 5px; padding: 4px 6px; font-size: 9px; line-height: 1.2; font-weight: 600; animation: rowIn 0.5s ease both; }
.viz-ev.demo { background: rgba(52,199,89,0.16); color: #1F7A3F; }
.viz-ev.sync { background: rgba(250,200,0,0.18); color: #8A6200; }

/* Illustration: network graph (gets better) */
.viz-net { width: 100%; height: 220px; }
.viz-net .nl { stroke: rgba(250,101,30,0.4); stroke-width: 1; }
.viz-net .nn { fill: var(--brand); animation: netPulse 3s ease-in-out infinite; }
@keyframes netPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ── Hub-and-spoke integrations ──────────────────────────────────── */
.hub { position: relative; max-width: 1000px; margin: 40px auto 0; padding: 0 20px; }
.hub-center { position: relative; z-index: 2; width: 84px; height: 84px; margin: 0 auto; border: 1px solid var(--line-2); border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.hub-center svg { width: 40px; height: 40px; color: var(--brand); }
.hub-wires { position: absolute; left: 0; right: 0; top: 84px; height: 200px; width: 100%; z-index: 0; pointer-events: none; }
.hub-wires path { fill: none; stroke: rgba(250,101,30,0.35); stroke-width: 1; stroke-dasharray: 4 7; animation: fvDash 1.6s linear infinite; }
.hub-row { position: relative; z-index: 2; margin-top: 188px; display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.hub-tile { width: 78px; height: 78px; border: 1px solid var(--line); border-radius: 12px; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; box-shadow: var(--shadow-sm); font-size: 22px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.hub-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hub-tile small { font-size: 9px; color: var(--ink-4); }

/* ── Sticky setup (Connect · Prospect · Convert) ─────────────────── */
.setup { display: grid; grid-template-columns: 180px 1fr; gap: 40px; }
.setup-tabs { position: sticky; top: 100px; align-self: start; display: flex; flex-direction: column; gap: 0; }
.setup-tabs span { font-family: var(--display); font-size: 1.15rem; letter-spacing: -0.03em; color: var(--ink-4); padding: 12px 0; border-bottom: 2px solid var(--line); transition: color .35s ease, border-color .35s ease; }
.setup-tabs span.on { color: var(--ink); border-bottom-color: var(--brand); }
.setup-steps { border-left: 1px dashed var(--line-2); padding-left: 36px; display: flex; flex-direction: column; gap: 46px; }
.setup-step h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.5rem,1.1rem+1.2vw,2rem); letter-spacing: -0.04em; color: var(--ink); margin: 10px 0 10px; }
.setup-step p { font-size: 15px; color: var(--ink-3); line-height: 1.6; max-width: 44ch; }
.setup-step .npill { margin-bottom: 4px; }

@media (max-width: 900px) {
  .feat, .feat-flip { grid-template-columns: 1fr; gap: 22px; }
  .feat-flip .feat-copy { order: 1; } .feat-flip .feat-viz { order: 2; }
  .setup { grid-template-columns: 1fr; gap: 20px; }
  .setup-tabs { position: static; flex-direction: row; gap: 18px; }
  .setup-tabs span { border-bottom: none; padding: 0; }
  .setup-steps { padding-left: 24px; }
  .hub-row { justify-content: center; }
}

/* ── Reveal ──────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px) scale(0.985); will-change: opacity, transform; transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1) var(--d,0s), transform 0.7s cubic-bezier(0.22,1,0.36,1) var(--d,0s); }
.reveal.in { opacity: 1; transform: none; }
/* Opacity-only reveal — for elements whose transform is owned by scroll parallax. */
.reveal-op { opacity: 0; transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1) var(--d,0s); }
.reveal-op.in { opacity: 1; }
/* Scroll parallax: landing.js sets translate3d on these as they cross the viewport. */
[data-parallax] { will-change: transform; }

/* ── Scrollytelling: stacking cards (gojiberry-exact, sticky deck) ──── */
.stack-cards { position: relative; }
/* Each card pins at the same offset → later opaque cards cover earlier ones. */
.stack-card {
  position: sticky; top: 92px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center;
  min-height: 430px; margin-bottom: 28px; padding: 52px 56px;
  background: #fff; border: 1px solid rgba(40,28,18,0.07); border-radius: 26px;
  box-shadow: 0 34px 80px -48px rgba(80,40,10,0.45), 0 2px 8px -4px rgba(80,40,10,0.06);
}
.stack-card:last-child { margin-bottom: 0; }
.sc-text { max-width: 430px; }
/* pill: gojiberry uses a rounded RECTANGLE (10px), coral 10%, icon + n/4 */
.sc-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 14px 9px 10px; border-radius: 10px; background: rgba(250,101,30,0.10); color: var(--brand-text); font-family: var(--font-body, Inter, sans-serif); font-size: 12px; font-weight: 500; }
.sc-pill svg { width: 15px; height: 15px; opacity: 0.95; }
/* heading: gojiberry is Fustat WEIGHT 400 (light), ~38px, tight tracking */
.sc-text h3 { font-family: var(--font-display); font-size: clamp(27px, 2.9vw, 38px); font-weight: 400; letter-spacing: -0.042em; line-height: 1.07; margin: 20px 0 14px; color: #111; }
.sc-text p { font-size: 16.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.sc-powered { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; font-size: 13px; color: var(--ink-3); }
.sc-powered .claude { color: var(--brand); } .sc-powered b { color: var(--ink-2); }
/* the animation pane (right) — illustration sits directly on the card */
.sc-anim { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; min-height: 300px; }

/* shared keyframes */
@keyframes saUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes saGrow { to { transform: scaleX(1); } }
@keyframes saPop { to { transform: scale(1); } }
@keyframes saPopIn { from { opacity: 0; transform: translateY(8px) scale(0.9); } to { opacity: 1; transform: none; } }
@keyframes saBlink { 50% { opacity: 0; } }
@keyframes saPulse { 0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(250,101,30,0.4); } 50% { transform: scale(0.94); box-shadow: 0 0 0 6px rgba(250,101,30,0); } }
.sa-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 12px 28px -16px rgba(80,40,10,0.28); }

/* 0 · URL -> ICP */
.sa-url { display: flex; align-items: center; gap: 6px; padding: 11px 15px; width: min(78%, 260px); }
.sa-url .sa-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2, #e7ddd5); }
.sa-urltext { margin-left: 8px; font-family: var(--mono); font-size: 12px; color: var(--ink-3); }
.sa-icp { width: min(82%, 270px); padding: 17px; }
.sa-icp-h { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 13px; }
.sa-spark { color: var(--brand); }
.sa-line { display: block; height: 8px; border-radius: 4px; background: var(--surface-2, #f1eae3); margin-bottom: 9px; transform-origin: left; transform: scaleX(0); }
.sa-line.w1 { width: 100%; } .sa-line.w2 { width: 80%; } .sa-line.w3 { width: 58%; }
.sa-chips { display: flex; gap: 7px; margin-top: 13px; }
.sa-chips span { font-size: 11px; padding: 4px 10px; border-radius: 999px; background: var(--brand-dim); color: var(--brand-text); opacity: 0; }
.stack-card.in .sa-url { animation: saUp 0.5s cubic-bezier(0.22,1,0.36,1) both; }
.stack-card.in .sa-icp { animation: saUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
.stack-card.in .sa-line { animation: saGrow 0.5s ease forwards; }
.stack-card.in .sa-line.w1 { animation-delay: 0.30s; } .stack-card.in .sa-line.w2 { animation-delay: 0.42s; } .stack-card.in .sa-line.w3 { animation-delay: 0.54s; }
.stack-card.in .sa-chips span { animation: saUp 0.4s ease forwards; }
.stack-card.in .sa-chips span:nth-child(1) { animation-delay: 0.66s; } .stack-card.in .sa-chips span:nth-child(2) { animation-delay: 0.76s; } .stack-card.in .sa-chips span:nth-child(3) { animation-delay: 0.86s; }

/* 1 · scored rows */
.sa-rows { display: flex; flex-direction: column; gap: 13px; width: min(90%, 300px); }
.sa-row { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 12px 14px; box-shadow: 0 12px 26px -18px rgba(80,40,10,0.25); opacity: 0; }
.sa-av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-light), var(--brand)); flex-shrink: 0; }
.sa-meta { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.sa-meta i { height: 7px; border-radius: 4px; background: var(--ink); opacity: 0.85; width: 70%; }
.sa-meta i.s { width: 45%; background: var(--line-2, #e7ddd5); opacity: 1; }
.sa-flames { display: flex; gap: 3px; }
.sa-flames b { width: 9px; height: 12px; border-radius: 3px 3px 5px 5px; background: var(--brand); transform: scale(0); }
.stack-card.in .sa-row { animation: saUp 0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
.stack-card.in .sa-row:nth-child(1) { animation-delay: 0.10s; } .stack-card.in .sa-row:nth-child(2) { animation-delay: 0.24s; } .stack-card.in .sa-row:nth-child(3) { animation-delay: 0.38s; }
.stack-card.in .sa-flames b { animation: saPop 0.32s cubic-bezier(0.5,1.7,0.5,1) forwards; }
.stack-card.in .sa-row:nth-child(1) b:nth-child(1) { animation-delay: 0.5s; } .stack-card.in .sa-row:nth-child(1) b:nth-child(2) { animation-delay: 0.58s; } .stack-card.in .sa-row:nth-child(1) b:nth-child(3) { animation-delay: 0.66s; }
.stack-card.in .sa-row:nth-child(2) b:nth-child(1) { animation-delay: 0.62s; } .stack-card.in .sa-row:nth-child(2) b:nth-child(2) { animation-delay: 0.70s; } .stack-card.in .sa-row:nth-child(2) b:nth-child(3) { animation-delay: 0.78s; }
.stack-card.in .sa-row:nth-child(3) b:nth-child(1) { animation-delay: 0.74s; } .stack-card.in .sa-row:nth-child(3) b:nth-child(2) { animation-delay: 0.82s; }

/* 2 · multichannel sequence + typing bubble */
.sa-seq { width: min(90%, 300px); display: flex; flex-direction: column; gap: 13px; }
.sa-step { display: flex; align-items: center; gap: 12px; opacity: 0; }
.sa-ic { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 12px; font-weight: 700; flex-shrink: 0; color: #fff; }
.sa-ic.in { background: #0A66C2; } .sa-ic.em { background: var(--brand); }
.sa-step > i { flex: 1; height: 9px; border-radius: 5px; background: var(--surface-2, #f1eae3); }
.sa-bubble { align-self: flex-start; margin-top: 4px; background: #fff; border: 1px solid var(--line); border-radius: 14px 14px 14px 4px; padding: 11px 15px; box-shadow: 0 12px 26px -18px rgba(80,40,10,0.25); font-size: 14px; color: var(--ink); opacity: 0; }
.sa-caret { display: inline-block; width: 2px; height: 14px; background: var(--brand); margin-left: 2px; vertical-align: -2px; }
.stack-card.in .sa-step { animation: saUp 0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
.stack-card.in .sa-step:nth-child(1) { animation-delay: 0.10s; } .stack-card.in .sa-step:nth-child(2) { animation-delay: 0.26s; }
.stack-card.in .sa-bubble { animation: saUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.5s forwards; }
.stack-card.in .sa-caret { animation: saBlink 1s steps(1) infinite; }

/* 3 · reply + booked calendar */
.sa-reply { align-self: flex-end; background: var(--brand); color: #fff; border-radius: 14px 14px 4px 14px; padding: 10px 15px; font-size: 14px; max-width: 220px; opacity: 0; }
.sa-cal { width: min(78%, 230px); background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px; box-shadow: 0 16px 34px -20px rgba(80,40,10,0.3); opacity: 0; }
.sa-cal-h { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 11px; }
.sa-cal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.sa-cal-grid i { height: 26px; border-radius: 7px; background: var(--surface-2, #f1eae3); }
.sa-cal-grid i.book { background: var(--brand); }
.sa-booked { display: inline-block; margin-top: 11px; font-size: 12px; font-weight: 600; color: var(--success-text, #2D7A4E); }
.stack-card.in .sa-reply { animation: saUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.1s forwards; }
.stack-card.in .sa-cal { animation: saUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.32s forwards; }
.stack-card.in .sa-cal-grid i.book { animation: saPulse 1.5s ease-in-out 0.9s infinite; }

/* card 1 · find & score — avatar cluster + floating signal labels */
.sa-find { position: relative; width: 100%; max-width: 360px; height: 268px; display: flex; align-items: center; justify-content: center; }
.sa-faces { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.sa-face { width: 46px; height: 46px; border-radius: 13px; overflow: hidden; background: var(--surface-2, #f1eae3); box-shadow: 0 8px 18px -9px rgba(80,40,10,0.35); opacity: 0; transform: translateY(10px) scale(0.9); }
.sa-face img { width: 100%; height: 100%; object-fit: cover; }
.sa-face.g { background: linear-gradient(140deg, #efe7e0, #f7f2ec); }
.sa-box { display: none; }
.sa-label { position: absolute; font-size: 11px; padding: 4px 11px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 18px -10px rgba(80,40,10,0.3); color: var(--ink-2); white-space: nowrap; opacity: 0; }
.sa-label.sl1 { left: 0; top: 12px; } .sa-label.sl2 { right: 0; top: 12px; } .sa-label.sl3 { left: 50%; transform: translateX(-50%); bottom: 8px; }
.stack-card.in .sa-face { animation: saPopIn 0.45s cubic-bezier(0.4,1.4,0.5,1) forwards; }
.stack-card.in .sa-face:nth-child(1){animation-delay:.18s}.stack-card.in .sa-face:nth-child(2){animation-delay:.26s}.stack-card.in .sa-face:nth-child(3){animation-delay:.34s}.stack-card.in .sa-face:nth-child(4){animation-delay:.42s}.stack-card.in .sa-face:nth-child(5){animation-delay:.5s}.stack-card.in .sa-face:nth-child(6){animation-delay:.58s}.stack-card.in .sa-face:nth-child(7){animation-delay:.66s}.stack-card.in .sa-face:nth-child(8){animation-delay:.74s}
.stack-card.in .sa-label { animation: saUp 0.5s ease forwards; }
.stack-card.in .sa-label.sl1{animation-delay:.6s}.stack-card.in .sa-label.sl2{animation-delay:.72s}.stack-card.in .sa-label.sl3{animation-delay:.84s}

/* card 2 · intent contact list */
.sa-list { display: flex; flex-direction: column; gap: 11px; width: min(96%, 360px); }
.sa-lr { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 11px 13px; box-shadow: 0 12px 26px -18px rgba(80,40,10,0.25); opacity: 0; }
.sa-lr.dim { opacity: 0; } .stack-card.in .sa-lr.dim { opacity: 0.55; }
.sa-lr .sa-av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-light), var(--brand)); flex-shrink: 0; }
.sa-lm { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
.sa-lm b { font-size: 13.5px; color: var(--ink); } .sa-lm i { font-size: 11.5px; color: var(--ink-3); font-style: normal; }
.sa-badge { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 999px; flex-shrink: 0; }
.sa-badge.hi { background: rgba(250,101,30,0.12); color: var(--brand-text); }
.sa-badge.mid { background: rgba(217,165,30,0.16); color: #946A00; }
.sa-badge.lo { background: rgba(40,28,18,0.07); color: var(--ink-3); }
.sa-score { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--ink-2); width: 34px; text-align: right; flex-shrink: 0; }
.stack-card.in .sa-lr { animation: saUp 0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
.stack-card.in .sa-lr:nth-child(1){animation-delay:.12s}.stack-card.in .sa-lr:nth-child(2){animation-delay:.26s}.stack-card.in .sa-lr:nth-child(3){animation-delay:.4s}

/* card 3 · calendar week of booked demos */
.sa-week { width: min(98%, 380px); background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px; box-shadow: 0 16px 34px -20px rgba(80,40,10,0.28); opacity: 0; }
.stack-card.in .sa-week { animation: saUp 0.5s cubic-bezier(0.22,1,0.36,1) 0.1s forwards; }
.sa-week-h { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; margin-bottom: 7px; }
.sa-week-h span { font-size: 10px; font-weight: 600; color: var(--ink-3); text-align: center; }
.sa-week-grid { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(4, 30px); gap: 5px; }
.sa-ev { border-radius: 6px; padding: 4px 6px; font-size: 9px; font-weight: 600; line-height: 1.1; color: #fff; overflow: hidden; align-self: stretch; opacity: 0; transform: scale(0.9); }
.sa-ev.c1 { background: #FA651E; } .sa-ev.c2 { background: #8B5CF6; } .sa-ev.c3 { background: #22C55E; } .sa-ev.c4 { background: #D9A51E; } .sa-ev.c5 { background: #3B82F6; }
.stack-card.in .sa-ev { animation: saPopIn 0.4s cubic-bezier(0.5,1.5,0.5,1) forwards; }
.stack-card.in .sa-ev:nth-child(1){animation-delay:.3s}.stack-card.in .sa-ev:nth-child(2){animation-delay:.42s}.stack-card.in .sa-ev:nth-child(3){animation-delay:.54s}.stack-card.in .sa-ev:nth-child(4){animation-delay:.66s}.stack-card.in .sa-ev:nth-child(5){animation-delay:.78s}.stack-card.in .sa-ev:nth-child(6){animation-delay:.9s}

/* card 4 · gets better — growing network across weeks */
.sa-grow { width: min(98%, 380px); }
.sa-net { width: 100%; height: auto; display: block; }
.sa-net line { stroke: rgba(250,101,30,0.4); stroke-width: 1.5; }
.sa-net circle { fill: var(--brand); }
.sa-net .w { opacity: 0; } .stack-card.in .sa-net .w { animation: saUp 0.5s ease forwards; }
.stack-card.in .sa-net .w1 { animation-delay: 0.2s; } .stack-card.in .sa-net .w2 { animation-delay: 0.45s; } .stack-card.in .sa-net .w3 { animation-delay: 0.7s; }
.sa-weeks { display: flex; justify-content: space-around; margin-top: 8px; }
.sa-weeks span { font-size: 11px; font-weight: 600; color: var(--ink-3); }

@media (max-width: 820px) {
  .stack-card { position: relative; top: auto; grid-template-columns: 1fr; gap: 28px; padding: 32px; min-height: 0; }
  .sc-anim { min-height: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  .stack-card { position: relative; top: auto; }
  .sc-anim *, .sc-anim { animation: none !important; }
  .sc-anim .sa-line { transform: scaleX(1); } .sc-anim .sa-flames b { transform: scale(1); }
  .sc-anim .sa-url, .sc-anim .sa-icp, .sc-anim .sa-chips span, .sc-anim .sa-row, .sc-anim .sa-step, .sc-anim .sa-bubble, .sc-anim .sa-reply, .sc-anim .sa-cal { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal, .reveal-op { opacity: 1; transform: none; transition: none; } [data-parallax] { transform: none !important; } }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 940px) {
  .step-grid { grid-template-columns: 1fr; }
  .flow-cards { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .feature, .feature-flip { grid-template-columns: 1fr; gap: 30px; padding: 36px 0; }
  .feature-flip .feature-copy { order: 1; }
  .feature-flip .shot-frame { order: 2; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-lg { grid-row: span 1; grid-column: span 2; }
  .bento-wide { grid-column: span 2; }
  .integ-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .nav-inner { position: relative; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .nav-links {
    display: none; position: absolute; top: calc(100% + 12px); left: 0; right: 0;
    flex-direction: column; gap: 2px; margin-left: 0; padding: 10px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 14px; border-radius: 9px; font-size: 15px; color: var(--ink-2); }
  .nav-links a:hover { background: var(--surface-2); color: var(--ink); }
  .nav-links-signin { display: block; border-top: 1px solid var(--line); margin-top: 4px; padding-top: 13px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 26px 0; }
  .stat + .stat { padding-left: 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .mech-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding-top: 26px; }
  .hero-form { flex-direction: column; gap: 8px; padding: 10px; }
  .hero-form input { width: 100%; text-align: center; }
  .hero-form .btn-primary { width: 100%; }
  .trust-row { gap: 12px; }
  .step-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-lg, .bento-wide { grid-column: span 1; }
  .integ-grid { grid-template-columns: 1fr 1fr; }
  .arch { gap: 8px; }
  .arch-node { font-size: 12px; padding: 11px 13px; }
  .arch-link { width: 18px; }
  .cta-panel { padding: 56px 22px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* ── One agent replaces your stack (4-circle Venn + drifting agents) ── */
.replace { padding: 84px 0 104px; text-align: center; overflow: hidden; }
.replace-head { max-width: 720px; margin: 0 auto; }
.replace-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.8vw, 46px); letter-spacing: -0.04em; line-height: 1.05; }
.replace-sub { font-size: 17px; color: var(--ink-2); max-width: 580px; margin: 16px auto 0; line-height: 1.55; }
.replace-venn { max-width: 640px; margin: 60px auto 0; }
.vn-stage { position: relative; width: 480px; height: 380px; margin: 0 auto; }
.vn-circle { position: absolute; width: 256px; height: 256px; border-radius: 50%; border: 1.5px solid rgba(40,28,18,0.13); }
.vn-circle.c-tl { top: 0; left: 16px; } .vn-circle.c-tr { top: 0; right: 16px; }
.vn-circle.c-bl { bottom: 0; left: 16px; } .vn-circle.c-br { bottom: 0; right: 16px; }
.vn-tool { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; border-radius: 9px; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 18px -10px rgba(80,40,10,0.28); font-size: 12px; font-weight: 500; color: var(--ink-2); white-space: nowrap; }
.vn-tool img { width: 14px; height: 14px; }
.vn-tool.t-tl1 { top: 16%; left: 8%; } .vn-tool.t-tl2 { top: 33%; left: 3%; }
.vn-tool.t-tr1 { top: 15%; right: 13%; } .vn-tool.t-tr2 { top: 31%; right: 1%; }
.vn-tool.t-bl1 { bottom: 30%; left: 7%; } .vn-tool.t-bl2 { bottom: 13%; left: 17%; }
.vn-tool.t-br1 { bottom: 31%; right: 5%; } .vn-tool.t-br2 { bottom: 15%; right: 16%; }
.vn-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 3; width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--brand-light), var(--brand)); display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 32px -10px rgba(250,101,30,0.6); }
.vn-center svg { width: 27px; height: 27px; color: #fff; }
.vn-cap { position: absolute; z-index: 2; font-size: 13px; white-space: nowrap; color: var(--ink-2); }
.vn-cap.vc-tl { top: 2px; left: -52px; color: var(--brand-text); }
.vn-cap.vc-tr { top: 2px; right: -64px; }
.vn-cap.vc-bl { bottom: 2px; left: -50px; }
.vn-cap.vc-br { bottom: 2px; right: -58px; color: var(--brand-text); }
.vn-agent { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 24px -10px rgba(80,40,10,0.3); font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.vn-agent svg { width: 12px; height: 12px; color: var(--brand); }
.vn-agent.ag1 { bottom: -6px; left: -56px; animation: agentA 7s ease-in-out infinite; }
.vn-agent.ag2 { top: -10px; left: -40px; animation: agentB 8.5s ease-in-out infinite; }
.vn-agent.ag3 { top: 42%; right: -62px; animation: agentC 6.5s ease-in-out infinite; }
@keyframes agentA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(16px,-14px); } }
@keyframes agentB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(12px,18px); } }
@keyframes agentC { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-16px,-12px); } }
@media (max-width: 640px) {
  .replace-venn { max-width: 100%; overflow: hidden; }
  .vn-stage { transform: scale(0.74); transform-origin: top center; }
  .vn-cap, .vn-agent { display: none; }
}
@media (prefers-reduced-motion: reduce) { .vn-agent { animation: none !important; } }

/* ── Floating 3D objects on the 3-step section ─────────────────────── */
.build { position: relative; }
.build > .container { position: relative; z-index: 1; }
.b3d-stage { position: absolute; inset: 0; pointer-events: none; z-index: 0; perspective: 600px; overflow: hidden; }
.b3d { position: absolute; }
.b3d-orb { width: 60px; height: 60px; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #fff, #ffd2b8 42%, var(--brand) 96%); box-shadow: 0 22px 44px -18px rgba(250,101,30,0.5); top: 12%; right: 7%; opacity: 0.85; animation: fvFloat 6s ease-in-out infinite; animation-delay: .3s; }
.b3d-coin { width: 50px; height: 50px; border-radius: 15px; background: linear-gradient(140deg, #ffe6d6, #fa651e); box-shadow: 0 20px 38px -18px rgba(250,101,30,0.45); top: 64%; right: 15%; transform: rotate(16deg); opacity: 0.8; animation: fvFloat 7s ease-in-out infinite; animation-delay: 1.2s; }
.b3d-cube { width: 52px; height: 52px; top: 22%; left: 5%; transform-style: preserve-3d; opacity: 0.85; animation: cubeSpin 16s linear infinite; }
.b3d-cube i { position: absolute; inset: 0; border-radius: 11px; background: linear-gradient(140deg, rgba(255,232,219,0.95), rgba(250,101,30,0.82)); border: 1px solid rgba(255,255,255,0.45); }
.b3d-cube i:nth-child(1) { transform: translateZ(26px); }
.b3d-cube i:nth-child(2) { transform: rotateY(90deg) translateZ(26px); }
.b3d-cube i:nth-child(3) { transform: rotateX(90deg) translateZ(26px); }
@keyframes cubeSpin { from { transform: rotateX(0) rotateY(0); } to { transform: rotateX(360deg) rotateY(360deg); } }
@media (max-width: 720px) { .b3d-stage { display: none; } }
@media (prefers-reduced-motion: reduce) { .ro-r2, .b3d-orb, .b3d-coin, .b3d-cube { animation: none !important; } }

/* ── Imported gojiberry illustrations (cards + venn) ───────────────── */
.sc-shot { width: 100%; max-width: 480px; height: auto; display: block; margin: 0 auto; }
.venn-img { width: 100%; max-width: 660px; height: auto; display: block; margin: 56px auto 0; }
@media (max-width: 820px) { .sc-shot { max-width: 420px; } }

/* ── Card 3: Claude-Design calendar (scaled stage + fill animation) ── */
.qcal-box { position: relative; width: 100%; max-width: 520px; margin: 0 auto; overflow: hidden; }
.qev { opacity: 0; transform: scale(0.9); transform-origin: top center; transition: opacity .45s cubic-bezier(.2,.75,.25,1), transform .45s cubic-bezier(.2,.75,.25,1); pointer-events: none; }
.qev.on { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) { .qev { transition: none; } }

/* ── Shared: fixed-px design scaled to fit its container (cards 1, 2, venn) ── */
.dcfit { position: relative; width: 100%; margin: 0 auto; }
.dcfit > .dcstage { position: absolute; top: 0; left: 0; transform-origin: top left; }

/* ── Card 4: living force-graph (Claude Design "Network Growth") ── */
.qnet4 { width: 100%; max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; border: 1px solid #ececec; border-radius: 10px; overflow: hidden; background: transparent; }
.qnet4-svg { display: block; width: 100%; height: auto; }
.qnet4-div { stroke: #efefef; stroke-width: 1; }
.qnet4-link { stroke: #FA651E; stroke-width: 1.6; stroke-linecap: round; stroke-opacity: .75; }
.qnet4-node { fill: #FA651E; }
.qnet4-g { opacity: 0; animation: netFadeIn .9s ease-out .1s forwards; }
.qnet4-labels { display: flex; border-top: 1px solid #efefef; padding: 16px 0; }
.qnet4-labels span { flex: 1; text-align: center; font-size: 17px; color: #2e2e2e; letter-spacing: .2px; }
@keyframes netFadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .qnet4-g { animation: none; opacity: 1; } }

/* ── Card 1: avatars stream into the box ── */
@keyframes quillFloat { 0% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-5px); } 100% { transform: translateX(-50%) translateY(0); } }

/* ── Card 2: intent scanner lens pulses ── */
@keyframes lensRing { 0% { transform: scale(.5); opacity: 0; } 28% { opacity: .55; } 100% { transform: scale(1.28); opacity: 0; } }

/* ── Venn: drifting agent pills + centre pulse ── */
@keyframes qv-drift1 { 0%{transform:translate(0,0) rotate(-1deg);} 25%{transform:translate(14px,-10px) rotate(1deg);} 50%{transform:translate(24px,6px) rotate(-1deg);} 75%{transform:translate(8px,16px) rotate(1.5deg);} 100%{transform:translate(0,0) rotate(-1deg);} }
@keyframes qv-drift2 { 0%{transform:translate(0,0) rotate(1deg);} 25%{transform:translate(-12px,12px) rotate(-1.5deg);} 50%{transform:translate(10px,22px) rotate(1deg);} 75%{transform:translate(18px,6px) rotate(-1deg);} 100%{transform:translate(0,0) rotate(1deg);} }
@keyframes qv-drift3 { 0%{transform:translate(0,0) rotate(-1deg);} 25%{transform:translate(-16px,14px) rotate(1.5deg);} 50%{transform:translate(-26px,-8px) rotate(-1deg);} 75%{transform:translate(-10px,-18px) rotate(1deg);} 100%{transform:translate(0,0) rotate(-1deg);} }
@keyframes qv-cursor { 0%,100%{transform:translate(0,0);} 50%{transform:translate(-3px,-4px);} }
@keyframes qv-pulse { 0%,100% { opacity: .55; transform: translate(-50%,-50%) scale(1); } 50% { opacity: .9; transform: translate(-50%,-50%) scale(1.07); } }
@media (max-width: 820px) { .qnet4 { max-width: 460px; } }

/* ── Download page ───────────────────────────────────────────────── */
.dl-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.dl-btn { display: inline-flex; align-items: center; gap: 13px; padding: 14px 22px; border-radius: 14px; background: var(--ink); color: #fff; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; box-shadow: 0 10px 26px -12px rgba(20,20,30,.5); }
.dl-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(20,20,30,.55); }
.dl-os { width: 26px; height: 26px; flex: 0 0 auto; }
.dl-btn > span { display: flex; flex-direction: column; line-height: 1.2; }
.dl-btn b { font-size: 15px; font-weight: 600; }
.dl-btn small { font-size: 12px; opacity: .7; }
.dl-note { margin-top: 18px; font-size: 14px; color: var(--ink-3); }
.dl-note a { color: var(--brand-text); text-decoration: none; }
.dl-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 60px auto; max-width: 1000px; }
.dl-point h3 { font-family: var(--display); font-weight: 400; font-size: 1.3rem; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 8px; }
.dl-point p { font-size: 14px; color: var(--ink-3); line-height: 1.6; }
@media (max-width: 720px) { .dl-points { grid-template-columns: 1fr; gap: 20px; } .dl-btn { flex: 1 1 100%; } }
