:root {
  --ink: #1d1a18;
  --muted: #706965;
  --paper: #fbf8f4;
  --surface: #ffffff;
  --soft: #f2ece7;
  --accent: #c9233b;
  --accent-dark: #9e182d;
  --line: rgba(41, 31, 27, 0.13);
  --shadow: 0 24px 70px rgba(57, 36, 27, 0.13);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 248, 244, .88);
  border-bottom: 1px solid rgba(41, 31, 27, .08);
  backdrop-filter: blur(18px);
}
.nav { min-height: 76px; display: flex; align-items: center; gap: 34px; }
.brand { text-decoration: none; font-weight: 900; letter-spacing: -.04em; font-size: 1.4rem; }
.brand-mark { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .93rem; font-weight: 650; }
.nav-links a:hover, .nav-links a[aria-current='page'] { color: var(--ink); }
.menu-button { display: none; margin-left: auto; background: none; border: 0; padding: 8px; }
.menu-button span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--accent-dark); }
.button.secondary { background: transparent; border-color: var(--line); color: var(--ink); }
.button.secondary:hover { background: var(--surface); }
.button:disabled { opacity: .55; cursor: wait; transform: none; }

.hero { min-height: calc(100vh - 76px); display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(40px, 7vw, 100px); padding: 70px 0 90px; overflow: hidden; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-size: .77rem; font-weight: 900; }
h1, h2, .display { font-family: var(--serif); line-height: .98; letter-spacing: -.045em; margin: 0; font-weight: 500; }
h1 { font-size: clamp(3.55rem, 7vw, 6.8rem); margin-top: 20px; }
.hero-copy > p { max-width: 590px; color: var(--muted); font-size: clamp(1.08rem, 1.8vw, 1.3rem); margin: 28px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-note { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px; color: var(--muted); font-size: .85rem; }
.trust-note span::before { content: '✓'; color: var(--accent); font-weight: 900; padding-right: 7px; }
.hero-visual { position: relative; min-height: 700px; }
.hero-image {
  position: absolute;
  inset: 0 0 0 9%;
  width: 82%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 52px;
  box-shadow: var(--shadow);
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 80%; height: 70%;
  right: -20%; top: 10%;
  border-radius: 50%;
  background: rgba(201, 35, 59, .12);
  filter: blur(80px);
}
.floating-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 10%;
  width: 230px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 45px rgba(38,25,21,.18);
  backdrop-filter: blur(16px);
  font-weight: 800;
}
.floating-note small { display: block; color: var(--muted); font-weight: 500; margin-top: 4px; }

.section { padding: 110px 0; }
.section.alt { background: var(--ink); color: #fff; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 30px; margin-bottom: 54px; }
.section h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
.section-head p { margin: 0; color: var(--muted); max-width: 520px; justify-self: end; font-size: 1.08rem; }
.alt .section-head p { color: rgba(255,255,255,.65); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { padding: 30px 28px 0 0; }
.step + .step { padding-left: 28px; border-left: 1px solid var(--line); }
.step-number { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--soft); color: var(--accent); font-weight: 900; }
.step h3 { margin: 24px 0 9px; font-size: 1.25rem; }
.step p { color: var(--muted); margin: 0; }
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.13); }
.feature { background: var(--ink); padding: 38px; min-height: 210px; }
.feature-icon { color: #ff7186; font-size: 1.7rem; }
.feature h3 { margin: 32px 0 8px; font-size: 1.25rem; }
.feature p { margin: 0; color: rgba(255,255,255,.62); max-width: 450px; }
.cta { display: grid; grid-template-columns: 1.5fr .5fr; align-items: center; gap: 30px; padding: 56px; border-radius: 38px; background: #f4dfe3; }
.cta h2 { font-size: clamp(2.4rem, 5vw, 4.7rem); }
.cta .button { justify-self: end; }

.legal-hero { padding: 92px 0 54px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(3.1rem, 6vw, 5.8rem); max-width: 900px; }
.legal-hero p { max-width: 720px; color: var(--muted); font-size: 1.08rem; margin: 24px 0 0; }
.updated { display: inline-block; color: var(--accent); margin-top: 20px; font-weight: 750; font-size: .9rem; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: 80px; padding: 70px 0 120px; align-items: start; }
.legal-toc { position: sticky; top: 110px; }
.legal-toc strong { display: block; margin-bottom: 12px; }
.legal-toc a { display: block; color: var(--muted); text-decoration: none; padding: 5px 0; font-size: .9rem; }
.legal-toc a:hover { color: var(--accent); }
.legal-content h2 { font-family: var(--serif); font-size: 2rem; line-height: 1.1; letter-spacing: -.025em; margin: 62px 0 18px; scroll-margin-top: 110px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 30px 0 8px; }
.legal-content p, .legal-content li { color: #514b48; }
.legal-content li + li { margin-top: 7px; }
.legal-content a { color: var(--accent-dark); }
.notice { border-left: 3px solid var(--accent); padding: 18px 22px; background: var(--soft); margin: 26px 0; }
.notice p { margin: 0; }

.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 36px; }
.support-card { padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); text-decoration: none; }
.support-card:hover { border-color: var(--accent); }
.support-card small { display: block; color: var(--muted); margin-top: 8px; }
.faq { border-top: 1px solid var(--line); }
.faq details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { margin-bottom: 0; color: var(--muted); }

.form { margin-top: 34px; display: grid; gap: 18px; max-width: 680px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 750; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--surface);
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,35,59,.1); }
.field textarea { min-height: 130px; resize: vertical; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.checkbox input { margin-top: 5px; }
.honeypot { position: absolute; left: -10000px; }
.form-status { min-height: 24px; font-weight: 700; }
.form-status[data-state='success'] { color: #177245; }
.form-status[data-state='error'] { color: var(--accent-dark); }

.site-footer { border-top: 1px solid var(--line); padding: 54px 0 34px; background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
.footer-copy { color: var(--muted); max-width: 360px; margin-top: 12px; font-size: .92rem; }
.footer-links strong { display: block; margin-bottom: 12px; }
.footer-links a { display: block; color: var(--muted); text-decoration: none; padding: 4px 0; font-size: .9rem; }
.footer-links a:hover { color: var(--accent); }
.copyright { color: var(--muted); font-size: .8rem; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); }

@media (max-width: 850px) {
  .shell { width: min(100% - 28px, 680px); }
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; left: 14px; right: 14px; top: 68px; padding: 18px; flex-direction: column; align-items: stretch; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .nav-links[data-open] { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 50px; }
  .hero-visual { min-height: 670px; }
  .hero-image { inset-left: 0; width: min(100%, 360px); left: 50%; transform: translateX(-50%); border-radius: 38px; }
  .floating-note { right: 4%; }
  .section, .legal-hero { padding-top: 76px; }
  .section-head, .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .section-head p { justify-self: start; }
  .legal-toc { display: none; }
  .steps, .features, .support-grid { grid-template-columns: 1fr; }
  .step { padding: 26px 0; border-bottom: 1px solid var(--line); }
  .step + .step { padding-left: 0; border-left: 0; }
  .cta { grid-template-columns: 1fr; padding: 38px 28px; }
  .cta .button { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  h1 { font-size: 3.35rem; }
  .hero-visual { min-height: 590px; }
  .hero-image { width: 315px; }
  .floating-note { width: 190px; font-size: .9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}
