/* ═══════════════════════════════════════════════════════════
   SHOW.IO LOCAL — shared design system
   Brand rules: #F5F4F2 ground · white cards · 1px #E5E3DE ·
   12px radius · #E85D2F accent (sparingly) · Inter
═══════════════════════════════════════════════════════════ */

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

:root {
  --orange: #E85D2F;
  --orange-light: #FF6B3D;
  --orange-tint: #FBEAE2;
  --bg: #F5F4F2;
  --card: #FFFFFF;
  --line: #E5E3DE;
  --ink: #1A1A1A;
  --ink-2: #6B6B6B;
  --dark: #0F0E0C;
  --dark-2: #1A1917;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, 'Segoe UI', Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245,244,242,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-left { display: flex; align-items: baseline; gap: 2px; }
.nav-logo {
  font-size: 20px; font-weight: 900; color: var(--orange);
  letter-spacing: -0.5px; text-decoration: none;
}
.nav-logo .accent { color: var(--orange); }
.nav-wordmark {
  font-size: 11px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.2px;
  vertical-align: super;
}
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-link {
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: color 0.2s;
}
.nav-link:hover { color: var(--ink); }
.nav-cta {
  background: var(--orange); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 10px 20px; border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  background: var(--orange); color: #fff;
  font-size: 16px; font-weight: 700;
  padding: 16px 30px; border-radius: var(--radius);
  text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(232,93,47,0.28);
}
.btn-ghost {
  color: var(--ink-2); font-size: 15px; font-weight: 600;
  text-decoration: none; transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost:hover { color: var(--ink); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  padding: 132px 40px 32px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero-copy { flex: 1 1 46%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-tint);
  border: 1px solid rgba(232,93,47,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13px; color: #9B9B9B; }
.hero-visual { flex: 1 1 54%; position: relative; }

/* ── SECTIONS ──────────────────────────────────────────── */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 40px;
}
.section-eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--ink-2);
  max-width: 560px; line-height: 1.7;
}

/* ── SOCIAL PROOF STRIP ────────────────────────────────── */
.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--card);
  padding: 22px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 44px; flex-wrap: wrap;
}
.proof-label { font-size: 12px; font-weight: 600; color: #9B9B9B; letter-spacing: 0.05em; text-transform: uppercase; }
.proof-logo {
  font-size: 15px; font-weight: 700; color: #C9C6C0;
  letter-spacing: -0.3px;
}

/* ── HOW IT WORKS ──────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange-tint); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  margin-bottom: 16px;
}
.step-card h4 { font-size: 16px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

/* ── FEATURE GRID ──────────────────────────────────────── */
.fgroup { margin-top: 46px; }
.fgroup-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 18px;
}
.fgroup-title { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.fgroup-tag { font-size: 13px; color: #9B9B9B; font-weight: 500; }
.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.fcard h5 { font-size: 15px; font-weight: 800; letter-spacing: -0.2px; margin-bottom: 8px; }
.fcard p { font-size: 14px; color: var(--ink-2); line-height: 1.65; }
.fcard .fnote { display: block; margin-top: 10px; font-size: 11px; color: #9B9B9B; }
.fgroup-after .fcard {
  border-color: rgba(232,93,47,0.3);
  box-shadow: 0 2px 14px rgba(232,93,47,0.06);
}
.fgroup-after .fgroup-title { color: var(--orange); }

/* ── DIFFERENTIATOR BAND (light) ────────────────────────── */
.diff-band {
  background: var(--card);
  color: var(--ink);
  padding: 84px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.diff-band::before {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(232,93,47,0.07) 0%, transparent 70%);
  top: -180px; right: -120px;
  pointer-events: none;
}
.diff-inner { max-width: 1180px; margin: 0 auto; position: relative; }
.diff-band .section-title { color: var(--ink); }
.diff-band .section-sub { color: var(--ink-2); }
.diff-frames {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.diff-frame {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.diff-frame-step {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.diff-frame h4 { font-size: 17px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 10px; color: var(--ink); }
.diff-frame p { font-size: 14px; color: var(--ink-2); line-height: 1.65; }
.diff-frame-arrow {
  position: absolute;
  right: -17px; top: 50%; transform: translateY(-50%);
  color: var(--orange); font-size: 18px; font-weight: 800;
  z-index: 2;
}

/* ── THESIS KNOCKOUT BAND (dark) ────────────────────────── */
.thesis-band {
  background: var(--dark);
  color: #fff;
  padding: 72px 40px;
}
.thesis-inner { max-width: 1180px; margin: 0 auto; }
.thesis-band .section-title { color: var(--orange); }
.thesis-band .section-sub { color: rgba(255,255,255,0.62); }

/* ── PRICING ───────────────────────────────────────────── */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.price-free {
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 900; letter-spacing: -2px;
  line-height: 1;
}
.price-free .accent { color: var(--orange); }
.price-meta { font-size: 15px; color: var(--ink-2); margin: 10px 0 22px; }
.price-features { list-style: none; margin-bottom: 26px; }
.price-features li {
  font-size: 14px; color: var(--ink);
  padding: 7px 0;
  display: flex; gap: 10px; align-items: flex-start;
}
.price-features .check { color: var(--orange); font-weight: 800; }
.price-fineprint { font-size: 13px; color: #9B9B9B; margin-top: 14px; }
.conf-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.conf-card::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,93,47,0.2) 0%, transparent 70%);
  bottom: -140px; right: -100px;
  pointer-events: none;
}
.conf-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; position: relative; }
.conf-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 22px; position: relative; }
.conf-btn {
  position: relative;
  align-self: flex-start;
  border: 1px solid rgba(232,93,47,0.5);
  color: var(--orange-light);
  font-size: 14px; font-weight: 700;
  padding: 12px 22px; border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}
.conf-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-size: 15px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--orange); font-size: 20px; font-weight: 400; }
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-a {
  padding: 0 24px 20px;
  font-size: 14px; color: var(--ink-2); line-height: 1.7;
}

/* ── SIGNUP / CLOSING CTA ──────────────────────────────── */
.signup-band {
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 80px 40px 90px;
  text-align: center;
}
.signup-box { max-width: 480px; margin: 36px auto 0; text-align: left; }
.signup-field { margin-bottom: 14px; }
.signup-field label {
  display: block;
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  margin-bottom: 6px; letter-spacing: 0.03em; text-transform: uppercase;
}
.signup-field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px; font-family: inherit; color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.signup-field input:focus { border-color: var(--orange); }
.signup-submit {
  width: 100%;
  background: var(--orange); color: #fff;
  border: none; border-radius: var(--radius);
  padding: 16px; font-size: 16px; font-weight: 700;
  font-family: inherit; cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s, transform 0.1s;
}
.signup-submit:hover { background: var(--orange-light); transform: translateY(-1px); }
.signup-disclaimer { margin-top: 14px; font-size: 13px; color: #9B9B9B; text-align: center; }
.signup-success { display: none; padding: 30px 0 10px; text-align: center; }
.signup-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 24px; color: #16a34a;
}
.signup-success h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.signup-success p { font-size: 14px; color: var(--ink-2); }

/* ── COMPARISON TABLE ──────────────────────────────────── */
.cmp-table-wrap { overflow-x: auto; margin-top: 40px; }
.cmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 640px;
}
.cmp-table th, .cmp-table td {
  padding: 14px 18px;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.cmp-table thead th {
  background: var(--bg);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.02em;
}
.cmp-table thead th:first-child { width: 34%; }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table td { color: var(--ink-2); }
.cmp-table td:first-child { color: var(--ink); font-weight: 600; }
.cmp-yes { color: var(--orange); font-weight: 800; }
.cmp-col-us { background: rgba(232,93,47,0.04); }

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  padding: 28px 40px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: #9B9B9B;
}
.site-footer a { color: var(--ink-2); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--ink); }
.footer-sep { color: #C9C6C0; }

/* ── HERO PRODUCT MOCK (placeholder until screenshots) ── */
.mock-duo { position: relative; height: 460px; }
.mock-list {
  position: absolute;
  left: 0; top: 24px;
  width: 62%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(26,26,26,0.10);
  padding: 18px;
  font-size: 12px;
}
.mock-list-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.mock-list-title { font-weight: 800; font-size: 13px; }
.mock-chip {
  background: var(--orange-tint); color: var(--orange);
  font-size: 10px; font-weight: 800;
  padding: 3px 9px; border-radius: 100px;
  letter-spacing: 0.05em;
}
.mock-row {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.9fr 0.7fr;
  gap: 8px;
  padding: 8px 6px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  align-items: center;
}
.mock-row.head { color: #9B9B9B; font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.04em; border-top: none; }
.mock-row .name { color: var(--ink); font-weight: 700; }
.mock-status {
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px;
  display: inline-block; text-align: center;
}
.mock-status.yes { background: rgba(34,197,94,0.12); color: #16a34a; }
.mock-status.wait { background: rgba(26,26,26,0.06); color: var(--ink-2); }
.mock-rsvp {
  position: absolute;
  right: 0; top: 0;
  width: 46%;
  background: linear-gradient(160deg, #2B1B4D 0%, #0F0E0C 60%, #3A1A0E 100%);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(26,26,26,0.22);
  padding: 26px 22px;
  color: #fff;
  z-index: 2;
}
.mock-rsvp-brand { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.mock-rsvp h4 { font-size: 20px; font-weight: 900; letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 8px; }
.mock-rsvp .mock-rsvp-meta { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 18px; }
.mock-rsvp-btns { display: flex; gap: 8px; margin-bottom: 14px; }
.mock-rsvp-yes {
  flex: 1;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 800; text-align: center;
  padding: 10px; border-radius: 9px;
}
.mock-rsvp-no {
  flex: 1;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75);
  font-size: 12px; font-weight: 700; text-align: center;
  padding: 10px; border-radius: 9px;
}
.mock-rsvp-plus { font-size: 11px; color: rgba(255,255,255,0.45); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { flex-direction: column; gap: 44px; padding: 116px 24px 48px; }
  .hero-visual { width: 100%; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .fgrid { grid-template-columns: 1fr; }
  .diff-frames { grid-template-columns: 1fr; }
  .diff-frame-arrow { display: none; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .section { padding: 56px 24px; }
  .diff-band { padding: 64px 24px; }
  .signup-band { padding: 60px 24px 72px; }
}
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-link { display: none; }
  .steps { grid-template-columns: 1fr; }
  .mock-duo { height: auto; }
  .mock-list { position: static; width: 100%; margin-bottom: 16px; }
  .mock-rsvp { position: static; width: 100%; }
}

/* ── ROTATING SCREENSHOT GALLERY ─────────────────────── */
.mock-board { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(26,26,26,0.10); padding: 24px; }
.mock-board-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.mock-board-title { font-size: 14px; font-weight: 800; }
.mock-board-sub { font-size: 12px; color: #9B9B9B; margin-bottom: 16px; }
.lb-row { display: flex; align-items: center; gap: 12px; padding: 10px 8px; border-top: 1px solid var(--line); font-size: 13px; }
.lb-rank { flex: 0 0 24px; font-weight: 800; color: #9B9B9B; }
.lb-row.first .lb-rank { color: var(--orange); }
.lb-name { flex: 1; font-weight: 700; }
.lb-stat { font-size: 12px; color: var(--ink-2); }
.lb-count { flex: 0 0 88px; text-align: right; font-weight: 800; }
.lb-count .lb-unit { font-size: 11px; font-weight: 600; color: #9B9B9B; }
.mock-qr { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--ink-2); }
.mock-qr-box { width: 52px; height: 52px; border-radius: 8px; background: conic-gradient(var(--ink) 25%, transparent 0 50%, var(--ink) 0 75%, transparent 0) 0 0 / 18px 18px, var(--bg); border: 1px solid var(--line); flex-shrink: 0; }
.mock-debrief { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(26,26,26,0.10); padding: 24px; }
.mock-debrief-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.mock-debrief-title { font-size: 14px; font-weight: 800; }
.mock-debrief-sub { font-size: 12px; color: #9B9B9B; margin-bottom: 18px; }
.sen-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.sen-label { flex: 0 0 70px; font-size: 12px; font-weight: 600; color: var(--ink-2); text-align: right; }
.sen-bar-track { flex: 1; height: 22px; background: var(--bg); border-radius: 6px; overflow: hidden; }
.sen-bar { height: 100%; background: var(--orange); border-radius: 6px; opacity: 0.9; }
.sen-count { flex: 0 0 30px; font-size: 12px; font-weight: 700; }
.mock-debrief-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12px; color: var(--ink-2); line-height: 1.6; }
.shot-stage { position: relative; min-height: 360px; }
.shot { display: none; }
.shot.active { display: block; animation: shotIn .45s ease; }
@keyframes shotIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.shot-tabs { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.shot-tab { border: 1px solid var(--line); background: var(--card); color: var(--ink-2); font-family: inherit; font-size: 12px; font-weight: 700; padding: 8px 15px; border-radius: 100px; cursor: pointer; transition: all .2s; }
.shot-tab:hover { color: var(--ink); }
.shot-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
