:root {
  --black: #030303;
  --ink: #101010;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --green: #39ad37;
  --pink: #ea416d;
  --purple: #913d98;
  --orange: #f48600;
  --glass: rgba(255, 255, 255, 0.09);
  --glass-strong: rgba(255, 255, 255, 0.15);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(234, 65, 109, 0.12), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(57, 173, 55, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%);
  z-index: -2;
}

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

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

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 62%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), 1180px);
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.44);
  backdrop-filter: blur(22px);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.84);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand {
  display: grid;
  place-items: center;
  width: 226px;
  height: 66px;
  padding: 8px 16px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.brand img {
  width: 190px;
  max-height: 50px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.section-full {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.section-pad {
  position: relative;
  padding: 130px 24px;
}

.hero {
  padding: 140px 24px 80px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.9fr;
  gap: 16px;
  padding: 14px;
  opacity: 0.58;
  transform: scale(1.04);
}

.hero-frame {
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.08);
  animation: slow-pan 18s ease-in-out infinite alternate;
}

.frame-one {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=1400&q=80");
}

.frame-two {
  margin-top: 11vh;
  margin-bottom: 8vh;
  animation-delay: -5s;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.66)),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1200&q=80");
}

.frame-three {
  margin-top: 5vh;
  animation-delay: -10s;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&w=1200&q=80");
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), #030303 96%);
}

.hero-content,
.content-narrow,
.section-heading,
.stats-grid,
.experience-grid,
.difference-grid,
.industry-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 960px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 11vw, 9.8rem);
  line-height: 0.88;
  font-weight: 900;
}

h2 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(2.45rem, 6vw, 6.25rem);
  line-height: 0.96;
  font-weight: 870;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.34;
}

.hero-statement {
  margin: 34px 0 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  line-height: 1.45;
}

.hero-statement strong {
  color: var(--white);
  font-size: 1.2em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #080808;
  background: var(--white);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  width: 30px;
  height: 48px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

.change-section {
  padding: 120px 24px;
  background:
    linear-gradient(180deg, #030303, #111 48%, #030303),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 120px);
}

.content-narrow {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.line-list {
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.22rem, 2.2vw, 2rem);
  line-height: 1.45;
}

.line-list p {
  margin-bottom: 11px;
}

.section-lead {
  max-width: 780px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.12rem, 2vw, 1.52rem);
  line-height: 1.45;
}

.stats-band {
  padding: 38px 24px 30px;
  background: var(--white);
  color: var(--ink);
}

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

.stats-grid article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.11);
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.95;
  font-weight: 920;
}

.stats-grid span {
  color: rgba(0, 0, 0, 0.64);
  font-weight: 800;
  text-transform: uppercase;
}

.disclaimer {
  width: min(var(--max), 100%);
  margin: 18px auto 0;
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.85rem;
}

.experiences {
  background:
    radial-gradient(circle at 80% 20%, rgba(244, 134, 0, 0.15), transparent 28%),
    #070707;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 940px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 5.5rem);
}

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

.experience-card {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(22px);
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(0, 0, 0, 0.82));
  z-index: 0;
}

.card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 900ms ease;
}

.experience-card:hover .card-image {
  transform: scale(1.12);
}

.experience-card > div:not(.card-image) {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.experience-card p,
.difference-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
  line-height: 1.55;
}

.image-consumer {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1200&q=80");
}

.image-industry {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    url("https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&w=1200&q=80");
}

.image-community {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    url("https://images.unsplash.com/photo-1491438590914-bc09fcaaf77a?auto=format&fit=crop&w=1200&q=80");
}

.image-sponsor {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1200&q=80");
}

.trust-section {
  padding: 120px 24px;
  background: #050505;
}

.trust-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.52)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.trust-lines {
  margin-top: 44px;
}

.trust-lines p {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.3rem, 2.4vw, 2.3rem);
}

.industries {
  background: var(--white);
  color: var(--ink);
}

.industries .eyebrow {
  color: rgba(0, 0, 0, 0.58);
}

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

.industry-grid article {
  min-height: 164px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0)),
    #f6f6f6;
}

.industry-grid article::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--accent, var(--green));
}

.industry-grid article:nth-child(2) { --accent: var(--pink); }
.industry-grid article:nth-child(3) { --accent: var(--purple); }
.industry-grid article:nth-child(4) { --accent: var(--orange); }
.industry-grid article:nth-child(5) { --accent: var(--green); }
.industry-grid article:nth-child(6) { --accent: var(--pink); }
.industry-grid article:nth-child(7) { --accent: var(--purple); }
.industry-grid article:nth-child(8) { --accent: var(--orange); }

.industry-grid span {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  font-weight: 850;
}

.difference {
  background: #080808;
}

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

.difference-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.difference-card span {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 900;
}

.difference-card h3 {
  margin-top: auto;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
}

.final-cta {
  padding: 120px 24px;
  background: #000;
}

.final-cta h2 {
  max-width: 1050px;
}

.cta-orbit {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2)),
    url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.58;
}

.final-cta .btn {
  margin-top: 38px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 62px 24px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
}

.site-footer img {
  width: min(330px, 78vw);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer span {
  color: rgba(0, 0, 0, 0.56);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 8px;
  font-weight: 850;
}

.footer-contact a {
  color: rgba(0, 0, 0, 0.76);
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-contact a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slow-pan {
  from {
    transform: translateY(-10px) scale(1.03);
  }
  to {
    transform: translateY(10px) scale(1.08);
  }
}

@keyframes scroll-dot {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-links {
    display: none;
  }

  .brand {
    width: 188px;
    height: 58px;
  }

  .brand img {
    width: 158px;
    max-height: 44px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-media {
    grid-template-columns: 1fr;
    opacity: 0.4;
  }

  .frame-two,
  .frame-three {
    display: none;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 6.5rem);
  }

  .stats-grid,
  .experience-grid,
  .difference-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid article {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
  }

  .experience-card,
  .difference-card {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .section-pad,
  .change-section,
  .trust-section,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  h2,
  .section-heading h2 {
    font-size: clamp(2.1rem, 12vw, 3.6rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .experience-card,
  .difference-card {
    min-height: 360px;
    padding: 22px;
  }

  .industry-grid article {
    min-height: 128px;
  }

  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
