:root {
  --ink: #0b1730;
  --ink-soft: #34415b;
  --paper: #f7f4ed;
  --white: #ffffff;
  --blue: #2f6bff;
  --blue-dark: #1948be;
  --aqua: #63d9cf;
  --line: rgba(11, 23, 48, 0.13);
  --shadow: 0 24px 70px rgba(15, 35, 75, 0.12);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-white { background: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: var(--aqua); }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: 0 0 20px;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(3.25rem, 8vw, 6.9rem); max-width: 920px; }
h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); max-width: 850px; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); }
p { margin: 0 0 20px; }
.lede { font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--ink-soft); max-width: 720px; }
.section-dark .lede { color: #cbd4e5; }
.muted { color: var(--ink-soft); }
.kicker { font-weight: 750; color: var(--blue-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 237, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 850; letter-spacing: -.03em; }
.brand-logo { display: block; width: 250px; height: auto; }
.footer-brand .brand-logo { width: 270px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
  font-size: .9rem;
  letter-spacing: -.06em;
}
.brand span:last-child { line-height: 1.05; }
.brand small { display: block; font-weight: 650; color: var(--ink-soft); letter-spacing: 0; font-size: .68rem; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { text-decoration: none; font-size: .94rem; font-weight: 700; }
.nav a:not(.button):hover { color: var(--blue-dark); }
.menu-toggle { display: none; border: 0; background: transparent; font-weight: 800; padding: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(47, 107, 255, .24);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 16px 36px rgba(47, 107, 255, .3); }
.button-secondary { background: transparent; border-color: var(--line); color: var(--ink); box-shadow: none; }
.section-dark .button-secondary { color: var(--white); border-color: rgba(255,255,255,.25); }
.button-secondary:hover { color: var(--white); }
.button-small { min-height: 44px; padding-inline: 18px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero { position: relative; overflow: hidden; padding: 82px 0 80px; }
.hero::after {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -170px;
  top: -210px;
  border: 1px solid rgba(47, 107, 255, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(47,107,255,.035), 0 0 0 160px rgba(47,107,255,.025);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.22fr .78fr; gap: 66px; align-items: end; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-card .mini-label { color: var(--aqua); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-card .price { font-family: Georgia, serif; font-size: 4rem; line-height: 1; margin: 16px 0 8px; }
.hero-card ul { padding: 0; margin: 22px 0 0; list-style: none; }
.hero-card li { padding: 10px 0 10px 27px; border-top: 1px solid rgba(255,255,255,.12); position: relative; }
.hero-card li::before { content: "✓"; color: var(--aqua); position: absolute; left: 2px; font-weight: 900; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 26px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 1.02rem; }
.trust-item span { color: var(--ink-soft); font-size: .9rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split > * { min-width: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(15, 35, 75, .05);
}
.card-number { color: var(--blue); font-weight: 850; font-size: .8rem; letter-spacing: .12em; margin-bottom: 34px; }
.card p:last-child { margin-bottom: 0; }
.icon-tile { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: #e7edff; color: var(--blue-dark); font-weight: 900; margin-bottom: 28px; }

.process-list { display: grid; gap: 0; margin-top: 40px; }
.process-step { display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.15); }
.process-step:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.process-num {
  color: var(--aqua);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.72rem;
  font-weight: 850;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -.02em;
}
.process-step p { color: #cbd4e5; margin: 0; }

.offer-box { position: relative; overflow: hidden; padding: clamp(34px, 7vw, 70px); border-radius: 34px; background: var(--blue); color: var(--white); }
.offer-box::after { content: "03"; position: absolute; right: 28px; bottom: -56px; font: 240px/1 Georgia, serif; color: rgba(255,255,255,.08); }
.offer-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 60px; position: relative; z-index: 1; }
.offer-list { columns: 2; padding: 0; list-style: none; }
.offer-list li { break-inside: avoid; padding: 8px 0 8px 26px; position: relative; }
.offer-list li::before { content: "•"; position: absolute; left: 4px; color: var(--aqua); }
.offer-price { font-family: Georgia, serif; font-size: clamp(4rem, 8vw, 6.2rem); line-height: .9; margin: 8px 0 18px; }

.founder-photo { position: relative; }
.founder-photo::before { content: ""; position: absolute; inset: -16px 30px 24px -16px; border-radius: 34px; background: var(--aqua); transform: rotate(-2deg); }
.founder-photo img { position: relative; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; border-radius: 30px; box-shadow: var(--shadow); }
.quote { font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.5rem); line-height: 1.25; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq summary { cursor: pointer; font-weight: 800; font-size: 1.08rem; list-style: none; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.4rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { max-width: 740px; color: var(--ink-soft); padding-top: 18px; }

.page-hero { padding: 76px 0 64px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(3.2rem, 7vw, 6rem); }
.page-hero .lede { margin-top: 26px; }
.breadcrumb { margin-bottom: 26px; color: var(--ink-soft); font-size: .9rem; }
.breadcrumb a { text-decoration: none; }

.price-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 24px; align-items: start; }
.price-card { padding: 38px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.price-card.featured { background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.price-card .price { font-family: Georgia, serif; font-size: 3.6rem; line-height: 1; margin: 20px 0 10px; }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; padding: 9px 0 9px 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.featured .check-list li::before { color: var(--aqua); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
label { font-weight: 750; font-size: .94rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 15px;
}
textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--ink-soft); }
.form-status { margin: 0 0 20px; padding: 14px 16px; border: 1px solid #d79a9a; border-radius: 12px; background: #fff2f2; color: #7d2020; font-weight: 700; }
.hp { position: absolute; left: -9999px; }
.contact-aside { background: var(--ink); color: var(--white); padding: 40px; border-radius: var(--radius); }
.contact-aside a { color: var(--aqua); text-decoration: none; }
.legal-copy h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-top: 48px; }
.legal-copy li { margin-bottom: 8px; }
.legal-copy a { color: var(--blue-dark); }

.site-footer { background: #071127; color: var(--white); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 60px; }
.footer-brand { max-width: 390px; color: #cbd4e5; }
.footer-title { font-size: .76rem; text-transform: uppercase; letter-spacing: .13em; color: var(--aqua); font-weight: 850; margin-bottom: 17px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 9px 0; }
.footer-links a { color: #dfe6f3; text-decoration: none; }
.footer-links a:hover { color: var(--aqua); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 54px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; color: #9facbf; font-size: .85rem; }
.footer-bottom a { color: #dfe6f3; text-decoration: none; margin-left: 16px; }
.footer-bottom a:hover { color: var(--aqua); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    inset: 78px 20px auto;
    padding: 22px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px; }
  .nav .button { margin-top: 8px; }
  .hero-grid, .split, .offer-grid, .price-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-card { transform: none; max-width: 580px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .hero { padding-top: 62px; }
  h1 { font-size: clamp(2.85rem, 13vw, 4.2rem); }
  .card-grid, .form-grid, .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .offer-list { columns: 1; }
  .process-step { grid-template-columns: 48px 1fr; }
  .footer-bottom { flex-direction: column; }
  .brand small { display: none; }
  .brand-logo { width: 210px; }
  .footer-brand .brand-logo { width: 240px; }
}
