
:root {
  --bg: #0A0B0E;
  --bg-2: #111319;
  --text: #F2F0EC;
  --text-dim: #C9C7C2;
  --text-mute: #7A7873;
  --accent: #0d9488;
  --accent-glow: rgba(13,148,136,0.35);
  --accent-deep: #0b7e74;
  --accent-soft: rgba(13,148,136,0.14);
  --accent-dim: rgba(13,148,136,0.22);
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
  --max: 1180px;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(13,148,136,0.10), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(13,148,136,0.04), transparent 60%);
  background-attachment: fixed;
}
a { color: var(--accent); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: 0.78; }

.accent { color: var(--accent); }
.accent-italic { color: var(--accent); font-style: italic; font-family: var(--display); font-weight: 300; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
header.site {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: sticky;
  top: 0;
  background: rgba(10,11,14,0.96);
  backdrop-filter: blur(10px);
  z-index: 50;
}
.site-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brand { font-family: var(--display); font-size: 20px; letter-spacing: -0.01em; font-weight: 400; color: var(--text); }
nav.site { display: flex; gap: 28px; font-size: 13.5px; font-family: var(--sans); }
nav.site a { color: var(--text-dim); }
nav.site a:hover { color: var(--accent); opacity: 1; }
.cta-button {
  background: var(--accent);
  color: #0A0B0E;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, opacity .2s;
}
.cta-button:hover { transform: translateY(-1px); opacity: 1; }

/* Hero */
.hero { padding: 80px 0 60px; border-bottom: 1px solid var(--line); }
.kicker {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}
h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--text);
}
.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 0 32px;
}

/* Hero CTAs */
.cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.cta-secondary {
  border: 1px solid var(--line-2);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--sans);
}
.cta-secondary:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }

/* Sections */
section { padding: 64px 0; border-bottom: 1px solid var(--line); }
.section-header { margin-bottom: 36px; max-width: 720px; }

/* Differentiator grid */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.diff-card {
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  transition: background .25s, border-color .25s, transform .25s;
}
.diff-card:hover { background: var(--accent-dim); border-color: var(--accent); transform: translateY(-2px); }
.diff-card h3 { color: var(--text); margin-bottom: 10px; }
.diff-card p { color: var(--text-dim); font-size: 14.5px; line-height: 1.55; margin: 0; }
.diff-card .diff-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--accent);
}

/* Funnel CTA band */
.funnel {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.funnel h2 { margin-bottom: 18px; }
.funnel p { color: var(--text-dim); max-width: 640px; margin: 0 auto 28px; font-size: 16.5px; }
.funnel .cta-button { font-size: 15px; padding: 14px 30px; }

/* Compliance footer */
footer.site {
  padding: 48px 0 36px;
  background: var(--bg);
  font-size: 13px;
  color: var(--text-mute);
}
footer.site .compliance {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 22px 26px;
  margin-bottom: 28px;
  max-width: 880px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-dim);
}
footer.site .compliance strong { color: var(--text); }
footer.site .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
footer.site nav.foot { display: flex; gap: 22px; flex-wrap: wrap; font-size: 12.5px; }
footer.site nav.foot a { color: var(--text-mute); }
footer.site nav.foot a:hover { color: var(--accent); opacity: 1; }
footer.site .copy { font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; }

/* Prose */
.prose { max-width: 760px; margin: 0 auto; padding: 24px 0; }
.prose p { font-size: 16px; line-height: 1.7; color: var(--text-dim); margin: 0 0 16px; }
.prose h2 { margin-top: 36px; text-align: center; }
.prose h3 { margin-top: 28px; }
.prose ul { padding-left: 24px; color: var(--text-dim); }
.prose ul li { margin-bottom: 8px; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item h3 { font-family: var(--sans); font-size: 17px; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.faq-item p { color: var(--text-dim); font-size: 15px; line-height: 1.65; margin: 0; }

/* Mobile */
@media (max-width: 720px) {
  .hero { padding: 56px 0 44px; }
  section { padding: 48px 0; }
  nav.site { width: 100%; justify-content: center; gap: 18px; }
  .site-row { flex-direction: column; gap: 14px; }
}

/* === v3 additions: skip-to-content + cookie banner === */
.skip-to-content {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent, #0d9488); color: #fff;
  padding: 12px 20px; z-index: 1000;
  text-decoration: none; font-weight: 500;
}
.skip-to-content:focus { left: 12px; top: 12px; outline: 3px solid #fff; }
*:focus-visible { outline: 2px solid var(--accent, #0d9488); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
#lal-cc {
  position: fixed; bottom: 16px; right: 16px; max-width: 380px;
  background: #15131a; color: #f3f1ee; padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; z-index: 999;
  font-size: 14px; line-height: 1.5;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
#lal-cc p { margin: 0 0 12px 0; }
#lal-cc a { color: var(--accent, #0d9488); }
#lal-cc .lal-cc-actions { display: flex; gap: 8px; }
#lal-cc button {
  flex: 1; padding: 8px 12px; font-size: 13px; font-family: inherit;
  border: 1px solid rgba(255,255,255,0.18); background: transparent;
  color: #f3f1ee; cursor: pointer; border-radius: 4px;
}
#lal-cc button[data-action="accept"] {
  background: var(--accent, #0d9488); border-color: transparent; color: #15131a; font-weight: 500;
}
#lal-cc button:focus-visible { outline: 2px solid #fff; outline-offset: 1px; }
@media (max-width: 480px) {
  #lal-cc { left: 16px; right: 16px; max-width: none; }
}
