:root {
  --bg: #070707;
  --bg-alt: #0e0e0e;
  --surface: #151515;
  --surface-2: #1c1c1c;
  --text: #f4f4f5;
  --muted: #a6a6ad;
  --line: rgba(255, 255, 255, 0.08);
  --brand: #f51f1f;
  --brand-2: #b00d0d;
  --accent: #ff5252;
  --radius: 16px;
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: "Sora", "Inter", sans-serif; line-height: 1.15; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.brand-logo { display: block; border-radius: 10px; }
.brand-name { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--muted); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff !important; padding: 9px 18px; border-radius: 10px;
}
.nav-cta:hover { color: #fff !important; }

.hero {
  position: relative; overflow: hidden;
  padding: 100px 0 88px;
  background:
    radial-gradient(820px 480px at 80% -12%, rgba(245, 31, 31, 0.30), transparent 62%),
    radial-gradient(680px 420px at 4% 6%, rgba(176, 13, 13, 0.20), transparent 60%),
    var(--bg);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: 0.35; mask-image: radial-gradient(700px 400px at 70% 0%, #000, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; max-width: 800px; }
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); font-weight: 800; margin-bottom: 20px; }
.grad {
  background: linear-gradient(120deg, var(--brand), #ff8a3d);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: clamp(1.02rem, 2.2vw, 1.18rem); color: var(--muted); max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 12px; font-weight: 600; font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff;
  box-shadow: 0 10px 32px rgba(245, 31, 31, 0.34);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,0.03); }
.btn-ghost:hover { background: rgba(255,255,255,0.07); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 36px; color: var(--muted); font-size: 0.92rem; }
.hero-badges span { position: relative; padding-left: 22px; }
.hero-badges span::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 13px; height: 13px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--brand) 0 40%, transparent 46%);
  box-shadow: 0 0 0 2px rgba(245,31,31,0.25);
}

.section { padding: 86px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 660px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform 0.2s ease, border-color 0.2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(245, 31, 31, 0.55); }
.card-icon {
  font-size: 1.5rem; margin-bottom: 16px; width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(245,31,31,0.16), rgba(176,13,13,0.12));
  border: 1px solid rgba(245,31,31,0.25);
}
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }

.two-col { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.two-col h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin: 12px 0 18px; }
.two-col p { color: var(--muted); margin-bottom: 16px; }
.facts { list-style: none; display: grid; gap: 14px; }
.facts li {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; display: grid; gap: 3px;
}
.facts strong { font-family: "Sora", sans-serif; font-size: 0.82rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; }
.facts span { color: var(--muted); font-size: 0.98rem; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.step-num {
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.4rem;
  background: linear-gradient(120deg, var(--brand), #ff8a3d);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-size: 1.1rem; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }

.company-box {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; max-width: 760px;
}
.company-row {
  display: grid; grid-template-columns: 210px 1fr; gap: 16px;
  padding: 18px 24px; border-bottom: 1px solid var(--line);
}
.company-row:last-child { border-bottom: none; }
.company-row .label { color: var(--muted); font-weight: 500; }
.company-row .value { font-weight: 600; }
.company-row .value a { color: var(--accent); }

.section-cta {
  text-align: center;
  background:
    radial-gradient(680px 360px at 50% 0%, rgba(245, 31, 31, 0.22), transparent 62%),
    var(--bg-alt);
  border-top: 1px solid var(--line);
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 12px; }
.cta-inner p { color: var(--muted); margin-bottom: 8px; }
.cta-inner .hero-actions { justify-content: center; }

.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: 48px 0 40px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 30px; align-items: start; }
.footer-brand .brand { margin-bottom: 10px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 0.94rem; }
.footer-links a:hover { color: var(--text); }
.footer-legal { color: var(--muted); font-size: 0.86rem; text-align: right; display: grid; gap: 6px; }

.legal { padding: 56px 0 90px; }
.legal-head { max-width: 780px; margin-bottom: 40px; }
.legal-head h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 10px 0 12px; }
.legal-head .updated { color: var(--muted); font-size: 0.92rem; }
.legal-body { max-width: 780px; }
.legal-body h2 { font-size: 1.28rem; margin: 34px 0 12px; color: var(--text); }
.legal-body h3 { font-size: 1.05rem; margin: 20px 0 8px; color: var(--text); }
.legal-body p, .legal-body li { color: var(--muted); font-size: 1rem; margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; margin-bottom: 12px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--accent); }
.legal-body strong { color: var(--text); }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 600; }

@media (max-width: 760px) {
  .nav { gap: 14px; }
  .nav a:not(.nav-cta) { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
  .company-row { grid-template-columns: 1fr; gap: 4px; }
}
