:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #111114;
  --surface-raised: #18181d;
  --text: #f8f8fa;
  --muted: #a4a4ad;
  --hairline: rgba(255, 255, 255, 0.12);
  --red: #ff3048;
  --blue: #4468ff;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 16% -8%, rgba(255, 48, 72, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(68, 104, 255, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-underline-offset: 0.2em; }
a:hover { color: white; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  color: black;
  transition: top 160ms ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand-mark { position: relative; width: 30px; height: 30px; display: inline-block; }
.brand-mark i, .brand-mark b {
  position: absolute;
  inset: 4px 9px 4px 3px;
  display: block;
  border-radius: 7px;
  background: var(--red);
  transform: rotate(-8deg);
}
.brand-mark b { inset: 4px 3px 4px 9px; background: var(--blue); transform: rotate(8deg); }
nav { display: flex; align-items: center; gap: 22px; }
nav a { color: var(--muted); font-size: 14px; font-weight: 650; text-decoration: none; }
nav .language {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--text);
}

main { overflow: hidden; }
.hero, .section, footer { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.hero {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 88px 0 108px;
  text-align: center;
}
.hero-art { position: relative; width: 172px; height: 138px; margin-bottom: 24px; }
.card {
  position: absolute;
  width: 104px;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 25px;
  box-shadow: 0 24px 54px rgba(0,0,0,0.45), inset 0 1px rgba(255,255,255,0.2);
  font-size: 54px;
  font-weight: 900;
}
.card-red { left: 8px; top: 0; background: linear-gradient(145deg, #ff6174, #e91630); transform: rotate(-10deg); }
.card-blue { right: 8px; top: 4px; background: linear-gradient(145deg, #6783ff, #2949db); transform: rotate(10deg); }
.card span { filter: drop-shadow(0 4px 10px rgba(0,0,0,0.22)); }
.eyebrow {
  margin: 0 0 12px;
  color: #c1c1c9;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(52px, 8.2vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}
.hero-copy { max-width: 650px; margin: 30px auto 0; color: var(--muted); font-size: clamp(18px, 2.2vw, 23px); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.trust-row span {
  padding: 9px 15px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: #d5d5dc;
  font-size: 13px;
  font-weight: 700;
}

.section { padding: 104px 0; border-top: 1px solid var(--hairline); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading h2 { margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: 1; letter-spacing: -0.055em; }
.section-heading > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: clamp(17px, 2vw, 21px); }
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: min(100%, 350px);
  margin-bottom: 38px;
  padding: 17px 20px;
  border-radius: 999px;
  background: white;
  color: black;
  font-weight: 800;
  text-decoration: none;
}
.primary-link:hover { color: black; background: #e9e9ed; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.info-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--hairline);
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
}
.info-card h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -0.02em; }
.info-card p { margin: 0; color: var(--muted); }
.info-card a { display: inline-block; margin-top: 14px; font-weight: 700; }

.legal-body {
  max-width: 840px;
  padding: 44px;
  border: 1px solid var(--hairline);
  border-radius: 36px;
  background: var(--surface);
}
.legal-body h3 { margin: 40px 0 8px; font-size: 23px; letter-spacing: -0.025em; }
.legal-body h3:first-child { margin-top: 0; }
.legal-body p { margin: 0 0 15px; color: #b9b9c1; }
.legal-body a { color: white; font-weight: 650; }

.credit-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.credit-list article { padding: 26px; border: 1px solid var(--hairline); border-radius: 26px; background: var(--surface); }
.credit-list h3 { margin: 0 0 8px; }
.credit-list p { min-height: 82px; margin: 0 0 14px; color: var(--muted); }
.credit-list a { font-weight: 700; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 52px;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 14px;
}
footer div { display: flex; gap: 22px; }
footer a { text-decoration: none; }

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-header { padding: 14px 18px; }
  nav { gap: 12px; }
  nav a:not(.language) { display: none; }
  .hero, .section, footer { width: min(100% - 32px, var(--max)); }
  .hero { min-height: 650px; padding: 74px 0 90px; }
  .hero-art { transform: scale(0.9); margin-bottom: 12px; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  .section { padding: 76px 0; }
  .faq-grid, .credit-list { grid-template-columns: 1fr; }
  .info-card { min-height: 0; padding: 24px; border-radius: 25px; }
  .legal-body { padding: 26px 22px; border-radius: 28px; }
  .credit-list p { min-height: 0; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
