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

:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --surface: #131313;
  --surface-strong: #1d1d1d;
  --text: #ffffff;
  --muted: #c8c8c8;
  --accent: #f9cf1f;
  --accent-strong: #ffe371;
  --accent-soft: rgba(249, 207, 31, 0.22);
  --line: rgba(255, 255, 255, 0.14);
  --radius: 16px;
  --shadow: 0 24px 40px rgba(0, 0, 0, 0.42);
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(249, 207, 31, 0.13), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(249, 207, 31, 0.08), transparent 28%),
    var(--bg);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.22;
  z-index: -1;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.03;
}

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

/* Header */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(12px);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
}

.nav-container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.logo {
  text-decoration: none;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.65rem;
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 64%;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0.45);
  transition: transform 0.35s ease;
}

.logo:hover::after {
  transform: scaleX(1);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.24s ease;
}

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

.nav-links a.is-current {
  color: var(--accent);
}

.btn-nav,
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.79rem;
  padding: 12px 20px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease,
    color 0.24s ease;
}

.btn-nav,
.btn-primary {
  background: var(--accent);
  color: #111;
  box-shadow: 0 10px 24px rgba(249, 207, 31, 0.22);
}

.btn-nav:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(249, 207, 31, 0.33);
  background: var(--accent-strong);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(104deg, rgba(0, 0, 0, 0.88) 16%, rgba(0, 0, 0, 0.66) 52%,
      rgba(0, 0, 0, 0.9) 100%),
    radial-gradient(circle at 90% 20%, rgba(249, 207, 31, 0.15), transparent 35%);
  z-index: 1;
}

.hero-decor {
  position: absolute;
  width: min(38vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(249, 207, 31, 0.3);
  right: 8%;
  bottom: 8%;
  z-index: 1;
  box-shadow: inset 0 0 80px rgba(249, 207, 31, 0.13);
}

.hero-decor::before {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px dashed rgba(249, 207, 31, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 92vw);
  text-align: left;
  padding-top: 72px;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 9.6vw, 6.4rem);
  line-height: 0.9;
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero h1 span,
.section-title span {
  color: var(--accent);
}

.hero .lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.9vw, 1.16rem);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Sections */

.section {
  padding: clamp(74px, 10vw, 112px) 0;
}

.section-title {
  font-size: clamp(2rem, 6.2vw, 3.8rem);
  margin-bottom: 14px;
}

.section-subtitle {
  max-width: 66ch;
  color: var(--muted);
}

.split {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.25fr 1fr;
  align-items: stretch;
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.panel h3 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin-bottom: 10px;
}

.panel p {
  color: var(--muted);
}

.panel ul {
  margin-top: 14px;
  padding-left: 18px;
  color: var(--muted);
}

.panel ul li + li {
  margin-top: 9px;
}

.highlight-panel {
  background:
    linear-gradient(145deg, rgba(249, 207, 31, 0.9), rgba(249, 207, 31, 0.72));
  color: #0f0f0f;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.highlight-panel p,
.highlight-panel ul {
  color: rgba(0, 0, 0, 0.85);
}

.card-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 207, 31, 0.52);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.34);
}

.card h3 {
  font-size: clamp(1.34rem, 2.2vw, 1.85rem);
  margin-bottom: 10px;
}

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

.cta-band {
  position: relative;
  margin-top: 34px;
  border: 1px solid rgba(249, 207, 31, 0.46);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 34px);
  background: linear-gradient(140deg, rgba(249, 207, 31, 0.16), rgba(249, 207, 31, 0.06));
  display: grid;
  gap: 14px;
  justify-items: start;
}

.cta-band h3 {
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
}

/* Internal pages */

.page-hero {
  min-height: 64svh;
}

.page-hero .hero-content {
  width: min(760px, 92vw);
}

.site-footer {
  position: relative;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.84));
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(249, 207, 31, 0.08), rgba(249, 207, 31, 0.01));
  z-index: 0;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  padding: 30px 0 18px;
}

.footer-brand h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.footer-brand p {
  color: #d5d5d5;
  max-width: 42ch;
}

.footer-col h4 {
  font-size: 0.83rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 7px;
}

.footer-list a {
  text-decoration: none;
  color: #f1f1f1;
  opacity: 0.9;
}

.footer-list a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 8px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8rem;
  color: #cccccc;
}

/* Animation */

.animate {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.72, 0.14, 1);
  transition-delay: var(--delay, 0s);
}

.animate.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Responsive */

@media (max-width: 1060px) {
  .split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .btn-nav {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: min(92vw, 560px);
    padding: 18px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.94);
    flex-direction: column;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .cta-band {
    justify-items: center;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 72px 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

