:root {
  --bg: #0c0f10;
  --bg-elevated: rgba(17, 21, 22, 0.84);
  --surface: rgba(22, 28, 30, 0.78);
  --surface-strong: rgba(28, 35, 37, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f2eee5;
  --muted: #a9b2ad;
  --muted-strong: #c9d0cb;
  --red: #ed5834;
  --red-deep: #a42a14;
  --green: #82b24e;
  --green-deep: #3d6120;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(237, 88, 52, 0.12), transparent 34%),
    radial-gradient(circle at 78% 20%, rgba(130, 178, 78, 0.12), transparent 28%),
    linear-gradient(180deg, #121516 0%, #0d1011 38%, #0a0d0e 100%);
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
  opacity: 0.22;
  pointer-events: none;
}

a {
  color: inherit;
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 14px;
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.brand-kicker {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  border: none;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  border-color: rgba(237, 88, 52, 0.48);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 28px 0 72px;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy h1,
.legal-hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Teko", Impact, sans-serif;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  font-size: clamp(4.8rem, 14vw, 8rem);
  line-height: 0.8;
  color: #f7f3ec;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.8),
    0 0 38px rgba(237, 88, 52, 0.2);
}

.hero-text,
.section-copy,
.legal-intro,
.footer-copy,
.legal-article p,
.legal-article li {
  color: var(--muted-strong);
  line-height: 1.7;
}

.hero-text {
  font-size: 1.12rem;
  margin: 14px auto 0;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid rgba(237, 88, 52, 0.7);
  background: rgba(18, 14, 12, 0.6);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.availability-note {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-points {
  margin: 18px 0 0;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40px -20px;
  background:
    radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(circle at 75% 50%, rgba(237, 88, 52, 0.08), transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(130, 178, 78, 0.08), transparent 55%);
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.9), transparent 80%);
}

.hero-composite {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(92%, 820px);
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.48));
  animation: float-composite 7.5s ease-in-out infinite;
}

.legal-layout {
  padding-bottom: 84px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 0.9;
}

.section-copy {
  margin: 0;
  max-width: 48ch;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-title {
  margin: 0;
  font-family: "Teko", Impact, sans-serif;
  font-size: 2rem;
  line-height: 0.95;
}

.footer-copy {
  margin: 8px 0 0;
  max-width: 44ch;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-links a {
  color: var(--muted-strong);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.legal-layout {
  max-width: 860px;
  margin: 0 auto;
}

.legal-hero {
  padding: 34px 0 24px;
}

.legal-hero h1 {
  font-size: clamp(3.5rem, 8vw, 5.2rem);
  line-height: 0.86;
}

.legal-intro {
  margin: 14px 0 0;
  max-width: 54ch;
}

.legal-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-article {
  display: grid;
}

.legal-article section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.legal-article section:first-child {
  border-top: 1px solid var(--line-strong);
}

.legal-article h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.legal-article p {
  margin: 0;
}

.legal-article ul {
  margin: 12px 0 0 18px;
  padding: 0;
}

.legal-article li + li {
  margin-top: 8px;
}

.legal-article a,
.footer-links a,
.site-nav a,
.brand-lockup {
  outline: none;
}

.legal-article a {
  color: #f7c7b8;
}

.legal-footer {
  margin-top: 8px;
}

.site-nav a:focus-visible,
.footer-links a:focus-visible,
.legal-article a:focus-visible,
.brand-lockup:focus-visible {
  box-shadow: 0 0 0 3px rgba(237, 88, 52, 0.26);
}

@keyframes float-composite {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-12px);
  }
}

@media (max-width: 980px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-top: 20px;
  }

  .hero-copy {
    max-width: unset;
  }

  .hero-visual {
    min-height: 340px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    flex: 1 1 auto;
    justify-content: flex-start;
    padding: 6px 0;
    font-size: 0.9rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.9rem, 20vw, 5.4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-composite {
    width: min(96%, 520px);
    bottom: 0;
  }

  .legal-article section {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  body::before {
    background-size: 92px 92px;
  }

  .hero-visual {
    min-height: 320px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
