:root {
  --ink: #0d1729;
  --ink-2: #1e2a3d;
  --slate: #526176;
  --muted: #6b7789;
  --line: #dfe5ec;
  --line-dark: rgba(255, 255, 255, .14);
  --paper: #ffffff;
  --paper-warm: #fbfaf7;
  --surface: #f4f6f8;
  --surface-blue: #eef2f6;
  --gold: #a86016;
  --gold-dark: #80470d;
  --gold-soft: #f7ead1;
  --green: #245c45;
  --green-soft: #e5f2eb;
  --danger: #a23b37;
  --serif: Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --shadow-sm: 0 1px 2px rgba(13, 23, 41, .05), 0 8px 24px rgba(13, 23, 41, .05);
  --shadow-lg: 0 24px 70px rgba(13, 23, 41, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-2);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
html, body { overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
main img { height: 600px; object-fit: cover; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, ul { margin-top: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(168, 96, 22, .42); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.wrap { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.narrow { width: min(100% - 40px, 790px); margin-inline: auto; }
.section { padding: 96px 0; }
.section-compact { padding: 68px 0; }
.section-soft { background: var(--surface); }
.section-warm { background: var(--paper-warm); }
.section-dark { color: #d9e0e9; background: var(--ink); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: #f7d99e; }
.section-dark .section-head p { color: #c5ced9; }

.header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(223, 229, 236, .88);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(15px);
}
.header-inner { height: 74px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; color: var(--ink); line-height: .82; }
.brand-word { font: 36px/1 var(--serif); letter-spacing: -.035em; }
.brand-word strong { font-weight: 800; }
.brand-tag { margin-top: 5px; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); }
.nav { margin-left: auto; display: flex; align-items: center; gap: 25px; }
.nav-link { font-size: 14px; font-weight: 620; color: #344156; }
.nav-link:hover { color: var(--gold-dark); }
.menu-button { display: none; border: 0; background: none; color: var(--ink); padding: 8px; cursor: pointer; }
.menu-button svg { width: 25px; height: 25px; }

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff !important; box-shadow: 0 8px 24px rgba(13, 23, 41, .16); }
.btn-primary:hover { background: #1d2b42; }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 8px 26px rgba(128, 71, 13, .2); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { border-color: #bdc7d3; color: var(--ink); background: rgba(255, 255, 255, .86); }
.btn-outline:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-lg { min-height: 54px; padding: 15px 25px; font-size: 16px; }
.btn-block { width: 100%; }

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #ead3a7;
  border-radius: 999px;
  background: rgba(247, 234, 209, .75);
  padding: 7px 11px;
}
.eyebrow-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.display {
  margin-bottom: 22px;
  font: clamp(42px, 5.5vw, 70px)/.99 var(--serif);
  letter-spacing: -.045em;
}
.display strong { color: var(--gold-dark); font-weight: 500; }
.lead { max-width: 650px; color: var(--slate); font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
.hero { position: relative; overflow: hidden; padding: 74px 0 58px; background: linear-gradient(130deg, #fff 0%, #fbfaf7 56%, #f1f4f7 100%); }
.hero::before { content: ""; position: absolute; width: 430px; height: 430px; right: -160px; top: -200px; border-radius: 50%; background: rgba(168, 96, 22, .08); filter: blur(4px); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); align-items: center; gap: 52px; }
.hero-copy { position: relative; z-index: 2; min-width: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.micro-proof { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 0; margin: 18px 0 0; list-style: none; color: var(--muted); font-size: 13px; }
.micro-proof li::before { content: "✓"; margin-right: 6px; color: var(--green); font-weight: 800; }
.hero-visual { position: relative; min-width: 0; }
.hero-photo { aspect-ratio: auto; width: 100%; border-radius: 26px; object-fit: cover; object-position: 54% center; box-shadow: var(--shadow-lg); }
.product-float {
  position: absolute;
  left: -25px;
  bottom: -28px;
  width: min(330px, 72%);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  padding: 16px;
  box-shadow: 0 20px 48px rgba(13, 23, 41, .2);
  backdrop-filter: blur(12px);
}
.product-float-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.product-float-title { font-size: 13px; font-weight: 800; color: var(--ink); }
.status-pill { border-radius: 999px; background: var(--green-soft); color: var(--green); padding: 4px 8px; font-size: 10px; font-weight: 800; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.mini-stat { border-radius: 9px; background: var(--surface); padding: 9px; }
.mini-stat strong { display: block; color: var(--ink); font: 21px/1 var(--serif); }
.mini-stat span { font-size: 9px; color: var(--muted); }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { padding: 19px 14px; text-align: center; color: var(--slate); font-size: 12px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--ink); font-size: 14px; }

.section-head { max-width: 710px; margin-bottom: 46px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2, .page-hero h1 { margin-bottom: 15px; font: clamp(34px, 4.2vw, 52px)/1.06 var(--serif); letter-spacing: -.035em; }
.section-head p { color: var(--slate); font-size: 17px; }
.kicker { color: var(--gold-dark); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.feature-stack { display: grid; gap: 36px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media img { width: 100%; aspect-ratio: auto; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-sm); }
.feature-media .media-badge { position: absolute; right: 16px; bottom: 16px; max-width: 230px; border-radius: 12px; background: rgba(13, 23, 41, .92); color: #fff; padding: 12px 14px; font-size: 12px; box-shadow: var(--shadow-sm); }
.feature-copy h3 { margin: 8px 0 13px; font: clamp(28px, 3vw, 39px)/1.12 var(--serif); }
.feature-copy > p { color: var(--slate); font-size: 16px; }
.feature-points { display: grid; gap: 12px; padding: 0; margin: 22px 0 25px; list-style: none; }
.feature-points li { position: relative; padding-left: 28px; color: #334156; }
.feature-points li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-dark); font-weight: 900; }
.text-link { color: var(--gold-dark); font-size: 14px; font-weight: 800; }
.text-link:hover { text-decoration: underline; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 25px; box-shadow: 0 1px 1px rgba(13, 23, 41, .025); }
.card h3 { margin-bottom: 9px; font-size: 18px; }
.card p { margin-bottom: 0; color: var(--slate); font-size: 14px; }
.card-number { display: inline-flex; width: 35px; height: 35px; align-items: center; justify-content: center; margin-bottom: 18px; border-radius: 9px; background: var(--gold-soft); color: var(--gold-dark); font: 20px/1 var(--serif); }
.icon-box { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 16px; border-radius: 10px; background: var(--surface-blue); color: var(--ink); }
.icon-box svg { width: 22px; height: 22px; }

.local-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start; }
.fact-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line-dark); border-radius: 18px; }
.fact { min-height: 135px; padding: 24px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.fact:nth-child(even) { border-right: 0; }
.fact:nth-last-child(-n+2) { border-bottom: 0; }
.fact strong { display: block; color: #fff; font: 30px/1 var(--serif); }
.fact span { display: block; margin-top: 10px; color: #c5ced9; font-size: 13px; }

.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); justify-content: center; gap: 22px; }
.price-card { position: relative; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 19px; background: #fff; padding: 30px; box-shadow: var(--shadow-sm); }
.price-card.featured { border: 2px solid var(--ink); transform: translateY(-7px); }
.price-badge { position: absolute; top: -13px; right: 24px; border-radius: 999px; background: var(--gold); color: #fff; padding: 6px 11px; font-size: 11px; font-weight: 800; }
.price-name { font-size: 14px; font-weight: 800; color: var(--slate); text-transform: uppercase; letter-spacing: .08em; }
.price { margin: 12px 0 2px; color: var(--ink); font: 42px/1 var(--serif); letter-spacing: -.04em; }
.price small { font: 13px/1.3 var(--sans); color: var(--muted); }
.price-was { color: var(--muted); font-size: 13px; text-decoration: line-through; }
.price-list { flex: 1; padding: 0; margin: 24px 0; list-style: none; }
.price-list li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.price-list li::before { content: "✓"; color: var(--gold-dark); font-weight: 900; margin-right: 8px; }
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 980px; margin: 30px auto 0; }
.payment-card { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); padding: 20px; }
.payment-card h3 { margin: 5px 0 8px; font-size: 19px; }
.payment-card p { margin: 0; color: var(--slate); font-size: 13px; }
.payment-card strong { color: var(--ink); white-space: nowrap; }
.payment-label { color: var(--gold-dark); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.founder-note { max-width: 790px; margin: 28px auto 0; border: 1px solid #e5c68c; border-radius: 11px; background: var(--gold-soft); padding: 12px 17px; text-align: center; color: #633a13; font-size: 13px; }

.faq { display: grid; gap: 0; }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { display: flex; justify-content: space-between; gap: 20px; color: var(--ink); font-weight: 750; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-dark); font-size: 21px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 700px; margin: 11px 0 0; color: var(--slate); font-size: 14px; }

.cta-band { position: relative; overflow: hidden; padding: 76px 0; background: var(--ink); color: #cbd4df; }
.cta-band::after { content: ""; position: absolute; right: -120px; top: -160px; width: 430px; height: 430px; border-radius: 50%; background: rgba(168, 96, 22, .18); }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-band h2 { max-width: 700px; margin-bottom: 10px; color: #fff; font: clamp(33px, 4vw, 48px)/1.05 var(--serif); }
.cta-band p { margin-bottom: 0; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

.page-hero { padding: 60px 0 72px; background: linear-gradient(135deg, #fff, var(--paper-warm)); }
.breadcrumbs { margin-bottom: 32px; color: var(--muted); font-size: 12px; }
.breadcrumbs a:hover { color: var(--gold-dark); }
.breadcrumbs span { margin: 0 7px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(410px, 1.08fr); gap: 52px; align-items: center; }
.page-hero-grid > * { min-width: 0; }
.page-hero p { max-width: 640px; color: var(--slate); font-size: 18px; }
.page-hero img { width: 100%; aspect-ratio: auto; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-lg); }
.page-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 55px; align-items: start; }
.prose h2 { margin: 48px 0 14px; font: 33px/1.12 var(--serif); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 28px 0 9px; font-size: 20px; }
.prose p, .prose li { color: #405067; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.side-card { position: sticky; top: 98px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper-warm); padding: 22px; }
.side-card h2, .side-card h3 { margin-bottom: 9px; font: 24px/1.12 var(--serif); }
.side-card p { color: var(--slate); font-size: 13px; }
.related { display: grid; gap: 10px; margin-top: 20px; }
.related a { display: block; border-top: 1px solid var(--line); padding-top: 10px; color: var(--gold-dark); font-size: 13px; font-weight: 750; }

.demo-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 58px; align-items: start; }
.demo-benefits { display: grid; gap: 16px; margin-top: 30px; }
.demo-benefit { display: grid; grid-template-columns: 34px 1fr; gap: 12px; }
.demo-benefit strong { display: block; color: var(--ink); }
.demo-benefit p { margin: 3px 0 0; color: var(--slate); font-size: 13px; }
.demo-form { border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 30px; box-shadow: var(--shadow-sm); }
.demo-form h2 { margin-bottom: 8px; font: 30px/1.1 var(--serif); }
.demo-form > p { color: var(--slate); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 23px; }
.field { display: grid; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: 13px; font-weight: 750; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c7d0db;
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  color: var(--ink);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-dark); outline: 3px solid rgba(168, 96, 22, .12); }
.form-consent { margin: 15px 0; color: var(--muted); font-size: 11px; }
.form-consent a { color: var(--gold-dark); text-decoration: underline; }
.form-status { min-height: 22px; margin: 13px 0 0; font-size: 13px; }
.form-status-success { color: var(--green); }
.form-status-error { color: var(--danger); }

.legal { padding: 64px 0 90px; }
.legal h1 { margin-bottom: 12px; font: 44px/1.05 var(--serif); }
.legal .updated { color: var(--muted); font-size: 12px; }
.legal h2 { margin-top: 38px; font: 27px/1.12 var(--serif); }
.legal p, .legal li { color: #405067; }

.footer { padding: 58px 0 24px; background: #091120; color: #aeb8c6; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 42px; }
.footer .brand { color: #fff; }
.footer .brand-tag { color: #d5ae6f; }
.footer-intro { max-width: 330px; margin-top: 18px; font-size: 13px; }
.footer h2 { margin-bottom: 15px; color: #fff; font: 15px/1.2 var(--sans); }
.footer-links { display: grid; gap: 9px; }
.footer-links a { font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 20px; border-top: 1px solid var(--line-dark); font-size: 11px; }
.footer-bottom p { margin: 0; }

@media (max-width: 1020px) {
  .nav-link { display: none; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 740px; }
  .hero-visual { max-width: 760px; }
  .hero-photo { aspect-ratio: auto; }
  .feature-row { gap: 36px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: 0; }
  .trust-item:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(4) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .wrap, .narrow { width: min(100% - 28px, var(--max)); }
  .section { padding: 70px 0; }
  .header-inner { height: 66px; }
  .brand-word { font-size: 31px; }
  .brand-tag { display: none; }
  .nav { display: none; }
  .menu-button { display: inline-flex; margin-left: auto; flex: 0 0 auto; }
  .mobile-menu {
    position: fixed;
    inset: 66px 0 auto 0;
    z-index: 75;
    border-bottom: 1px solid var(--line);
    background: #fff;
    padding: 14px;
    box-shadow: var(--shadow-lg);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { display: flex; min-height: 48px; align-items: center; border-bottom: 1px solid var(--line); padding: 0 5px; color: var(--ink); font-weight: 700; }
  .mobile-menu a:last-child { margin-top: 12px; border: 0; justify-content: center; color: #fff; background: var(--ink); border-radius: 8px; }
  .hero { padding: 48px 0 54px; }
  .hero-grid { gap: 35px; }
  .hero-grid, .hero-copy, .hero-visual { width: 100%; min-width: 0; }
  .display { font-size: clamp(39px, 12vw, 54px); }
  .display, .page-hero h1 { overflow-wrap: anywhere; }
  .hero-photo { aspect-ratio: auto; object-position: 62% center; border-radius: 18px; }
  .product-float { left: 12px; right: 12px; bottom: -24px; width: auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item, .trust-item:nth-child(3) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(even) { border-right: 0; }
  .trust-item:last-child { grid-column: 1 / -1; border-bottom: 0; border-right: 0; }
  .feature-row, .local-grid, .cta-grid, .content-grid, .demo-layout { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media { order: 0; }
  .feature-media img { border-radius: 14px; }
  .card-grid { grid-template-columns: 1fr; }
  .fact-panel { grid-template-columns: 1fr; }
  .fact, .fact:nth-child(even) { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .fact:last-child { border-bottom: 0; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .payment-grid { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .page-hero { padding: 38px 0 55px; }
  .page-hero-grid { gap: 32px; }
  .page-hero img { aspect-ratio: auto; }
  .side-card { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .hero-actions, .page-actions, .cta-actions { display: grid; }
  .hero-actions .btn, .page-actions .btn, .cta-actions .btn { width: 100%; }
  .micro-proof { display: grid; }
  .mini-stat strong { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
