:root {
  --bg: #0a0a0a;
  --card: #0a0a0a;
  --ink: #f2f2f2;
  --muted: #a3a3a3;
  --soft: #737373;
  --border: #262626;
  --teal: #f2f2f2;
  --teal-hover: #cccccc;
  --false: #e5484d;
  --mid: #f5a524;
  --true: #1f9254;
  --violet: #f2f2f2;
  color-scheme: dark;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* hide the scrollbar while keeping the page scrollable */
html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }
body {
  font-family: "Satoshi", ui-sans-serif, system-ui, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  letter-spacing: -0.6px;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* faint grid texture behind the whole site, faded out toward every edge
   so it reads as ambient texture rather than a visible pattern */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--ink) 6%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--ink) 6%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* nav */
nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav-in { display: flex; align-items: center; gap: 12px; height: 64px; }
.logo { display: flex; align-items: center; gap: 9px; }
.mark { display: block; width: 22px; height: 22px; color: var(--ink); flex: 0 0 auto; }
.logo b {
  font-family: "Satoshi", sans-serif; font-weight: 500; font-size: 15.5px;
  line-height: 1; display: inline-block;
}
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav-links a {
  display: inline-flex; align-items: center;
  height: 34px; box-sizing: border-box;
  font-size: 14px; font-weight: 400; color: var(--muted); padding: 0 12px; border-radius: 0;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
/* the CTA and the toggle sit apart from the text links as one action group;
   .btn sets its own height/padding, declared after .nav-links a, so re-pin
   the height here to stay flush with the toggle button next to it */
.nav-links a.btn-primary { height: 34px; padding: 0 16px; margin-left: 12px; color: var(--bg); }
.nav-links a.btn-primary:hover { color: var(--bg); background: var(--teal-hover); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 500; font-size: 14px; padding: 10px 18px; border-radius: 0;
  border: 1px solid transparent; cursor: pointer; transition: all .15s;
}
.btn-primary { background: var(--teal); color: var(--bg); }
.btn-primary:hover { background: var(--teal-hover); }
.btn-ghost { border-color: var(--border); color: var(--ink); background: var(--card); }
.btn-ghost:hover { border-color: color-mix(in srgb, var(--teal) 50%, var(--border)); }
.btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

/* hero: two columns, copy left, illustration right */
.hero {
  padding: 72px 0 60px; position: relative; overflow: hidden;
  min-height: calc(100vh - 64px); display: flex; align-items: center;
  scroll-margin-top: 64px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.hero-copy { text-align: left; }
.eyebrow {
  font-family: "Satoshi", sans-serif; font-weight: 500; font-size: 14px;
  color: var(--muted); margin-bottom: 18px;
}
.hero h1 {
  font-family: "Satoshi", sans-serif; font-weight: 450;
  font-size: clamp(34px, 4vw, 56px); line-height: 1.08;
  text-wrap: balance;
}
.hero h1 .hl { font-weight: 450; }
.hero p.lede {
  font-weight: 400; font-size: clamp(15px, 1.7vw, 18px); line-height: 1.5; color: var(--muted); margin: 22px 0 0;
  text-wrap: pretty;
}
.cta { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.tagline {
  margin-top: 18px; font-family: "Satoshi", sans-serif; font-weight: 400; font-size: 14px;
  color: var(--soft);
}

.hero-art { width: 108%; max-width: 108%; }
.hero-art svg { display: block; width: 100%; height: auto; }

/* hero illustration: verdicts arrive one at a time, like results resolving */
@keyframes dotIn {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes claimIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(4px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes highlightSweep {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes chipFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.dot { transform-origin: center; transform-box: fill-box; opacity: 0; animation: dotIn 0.4s ease-out forwards; }
.dot-1 { animation-delay: 0.1s; }
.dot-2 { animation-delay: 0.2s; }
.dot-3 { animation-delay: 0.3s; }

.claim { opacity: 0; animation: claimIn 0.5s ease-out forwards; }
.claim-1 { animation-delay: 0.5s; }
.claim-2 { animation-delay: 1.1s; }
.claim-3 { animation-delay: 1.7s; }

.claim-highlight {
  transform-origin: left center; transform-box: fill-box;
  transform: scaleX(0); animation: highlightSweep 0.45s ease-out forwards;
}
.claim-1 .claim-highlight { animation-delay: 0.85s; }
.claim-2 .claim-highlight { animation-delay: 1.45s; }
.claim-3 .claim-highlight { animation-delay: 2.05s; }

.claim-chip {
  opacity: 0; transform-origin: left center; transform-box: fill-box;
  animation: chipIn 0.35s ease-out forwards;
}
.claim-1 .claim-chip { animation-delay: 1.05s; }
.claim-2 .claim-chip { animation-delay: 1.65s; }
.claim-3 .claim-chip { animation-delay: 2.25s; }

.source-chip { opacity: 0; animation: chipFadeIn 0.35s ease-out forwards; }
.source-chip-1 { animation-delay: 2.5s; }
.source-chip-2 { animation-delay: 2.62s; }
.source-chip-3 { animation-delay: 2.74s; }
.source-chip-4 { animation-delay: 2.86s; }

/* the global reduced-motion rule (below) disables the animation but leaves
   these at their pre-animation opacity/transform — reset that here so the
   illustration renders fully visible instead of hidden */
@media (prefers-reduced-motion: reduce) {
  .dot, .claim, .claim-chip, .source-chip { opacity: 1; transform: none; }
  .claim-highlight { transform: none; }
}

/* section */
section { padding: 60px 0; scroll-margin-top: 88px; }
.sec-head { text-align: center; max-width: 820px; margin: 0 auto 40px; }
.sec-head h2 {
  font-family: "Satoshi", sans-serif; font-weight: 550;
  font-size: clamp(24px, 3.6vw, 32px); text-wrap: balance;
}
/* keep the subtitle on one line on desktop; it wraps naturally on narrow screens */
.sec-head p { font-weight: 400; color: var(--muted); margin-top: 12px; font-size: 15.5px; }

/* feature grid: fixed 3 cols so 6 cards always read as 2 rows. cards touch
   edge to edge, square corners, borders collapsed into a single hairline.
   the -1px left margin collapses vertical borders between columns, so the
   first card in each row resets it to stay flush with .wrap's edge */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.feat {
  background: var(--card); border: 1px solid var(--border); border-radius: 0;
  margin: 0 0 -1px -1px;
  padding: 24px; position: relative; transition: border-color .15s;
}
.feat:nth-child(3n+1) { margin-left: 0; }
.feat .ic {
  width: 40px; height: 40px; border-radius: 0; display: grid; place-items: center;
  margin-bottom: 14px;
  background: color-mix(in srgb, var(--ink) 6%, transparent); color: var(--ink);
}
.feat .ic svg { width: 20px; height: 20px; }
.feat h3 { font-family: "Satoshi", sans-serif; font-size: 16px; font-weight: 550; text-wrap: balance; }
.feat p { font-weight: 400; color: var(--muted); font-size: 14px; margin-top: 8px; text-wrap: pretty; }

/* pricing: cards touch edge to edge, square corners, borders collapsed.
   no max-width of its own — matches .grid and .band at the .wrap width */
.plans {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  align-items: stretch;
}
.plan {
  display: flex; flex-direction: column; text-align: left;
  border: 1px solid var(--border); border-radius: 0; background: var(--card);
  margin-left: -1px;
  padding: 28px 26px; position: relative;
  transition: border-color .18s ease;
}
.plan:first-child { margin-left: 0; }
.plan-badge {
  position: absolute; top: 16px; right: 16px;
  font-family: "Satoshi", sans-serif; font-weight: 500; font-size: 14px;
  color: var(--bg);
  background: var(--ink); border-radius: 0; padding: 4px 10px;
}
.plan-name { font-family: "Satoshi", sans-serif; font-size: 18px; font-weight: 550; }
.plan-price { margin-top: 10px; display: flex; align-items: baseline; gap: 4px; }
.plan-price .amt { font-family: "Satoshi", sans-serif; font-size: 36px; font-weight: 550; }
.plan-price .per { color: var(--soft); font-weight: 400; font-size: 13px; }
.plan-cap { margin-top: 6px; color: var(--muted); font-weight: 400; font-size: 14.5px; }
.plan-list { list-style: none; margin: 20px 0 0; padding: 0; flex: 1; }
.plan-list li {
  display: flex; gap: 9px; align-items: flex-start;
  font-weight: 400; font-size: 15px; color: var(--ink); padding: 7px 0; line-height: 1.45;
  text-wrap: pretty;
}
.plan-list li .ck { color: var(--ink); flex: 0 0 auto; margin-top: 1px; font-weight: 550; }
.plan-list li.off { color: var(--soft); }
.plan-list li.off .ck { color: var(--soft); }
.plan .btn { margin-top: 22px; width: 100%; }
.plan-foot { text-align: center; color: var(--soft); font-weight: 400; font-size: 14px; margin-top: 26px; }

/* privacy band */
.band {
  background: var(--card); border: 1px solid var(--border); border-radius: 0;
  padding: 40px; text-align: center; margin: 0 auto;
}
.band h2 { font-family: "Satoshi", sans-serif; font-weight: 550; font-size: clamp(24px, 3.6vw, 32px); text-wrap: balance; }
.band p { font-weight: 400; font-size: 15.5px; color: var(--muted); margin: 14px auto 24px; max-width: 68ch; text-wrap: pretty; }
.band .cta { justify-content: center; }

footer {
  border-top: 1px solid var(--border); padding: 24px 0;
  color: var(--soft); font-weight: 400; font-size: 14px;
}
.foot-in { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-in a { color: var(--muted); }
.foot-in a:hover { color: var(--ink); }
.foot-in .sp { margin-left: auto; }

/* ── tablet ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .wrap { padding: 0 20px; }
  section { padding: 48px 0; }
  .hero { padding: 56px 0 48px; }
  /* stack: copy on top, illustration below, both centered */
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy { text-align: center; }
  .hero h1 { max-width: 16ch; margin: 0 auto; }
  .hero p.lede { max-width: 60ch; margin: 22px auto 0; }
  .cta { justify-content: center; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  /* the secondary nav links collapse; the logo and CTA stay */
  .nav-links a:not(.btn-primary) { display: none; }
  .band { padding: 32px 24px; }
  /* plans stack: featured first so it reads top on mobile */
  .plans { grid-template-columns: 1fr; max-width: 420px; }
  .plan { margin-left: 0; margin-top: -1px; }
  .plan:first-child { margin-top: 0; }
  .plan.featured { order: -1; }
  /* features drop to 2 cols: the 3-col first-column reset no longer
     applies at every third card, so re-pin it to every other card */
  .grid { grid-template-columns: repeat(2, 1fr); }
  .feat:nth-child(3n+1) { margin-left: -1px; }
  .feat:nth-child(2n+1) { margin-left: 0; }
}

/* ── phone ──────────────────────────────────────────────── */
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .nav-in { height: 56px; gap: 8px; }
  .logo b { font-size: 15px; }
  .mark { width: 20px; height: 20px; }
  .nav-links { gap: 8px; }
  .nav-links a.btn-primary { height: 32px; padding: 0 12px; margin-left: 0; font-size: 13px; }
  section { padding: 40px 0; scroll-margin-top: 76px; }
  .hero { padding: 40px 0 40px; min-height: calc(100vh - 56px); scroll-margin-top: 56px; }
  .hero-grid { gap: 32px; }
  .hero p.lede { font-size: 16px; }
  .sec-head { margin-bottom: 28px; }
  .sec-head p { font-size: 15px; }
  /* full-width stacked CTAs so they are easy to tap */
  .cta { flex-direction: column; align-items: stretch; }
  .feat { padding: 20px; }
  /* single column: no horizontal neighbor to collapse borders against */
  .grid { grid-template-columns: 1fr; gap: 0; }
  .feat { margin: 0 0 -1px 0; }
  .band { padding: 26px 18px; }
  /* footer reads as a clean stacked list, no auto-push */
  .foot-in { flex-direction: column; align-items: flex-start; gap: 8px; }
  .foot-in .sp { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
