:root {
  --bg: #EFF1F0;
  --surface: #FFFFFF;
  --border: #D6DAD8;
  --text: #16201E;
  --text2: #55625F;
  --accent: #6E2A35;
  --accent-tint: #F4E7E7;
  --font-serif: "Newsreader", Georgia, "Iowan Old Style", serif;
  --font-sans: "Public Sans", ui-sans-serif, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

a { color: inherit; }

/* ---------- nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  background: rgba(239, 241, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
header.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: -0.01em;
}
.logo .dot { color: var(--accent); }
nav.links { display: flex; align-items: center; gap: 30px; }
nav.links a {
  position: relative;
  font-size: 14px;
  color: var(--text2);
  text-decoration: none;
  padding-bottom: 3px;
}
nav.links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--accent);
  transition: right 0.25s ease;
}
nav.links a:hover { color: var(--text); }
nav.links a:hover::after { right: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  font: 500 14px/1 var(--font-sans);
  color: #FBF6F6;
  background: var(--accent);
  border: none;
  padding: 12px 22px;
  border-radius: 2px;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { background: #5A2129; }
.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn.ghost:hover { background: var(--accent-tint); }
.btn.small { padding: 9px 16px; font-size: 13px; }

/* ---------- eyebrow / headings ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; text-wrap: balance; }

/* ---------- hero ---------- */
section.hero {
  padding: 84px 0 96px;
  position: relative;
  overflow: hidden;
}
#radar {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, black, black 55%, transparent 96%);
  mask-image: linear-gradient(to bottom, black, black 55%, transparent 96%);
}
.hero .center { max-width: 660px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.18; margin-bottom: 20px; }
.hero p.sub { font-size: 17px; line-height: 1.7; color: var(--text2); max-width: 48ch; margin: 0 auto 32px; }

.scorecard {
  margin: 52px auto 0;
  max-width: 560px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 26px 30px 22px;
  text-align: left;
}
.scorecard .head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--border); padding-bottom: 13px; margin-bottom: 15px;
}
.scorecard .head .t { font-size: 12.5px; color: var(--text2); letter-spacing: 0.04em; text-transform: uppercase; }
.scorecard .head .n { font-family: var(--font-serif); font-size: 21px; font-variant-numeric: tabular-nums; }
.scorecard .foot { font-size: 12px; color: var(--text2); margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.pillar { display: grid; grid-template-columns: 160px 1fr 38px; align-items: center; gap: 12px; padding: 6px 0; }
.pillar .l { font-size: 12.5px; color: var(--text2); text-align: left; }
.pillar .track { height: 5px; background: var(--accent-tint); border-radius: 2px; overflow: hidden; }
.pillar .fill { height: 100%; background: var(--accent); }
.pillar .v { font-size: 11.5px; font-variant-numeric: tabular-nums; color: var(--text2); text-align: right; }

/* ---------- section shell ---------- */
section { padding: 88px 0; }
section:not(.hero) { border-top: 1px solid var(--border); position: relative; }
.sec-mark {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); color: var(--accent); font-size: 12px;
  font-variant-numeric: tabular-nums;
}
section .kicker { text-align: center; margin-bottom: 56px; }
section .kicker h2 { font-size: clamp(26px, 3.2vw, 34px); margin-bottom: 14px; }
section .kicker p { color: var(--text2); max-width: 56ch; margin: 0 auto; font-size: 15.5px; }

/* ---------- pull quote ---------- */
.pullquote { border-top: 1px solid var(--border); padding: 76px 0; position: relative; }
.pullquote blockquote {
  max-width: 720px; margin: 0 auto; text-align: center;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(22px, 3vw, 30px); line-height: 1.45; color: var(--text);
}
.pullquote cite {
  display: block; margin-top: 22px; font-style: normal; font-size: 13px;
  color: var(--text2); letter-spacing: 0.04em; text-transform: uppercase;
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- geo explainer ---------- */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 880px; margin: 0 auto 64px;
}
.stat { text-align: center; }
.stat .n { font-family: var(--font-serif); font-size: 38px; color: var(--accent); }
.stat .l { font-size: 13px; color: var(--text2); margin-top: 6px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 960px; margin: 0 auto; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-top: 2px solid var(--border);
  border-radius: 4px; padding: 28px 26px;
  transition: border-top-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover {
  border-top-color: var(--accent); transform: translateY(-3px);
  box-shadow: 0 10px 24px -16px rgba(22, 32, 30, 0.28);
}
.step .idx { font-family: var(--font-serif); font-size: 14px; color: var(--accent); margin-bottom: 14px; }
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--text2); line-height: 1.65; }

/* ---------- pricing ---------- */
.pricing-note {
  text-align: center; font-size: 13px; color: var(--text2);
  margin: -32px auto 48px; max-width: 52ch;
}
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 980px; margin: 0 auto; align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--border); border-radius: 4px;
  padding: 30px 26px; display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan:hover { transform: translateY(-3px); box-shadow: 0 10px 24px -16px rgba(22, 32, 30, 0.28); }
.plan.feat { border: 1.5px solid var(--accent); box-shadow: 0 6px 20px -14px rgba(110, 42, 53, 0.35); }
.plan.feat:hover { box-shadow: 0 14px 28px -14px rgba(110, 42, 53, 0.4); }
.plan .badge {
  align-self: flex-start; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--accent-tint); color: var(--accent); padding: 4px 10px; border-radius: 2px; margin-bottom: 14px;
}
.plan h3 { font-size: 19px; margin-bottom: 8px; }
.plan .price { font-family: var(--font-serif); font-size: 26px; margin-bottom: 4px; }
.plan .price small { font-family: var(--font-sans); font-size: 13px; color: var(--text2); }
.plan .when { font-size: 12.5px; color: var(--text2); margin-bottom: 18px; }
.plan ul { list-style: none; margin: 0 0 22px; padding: 0; font-size: 14px; color: var(--text2); }
.plan li { padding: 6px 0; border-top: 1px solid var(--border); }
.plan li:first-child { border-top: none; }
.plan .btn { margin-top: auto; text-align: center; justify-content: center; }

/* ---------- team ---------- */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 720px; margin: 0 auto; }
.person { text-align: center; }
.avatar {
  width: 84px; height: 84px; border-radius: 50%; background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 26px; margin: 0 auto 18px;
}
.person h3 { font-size: 17px; margin-bottom: 4px; }
.person .role { font-size: 13px; color: var(--accent); margin-bottom: 12px; }
.person p.bio { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--border); padding: 40px 0; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; }
footer .f-logo { font-family: var(--font-serif); font-size: 16px; }
footer .f-meta { font-size: 13px; color: var(--text2); }

@media (max-width: 760px) {
  nav.links { display: none; }
  .stat-row, .steps, .plans, .team { grid-template-columns: 1fr; }
  footer .wrap { flex-direction: column; gap: 10px; text-align: center; }
}
