:root {
  --bg: #050506;
  --surface: #0d0f13;
  --surface-raised: #13161d;
  --border: #262b35;
  --border-strong: #eef1f5;
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --accent: #ff2d6f;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -8%, rgba(255,45,111,0.14), transparent 36%),
    linear-gradient(180deg, #050506 0%, #08090d 52%, #050506 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.page {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 54px;
}
.nav {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.mark {
  width: 28px;
  height: 24px;
  color: var(--accent);
  filter: drop-shadow(2px 2px 0 #000);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.lang-switch {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(13,15,19,0.82);
  overflow: hidden;
}
.lang-switch select {
  height: 36px;
  min-width: 118px;
  padding: 0 32px 0 12px;
  border: 0;
  color: var(--text);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23cbd5e1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  outline: none;
}
.lang-switch select option {
  color: var(--text);
  background: var(--surface);
}
.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(13,15,19,0.82);
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.hero {
  margin: 30px 0 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 2px solid var(--border-strong);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,45,111,0.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012)),
    rgba(13,15,19,0.94);
  box-shadow: 6px 6px 0 #000, 0 28px 70px rgba(0,0,0,0.42);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}
.lead {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--soft);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
}
.meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}
.section {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(13,15,19,0.86);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.44);
}
h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}
h3 {
  margin: 16px 0 8px;
  font-size: 15px;
}
p, li {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.65;
}
p { margin: 0 0 10px; }
ul {
  margin: 8px 0 0;
  padding-left: 20px;
}
.note {
  color: var(--muted);
  font-size: 12px;
}
.callout {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,45,111,0.28);
  border-radius: 12px;
  background: rgba(255,45,111,0.08);
}
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.link-list a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(5,5,6,0.46);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}
.footer {
  width: min(960px, 100%);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 42px 0 18px;
  border-top: 2px solid var(--border);
  color: var(--text);
  font-size: 12px;
}
.footer p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.footer h4 {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer a {
  display: block;
  margin: 8px 0;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  min-height: 0;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 950;
  letter-spacing: -0.04em;
}
.cookie-mark {
  width: 28px;
  height: 24px;
  color: var(--accent);
  filter: drop-shadow(2px 2px 0 #000);
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  color: var(--soft);
  transition: color 0.16s, transform 0.16s;
}
.footer-social a:hover { color: var(--text); transform: translateY(-1px); }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 720px) {
  .footer { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .page { width: min(100% - 24px, 1040px); padding-top: 16px; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { width: 100%; }
  .nav-links a { flex: 1; }
}
