:root {
  --bg: #070707;
  --bg-soft: #0d0d0d;
  --panel: #111111;
  --panel-strong: #171717;
  --text: #f7f7f7;
  --muted: #b8b8b8;
  --dim: #858585;
  --red: #ff2b2b;
  --red-dark: #b91414;
  --border: #2a2a2a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 43, 43, 0.22), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.wrap {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand strong {
  color: var(--red);
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-text,
.section-heading p,
.asset-content p,
.mini-card p,
.text-stack p,
.support-card p,
.site-footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 710px;
  margin-bottom: 30px;
  font-size: 1.18rem;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: rgba(255, 43, 43, 0.65);
  color: white;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.button.small {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.hero-panel,
.asset-card,
.mini-card,
.support-card {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(17, 17, 17, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  overflow: hidden;
}

.hero-panel-copy {
  padding: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.82rem;
  font-weight: 800;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.025);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.asset-card {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
}

.asset-image {
  min-height: 360px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid var(--border);
}

.asset-content {
  padding: 30px;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

.mini-card {
  grid-column: span 6;
  padding: 26px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
}

.text-stack p:last-child {
  margin-bottom: 0;
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 30px;
}

.support-card h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.support-email {
  flex: 0 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(255, 43, 43, 0.35);
  border-radius: 14px;
  background: rgba(255, 43, 43, 0.12);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-grid p {
  margin-bottom: 0;
}

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

  .asset-image {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .support-card,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    gap: 14px;
  }

  .hero {
    padding: 62px 0 46px;
  }

  .section {
    padding: 46px 0;
  }

  .mini-card {
    grid-column: span 12;
  }

  .asset-content,
  .mini-card,
  .support-card,
  .hero-panel-copy {
    padding: 22px;
  }

  .support-email {
    width: 100%;
    text-align: center;
  }
}
