:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050505;
  color: #18181b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--primary-color) 22%, transparent), transparent 31rem),
    radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--accent-color) 18%, transparent), transparent 27rem),
    linear-gradient(180deg, #111 0%, #050505 58%, #101010 100%);
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 56px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 34px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(43, 43, 43, .86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -.03em;
}
.brand img { width: 142px; max-height: 46px; object-fit: contain; }
.brand span { font-size: clamp(1.1rem, 2vw, 1.45rem); }

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  color: rgba(255, 255, 255, .78);
  font-size: .94rem;
}
.nav a,
.site-footer a {
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}
.nav a:hover,
.site-footer a:hover { color: #fff; transform: translateY(-1px); }

.top-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 2px solid var(--button-color);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 28px color-mix(in srgb, var(--button-color) 24%, transparent);
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.top-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: var(--button-color);
  color: #fff;
  box-shadow: 0 18px 36px color-mix(in srgb, var(--button-color) 36%, transparent);
}
.button-small { min-height: 40px; padding-inline: 18px; font-size: .94rem; }
.button-light { border-color: #fff; color: #fff; box-shadow: none; }
.button-light:hover { background: #fff; color: #111; }

main { display: grid; gap: 26px; }
.section { position: relative; }
.hero,
.panel,
.media-card,
.cta-band {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 32px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, .97fr);
  gap: 26px;
  align-items: stretch;
  padding: clamp(24px, 5vw, 56px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    linear-gradient(145deg, #151515, #202020 52%, #111);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
  overflow: hidden;
}
.hero.no-media { grid-template-columns: 1fr; }
.kicker {
  margin: 0 0 18px;
  color: color-mix(in srgb, var(--accent-color) 86%, white 14%);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}
.hero h1,
.hero h2,
.hero h3,
.hero h4 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.3rem, 5.8vw, 5rem);
  line-height: .96;
  letter-spacing: -.06em;
  overflow-wrap: anywhere;
  text-wrap: balance;
  hyphens: auto;
}
.hero p:not(.kicker) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}
.hero .button { margin-top: 28px; }
.hero-media {
  min-height: 320px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: radial-gradient(circle at 50% 15%, rgba(255,255,255,.18), transparent 40%), #2a2a2a;
  overflow: hidden;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .86fr);
  gap: 24px;
  align-items: stretch;
}
.split-reverse { grid-template-columns: minmax(280px, .86fr) minmax(0, 1fr); }
.split-reverse .panel { order: 2; }
.split.no-media { grid-template-columns: 1fr; }
.panel {
  padding: clamp(24px, 4vw, 42px);
  background: #f7f7f4;
  color: #202020;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}
.media-card {
  min-height: 260px;
  margin: 0;
  background: #2a2a2a;
  overflow: hidden;
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.table-panel h1,
.table-panel h2,
.table-panel h3,
.table-panel h4,
.faq h1,
.faq h2,
.faq h3,
.faq h4,
.cta-band h1,
.cta-band h2,
.cta-band h3,
.cta-band h4 {
  margin: 0 0 16px;
  color: #121212;
  line-height: 1.02;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
  text-wrap: balance;
  hyphens: auto;
}
.prose h1, .table-panel h1, .faq h1 { font-size: clamp(2rem, 4.5vw, 4rem); }
.prose h2, .table-panel h2, .faq h2 { font-size: clamp(1.85rem, 3.8vw, 3.25rem); }
.prose h3, .table-panel h3, .faq h3 { font-size: clamp(1.45rem, 3vw, 2.35rem); }
.prose h4, .table-panel h4, .faq h4 { font-size: clamp(1.18rem, 2vw, 1.65rem); }
.prose p,
.prose li,
.table-intro,
.faq p {
  color: #444;
  font-size: 1rem;
  line-height: 1.75;
}
.prose p:first-of-type { margin-top: 0; }
.prose ul,
.prose ol { padding-left: 1.3rem; }
.prose .button,
.panel .button { margin-top: 14px; color: var(--button-color); }
.prose .button:hover,
.panel .button:hover { color: #fff; }

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid #e4e4e0;
  background: #fff;
}
table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}
th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid #e9e9e4;
}
th {
  background: #111;
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
td { color: #333; }
tr:last-child td { border-bottom: 0; }

.faq details {
  margin-top: 12px;
  border: 1px solid #e2e2dc;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #171717;
  font-weight: 900;
}
.faq details p { margin: 0; padding: 0 20px 18px; }

.cta-band {
  padding: clamp(26px, 5vw, 48px);
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.16), transparent 34%),
    linear-gradient(135deg, var(--button-gradient-start), var(--button-gradient-end));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}
.cta-band h1,
.cta-band h2,
.cta-band h3,
.cta-band h4 { color: #fff; }
.cta-band p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: rgba(255,255,255,.84);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 24px 4px 0;
  color: rgba(255, 255, 255, .66);
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px; }
.site-footer p { margin: 0; }

.cookie-banner {
  position: fixed;
  z-index: 20;
  right: 18px;
  bottom: 18px;
  width: min(390px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(20,20,20,.94);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0,0,0,.36);
}
.cookie-banner p { margin: 0; color: rgba(255,255,255,.78); font-size: .86rem; line-height: 1.45; }
.cookie-banner button {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  font-weight: 900;
}

@media (max-width: 880px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; }
  .top-cta { width: 100%; }
  .hero,
  .split,
  .split-reverse { grid-template-columns: 1fr; }
  .split-reverse .panel { order: 0; }
  .hero-media,
  .media-card { min-height: 220px; }
  .cookie-banner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-shell { width: min(100% - 20px, 1180px); padding-top: 10px; }
  .site-header,
  .hero,
  .panel,
  .media-card,
  .cta-band { border-radius: 22px; }
  .brand img { width: 118px; }
  .nav { font-size: .88rem; }
}
