/* ============================================================
   Telltide Marketing — Shared Stylesheet
   ============================================================ */

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

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --navy:        #0B2035;
  --navy-2:      #102842;
  --blue:        #1A7AC4;
  --sky:         #3FA9F5;
  --amber:       #F59E0B;
  --amber-soft:  rgba(245, 158, 11, 0.08);
  --white-4:     rgba(255, 255, 255, 0.04);
  --white-8:     rgba(255, 255, 255, 0.08);
  --white-14:    rgba(255, 255, 255, 0.14);
  --white-30:    rgba(255, 255, 255, 0.30);
  --white-48:    rgba(255, 255, 255, 0.48);
  --white-50:    rgba(255, 255, 255, 0.50);
  --white-58:    rgba(255, 255, 255, 0.58);
  --white-60:    rgba(255, 255, 255, 0.60);
  --white-70:    rgba(255, 255, 255, 0.70);
  --white-82:    rgba(255, 255, 255, 0.82);
  --radius-card: 16px;
  --radius-proof: 14px;
  --radius-btn:  8px;
}

/* ── Base ───────────────────────────────────────────────────── */
html, body {
  background: var(--navy);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100%;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ── Page wrapper (grid bg) ─────────────────────────────────── */
.page {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 100px;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(26, 122, 196, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 122, 196, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ── Fixed glow elements ────────────────────────────────────── */
.glow-tr {
  position: fixed;
  top: -160px;
  right: -160px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.glow-bl {
  position: fixed;
  bottom: -160px;
  left: -160px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 122, 196, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.fade-up {
  animation: fadeUp 0.8s ease both;
}
.fade-up-1 { animation-delay: 0.10s; }
.fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.34s; }
.fade-up-4 { animation-delay: 0.46s; }

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 32, 53, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--white-8);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img,
.nav-logo svg {
  display: block;
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--white-70);
  transition: color 0.18s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-signin {
  font-size: 14px;
  color: var(--white-60);
  transition: color 0.18s;
}

.nav-signin:hover {
  color: #fff;
}

/* Mobile hamburger — hidden above 768px */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white-70);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile nav drawer */
.nav-mobile,
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy-2);
  border-top: 1px solid var(--white-8);
  padding: 16px 24px 24px;
}

.nav-mobile.open,
.nav-drawer.open {
  display: flex;
}

.nav-mobile a,
.nav-drawer a {
  font-size: 16px;
  color: var(--white-70);
  padding: 12px 0;
  border-bottom: 1px solid var(--white-8);
  transition: color 0.18s;
}

.nav-mobile a:last-child,
.nav-drawer a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover,
.nav-drawer a:hover {
  color: #fff;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #FCD34D;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white-82);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--white-14);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s, transform 0.18s;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--amber);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  padding-top: 88px;
  padding-bottom: 12px;
  gap: 0;
}

.hero-title {
  font-size: clamp(36px, 5.8vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.06;
  color: #fff;
  max-width: 820px;
  margin-top: 22px;
}

.hero .sub {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  color: var(--white-58);
  line-height: 1.7;
  max-width: 580px;
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.support-line {
  font-size: 12px;
  color: var(--white-30);
  margin-top: 18px;
  letter-spacing: 0.3px;
}

/* ── Proof strip ────────────────────────────────────────────── */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1040px;
  width: 100%;
  margin-top: 56px;
}

.proof-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--white-8);
  border-radius: var(--radius-proof);
  padding: 20px 18px;
}

.proof-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.proof-copy {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-48);
  line-height: 1.65;
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
  max-width: 1040px;
  width: 100%;
  margin-top: 84px;
}

.section-header {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header ul,
.section-header ol {
  text-align: left;
}

.section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.1;
  color: #fff;
}

.section-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-58);
  line-height: 1.75;
  margin-top: 14px;
}

/* ── Glass panel ────────────────────────────────────────────── */
.panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-8);
  border-radius: var(--radius-card);
  padding: 28px;
}

.uc-card-link {
  text-decoration: none;
}

.uc-card {
  transition: border-color 0.2s;
}

.uc-card-link:hover .uc-card {
  border-color: rgba(245, 158, 11, 0.35);
}

.panel-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.30);
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.panel h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.panel p {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-58);
  line-height: 1.7;
}

/* ── Steps (3-col) ──────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.step-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-8);
  border-radius: var(--radius-card);
  padding: 28px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.30);
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.step-panel h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-panel p {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-58);
  line-height: 1.7;
}

/* ── Use-cases grid (2×2) ───────────────────────────────────── */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* ── Catch grid (3-col) ─────────────────────────────────────── */
.catch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* ── Persona grid (3-col) ───────────────────────────────────── */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* ── Trust grid (4-col) ─────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* ── Pricing grid ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-8);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
}

.pricing-price {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-top: 4px;
}

.pricing-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-48);
  line-height: 1.6;
  margin-top: 4px;
}

.pricing-note {
  font-size: 12px;
  color: var(--white-30);
  margin-top: 16px;
  line-height: 1.6;
  text-align: center;
}

.pricing-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  margin-top: 10px;
  text-align: center;
  transition: color 0.18s;
}

.pricing-link:hover {
  color: #fff;
}

/* ── Example / narrative block ──────────────────────────────── */
.example-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-8);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-card);
  padding: 32px 36px;
  margin-top: 36px;
}

.example-block p {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-58);
  line-height: 1.8;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  margin-top: 40px;
  width: 100%;
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--white-8);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
}

.faq-q:hover {
  color: var(--white-82);
}

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--white-30);
  transition: transform 0.22s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-50);
  line-height: 1.8;
  padding-bottom: 20px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ── CTA section ────────────────────────────────────────────── */
.cta-section {
  width: 100%;
  max-width: 1040px;
  background: var(--amber-soft);
  border: 1px solid rgba(245, 158, 11, 0.14);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  margin-top: 84px;
}

.cta-section h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #fff;
}

.cta-section p {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-58);
  line-height: 1.7;
  max-width: 520px;
  margin: 16px auto 32px;
}

.cta-support {
  font-size: 12px;
  color: var(--white-30);
  margin-top: 16px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  width: 100%;
  border-top: 1px solid var(--white-8);
  padding: 48px 24px;
  margin-top: 84px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-logo img,
.footer-logo svg {
  display: block;
  height: 30px;
  width: auto;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-30);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--white-50);
  transition: color 0.18s;
}

.footer-links a:hover {
  color: #fff;
}

/* Secondary row: sits tighter under the primary nav row, slightly muted. */
.footer-links + .footer-links--secondary {
  margin-top: -12px;
  gap: 18px;
}

.footer-links--secondary a {
  font-size: 12px;
  color: var(--white-30);
}

.footer-copy {
  font-size: 12px;
  color: var(--white-30);
}

/* ── Divider line ───────────────────────────────────────────── */
.divider {
  width: 100%;
  max-width: 1040px;
  height: 1px;
  background: var(--white-8);
  margin-top: 84px;
}

/* ── Tertiary button (link-style CTA with arrow) ─────────────── */
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--sky);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.18s, transform 0.18s;
  white-space: nowrap;
}

.btn-tertiary:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-tertiary::after {
  content: '\2192';
  font-weight: 500;
}

/* ── Three-CTA hero layout ───────────────────────────────────── */
.cta-trio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Waitlist page ───────────────────────────────────────────── */
.waitlist-section {
  margin-top: 48px;
}

.waitlist-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.waitlist-copy {
  padding-top: 8px;
}

.waitlist-bullets {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 300;
  color: var(--white-70);
  line-height: 1.6;
}

.waitlist-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
}

.waitlist-note {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 300;
  color: var(--white-48);
  line-height: 1.7;
}

.waitlist-form-wrap {
  padding: 32px;
}

.waitlist-form {
  min-height: 300px;
}

.waitlist-fallback {
  color: var(--white-70);
  font-size: 14px;
  line-height: 1.7;
}

.waitlist-fallback a {
  color: var(--sky);
  text-decoration: underline;
}

.waitlist-fineprint {
  margin-top: 18px;
  font-size: 12px;
  color: var(--white-30);
  line-height: 1.6;
}

.waitlist-fineprint a {
  color: var(--white-50);
  text-decoration: underline;
}

/* HubSpot form tweaks to match site design. Scoped to #hubspot-waitlist-form. */
#hubspot-waitlist-form .hs-form-field {
  margin-bottom: 14px;
}

#hubspot-waitlist-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

#hubspot-waitlist-form .hs-form-required {
  color: var(--amber);
  margin-left: 4px;
}

#hubspot-waitlist-form input[type="text"],
#hubspot-waitlist-form input[type="email"],
#hubspot-waitlist-form input[type="tel"],
#hubspot-waitlist-form input[type="number"],
#hubspot-waitlist-form select,
#hubspot-waitlist-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--white-14);
  border-radius: var(--radius-btn);
  padding: 10px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  transition: border-color 0.18s;
}

#hubspot-waitlist-form input:focus,
#hubspot-waitlist-form select:focus,
#hubspot-waitlist-form textarea:focus {
  outline: none;
  border-color: var(--amber);
}

#hubspot-waitlist-form .hs-form-booleancheckbox label,
#hubspot-waitlist-form .hs-form-checkbox label,
#hubspot-waitlist-form .hs-form-radio label {
  font-size: 13px;
  font-weight: 400;
  color: var(--white-70);
  display: inline;
  margin-left: 6px;
}

#hubspot-waitlist-form .hs-error-msg,
#hubspot-waitlist-form .hs-error-msgs label {
  color: #FCA5A5;
  font-size: 12px;
  margin-top: 4px;
}

#hubspot-waitlist-form .hs-submit input[type="submit"],
#hubspot-waitlist-form .hs-button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  width: 100%;
  margin-top: 8px;
}

#hubspot-waitlist-form .hs-submit input[type="submit"]:hover,
#hubspot-waitlist-form .hs-button.primary:hover {
  background: #FCD34D;
  transform: translateY(-1px);
}

/* ── Thank-you page ──────────────────────────────────────────── */
.referral-section {
  margin-top: 64px;
}

.referral-panel {
  padding: 40px;
  border-color: rgba(245, 158, 11, 0.25);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.05), rgba(255,255,255,0.03));
}

.referral-desc {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 300;
  color: var(--white-70);
  line-height: 1.7;
  max-width: 620px;
}

.referral-link-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.referral-input {
  flex: 1 1 320px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--white-14);
  border-radius: var(--radius-btn);
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #fff;
  min-width: 0;
}

.referral-input:focus {
  outline: none;
  border-color: var(--amber);
}

.referral-copied {
  margin-top: 10px;
  font-size: 12px;
  color: var(--sky);
  font-weight: 500;
}

.referral-share {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* ── Demo page frame ────────────────────────────────────────── */
.demo-section {
  margin-top: 48px;
}

.demo-frame {
  width: 100%;
  max-width: 1040px;
  margin: 32px auto 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-8);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.demo-frame-inner {
  position: relative;
  width: 100%;
  padding-top: 62.5%; /* 16:10 \u2014 Storylane's standard aspect */
  background: var(--navy-2);
}

.demo-frame-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.demo-frame-placeholder {
  padding: 64px 32px;
  text-align: center;
  color: var(--white-58);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.demo-frame-placeholder strong {
  color: #fff;
  font-weight: 700;
}

.demo-frame-placeholder a {
  color: var(--sky);
  text-decoration: underline;
}

/* ── Book page meeting embed ────────────────────────────────── */
.book-section {
  margin-top: 48px;
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.book-copy {
  padding-top: 8px;
}

.book-embed-wrap {
  padding: 0;
  overflow: hidden;
  min-height: 520px;
}

.book-embed {
  width: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.book-embed iframe {
  width: 100%;
  min-height: 640px;
  border: 0;
  display: block;
  background: #fff;
}

.book-embed-placeholder {
  padding: 48px 32px;
  color: var(--white-58);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
}

.book-embed-placeholder strong {
  color: #fff;
  font-weight: 700;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .book-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .waitlist-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .waitlist-form-wrap {
    padding: 24px;
  }

  .referral-panel {
    padding: 28px 20px;
  }

  .cta-trio {
    flex-direction: column;
    width: 100%;
  }

  .cta-trio .btn-primary,
  .cta-trio .btn-secondary,
  .cta-trio .btn-tertiary {
    width: 100%;
  }

  .demo-frame-inner {
    padding-top: 75%;
  }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    height: 56px;
    position: relative;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Hero */
  .hero {
    padding-top: 56px;
  }

  .hero-title {
    letter-spacing: -1.2px;
  }

  /* Proof strip */
  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Step / catch / persona grids → 1 col */
  .steps,
  .catch-grid,
  .persona-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  /* Use-cases → 1 col */
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing → 2 col */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA section */
  .cta-section {
    padding: 48px 24px;
  }

  /* FAQ */
  .faq-q {
    font-size: 15px;
  }

  /* Example */
  .example-block {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
