@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;700;800&display=swap');

:root {
  --bg: #090b10;
  --bg-alt: #101521;
  --panel: #151d2d;
  --line: #2a3347;
  --text: #eef3ff;
  --muted: #b6c1d8;
  --brand: #f0462e;
  --brand-2: #ff8e3c;
  --ok: #2ecf9f;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: radial-gradient(circle at 10% 0%, #1b2438 0%, #090b10 45%), var(--bg);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.top-strip {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.top-strip .container {
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 11, 16, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

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

.brand img {
  width: 42px;
  height: 42px;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.35rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: linear-gradient(140deg, rgba(240, 70, 46, 0.23), rgba(255, 142, 60, 0.14));
}

.hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  background: rgba(240, 70, 46, 0.3);
  top: -160px;
  right: -80px;
}

.hero::after {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  background: rgba(46, 207, 159, 0.2);
  bottom: -180px;
  left: -90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.02;
  letter-spacing: 0.025em;
  margin: 0.4rem 0 1rem;
}

h1,
.display {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

.hero p {
  color: var(--muted);
  max-width: 62ch;
}

.btn-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.75rem 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 26px rgba(240, 70, 46, 0.35);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.panel {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1rem;
}

.hero-card img {
  border-radius: 14px;
  min-height: 300px;
  object-fit: cover;
}

section {
  padding: 4.2rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  max-width: 70ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  border-radius: var(--radius);
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), transparent);
  opacity: 0.7;
}

.card p,
.card li,
.muted {
  color: var(--muted);
}

.card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.timeline {
  border-left: 2px solid rgba(255, 255, 255, 0.18);
  margin-left: 0.45rem;
  padding-left: 1rem;
}

.timeline article {
  position: relative;
  margin-bottom: 1.2rem;
}

.timeline article::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-2);
  left: -1.35rem;
  top: 0.4rem;
}

.news-card img {
  border-radius: 12px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.news-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.cta {
  background: linear-gradient(140deg, rgba(240, 70, 46, 0.16), rgba(46, 207, 159, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.site-footer {
  background: #080b11;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 1.5rem;
  padding: 1.2rem 0 0.8rem;
}

.footer-grid section {
  display: grid;
  gap: 0.5rem;
}

.footer-grid h3 {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
  font-weight: 800;
}

.footer-col p {
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0;
  color: var(--muted);
}

.footer-col li,
.footer-bottom {
  color: var(--muted);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.footer-col a {
  font-size: 0.82rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 0 0.8rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

.parallax {
  will-change: transform;
}

.legal {
  max-width: 900px;
}

.legal h2,
.legal h3 {
  margin-top: 2rem;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.92rem;
}

.legal th,
.legal td {
  border: 1px solid var(--line);
  padding: 0.65rem;
  text-align: left;
}

.legal th {
  background: rgba(255, 255, 255, 0.05);
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.86rem;
  color: var(--muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.flow-step {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  padding: 1rem;
}

.flow-step .num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.82rem;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  margin-bottom: 0.5rem;
}

.faq {
  display: grid;
  gap: 0.9rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.8rem 0.95rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.mini-table th,
.mini-table td {
  border: 1px solid var(--line);
  text-align: left;
  padding: 0.6rem;
}

.mini-table th {
  background: rgba(255, 255, 255, 0.05);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.list-check li {
  position: relative;
  padding-left: 1.2rem;
}

.list-check li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  left: 0;
  top: 0.55rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .flow,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .flow,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .site-header .container {
    flex-direction: column;
    align-items: start;
  }

  .main-nav {
    width: 100%;
  }

  .main-nav a {
    flex: 1;
    text-align: center;
  }

  .hero {
    padding-top: 3.8rem;
  }
}
