/* Version 4 — first-draft structure with Version 3 typography treatment */
:root {
  --bg: #07111f;
  --bg-soft: #0d1b2d;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ecf3ff;
  --text-muted: #b7c4d8;
  --dark-text: #142033;
  --dark-muted: #526073;
  --blue: #2563eb;
  --blue-soft: #60a5fa;
  --amber: #f59e0b;
  --gold: #c8912a;
  --gold-light: #e0a83a;
  --light-bg: #f5f7fb;
  --white: #ffffff;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow-lg: 0 30px 80px rgba(3, 10, 24, 0.32);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 30%),
    radial-gradient(circle at top right, rgba(8, 144, 232, 0.18), transparent 26%),
    linear-gradient(180deg, #07111f 0%, #0a1628 38%, #091321 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-light {
  color: var(--dark-text);
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
}
.section-dark { background: rgba(7, 17, 31, 0.82); }
.section-contrast {
  background: linear-gradient(145deg, rgba(11, 23, 39, 0.96), rgba(14, 30, 52, 0.96));
}
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  min-height: 84px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 700; letter-spacing: -0.02em; }
.brand img { width: 50px; height: 50px; object-fit: cover; border-radius: 14px; }
.nav-links { display: flex; gap: 26px; color: var(--text-muted); font-size: 0.96rem; }
.nav-links a:hover { color: var(--text); }
.hero { position: relative; overflow: hidden; padding: 78px 0 56px; }
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.32), transparent 30%), radial-gradient(circle at 85% 18%, rgba(245, 158, 11, 0.12), transparent 24%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
}
.eyebrow {
  display: inline-block; margin-bottom: 16px; color: var(--blue-soft); font-weight: 700; font-size: 0.83rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.eyebrow-dark { color: #2a5bcf; }
h1, h2, h3 { margin: 0; letter-spacing: -0.04em; }
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.94;
  max-width: 11ch;
}
h1 span {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #d9e7ff;
  display: inline-block;
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
}
.hero-panel h2,
.info-card h3,
.step-card h3,
.founder-card-copy h3,
.offer-card-inner h3,
.faq-list summary,
.footer strong,
.modal-dialog h2 {
  font-family: 'Inter', system-ui, sans-serif;
}
.lede, .section-heading p, .offer-copy p, .founder-card-copy p, .final-cta-box p, .authority-copy > p {
  font-size: 1.08rem; line-height: 1.75; color: var(--text-muted);
}
.section-light .section-heading p,
.section-light .offer-copy p,
.section-light .authority-copy > p,
.section-light .founder-card-copy p,
.section-light .eyebrow,
.section-light .lede,
.section-light .faq-list p { color: var(--dark-muted); }
.hero-actions { display: flex; gap: 16px; margin: 32px 0 22px; }
.btn {
  border: 0; border-radius: 999px; cursor: pointer;
  padding: 14px 22px; font-weight: 700; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, #f7b341, var(--amber));
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.28);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.btn-lg { padding: 16px 28px; }
.microproof { display: flex; flex-wrap: wrap; gap: 12px; color: #d6e2f3; }
.microproof span {
  padding: 10px 14px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px; background: rgba(255,255,255,0.04);
}
.hero-panel { display: flex; justify-content: flex-end; }
.panel-card, .info-card, .step-card, .offer-card-inner, .founder-card, .final-cta-box, .modal-dialog {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.panel-feature {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  padding: 34px;
  max-width: 460px;
}
.panel-feature p, .panel-feature li { color: var(--text-muted); line-height: 1.7; }
.panel-feature ul { padding-left: 18px; margin: 20px 0 0; }
.section-heading { margin-bottom: 36px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.narrow { max-width: 760px; }
.card-grid { display: grid; gap: 22px; }
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.info-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(37, 99, 235, 0.08);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.info-card p { color: var(--dark-muted); line-height: 1.7; margin-bottom: 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.step-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px;
}
.step-number { display: block; font-size: 0.88rem; color: var(--blue-soft); font-weight: 800; margin-bottom: 16px; letter-spacing: 0.14em; }
.step-card p { color: var(--text-muted); line-height: 1.7; margin-bottom: 0; }
.authority-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; }
.testimonial-stack { display: grid; gap: 18px; margin-top: 28px; }
.testimonial-stack blockquote {
  margin: 0; padding: 26px; background: rgba(255,255,255,0.72); border: 1px solid rgba(37,99,235,0.08); border-radius: 22px; box-shadow: var(--shadow-md);
}
.testimonial-stack p { color: var(--dark-text); margin: 0 0 12px; font-size: 1.04rem; line-height: 1.7; font-style: italic; }
.testimonial-stack cite { color: var(--dark-muted); font-style: normal; font-size: 0.95rem; }
.founder-card {
  overflow: hidden; background: #fff; border: 1px solid rgba(37,99,235,0.08);
}
.founder-card img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }
.founder-card-copy { padding: 28px; color: var(--dark-text); }
.offer-shell { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; }
.offer-list { padding-left: 20px; color: var(--text); line-height: 1.8; }
.offer-card-inner {
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  padding: 34px;
}
.offer-label, .offer-note, .placeholder-label { color: var(--text-muted); line-height: 1.65; }
.faq-list { display: grid; gap: 14px; max-width: 900px; margin: 0 auto; }
.faq-list details {
  background: rgba(255,255,255,0.82); border: 1px solid rgba(37,99,235,0.08); border-radius: 18px; padding: 18px 22px; box-shadow: var(--shadow-md);
}
.faq-list summary { cursor: pointer; font-weight: 700; color: var(--dark-text); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 14px 0 2px; }
.final-cta { padding: 70px 0 90px; }
.final-cta-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  padding: 38px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 28px 0 42px; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; color: var(--text-muted); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.modal {
  position: fixed; inset: 0; display: none; place-items: center; z-index: 30;
}
.modal.is-open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,10,18,0.7); backdrop-filter: blur(8px); }
.modal-dialog {
  position: relative; width: min(calc(100% - 24px), 700px); background: #f7fafc; color: var(--dark-text); padding: 34px; z-index: 1;
}
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 42px; height: 42px; border-radius: 999px; border: 0; background: rgba(20,32,51,0.08); color: var(--dark-text); font-size: 28px;
}
.placeholder-block {
  background: #fff; border: 1px dashed rgba(37,99,235,0.28); padding: 20px; border-radius: 18px; margin: 20px 0;
}
.placeholder-block ol { margin: 12px 0 0; padding-left: 20px; line-height: 1.8; }

@media (max-width: 1040px) {
  .hero-grid, .authority-grid, .offer-shell, .steps-grid, .four-up { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .hero { padding-top: 42px; }
  .hero-grid, .authority-grid, .offer-shell, .steps-grid, .four-up, .final-cta-box, .footer-inner { grid-template-columns: 1fr; display: grid; }
  h1 { max-width: 100%; }
  .topbar .btn { display: none; }
  .panel-feature, .offer-card-inner, .final-cta-box, .modal-dialog { padding: 24px; }
  .brand span { display: none; }
}

/* ── Canvas copy update additions ── */
.offer-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  margin: 8px 0 4px;
  line-height: 1;
}
.offer-price-sub {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.offer-list-lg {
  list-style: none;
  padding: 0;
  margin: 24px auto;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer-list-lg li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--dark-text);
  font-size: 1rem;
  line-height: 1.6;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 12px;
}
.offer-list-lg li::before {
  content: "✓";
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.offer-footnote {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
}
