:root {
  --bg: #fafaf7;
  --bg-warm: #f3efe7;
  --bg-soft: #ecf2ee;
  --surface: #ffffff;
  --ink: #15201c;
  --ink-soft: #4a5751;
  --muted: #7a857f;
  --line: #e5e3dc;
  --safe: #2d6a4f;
  --safe-soft: #d8ebe1;
  --safe-bg: #ebf3ed;
  --warn: #b04646;
  --warn-soft: #f0d6d4;
  --warn-bg: #faf1ef;
  --gold: #c79553;
  --shadow-lg: 0 30px 60px -20px rgba(21, 32, 28, 0.15);
  --shadow-md: 0 20px 40px -10px rgba(21, 32, 28, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Geist", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a,
button {
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), 1200px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 30px;
  height: 30px;
  background: var(--safe);
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 7px 8px 7px 8px;
  background: var(--bg);
  clip-path: polygon(50% 0%, 100% 25%, 100% 70%, 50% 100%, 0% 70%, 0% 25%);
}

.site-nav {
  display: flex;
  gap: 4px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 7px;
  transition: all 0.2s ease;
}

.site-nav a:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.header-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.header-cta:hover {
  background: var(--safe);
}

.hero {
  padding: 144px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--safe-bg);
  border: 1px solid var(--safe-soft);
  color: var(--safe);
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.shield {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--safe);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

h1,
h2,
h3,
.tc-title,
.dl-card h3,
.foot-grid h4,
.scenario .sc-heading,
.audience-card h3,
.risk-col h3,
.flow-step h3,
.p-card h3,
.stat .val {
  font-family: "Newsreader", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  line-height: 1.02;
  margin: 0 0 28px;
}

h1 em,
h2 em,
.stat .val em,
.sc-heading em {
  font-style: italic;
  color: var(--safe);
}

.accent {
  position: relative;
  display: inline-block;
}

.accent::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 0.05em;
  height: 12px;
  background: rgba(199, 149, 83, 0.35);
  z-index: -1;
  border-radius: 2px;
}

.hero-lede,
.s-sub,
.p-card p,
.flow-step p,
.risk-item .txt span,
.sc-a,
.audience-card li,
.tc-header p,
.tc-footnote,
.dl-lede,
.foot-grid p,
.foot-grid a,
.foot-bottom,
.stat .sub,
.stat .lbl {
  color: var(--ink-soft);
}

.hero-lede {
  font-size: 1.18rem;
  line-height: 1.55;
  margin: 0 0 40px;
  max-width: 37rem;
}

.hero-lede strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.btn,
.dl-btn {
  padding: 16px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--safe);
  box-shadow: 0 10px 30px -10px rgba(45, 106, 79, 0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: white;
  border-color: var(--ink);
}

.hero-meta {
  display: flex;
  gap: 18px 34px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.check {
  color: var(--safe);
  font-weight: 700;
}

.trust-card {
  background: white;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--line);
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.tc-icon {
  width: 44px;
  height: 44px;
  background: var(--safe-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--safe);
  font-size: 1.5rem;
  font-style: italic;
}

.tc-title {
  font-size: 1rem;
  margin: 0 0 2px;
}

.tc-header p,
.tc-footnote {
  font-size: 0.82rem;
  line-height: 1.5;
}

.tc-row,
.dl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tc-row {
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  gap: 20px;
}

.tc-row:last-of-type {
  border-bottom: none;
}

.tc-row .k,
.dl-row .k {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.tc-row .v {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  text-align: right;
}

.tc-row .v.safe {
  color: var(--safe);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tc-row .v.safe::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--safe);
  border-radius: 50%;
}

.tc-amount {
  font-size: 2.3rem;
  margin-top: 18px;
  color: var(--ink);
}

.currency {
  color: var(--muted);
  margin-left: 4px;
}

.stat-strip {
  background: var(--bg-warm);
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat .lbl {
  font-size: 0.8rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.stat .val {
  font-size: 2.3rem;
  line-height: 1;
}

.stat .sub {
  font-size: 0.82rem;
  margin-top: 8px;
}

.s {
  padding: 112px 0;
}

.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--safe);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.s-eyebrow .line {
  width: 28px;
  height: 1px;
  background: var(--safe);
}

h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 25ch;
}

.s-sub {
  font-size: 1.08rem;
  max-width: 40rem;
  margin: 0 0 64px;
  line-height: 1.55;
}

.risks-compare,
.audience-grid,
.flow-grid {
  display: grid;
  gap: 24px;
}

.risks-compare {
  grid-template-columns: 1fr 1fr;
}

.risk-col,
.audience-card {
  border-radius: 18px;
  padding: 40px;
}

.risk-col.bad {
  background: var(--warn-bg);
  border: 1px solid var(--warn-soft);
}

.risk-col.good {
  background: var(--safe-bg);
  border: 1px solid var(--safe-soft);
}

.h-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.risk-col.bad .h-tag {
  background: var(--warn-soft);
  color: var(--warn);
}

.risk-col.good .h-tag {
  background: var(--safe-soft);
  color: var(--safe);
}

.audience-card .h-tag {
  background: var(--safe-soft);
  color: var(--safe);
}

.risk-col h3,
.audience-card h3,
.flow-step h3,
.p-card h3,
.dl-card h3,
.sc-heading {
  margin: 0;
  line-height: 1.15;
}

.risk-col h3,
.audience-card h3,
.p-card h3 {
  font-size: 1.6rem;
}

.risk-list {
  margin-top: 22px;
}

.risk-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px dashed rgba(21, 32, 28, 0.1);
}

.risk-item .ic {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 2px;
}

.risk-col.bad .ic {
  background: var(--warn);
  color: var(--bg);
}

.risk-col.good .ic {
  background: var(--safe);
  color: var(--bg);
}

.risk-item .txt strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-weight: 600;
}

.risk-item .txt span {
  font-size: 0.92rem;
  line-height: 1.52;
}

.risk-item .price {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 5px;
  display: inline-block;
}

.risk-col.bad .price {
  color: var(--warn);
}

.risk-col.good .price {
  color: var(--safe);
}

.protections {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  grid-auto-rows: minmax(220px, auto);
}

.p-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p-card:hover,
.flow-step:hover,
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.p-card:hover,
.flow-step:hover {
  border-color: var(--safe);
}

.p-card .p-ic {
  width: 44px;
  height: 44px;
  background: var(--safe-bg);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--safe);
  font-size: 1.45rem;
  font-style: italic;
  margin-bottom: 20px;
}

.p-card p {
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

.p-1 {
  grid-column: span 4;
  grid-row: span 2;
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.p-1 h3 {
  color: var(--bg);
  font-size: 2rem;
}

.p-1 p {
  color: rgba(250, 250, 247, 0.72);
  font-size: 1.05rem;
}

.p-1 .p-ic {
  background: rgba(45, 106, 79, 0.2);
  color: #95dcb1;
}

.p-mock {
  margin-top: 32px;
  background: rgba(250, 250, 247, 0.06);
  border: 1px solid rgba(250, 250, 247, 0.12);
  border-radius: 12px;
  padding: 18px 22px;
}

.p-mock-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  gap: 20px;
}

.p-mock-row .k {
  color: rgba(250, 250, 247, 0.5);
}

.p-mock-row .v {
  color: var(--bg);
  font-weight: 500;
  text-align: right;
}

.p-mock-row .v.safe {
  color: #95dcb1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.p-mock-row .v.safe::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #95dcb1;
  border-radius: 50%;
}

.p-2 {
  grid-column: span 2;
}

.p-3 {
  grid-column: span 2;
  background: var(--bg-soft);
}

.p-4 {
  grid-column: span 3;
}

.p-5 {
  grid-column: span 3;
  background: var(--bg-warm);
}

.audience-section {
  background: linear-gradient(180deg, rgba(243, 239, 231, 0.4), rgba(243, 239, 231, 0));
}

.audience-grid {
  grid-template-columns: 1fr 1fr;
}

.audience-card {
  background: white;
  border: 1px solid var(--line);
}

.audience-card ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.audience-card li {
  margin-bottom: 10px;
}

.flow-section {
  background: var(--bg-warm);
}

.flow-grid {
  grid-template-columns: repeat(3, 1fr);
}

.flow-step {
  background: white;
  border-radius: 18px;
  padding: 36px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.fs-num {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--safe);
  line-height: 1;
  margin-bottom: 18px;
}

.of {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
  font-family: "Geist Mono", monospace;
  vertical-align: super;
}

.flow-step h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.flow-step p {
  font-size: 0.95rem;
  margin: 0;
}

.fs-protect {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--safe);
}

.fs-protect::before {
  content: "✓";
  font-weight: 700;
}

.scenarios {
  display: flex;
  flex-direction: column;
}

.scenario {
  border-top: 1px solid var(--line);
}

.scenario:last-child {
  border-bottom: 1px solid var(--line);
}

.sc-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.sc-heading {
  font-size: 1.5rem;
  flex: 1;
}

.sc-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--safe);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.scenario:hover .sc-toggle,
.scenario.is-open .sc-toggle {
  background: var(--safe);
  color: var(--bg);
}

.scenario.is-open .sc-toggle {
  transform: rotate(45deg);
}

.sc-a {
  padding: 0 0 30px;
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 60ch;
}

.dl-section {
  padding: 112px 0;
}

.dl-block {
  background: var(--ink);
  color: var(--bg);
  border-radius: 24px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.dl-block::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(149, 220, 177, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.dl-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.dl-block h2 {
  color: var(--bg);
}

.dl-lede {
  color: rgba(250, 250, 247, 0.75);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 33rem;
}

.dl-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dl-btn {
  background: #95dcb1;
  color: var(--ink);
  font-weight: 600;
}

.dl-btn:hover {
  background: var(--bg);
  transform: translateY(-1px);
}

.dl-btn.ghost {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(250, 250, 247, 0.2);
}

.dl-btn.ghost:hover {
  background: rgba(250, 250, 247, 0.08);
  border-color: var(--bg);
}

.dl-card {
  background: rgba(250, 250, 247, 0.05);
  border: 1px solid rgba(250, 250, 247, 0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.dl-shield {
  width: 50px;
  height: 50px;
  background: rgba(149, 220, 177, 0.2);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.dl-shield::before {
  content: "";
  width: 22px;
  height: 26px;
  background: #95dcb1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 70%, 50% 100%, 0% 70%, 0% 25%);
}

.dl-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--bg);
}

.dl-card .sub {
  color: rgba(250, 250, 247, 0.6);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.dl-row {
  padding: 9px 0;
  border-top: 1px solid rgba(250, 250, 247, 0.1);
  font-size: 0.88rem;
  gap: 16px;
}

.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.foot-grid p {
  max-width: 23rem;
  font-size: 0.95rem;
  margin: 16px 0 0;
}

.foot-grid h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--safe);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.foot-grid a {
  display: block;
  text-decoration: none;
  padding: 6px 0;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.foot-grid a:hover {
  color: var(--safe);
}

.foot-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .dl-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .risks-compare,
  .audience-grid,
  .flow-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .protections {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .p-1,
  .p-2,
  .p-3,
  .p-4,
  .p-5 {
    grid-column: span 1;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 128px;
  }

  .dl-block {
    padding: 40px 28px;
  }

  .risk-col,
  .audience-card,
  .flow-step,
  .p-card {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), 1200px);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .hero-actions,
  .dl-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .dl-btn,
  .header-cta {
    justify-content: center;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .foot-bottom {
    flex-direction: column;
  }

  .tc-row,
  .dl-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .sc-q {
    align-items: flex-start;
  }
}
