:root {
  --ink: #17212b;
  --muted: #66717d;
  --paper: #f4f1e9;
  --surface: #fffdf8;
  --orange: #ed5b37;
  --orange-dark: #c94325;
  --orange-soft: #fff0e9;
  --line: #dcd6ca;
  --lime: #cfe86b;
  --green: #2f7453;
  --green-soft: #eef9f1;
  --shadow: 0 22px 62px rgba(23, 33, 43, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 4%, rgba(207, 232, 107, .23), transparent 27rem),
    radial-gradient(circle at 3% 34%, rgba(237, 91, 55, .11), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

a { color: inherit; }
a:focus-visible, button:focus-visible, select:focus-visible {
  outline: 3px solid rgba(237, 91, 55, .35);
  outline-offset: 3px;
}
.page-shell { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 43px; height: 43px; object-fit: contain; }
.brand strong { font-size: 25px; line-height: 1; letter-spacing: -1.5px; }
.brand strong span { color: var(--orange); }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }
.site-nav a {
  border-radius: 9px;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.site-nav a:hover { background: rgba(255, 255, 255, .72); color: var(--ink); }
.site-nav .nav-cta { background: var(--ink); color: white; }
.site-nav .nav-cta:hover { background: #293746; color: white; }

.breadcrumbs { margin: 18px 0 0; color: var(--muted); font-size: 12px; }
.breadcrumbs a { color: var(--orange-dark); font-weight: 700; }
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: 46px;
  align-items: center;
  padding: 62px 0 46px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font: 800 11px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { margin: 0 0 18px; font-size: clamp(42px, 6.8vw, 69px); }
h2 { margin: 0 0 13px; font-size: clamp(27px, 4vw, 39px); }
h3 { margin: 0 0 8px; font-size: 20px; }
.lead { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(23, 33, 43, .18);
  border-radius: 11px;
  padding: 12px 18px;
  background: white;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.button-primary { border-color: var(--orange); background: var(--orange); color: white; }
.button-primary:hover { border-color: var(--orange-dark); background: var(--orange-dark); }
.hero-card, .content-card, .notice, .price-card, .faq-item {
  border: 1px solid rgba(23, 33, 43, .13);
  background: rgba(255, 253, 248, .92);
  box-shadow: var(--shadow);
}
.hero-card { border-radius: 19px; padding: 24px; }
.hero-card ul { margin: 15px 0 0; padding: 0; list-style: none; }
.hero-card li { position: relative; margin: 10px 0; padding-left: 25px; color: var(--muted); font-size: 14px; }
.hero-card li::before {
  position: absolute;
  left: 0;
  top: .17em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  content: "✓";
  font: 900 11px/17px Arial, sans-serif;
  text-align: center;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin: 0 0 48px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.58);
}
.trust-strip div { padding: 16px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip small { display: block; }
.trust-strip strong { font-size: 14px; }
.trust-strip small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.section { padding: 42px 0; }
.section-copy { max-width: 760px; margin: 0 0 24px; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.content-card { border-radius: 16px; padding: 22px; box-shadow: 0 12px 34px rgba(23,33,43,.06); }
.content-card p { margin: 0; color: var(--muted); font-size: 14px; }
.content-card .number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 15px;
  border-radius: 10px;
  background: var(--lime);
  font-weight: 900;
}
.notice { margin: 26px 0; border-radius: 15px; padding: 20px 22px; box-shadow: none; }
.notice strong { display: block; margin-bottom: 5px; }
.notice p { margin: 0; color: var(--muted); }
.notice-safe { border-color: rgba(47, 116, 83, .26); background: var(--green-soft); }
.notice-warn { border-color: rgba(237, 91, 55, .28); background: var(--orange-soft); }
.prose { max-width: 850px; }
.prose h2 { margin-top: 42px; }
.prose h3 { margin-top: 26px; }
.prose p, .prose li { color: #4e5a66; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin: 8px 0; }
.policy-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin: 25px 0 35px;
}
.policy-summary .content-card strong { display: block; margin-bottom: 5px; }
.price-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 270px; border-radius: 17px; padding: 22px; box-shadow: 0 13px 35px rgba(23,33,43,.06); }
.price-card.featured { border-color: rgba(47,116,83,.48); background: linear-gradient(150deg,#effaf2,#fffdf8); }
.price-card .tag { color: var(--orange-dark); font: 800 10px ui-monospace,monospace; letter-spacing: .08em; text-transform: uppercase; }
.price-card h3 { margin-top: 13px; }
.price { margin: 15px 0 3px; font-size: 34px; font-weight: 900; line-height: 1; }
.price-card .credits { color: var(--green); font-size: 16px; font-weight: 850; }
.price-card p { color: var(--muted); font-size: 13px; }
.price-card .button { margin-top: auto; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: white; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
tr:last-child td { border-bottom: 0; }
th { background: #f7f4ed; font-size: 12px; }
.faq-list { display: grid; gap: 11px; }
.faq-item { border-radius: 13px; padding: 19px 21px; box-shadow: none; }
.faq-item h3 { font-size: 17px; }
.faq-item p { margin: 0; color: var(--muted); }
.related-links { display: flex; flex-wrap: wrap; gap: 9px; }
.related-links a { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; background: white; font-size: 12px; font-weight: 750; text-decoration: none; }
.related-links a:hover { border-color: var(--orange); color: var(--orange-dark); }
.site-footer { margin-top: 58px; border-top: 1px solid rgba(23,33,43,.14); padding: 30px 0 42px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 24px; }
.footer-grid strong { display: block; margin-bottom: 9px; }
.footer-grid p { max-width: 340px; margin: 0; color: var(--muted); font-size: 12px; }
.footer-links { display: grid; align-content: start; gap: 7px; }
.footer-links a { color: var(--muted); font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: var(--orange-dark); text-decoration: underline; }
.footer-note { margin: 26px 0 0; color: var(--muted); font-size: 11px; }

@media (max-width: 900px) {
  .page-hero { grid-template-columns: 1fr; gap: 25px; padding-top: 42px; }
  .hero-card { max-width: 650px; }
  .card-grid, .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .page-shell { width: min(100% - 24px, 1120px); }
  .site-header { align-items: flex-start; flex-direction: column; gap: 14px; }
  .site-nav { justify-content: flex-start; }
  .site-nav a { padding: 8px 9px; }
  .page-hero { padding: 35px 0 35px; }
  h1 { font-size: 42px; }
  .lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .card-grid, .price-grid, .policy-summary, .footer-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip div:last-child { border-bottom: 0; }
  .section { padding: 32px 0; }
  th, td { min-width: 150px; padding: 12px; }
}

@media print {
  body { background: white; }
  .site-nav, .hero-actions, .related-links { display: none; }
  .hero-card, .content-card, .notice, .price-card, .faq-item { box-shadow: none; }
}
