:root{
  --bg0:#07090d;
  --bg1:#0b0e12;
  --bg2:#0f141b;
  --ink:#e9eef6;
  --muted:#a5b4c7;
  --faint:#6d7f97;
  --line:rgba(255,255,255,.10);
  --card:rgba(15,20,27,.72);
  --card2:rgba(12,16,22,.62);

  --accent:#c7ff4a;        /* electric lime */
  --accent2:#ffb86b;       /* warm ember */
  --danger:#ff5c7a;

  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;

  --fontDisplay: "Fraunces", ui-serif, Georgia, serif;
  --fontBody: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --fontMono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*{box-sizing:border-box}
html{height:100%; color-scheme:dark; scroll-behavior:smooth}
body{height:100%; overflow-x:hidden}
body{
  margin:0;
  background: radial-gradient(1200px 900px at 18% 18%, rgba(199,255,74,.12), transparent 55%),
              radial-gradient(900px 700px at 82% 24%, rgba(255,184,107,.10), transparent 60%),
              linear-gradient(180deg, var(--bg0), var(--bg1) 22%, var(--bg2));
  color:var(--ink);
  font-family:var(--fontBody);
  letter-spacing:.2px;
}

a{color:inherit}

button, a, summary{touch-action:manipulation; -webkit-tap-highlight-color:rgba(199,255,74,.2)}

.skipLink{position:absolute; left:16px; top:8px; z-index:10; padding:10px 14px; border-radius:10px; background:var(--accent); color:#101215; font-weight:700; transform:translateY(-160%)}
.skipLink:focus-visible{transform:translateY(0)}

.bg{position:fixed; inset:0; pointer-events:none; z-index:-1}
.mesh{position:absolute; inset:-120px; opacity:.55;
  background:
    radial-gradient(800px 560px at 25% 20%, rgba(199,255,74,.13), transparent 60%),
    radial-gradient(700px 520px at 70% 30%, rgba(255,184,107,.10), transparent 60%),
    radial-gradient(980px 720px at 60% 85%, rgba(115,170,255,.10), transparent 60%);
  filter: blur(18px);
}
.grain{position:absolute; inset:0; opacity:.12;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.top{
  max-width:1120px;
  margin:0 auto;
  padding:24px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.mark{width:14px; height:14px; border-radius:6px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 3px rgba(199,255,74,.10), 0 10px 30px rgba(199,255,74,.10);
}
.mark.small{width:10px; height:10px; border-radius:4px}
.word{font-weight:700; letter-spacing:.6px}

.nav{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.navlink{font-size:14px; color:var(--muted); text-decoration:none; padding:10px 10px; border-radius:10px}
.navlink:hover{color:var(--ink); background:rgba(255,255,255,.04)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--line);
  background:transparent;
  color:var(--ink);
  border-radius:14px;
  padding:10px 14px;
  text-decoration:none;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  font-weight:600;
}
.btn:hover{transform: translateY(-1px)}
a:focus-visible, button:focus-visible, summary:focus-visible{outline:3px solid var(--accent); outline-offset:3px}
.btn.big{padding:14px 18px; border-radius:16px; font-size:15px}

.btn.solid{
  background: linear-gradient(135deg, rgba(199,255,74,.95), rgba(255,184,107,.92));
  color:#101215;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 16px 40px rgba(199,255,74,.12);
}
.btn.solid:hover{box-shadow: 0 18px 55px rgba(199,255,74,.18)}

.btn.ghost{background: rgba(255,255,255,.04)}
.btn.ghost:hover{background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14)}

main{max-width:1120px; margin:0 auto; padding:18px 22px 64px}

.hero{display:grid; grid-template-columns: 1.15fr .85fr; gap:26px; align-items:start; padding-top:18px}

.kicker{margin:0 0 14px; color:var(--muted); font-size:13px; letter-spacing:.9px; text-transform:uppercase; display:flex; align-items:center; gap:10px}
.dot{width:8px; height:8px; border-radius:4px; background:var(--accent); box-shadow:0 0 0 3px rgba(199,255,74,.10)}

h1{
  margin:0 0 12px;
  font-family:var(--fontDisplay);
  font-size: clamp(40px, 4.3vw, 64px);
  line-height:1.02;
}

.underline{position:relative; display:inline-block}
.underline:after{
  content:"";
  position:absolute;
  left:-2px; right:-2px;
  bottom:8px;
  height:10px;
  background: linear-gradient(90deg, rgba(199,255,74,.35), rgba(255,184,107,.25));
  border-radius:999px;
  transform: skewX(-10deg);
  z-index:-1;
}

.sub{margin:0; color:var(--muted); font-size:18px; line-height:1.55; max-width:56ch}

.ctaRow{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}

.fine{display:flex; gap:8px; flex-wrap:wrap; margin-top:16px}
.pill{font-family:var(--fontMono); font-size:12px; color:rgba(233,238,246,.86);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:7px 10px; border-radius:999px;
}

.heroPanel{
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(15,20,27,.78), rgba(12,16,22,.62));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.panelHead{padding:16px 16px 12px; border-bottom:1px solid rgba(255,255,255,.08)}
.panelTitle{font-weight:700; letter-spacing:.4px}
.panelMeta{margin-top:8px; display:flex; gap:6px; flex-wrap:wrap}
.chip{font-size:11px; color:var(--muted); border:1px solid rgba(255,255,255,.10); padding:5px 8px; border-radius:999px; background:rgba(255,255,255,.03)}

.panelHint{padding:18px 16px; color:var(--muted); font-size:14px}
.panelBody{padding:14px 16px 16px}

.row{display:flex; align-items:center; justify-content:space-between; gap:16px}
.who .name{font-weight:700}
.who .meta{font-family:var(--fontMono); font-size:12px; color:var(--faint); margin-top:4px}

.scores{display:flex; gap:8px}
.score{width:38px; height:34px; display:flex; align-items:center; justify-content:center;
  border-radius:12px; font-family:var(--fontMono); font-weight:600; border:1px solid rgba(255,255,255,.12);
}
.score.a{background: rgba(199,255,74,.10); color: var(--accent)}
.score.b{background: rgba(255,184,107,.08); color: var(--accent2)}
.score.c{background: rgba(115,170,255,.08); color: #89b4ff}

.notes{margin:10px 0 14px; padding:10px 12px; border-radius:14px;
  border:1px dashed rgba(255,255,255,.12);
  color: var(--muted);
  font-size:13px;
  line-height:1.45;
}

.panelFoot{display:flex; align-items:center; justify-content:space-between; gap:12px; padding-top:8px}
.mono{font-family:var(--fontMono); font-size:12px; color: var(--faint)}
.textLink{color: var(--accent); text-decoration:none; font-weight:700}
.textLink:hover{text-decoration:underline}

section{margin-top:44px}
section[id]{scroll-margin-top:24px}
section h2{margin:0 0 18px; font-size:22px; letter-spacing:.3px}
h1, h2, h3{ text-wrap:balance }

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px}
.grid4{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}

.sectionLead{margin:-8px 0 18px; color:var(--muted)}

.card.price{display:flex; flex-direction:column}
.card.price .amount{
  margin:0 0 14px;
  font-family:var(--fontDisplay);
  font-size:30px;
  color:var(--ink);
  line-height:1.1;
}
.card.price .per{font-family:var(--fontSans); font-size:14px; color:var(--muted); margin-left:2px}
.card.price ul{margin:0 0 16px; padding-left:18px; color:var(--muted); line-height:1.65; flex:1}
.card.price .btn{width:100%; justify-content:center}
.card.price.featured{
  border-color: rgba(199,255,74,.35);
  background: linear-gradient(135deg, rgba(199,255,74,.07), rgba(255,255,255,.03));
}

.card, .bigCard{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:18px;
}

.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.55}
.n{font-family:var(--fontMono); color:var(--accent); margin-right:8px}

.bigCard h3{margin:0 0 10px; font-size:18px}
.bigCard p{margin:0 0 14px; color:var(--muted); line-height:1.6}
.bigCard ul{margin:0 0 14px; padding-left:18px; color:var(--muted); line-height:1.65}
.bigCard.alt{background: rgba(255,255,255,.02)}

.faq details{border:1px solid rgba(255,255,255,.10); border-radius:14px; padding:14px 14px; background: rgba(255,255,255,.02)}
.faq details+details{margin-top:10px}
.faq summary{cursor:pointer; font-weight:700}
.faq p{margin:10px 0 0; color:var(--muted); line-height:1.55}

.final{margin-top:54px}
.finalInner{
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(199,255,74,.08), rgba(255,184,107,.06));
  border-radius: calc(var(--radius) + 6px);
  padding:22px;
  text-align:center;
}
.finalInner h2{margin:0 0 8px; font-family:var(--fontDisplay); font-size:34px}
.finalInner p{margin:0 0 16px; color:var(--muted)}
.tiny{margin-top:12px; font-size:13px}

.foot{margin-top:46px; padding-top:16px; border-top:1px solid rgba(255,255,255,.08); color:var(--muted)}
.footRow{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footLinks{display:flex; gap:14px}
.footLinks a{color:var(--muted); text-decoration:none}
.footLinks a:hover{color:var(--ink)}
.footFine{margin-top:10px; font-size:12px; color:var(--faint)}

@media (max-width: 980px){
  .hero{grid-template-columns: 1fr;}
}

@media (max-width: 980px){
  .grid4{grid-template-columns: repeat(2, 1fr)}
}

@media (max-width: 720px){
  .navlink{display:none}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .grid4{grid-template-columns: 1fr}
  .finalInner h2{font-size:28px}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn{transition:none}
  .btn:hover{transform:none}
  .mesh{filter:none}
}

/* Legal pages: long-form prose, narrower measure than the marketing grid. */
.legal{max-width:720px; padding-top:32px}
.legal h1{font-family:var(--fontDisplay); font-size:36px; margin:0 0 6px}
.legal h2{margin:28px 0 8px; font-size:18px}
.legal p{color:var(--muted); line-height:1.7; margin:0 0 12px}
.legal ul{color:var(--muted); line-height:1.7; margin:0 0 12px; padding-left:20px}
.legal li{margin-bottom:6px}
.legal code{font-family:var(--fontMono); font-size:.9em}
.legal strong{color:var(--ink)}

/* Sub-processors, lawful bases and retention periods read as tables, not as
   paragraphs - a reader checking one row should not have to parse five. The
   wrapper scrolls rather than the page, so a three-column table survives a
   360px viewport without forcing the whole document sideways. */
.legalTable{
  width:100%;
  margin:0 0 16px;
  border-collapse:collapse;
  display:block;
  overflow-x:auto;
  font-size:14px;
}
.legalTable th, .legalTable td{
  border:1px solid rgba(255,255,255,.10);
  padding:9px 11px;
  text-align:left;
  vertical-align:top;
  line-height:1.55;
  color:var(--muted);
  min-width:150px;
}
.legalTable th{
  color:var(--ink);
  font-weight:600;
  background:rgba(255,255,255,.03);
  white-space:nowrap;
}
