:root {
  --c-red: #D71126;
  --c-red-soft: #ff2e44;
  --c-navy: #013068;
  --c-navy-deep: #001a3a;
  --c-blue: #0051C6;
  --c-green: #1FC478;
  --c-cream: #F5F1E8;
  --c-paper: #FFFFFF;
  --c-ink: #0A0F1F;
  --c-mute: #6B7280;
  --c-line: rgba(10, 15, 31, 0.08);

  --f-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --f-body: 'Geist', system-ui, sans-serif;
  --f-mono: 'Geist Mono', 'SF Mono', monospace;

  --max: 1400px;
  --max-narrow: 820px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--c-red); color: white; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--c-red);
  color: white;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pill-tag.outline { background: transparent; border: 1.5px solid currentColor; color: var(--c-ink); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform .3s cubic-bezier(.5,0,.2,1), background .3s ease, color .3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-arrow { display: inline-block; transition: transform .3s cubic-bezier(.5,0,.2,1); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.status-bar {
  background: var(--c-ink);
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
}
.status-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.status-bar-inner .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-green);
}
.status-bar-inner .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  animation: pulse-dot 1.6s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(31,196,120,0.6); }
  100% { box-shadow: 0 0 0 9px rgba(31,196,120,0); }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(10, 15, 31, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-navy);
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 24, "wght" 600;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.nav-logo-text small {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 4px;
  background: rgba(10,15,31,0.04);
  padding: 5px;
  border-radius: 999px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  transition: all .25s ease;
}
.nav-links a:hover {
  background: white;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.08);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 10px 20px;
  background: var(--c-ink);
  color: white;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  transition: all .25s ease;
}
.nav-cta-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(.5,0,.2,1);
}
.nav-cta:hover { background: var(--c-navy); }
.nav-cta:hover .nav-cta-arrow { transform: rotate(-45deg); }
@media (max-width: 920px) { .nav-links { display: none; } }

/* ───── LEGAL HERO ───── */
.legal-hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(50px, 8vw, 90px);
  background: var(--c-cream);
  overflow: hidden;
  isolation: isolate;
}
.legal-hero::before,
.legal-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.legal-hero::before {
  width: 380px;
  height: 380px;
  top: -10%;
  right: -5%;
  background: var(--c-green);
  border-radius: 71% 29% 41% 59% / 59% 43% 57% 41%;
  opacity: 0.08;
}
.legal-hero::after {
  width: 460px;
  height: 460px;
  bottom: -25%;
  left: -10%;
  background: var(--c-blue);
  border-radius: 41% 59% 70% 30% / 43% 45% 55% 57%;
  opacity: 0.06;
}
.legal-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-narrow);
  margin: 0 auto;
}
.legal-hero .pill-tag {
  margin-bottom: 26px;
}
.legal-hero h1 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.legal-hero h1 em {
  font-style: italic;
  color: var(--c-green);
  font-variation-settings: "opsz" 96, "wght" 400;
  text-transform: lowercase;
  letter-spacing: -0.04em;
}
.legal-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.legal-meta::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

/* ───── LEGAL ARTICLE ───── */
.legal-article {
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 12vw, 140px);
  background: var(--c-cream);
}
.legal-article-intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--c-ink);
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-line);
}
.legal-article-intro strong {
  color: var(--c-navy);
  font-weight: 600;
}
.legal-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--c-line);
}
.legal-section:last-of-type { border-bottom: none; }
.legal-section h2 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 48, "wght" 500;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--c-ink);
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.legal-section h2 .legal-num {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--c-green);
  text-transform: uppercase;
  flex-shrink: 0;
}
.legal-section h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 24, "wght" 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 24px 0 10px;
  color: var(--c-ink);
}
.legal-section p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong {
  font-weight: 600;
  color: var(--c-navy);
}
.legal-section a {
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s ease;
}
.legal-section a:hover { color: var(--c-red); }
.legal-section ul, .legal-section ol {
  margin: 14px 0 14px 22px;
  font-size: 16px;
  line-height: 1.65;
}
.legal-section li { margin-bottom: 6px; }

.identity-block {
  background: white;
  border-radius: 16px;
  padding: 24px 28px;
  margin: 18px 0;
  border: 1px solid var(--c-line);
}
.identity-block dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 4px;
}
.identity-block dd {
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 16px;
  color: var(--c-ink);
}
.identity-block dd:last-child { margin-bottom: 0; }
.identity-block dd strong { color: var(--c-navy); font-weight: 600; }
.identity-block dd code {
  font-family: var(--f-mono);
  font-size: 13.5px;
  background: var(--c-cream);
  padding: 2px 6px;
  border-radius: 4px;
}

.placeholder {
  display: inline-block;
  background: rgba(215,17,38,0.08);
  color: var(--c-red);
  padding: 1px 8px;
  border-radius: 4px;
  font-family: var(--f-mono);
  font-size: 0.92em;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Rights highlight box */
.rights-box {
  background: var(--c-navy);
  color: var(--c-cream);
  border-radius: 24px;
  padding: 32px 36px;
  margin: 18px 0;
  position: relative;
  overflow: hidden;
}
.rights-box-eyebrow {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.rights-box-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--c-green);
}
.rights-box h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 48, "wght" 500;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: white !important;
  margin-bottom: 18px !important;
  text-transform: uppercase;
}
.rights-box ol {
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  counter-reset: rights;
}
@media (max-width: 600px) { .rights-box ol { grid-template-columns: 1fr; } }
.rights-box li {
  counter-increment: rights;
  padding-left: 36px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
}
.rights-box li::before {
  content: counter(rights, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--c-green);
}
.rights-box li strong {
  color: white !important;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* Cookie info card */
.cookie-card {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 14px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.cookie-card .cookie-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.cookie-card .cookie-name {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 24, "wght" 500;
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--c-ink);
}
.cookie-card .cookie-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-mute);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  padding: 14px 22px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  transition: all .25s ease;
}
.legal-back:hover {
  background: var(--c-ink);
  color: white;
  border-color: var(--c-ink);
}
.legal-back-arrow { display: inline-block; transition: transform .3s ease; }
.legal-back:hover .legal-back-arrow { transform: translateX(-4px); }

/* ───── FOOTER ───── */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.footer-mega {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
.footer-mega-text {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(60px, 14vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: white;
  text-transform: uppercase;
}
.footer-mega-text em {
  font-style: italic;
  color: var(--c-green);
  font-variation-settings: "opsz" 96, "wght" 400;
  text-transform: lowercase;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255,255,255,0.55);
  margin-top: 18px;
}
.footer h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 14px; }
.footer li a { transition: color .2s ease; }
.footer li a:hover { color: var(--c-green); }
.footer-bottom {
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.footer-bottom a { transition: color .2s ease; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom a.active { color: var(--c-green); }

.footer-partner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}
.footer-partner-eyebrow {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-partner-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  display: inline-block;
}
.footer-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  transition: background .25s ease, border-color .25s ease, transform .25s cubic-bezier(.5,0,.2,1);
}
.footer-partner-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.footer-partner-logo {
  background: white;
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  height: 40px;
  flex-shrink: 0;
}
.footer-partner-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.footer-partner-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.footer-partner-label {
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-partner-name {
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: white;
}
.footer-partner-arrow {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-left: 4px;
  transition: transform .25s cubic-bezier(.5,0,.2,1);
}
.footer-partner-link:hover .footer-partner-arrow {
  transform: translate(3px, -3px);
  color: var(--c-green);
}
@media (max-width: 600px) {
  .footer-partner-row { justify-content: flex-start; }
  .footer-partner-eyebrow::before { display: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
img.logo {
    width: 180px;
}