:root {
  --navy: #1f3a5f;
  --navy-2: #2b4c78;
  --navy-d: #152b47;
  --gold: #c9a24a;
  --gold-d: #a9832f;
  --paper: #fbfaf6;
  --paper-2: #f6f1e7;
  --card: #ffffff;
  --card-soft: #fcfbf7;
  --line: #e7e3d8;
  --line-strong: #d8d1bf;
  --muted: #5c6478;
  --text: #1b2233;
  --success: #2f6a4f;
  --shadow-sm: 0 6px 18px rgba(21, 33, 59, 0.06);
  --shadow: 0 10px 30px rgba(21, 33, 59, 0.09);
  --shadow-lg: 0 22px 48px rgba(21, 33, 59, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --content: 1120px;
  --content-narrow: 860px;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: clamp(28px, 3.8vw, 40px);
  --text-3xl: clamp(36px, 5.6vw, 58px);
  --transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: var(--text-base);
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
p { margin: 0 0 var(--space-4); }

h1, h2, h3, .serif {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.wrap { max-width: var(--content); margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: var(--content-narrow); margin: 0 auto; padding: 0 22px; }
.center { text-align: center; }
.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 700;
}
.kicker {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-d);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 9px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.btn-lg { padding: 18px 38px; font-size: 17px; }
.btn-sm { padding: 11px 16px; font-size: 13.5px; border-radius: 8px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--gold); color: #241a06; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--gold-d); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); }
.btn-soft { background: var(--paper-2); border-color: var(--line); color: var(--navy); }

header.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}
.brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.brand small {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 8.5px;
  letter-spacing: 0.22em;
  color: var(--gold-d);
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy-2);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-d); }
.nav-links a.active {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--navy);
}

.draft-flag {
  background: #fff4d6;
  border-bottom: 1px solid #e7cf8f;
  color: #7a5c14;
  font-size: 13px;
  text-align: center;
  padding: 9px;
}
section.pad { padding: 56px 0; }
.pagehead {
  background: radial-gradient(1000px 380px at 80% -20%, #fff, var(--paper));
  padding: 52px 0 20px;
  text-align: center;
}
.pagehead h1 { font-size: clamp(30px, 4.6vw, 46px); margin: 8px 0 10px; }
.pagehead p {
  color: var(--navy-2);
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
}
.hero {
  padding: 60px 0 36px;
  background: radial-gradient(1100px 460px at 80% -10%, #fff, var(--paper));
}
.hero-in {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}
.hero h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin: 12px 0 14px;
}
.hero .proofline {
  font-size: clamp(16.5px, 2vw, 20px);
  color: var(--navy-2);
  max-width: 520px;
  margin: 0 0 22px;
}
.cta-1 {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
.microlink {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dashed var(--line);
}
.microlink:hover { color: var(--gold-d); }
.assure { margin-top: 4px; font-size: 13px; color: var(--muted); }
.stack-img {
  width: 100%;
  max-width: 490px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 22px 34px rgba(21, 33, 59, 0.28));
}

.statbar { background: var(--navy); color: #fff; }
.statbar .wrap {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 22px;
  text-align: center;
}
.statbar .n {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.statbar .l {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #c3cbe0;
  text-transform: uppercase;
}
.urgency {
  background: #fbf3df;
  border-top: 1px solid #ecd9a6;
  border-bottom: 1px solid #ecd9a6;
}
.urgency .wrap {
  padding: 13px 22px;
  text-align: center;
  color: #7a5c14;
  font-weight: 600;
  font-size: 15px;
}
.value {
  background: var(--navy-d);
  color: #eaeefb;
  padding: 26px 0;
}
.value .wrap {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.value .big {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 26px);
  color: #fff;
  max-width: 740px;
  line-height: 1.3;
}
.value b { color: var(--gold); }
.value .amt {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 700;
}
.value small { display: block; color: #aeb6cd; font-size: 12px; }

.h2 { font-size: clamp(26px, 3.6vw, 36px); font-weight: 700; margin: 8px 0 10px; }
.sub {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 6px;
  font-size: 16px;
}
.muted { color: var(--muted); }

.tablewrap { margin-top: 30px; overflow-x: auto; }
table.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 660px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
table.compare th,
table.compare td {
  padding: 15px 18px;
  text-align: center;
  border-bottom: 1px solid #f0ede3;
  font-size: 14.5px;
}
table.compare td.feat,
table.compare tbody td:first-child {
  text-align: left;
  color: var(--navy-2);
  font-weight: 500;
}
table.compare .pname {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  color: var(--navy);
  display: block;
}
table.compare .pprice {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 25px;
  color: var(--navy);
  font-weight: 700;
  display: block;
  margin-top: 3px;
}
table.compare .pprice span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
}
table.compare .hotcol {
  background: #fbf7ee;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
table.compare thead .hotcol { border-top: 2px solid var(--gold); }
table.compare .lastrow td { border-bottom: 0; padding: 18px; }
.pill,
.badge {
  display: inline-block;
  background: var(--gold);
  color: #241a06;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 5px;
}
.badge-outline {
  display: inline-block;
  border: 1px solid var(--line-strong);
  color: var(--navy-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.yes { color: var(--gold-d); font-weight: 800; font-size: 17px; }
.no { color: #c9c4b6; }

.outcomes {
  background: var(--navy-d);
  color: #e7ecf7;
  border-radius: 20px;
  padding: 44px;
}
.oc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  margin-top: 20px;
}
.oc {
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 15.5px;
  color: #dbe2f2;
  border-top: 1px solid #2a3f60;
}
.oc b { color: #fff; }
.oc::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 10px;
  color: var(--gold);
  font-weight: 800;
  font-size: 17px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.shot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.shot img {
  width: 100%;
  border-radius: 7px;
  border: 1px solid #eee;
  display: block;
}
.shot .cap {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.tcard {
  background: #fcfbf7;
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 22px;
  text-align: left;
}
.tcard .stars { color: var(--gold); letter-spacing: 2px; }
.tcard p {
  color: #6f7485;
  font-style: italic;
  margin: 10px 0 14px;
  font-size: 15px;
}
.tcard .who { font-weight: 600; color: var(--navy); font-size: 14px; }

.challenge {
  background: linear-gradient(180deg, #fff, #fbf7ee);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 30px;
  align-items: center;
}
form.capture {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--navy);
  padding: 24px;
  border-radius: 14px;
}
form.capture label { color: #cdd4e8; font-size: 13px; font-weight: 600; }
form.capture input,
form.capture textarea,
form.capture select {
  padding: 13px;
  border-radius: 9px;
  border: 1px solid #35415f;
  background: #122542;
  color: #fff;
  font-size: 15px;
}
form.capture input::placeholder,
form.capture textarea::placeholder { color: #8791ab; }
form.capture .btn-primary { width: 100%; border: 0; }
form.capture .fine { color: #8a93ad; font-size: 11.5px; }

.shelf {
  margin-top: 14px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.shelf:first-of-type { border-top: 0; }
.shelf .shelfhead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.shelf h2 { font-size: 25px; margin: 0; }
.shelf .note { color: var(--muted); font-size: 14.5px; }
.pgrid,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.pcard,
.collection-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.pcard.hot,
.collection-card.featured { border: 2px solid var(--gold); }
.pcard .pc-top,
.collection-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.pcard h3,
.collection-card h3 { font-size: 17.5px; margin: 0; }
.pcard .pc-price,
.collection-card .price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 21px;
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}
.pcard p,
.collection-card p {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
  margin: 8px 0 14px;
}
.pcard .btn,
.collection-card .btn { align-self: flex-start; }
.pcard ul,
.collection-card ul {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--navy-2);
  font-size: 14px;
}
.soon { opacity: 0.78; }
.soon .pcard,
.soon .collection-card {
  border-style: dashed;
  background: #fcfbf7;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 22px;
}
.bundle-card {
  background: linear-gradient(180deg, #fff, #fbf8ef);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bundle-card.featured { border: 2px solid var(--gold); }
.bundle-card .bundle-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.bundle-card .bundle-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  color: var(--navy);
  font-weight: 700;
}
.bundle-card .bundle-price span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.bundle-card p { margin: 0; color: var(--muted); }
.bundle-card ul { margin: 0; padding-left: 18px; color: var(--navy-2); }

.product-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.product-media,
.product-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.product-media { padding: 18px; }
.product-panel { padding: 24px; }
.product-panel .price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  color: var(--navy);
  font-weight: 700;
}
.product-panel .meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}
.product-panel .meta span {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-2);
}
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.framework {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
  text-align: left;
}
.fpart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.fpart .num {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--gold-d);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.fpart h3 { font-size: 19px; margin: 4px 0 6px; }
.fpart p { color: var(--muted); font-size: 14.5px; margin: 0; }

.faq { max-width: 780px; margin: 22px auto 0; text-align: left; }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
}
details summary {
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
details summary::-webkit-details-marker { display: none; }
details p { color: var(--muted); margin: 10px 0 0; }

.notice,
.support-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.notice strong,
.support-card strong { color: var(--navy); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.finalcta { text-align: center; padding: 52px 0; }
.finalcta h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 8px; }

footer {
  background: var(--navy);
  color: #aeb6cd;
  padding: 44px 0 30px;
  margin-top: 20px;
}
footer .brand { color: #fff; }
footer .brand small { color: var(--gold); }
footer .cols {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 16px;
}
footer a {
  color: #cdd4e8;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  font-size: 14px;
}
footer a:hover { color: var(--gold); }
footer .series { margin-top: 16px; color: #c3cbe0; font-size: 14px; }
footer .fine {
  border-top: 1px solid #2a3552;
  margin-top: 18px;
  padding-top: 16px;
  font-size: 12.5px;
  color: #7e88a5;
}

@media (max-width: 880px) {
  .hero-in {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .hero .proofline { margin: 0 auto 22px; }
  .cta-1 { align-items: center; }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 22px;
    right: 22px;
    top: 76px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-open .nav-links { display: flex; }
  .nav-links a,
  .nav-links .btn { width: 100%; }
  .product-hero { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .gallery,
  .tgrid,
  .framework,
  .grid-2,
  .grid-3,
  .bundle-grid { grid-template-columns: 1fr; }

  .pgrid,
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .challenge {
    grid-template-columns: 1fr;
    padding: 26px;
  }
}

@media (max-width: 640px) {
  .outcomes { padding: 26px; }
  .oc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .pgrid,
  .collection-grid { grid-template-columns: 1fr; }

  .product-actions,
  .shelf .shelfhead,
  .value .wrap,
  .footer .cols {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn,
  .btn-lg,
  .btn-sm { width: 100%; }
}
