:root {
  --ink: #0a2540;
  --ink-soft: #2b3b4a;
  --muted: #5a6770;
  --line: #e3e8ef;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --accent: #c8102e;
  --accent-dark: #a30d25;
  --gold: #f1bf00;
  --max: 760px;
  --max-wide: 1080px;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-dark); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.25; margin-top: 0; }
h1 { font-size: clamp(28px, 5vw, 40px); margin-bottom: 0.4em; letter-spacing: -0.01em; }
h2 { font-size: clamp(22px, 3.6vw, 28px); margin: 2em 0 0.5em; letter-spacing: -0.005em; }
h3 { font-size: 18px; margin: 1.5em 0 0.4em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.4em; }
li { margin-bottom: 0.4em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5em 0; }
code { background: var(--bg-soft); padding: 1px 5px; border-radius: 4px; font-size: 0.92em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(255,255,255,0.92);
}
.site-header .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.brand {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.brand .flag { color: var(--accent); margin-right: 6px; }
.nav { display: flex; gap: 18px; font-size: 14px; }
.nav a { color: var(--ink-soft); text-decoration: none; }
.nav a:hover { color: var(--accent); }
@media (max-width: 600px) {
  .nav { gap: 12px; font-size: 13px; }
  .nav a.hide-mobile { display: none; }
}

/* HERO */
.hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #fffbf2 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: #fff1e8;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero h1 { margin-bottom: 18px; max-width: 28ch; }
.hero p.lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 26px;
}

/* CTA */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 18px 0 6px; }
.btn {
  display: inline-block;
  padding: 14px 22px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease;
  font-size: 16px;
}
.btn:hover { background: var(--accent-dark); }
.btn:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-soft); color: var(--ink) !important; }
.btn-block { display: block; text-align: center; width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 17px; }

.cta-meta { font-size: 13px; color: var(--muted); }

/* SECTIONS */
section.block { padding: 48px 0; }
section.block-soft { padding: 48px 0; background: var(--bg-soft); border-block: 1px solid var(--line); }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.card h3 { margin-top: 0; font-size: 16px; }
.card p { font-size: 15px; color: var(--muted); margin: 0; }

/* WHATSINSIDE list */
.included {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.included li::marker { color: var(--accent); }

/* PRICE BOX */
.price-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.price-box .price { font-size: 38px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.price-box .price small { display: block; font-size: 13px; color: var(--muted); font-weight: 400; margin-top: 4px; }
.price-box ul { text-align: left; margin: 16px auto 22px; max-width: 340px; }

/* FAQ */
details.faq {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
details.faq:last-of-type { border-bottom: 1px solid var(--line); }
details.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
}
details.faq[open] summary::after { content: "−"; }
details.faq p { margin-top: 10px; color: var(--ink-soft); }

/* TABLE */
.table-wrap { overflow-x: auto; margin: 14px 0 24px; }
table.t { width: 100%; border-collapse: collapse; font-size: 15px; }
table.t th, table.t td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.t th { background: var(--bg-soft); font-weight: 600; color: var(--ink); }
table.t tr:last-child td { border-bottom: 0; }

/* CALLOUTS */
.callout {
  border-left: 3px solid var(--accent);
  background: #fff8f4;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 4px;
}
.callout strong { color: var(--ink); }

.note {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: var(--radius);
  font-size: 15px;
}

/* TRUST BAR */
.trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}
.trust span { display: inline-flex; gap: 6px; align-items: center; }
.trust span::before { content: "✓"; color: var(--accent); font-weight: 700; }

/* BREADCRUMB */
.breadcrumb { font-size: 13px; color: var(--muted); padding: 14px 0; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: var(--bg-soft);
  font-size: 14px;
  color: var(--muted);
  margin-top: 60px;
}
.site-footer .container-wide {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}
.site-footer h4 { font-size: 14px; margin: 0 0 12px; color: var(--ink); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 6px; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
@media (max-width: 700px) {
  .site-footer .container-wide { grid-template-columns: 1fr; }
}

/* MISC */
.muted { color: var(--muted); }
.small { font-size: 14px; }
.center { text-align: center; }
.tag { display: inline-block; font-size: 12px; padding: 2px 8px; border-radius: 100px; background: var(--bg-soft); color: var(--ink-soft); margin-right: 6px; }
.toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 24px; margin: 24px 0 32px; font-size: 15px; }
.toc h3 { margin: 0 0 8px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.toc ul { margin: 0; padding-left: 1.2em; }
.toc li { margin-bottom: 4px; }

/* SR-ONLY */
.sr { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }
