:root {
  --bg: #050505;
  --surface: #0d0d0f;
  --surface-2: #151518;
  --text: #f7f7f5;
  --muted: #aaaab2;
  --line: rgba(255,255,255,.11);
  --red: #ff293d;
  --yellow: #ffe21c;
  --green: #65ff20;
  --max: 1120px;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% -10%, rgba(255,41,61,.12), transparent 28rem),
    radial-gradient(circle at 100% 4%, rgba(101,255,32,.08), transparent 26rem),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(5,5,5,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 760; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; box-shadow: 0 0 30px rgba(255,226,28,.08); }
.brand small { display: block; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.hero { padding: 94px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #dedee3; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 9px; background: linear-gradient(90deg,var(--red),var(--yellow),var(--green)); }
h1 { margin: 20px 0 20px; max-width: 800px; font-size: clamp(48px, 8vw, 92px); line-height: .98; letter-spacing: -.065em; }
.hero p { max-width: 680px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 720; border: 1px solid var(--line); background: var(--surface-2); }
.button.primary { color: #050505; border: 0; background: linear-gradient(95deg, var(--red), var(--yellow) 52%, var(--green)); }
.logo-panel { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 38px; background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); box-shadow: 0 35px 90px rgba(0,0,0,.45); }
.logo-panel img { width: 100%; display: block; border-radius: 28px; }
.section { padding: 72px 0; border-top: 1px solid var(--line); }
.section h2 { margin: 0 0 14px; font-size: clamp(32px, 5vw, 56px); letter-spacing: -.045em; line-height: 1.05; }
.section-intro { max-width: 760px; margin: 0 0 38px; color: var(--muted); font-size: 18px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { min-height: 220px; padding: 28px; border-radius: 24px; border: 1px solid var(--line); background: linear-gradient(155deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); }
.card .number { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.card h3 { margin: 28px 0 8px; font-size: 23px; letter-spacing: -.025em; }
.card p { margin: 0; color: var(--muted); }
.notice { padding: 24px; border: 1px solid rgba(255,226,28,.25); border-radius: 20px; background: rgba(255,226,28,.055); }
.legal-hero { padding: 72px 0 34px; }
.legal-hero h1 { font-size: clamp(42px, 7vw, 72px); }
.legal-meta { color: var(--muted); }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 58px; align-items: start; padding-bottom: 90px; }
.toc { position: sticky; top: 105px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.025); }
.toc strong { display: block; margin-bottom: 10px; }
.toc a { display: block; padding: 5px 0; color: var(--muted); text-decoration: none; font-size: 14px; }
.legal-content h2 { margin: 46px 0 12px; font-size: 29px; line-height: 1.2; letter-spacing: -.025em; scroll-margin-top: 110px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 28px 0 8px; font-size: 20px; }
.legal-content p, .legal-content li { color: #c7c7cd; }
.legal-content ul { padding-left: 22px; }
.contact-box { margin-top: 30px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.contact-box a { color: var(--yellow); overflow-wrap: anywhere; }
.site-footer { padding: 34px 0 50px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-links a { text-decoration: none; }
@media (max-width: 820px) {
  .nav { align-items: flex-start; padding: 14px 0; }
  .nav-links { max-width: 54%; gap: 4px 12px; }
  .hero { padding-top: 64px; }
  .hero-grid, .legal-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .cards { grid-template-columns: 1fr; }
  .toc { position: static; }
}
@media (max-width: 520px) {
  .wrap { width: min(calc(100% - 22px), var(--max)); }
  .brand span { display: none; }
  .nav-links { max-width: calc(100% - 56px); }
  .nav-links a { font-size: 12px; }
  h1 { font-size: 50px; }
  .hero, .section { padding: 54px 0; }
  .logo-panel { padding: 14px; border-radius: 26px; }
  .logo-panel img { border-radius: 18px; }
}
