:root {
  color-scheme: dark;
  --bg: #08090b;
  --ink: #f7f5ee;
  --muted: #c5c0b1;
  --line: rgba(255, 255, 255, 0.18);
  --panel: rgba(9, 13, 17, 0.72);
  --gold: #ffcf5a;
  --coral: #ff6f61;
  --mint: #5df0c4;
  --cyan: #64c8ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 72px) 72px;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.94), rgba(8, 9, 11, 0.72) 38%, rgba(8, 9, 11, 0.22) 74%),
    linear-gradient(0deg, #08090b 0%, rgba(8, 9, 11, 0.2) 32%, rgba(8, 9, 11, 0.28) 100%);
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 72px);
}

.brand,
.nav__link,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
}

.brand {
  gap: 10px;
  font-size: 1.08rem;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #08090b;
  background: var(--gold);
}

.nav__link {
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.hero__content {
  width: min(680px, 100%);
  margin-top: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
}

.hero__lead,
.section__copy p,
.feature-band p,
.cta p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

.hero__lead {
  width: min(620px, 100%);
  margin: 26px 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  border-radius: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button--primary {
  color: #0a0908;
  background: var(--gold);
  box-shadow: 0 18px 50px rgba(255, 207, 90, 0.2);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.section,
.feature-band,
.cta {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section--intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  background: #08090b;
}

.section__copy {
  max-width: 760px;
}

.stat-grid {
  display: grid;
  gap: 12px;
}

.stat-card {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.stat-card strong {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

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

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.feature-band article {
  min-height: 300px;
  padding: clamp(28px, 5vw, 52px);
  background: #101115;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #08090b;
  font-weight: 900;
  background: var(--coral);
}

.feature-band article:nth-child(2) .feature-icon {
  background: var(--mint);
}

.feature-band article:nth-child(3) .feature-icon {
  background: var(--cyan);
}

.cta {
  min-height: 52svh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255, 111, 97, 0.18), transparent 42%),
    linear-gradient(315deg, rgba(93, 240, 196, 0.16), transparent 48%),
    #08090b;
}

.cta h2 {
  max-width: 900px;
}

@media (max-width: 820px) {
  .hero {
    min-height: 86svh;
    align-items: end;
    padding-bottom: 48px;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, #08090b 0%, rgba(8, 9, 11, 0.88) 40%, rgba(8, 9, 11, 0.24) 100%),
      linear-gradient(90deg, rgba(8, 9, 11, 0.82), rgba(8, 9, 11, 0.22));
  }

  .section--intro,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-band article {
    min-height: 220px;
  }
}

@media (max-width: 520px) {
  .nav {
    gap: 12px;
  }

  .nav__link {
    padding: 0 12px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(3.7rem, 22vw, 5.2rem);
  }

  .button {
    width: 100%;
  }
}
