:root {
  --navy: #06111f;
  --navy-2: #0a1a2c;
  --navy-3: #10263d;
  --ink: #122033;
  --ink-2: #526173;
  --paper: #f5f1e8;
  --white: #fff;
  --line: rgba(13, 33, 53, .14);
  --gold: #d6a75f;
  --gold-2: #f0d39d;
  --teal: #2da99a;
  --shadow: 0 28px 80px rgba(6, 17, 31, .14);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.launch-nav {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.launch-nav.scrolled { border-color: var(--line); box-shadow: 0 10px 32px rgba(6,17,31,.06); }
.launch-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.launch-brand img { width: 42px; height: 42px; object-fit: contain; }
.launch-brand span { display: grid; gap: 2px; }
.launch-brand b { color: var(--navy); font-family: Fraunces, Georgia, serif; font-size: 18px; line-height: 1; }
.launch-brand small { color: var(--ink-2); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.launch-nav nav { display: flex; align-items: center; gap: 26px; }
.launch-nav nav a { color: #334256; font-size: 13px; font-weight: 700; text-decoration: none; }
.launch-nav .nav-cta { padding: 11px 16px; border-radius: 999px; background: var(--navy); color: #fff; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, .98fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
  min-height: min(760px, calc(100vh - 76px));
  padding: clamp(68px, 9vw, 126px) clamp(24px, 7vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(214,167,95,.22), transparent 28%),
    linear-gradient(145deg, #fbfaf7 0%, #f5f1e8 56%, #edf4f2 100%);
}
.launch-kicker { color: #8c672e; font-size: 12px; font-weight: 800; letter-spacing: .13em; line-height: 1.4; text-transform: uppercase; }
h1, h2 { margin: 0; color: var(--navy); font-family: Fraunces, Georgia, serif; letter-spacing: -.035em; }
.hero h1 { max-width: 720px; margin-top: 16px; font-size: clamp(48px, 6.4vw, 86px); line-height: .98; }
.hero-lead { max-width: 660px; margin: 25px 0 0; color: #46566a; font-size: clamp(18px, 1.8vw, 22px); line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.launch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.launch-btn:hover { transform: translateY(-2px); }
.launch-btn:focus-visible { outline: 3px solid rgba(45,169,154,.42); outline-offset: 3px; }
.launch-btn.primary { background: var(--navy); color: #fff; box-shadow: 0 14px 34px rgba(6,17,31,.18); }
.launch-btn.secondary { border-color: rgba(6,17,31,.18); background: rgba(255,255,255,.72); color: var(--navy); }
.launch-btn.full { width: 100%; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 11px 22px; margin: 25px 0 0; padding: 0; list-style: none; }
.hero-proof li { position: relative; padding-left: 19px; color: #526173; font-size: 12px; font-weight: 700; }
.hero-proof li::before { content: "✓"; position: absolute; left: 0; color: #258f82; }
.hero-visual { position: relative; max-width: 620px; margin-left: auto; }
.preview-shell {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 42px 100px rgba(6,17,31,.27);
  transform: rotate(1.4deg);
}
.preview-top { display: flex; align-items: center; gap: 6px; padding: 3px 4px 15px; }
.preview-top > span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.23); }
.preview-top b { margin-left: auto; color: rgba(255,255,255,.72); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.preview-score { padding: 29px; border-radius: 20px; background: linear-gradient(140deg, rgba(255,255,255,.09), rgba(255,255,255,.025)); }
.preview-score small { color: var(--gold-2); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.preview-score strong { display: block; margin-top: 11px; font-family: Fraunces, Georgia, serif; font-size: clamp(30px, 3.2vw, 46px); line-height: 1.05; }
.preview-score p { max-width: 420px; margin: 12px 0 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.6; }
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 11px; }
.preview-grid article { min-height: 116px; padding: 17px; border: 1px solid rgba(255,255,255,.08); border-radius: 17px; background: rgba(255,255,255,.045); }
.preview-grid article.wide { grid-column: 1 / -1; min-height: 130px; }
.preview-grid span { display: block; color: rgba(255,255,255,.48); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.preview-grid b { display: block; margin-top: 5px; font-size: 14px; }
.trend, .bar, .line { position: relative; display: block; height: 43px; margin-top: 16px; overflow: hidden; }
.trend::before { content: ""; position: absolute; inset: 17px 4px 4px; border-top: 3px solid var(--teal); transform: skewY(-13deg); }
.bar::before { content: ""; position: absolute; right: 5px; bottom: 1px; left: 5px; height: 42px; background: linear-gradient(to right, var(--gold) 0 18%, transparent 18% 23%, #8ed5cc 23% 55%, transparent 55% 60%, rgba(255,255,255,.28) 60% 100%); clip-path: polygon(0 100%,0 68%,18% 68%,18% 46%,43% 46%,43% 24%,68% 24%,68% 8%,100% 8%,100% 100%); }
.line::before { content: ""; position: absolute; inset: 11px 4px 0; border-top: 3px solid var(--gold); border-radius: 50%; transform: skewY(-8deg); box-shadow: 0 -8px 22px rgba(214,167,95,.2); }
.hero-note { position: absolute; right: -30px; bottom: -32px; display: grid; max-width: 255px; gap: 3px; padding: 15px 17px; border: 1px solid rgba(6,17,31,.1); border-radius: 15px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.hero-note b { font-size: 12px; }
.hero-note span { color: var(--ink-2); font-size: 11px; line-height: 1.5; }
.problem-strip { display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; align-items: center; padding: 38px clamp(24px, 7vw, 110px); color: #fff; background: var(--navy); }
.problem-strip p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.6; }
.problem-strip strong { font-family: Fraunces, Georgia, serif; font-size: clamp(21px, 2.4vw, 31px); font-weight: 500; line-height: 1.25; }
.section { padding: clamp(76px, 10vw, 132px) clamp(24px, 7vw, 110px); }
.section-head { max-width: 790px; }
.section-head h2, .benefit-copy h2, .trust-section h2, .founder-section h2, .final-cta h2 { margin-top: 14px; font-size: clamp(36px, 4.6vw, 62px); line-height: 1.08; }
.section-head > p, .benefit-copy > p, .trust-section > div > p { color: var(--ink-2); font-size: 17px; line-height: 1.7; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.steps article { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.steps article > span { color: #9a7236; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.steps h3 { margin: 18px 0 0; color: var(--navy); font-family: Fraunces, Georgia, serif; font-size: 25px; line-height: 1.2; }
.steps p { margin: 12px 0 0; color: var(--ink-2); font-size: 14px; line-height: 1.7; }
.benefit-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(54px, 8vw, 120px); background: #f7f8f7; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.benefit-grid article { display: flex; gap: 14px; padding: 24px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.benefit-grid article > span { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: #eef6f4; color: #247e73; font-size: 11px; font-weight: 800; }
.benefit-grid h3 { margin: 2px 0 0; color: var(--navy); font-size: 16px; }
.benefit-grid p { margin: 8px 0 0; color: var(--ink-2); font-size: 13px; line-height: 1.65; }
.trust-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 110px); color: #fff; background: linear-gradient(145deg, var(--navy), var(--navy-3)); }
.trust-section h2 { color: #fff; }
.trust-section > div > p { color: rgba(255,255,255,.63); }
.trust-section ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.trust-section li { display: grid; gap: 7px; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.045); }
.trust-section li b { color: var(--gold-2); font-size: 14px; }
.trust-section li span { color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.6; }
.pricing-section { background: var(--paper); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 960px; margin-top: 46px; }
.price-card { position: relative; padding: 34px; border: 1px solid rgba(6,17,31,.14); border-radius: 25px; background: rgba(255,255,255,.72); }
.price-card.featured { border: 2px solid var(--navy); background: #fff; box-shadow: var(--shadow); }
.price-card > em { position: absolute; top: 19px; right: 19px; padding: 6px 9px; border-radius: 999px; background: var(--gold-2); color: #614414; font-size: 10px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.price-card > div { display: grid; gap: 7px; }
.price-card > div > span { color: #8a672f; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.price-card strong { color: var(--navy); font-family: Fraunces, Georgia, serif; font-size: 46px; line-height: 1; }
.price-card strong small { font-family: Inter, sans-serif; font-size: 14px; }
.price-card > div > small { color: var(--ink-2); font-size: 12px; }
.price-card ul { display: grid; gap: 11px; margin: 26px 0; padding: 0; list-style: none; }
.price-card li { position: relative; padding-left: 22px; color: #46566a; font-size: 13px; line-height: 1.5; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: #278d81; font-weight: 900; }
.trial-note { margin: -4px 0 22px; padding: 13px 14px; border-radius: 13px; background: #f4f0e8; color: var(--ink-2); font-size: 11px; line-height: 1.55; }
.founder-section { display: grid; grid-template-columns: 150px 1fr; gap: 40px; align-items: center; max-width: 1040px; margin: 0 auto; padding: clamp(74px, 9vw, 120px) 24px; }
.founder-section img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; box-shadow: 0 20px 48px rgba(6,17,31,.16); }
.founder-section h2 { font-size: clamp(34px, 4vw, 52px); }
.founder-section p { color: var(--ink-2); font-size: 15px; line-height: 1.75; }
.founder-section a { color: #1c746b; font-size: 13px; font-weight: 800; text-decoration: none; }
.faq-section { background: #f7f8f7; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 42px; }
.faq-grid details { padding: 21px 23px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.faq-grid summary { cursor: pointer; color: var(--navy); font-size: 14px; font-weight: 800; }
.faq-grid p { margin: 12px 0 0; color: var(--ink-2); font-size: 13px; line-height: 1.65; }
.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 44px; margin: clamp(54px, 8vw, 100px) clamp(24px, 7vw, 110px); padding: clamp(38px, 6vw, 70px); border-radius: 28px; color: #fff; background: linear-gradient(135deg, var(--navy), #173a56); box-shadow: var(--shadow); }
.final-cta h2 { max-width: 740px; color: #fff; font-size: clamp(34px, 4.2vw, 55px); }
.final-cta p { margin-bottom: 0; color: rgba(255,255,255,.62); }
.final-cta .launch-btn.primary { flex: 0 0 auto; background: #fff; color: var(--navy); }
.launch-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 32px; align-items: center; padding: 28px clamp(24px, 7vw, 110px); border-top: 1px solid var(--line); }
.launch-footer p { max-width: 460px; margin: 0; color: var(--ink-2); font-size: 11px; }
.launch-footer nav { display: flex; gap: 17px; }
.launch-footer nav a { color: var(--ink-2); font-size: 11px; font-weight: 700; text-decoration: none; }
@media (max-width: 980px) {
  .launch-nav nav > a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 650px); margin: 0 auto; }
  .benefit-section, .trust-section { grid-template-columns: 1fr; }
  .launch-footer { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .launch-nav { min-height: 66px; padding: 10px 16px; }
  .launch-brand img { width: 37px; height: 37px; }
  .launch-brand b { font-size: 16px; }
  .launch-nav .nav-cta { padding: 10px 13px; font-size: 11px; }
  .hero { gap: 46px; padding: 54px 19px 78px; }
  .hero h1 { font-size: clamp(45px, 13vw, 64px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .launch-btn { width: 100%; }
  .hero-proof { display: grid; }
  .preview-shell { padding: 11px; border-radius: 23px; transform: none; }
  .preview-score { padding: 22px; }
  .preview-grid { grid-template-columns: 1fr; }
  .preview-grid article.wide { grid-column: auto; }
  .hero-note { right: 10px; bottom: -45px; }
  .problem-strip { grid-template-columns: 1fr; gap: 12px; padding: 31px 20px; }
  .section { padding: 74px 19px; }
  .steps, .benefit-grid, .pricing-grid, .faq-grid { grid-template-columns: 1fr; }
  .steps { gap: 12px; margin-top: 35px; }
  .benefit-section { gap: 38px; }
  .price-card { padding: 28px 23px; }
  .founder-section { grid-template-columns: 1fr; gap: 24px; padding: 74px 20px; }
  .founder-section img { width: 112px; height: 112px; }
  .final-cta { display: grid; margin: 45px 14px; padding: 35px 24px; }
  .launch-footer { padding: 27px 19px; }
  .launch-footer nav { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
