/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* ===== TOKENS ===== */
:root {
  --black:      #04050a;
  --surface:    #0b0d14;
  --surface2:   #10131d;
  --surface3:   #161b27;
  --glass:      rgba(255,255,255,0.035);
  --glass-b:    rgba(255,255,255,0.07);

  --ice:        #7dd3fc;
  --ice-bright: #bae6fd;
  --ice-dim:    rgba(125, 211, 252, 0.10);
  --ice-glow:   rgba(125, 211, 252, 0.18);
  --ice-border: rgba(125, 211, 252, 0.16);

  --text:       #f0f9ff;
  --text-2:     #94a3b8;
  --text-3:     #475569;

  --red-soft:   rgba(248, 113, 113, 0.12);
  --red-border: rgba(248, 113, 113, 0.25);

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.4);
  --shadow:     0 8px 40px rgba(0,0,0,0.6);
  --shadow-ice: 0 0 60px rgba(125,211,252,0.08);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ===== BASE ===== */
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain overlay for premium texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.45;
}

a { color: var(--ice); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ice-bright); }
img { max-width: 100%; height: auto; display: block; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--text);
  font-weight: 400;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p { color: var(--text-2); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ice);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 7rem 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--ice);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--ice-bright);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(125, 211, 252, 0.35);
}

.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  transform: translateY(-2px);
  border-color: var(--ice-border);
}

/* ===== AGE GATE ===== */
#age-gate {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
}

#age-gate::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(125,211,252,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.age-gate-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.age-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  margin: 0 auto 2rem;
  overflow: hidden;
  border: 1px solid var(--glass-b);
}

.age-logo img { width: 100%; height: 100%; object-fit: cover; }

.age-gate-box h2 {
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
}

.age-gate-box p {
  font-size: 0.9rem;
  color: var(--text-2);
  max-width: 300px;
  margin: 0 auto 2.5rem;
}

.age-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.age-btns .btn { width: 100%; justify-content: center; }

.btn-age-no {
  background: transparent;
  color: var(--text-3);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.btn-age-no:hover { color: var(--text-2); border-color: rgba(255,255,255,0.12); }

.age-legal {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 2rem;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0;
  transition: all 0.4s var(--ease);
}

#navbar.scrolled {
  background: rgba(4, 5, 10, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--glass);
}

.nav-cta { margin-left: 0.5rem; }
.nav-cta .btn { padding: 0.55rem 1.25rem; font-size: 0.825rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--text);
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(4, 5, 10, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-b);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    gap: 0.15rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 1rem; border-radius: var(--radius-sm); width: 100%; }
  .nav-cta { margin-left: 0; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
}

/* ===== HERO ===== */
#hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

/* Ambient glow blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-blob-1 {
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(125,211,252,0.09) 0%, transparent 70%);
  top: -10%; right: -5%;
}
.hero-blob-2 {
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(165,180,252,0.06) 0%, transparent 70%);
  bottom: 5%; left: -8%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  padding: 0 2rem;
}

.hero-eyebrow { margin-bottom: 1.5rem; }

.hero-title {
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title em {
  font-style: italic;
  color: var(--ice);
  display: block;
}

.hero-body {
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-b);
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  backdrop-filter: blur(10px);
}

.hero-pill .pill-val {
  font-weight: 700;
  color: var(--ice);
}

/* Hero image */
.hero-visual {
  position: relative;
}

.hero-visual-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--ice-border);
  box-shadow: var(--shadow), var(--shadow-ice);
}

.hero-visual-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.hero-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,5,10,0.5) 0%, transparent 50%);
}

.hero-chip {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(4, 5, 10, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-chip-text { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.hero-chip-sub { font-size: 0.75rem; color: var(--text-2); margin-top: 0.1rem; }

.hero-chip-badge {
  background: var(--ice-dim);
  border: 1px solid var(--ice-border);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ice);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
  .hero-visual-frame img { aspect-ratio: 4/3; }
}

/* ===== SECTION HEADER ===== */
.sec-head {
  margin-bottom: 4rem;
}
.sec-head.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec-head .eyebrow { margin-bottom: 1.25rem; }
.sec-head h2 { margin-bottom: 1rem; }
.sec-head p { color: var(--text-2); max-width: 520px; font-size: 1.05rem; }

/* ===== MARQUEE STRIP ===== */
.strip {
  overflow: hidden;
  border-top: 1px solid var(--glass-b);
  border-bottom: 1px solid var(--glass-b);
  padding: 1rem 0;
  background: var(--surface);
}

.strip-track {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

.strip-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ice);
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== FEATURES ===== */
#features {
  background: var(--surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-b);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feat-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.feat-card:hover {
  background: var(--surface2);
}

.feat-icon {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  display: block;
}

.feat-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feat-card p { font-size: 0.875rem; color: var(--text-2); margin: 0; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ===== PRODUCT ===== */
#produkte {
  position: relative;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.product-gallery img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  border: 1px solid var(--glass-b);
  transition: transform 0.5s var(--ease-out);
}

.product-gallery img:hover { transform: scale(1.02); }

.product-gallery img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  border-color: var(--ice-border);
  box-shadow: var(--shadow-ice);
}

.product-gallery img:not(:first-child) {
  aspect-ratio: 1;
}

.product-info .eyebrow { margin-bottom: 1.25rem; }
.product-info h2 { margin-bottom: 1rem; }

.product-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-2);
}

.spec-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--ice-dim);
  border: 1px solid var(--ice-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ice);
  font-size: 0.65rem;
  margin-top: 0.15rem;
}

.alcohol-warning {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  color: #fca5a5;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* ===== ORDER ===== */
#bestellung {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

#bestellung::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(125,211,252,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s;
}

.glass-card:hover { border-color: var(--ice-border); }

.card-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 1.75rem;
}

.steps { display: flex; flex-direction: column; gap: 1.5rem; }

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-n {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ice-dim);
  border: 1px solid var(--ice-border);
  color: var(--ice);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.step-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.step p { font-size: 0.825rem; color: var(--text-2); margin: 0; }

.contacts { display: flex; flex-direction: column; gap: 1.1rem; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--ice-dim);
  border: 1px solid var(--ice-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.c-label { font-size: 0.72rem; color: var(--text-3); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.c-val { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.c-val a { color: var(--text); }
.c-val a:hover { color: var(--ice); }

.payment-note {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-b);
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.7;
}

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

/* ===== TEAM ===== */
#team { }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 760px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
}

.team-card:hover {
  border-color: var(--ice-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow), var(--shadow-ice);
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.team-body {
  padding: 1.5rem;
  border-top: 1px solid var(--glass-b);
}

.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 0.5rem;
}

.team-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.team-body p { font-size: 0.85rem; color: var(--text-2); margin: 0; }

@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; max-width: 380px; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--surface);
  border-top: 1px solid var(--glass-b);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--glass-b);
}

.footer-brand .nav-logo-name { font-size: 1.4rem; display: block; margin-bottom: 1rem; }

.footer-brand p { font-size: 0.875rem; color: var(--text-2); max-width: 260px; line-height: 1.7; }

.footer-brand .social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--glass-b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s;
  color: var(--text-2);
}

.social-link:hover {
  background: var(--ice-dim);
  border-color: var(--ice-border);
  color: var(--ice);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  flex-wrap: wrap;
}

.footer-copy { font-size: 0.78rem; color: var(--text-3); }

.age-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #f87171;
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(125,211,252,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.legal-hero .eyebrow { margin-bottom: 1.25rem; }
.legal-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.75rem; }
.legal-hero p { color: var(--text-2); font-size: 0.95rem; }

.legal-wrap {
  max-width: 740px;
  padding-bottom: 8rem;
}

.legal-sec {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--glass-b);
}

.legal-sec:last-of-type { border-bottom: none; }

.legal-sec h2 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.legal-sec h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-sec p, .legal-sec li {
  font-size: 0.925rem;
  color: var(--text-2);
  line-height: 1.85;
}

.legal-sec ul, .legal-sec ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.legal-sec a { color: var(--ice); }

.legal-info-box {
  background: var(--glass);
  border: 1px solid var(--ice-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}

.legal-info-box p { font-size: 0.875rem; color: var(--text-2); margin: 0; }
.legal-info-box strong { color: var(--text); }

.legal-warn {
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  font-size: 0.875rem;
  color: #fca5a5;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.legal-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* ===== DIVIDER ===== */
.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-b) 20%, var(--glass-b) 80%, transparent);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ice-border); }
