:root {
  --black: #090909;
  --panel: #131313;
  --soft: #1b1b1b;
  --white: #f7f7f5;
  --muted: #a7a7a1;
  --orange: #ff6a00;
  --orange-light: #ff8a35;
  --line: rgba(255, 255, 255, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: "Manrope", system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }

.ambient {
  position: fixed;
  z-index: -1;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .17;
  pointer-events: none;
}
.ambient-one { top: -10rem; right: -8rem; background: var(--orange); }
.ambient-two { bottom: 10%; left: -14rem; background: #a43e00; }

.brand, main, footer { width: min(1120px, calc(100% - 36px)); margin-inline: auto; }
.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.brand-mark { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; letter-spacing: -.7px; }
.brand-mark > span:last-child span, footer > span span { color: var(--orange); }
.brand-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: var(--black);
  background: var(--orange);
  font-weight: 800;
}
.brand-label { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 2px; }

.hero { display: grid; gap: 42px; align-items: center; padding: 62px 0 64px; }
.hero-copy { max-width: 780px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--orange-light); font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; }
.eyebrow > span { width: 20px; height: 2px; background: var(--orange); }
.hero h1 {
  margin: 18px 0;
  font-size: clamp(42px, 12vw, 76px);
  line-height: .98;
  letter-spacing: -3px;
}
.hero h1 strong { display: block; color: var(--orange); font-weight: 800; }
.hero-copy > p { max-width: 580px; margin: 0 0 30px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.hero-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--orange); font-size: 13px; font-weight: 700; }
.hero-link span { color: var(--orange); }

.video-wrap {
  position: relative;
  width: min(100%, 390px);
  margin-inline: auto;
  padding: 12px;
  border: 1px solid rgba(255,106,0,.42);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,106,0,.13), rgba(255,255,255,.035));
  box-shadow: 0 35px 75px rgba(0,0,0,.48);
}
.video-wrap video { display: block; width: 100%; aspect-ratio: 9 / 16; border-radius: 19px; background: #000; object-fit: cover; }
.video-label { display: flex; align-items: center; gap: 8px; padding: 3px 4px 12px; color: var(--orange-light); font-size: 9px; font-weight: 800; letter-spacing: .9px; text-transform: uppercase; }
.video-label span { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,106,0,.14); }
.video-caption { display: flex; align-items: center; justify-content: space-between; padding: 12px 5px 3px; }
.video-caption > span { font-size: 13px; font-weight: 800; }
.video-caption > span span { color: var(--orange); }
.video-caption small { color: var(--muted); font-size: 9px; letter-spacing: .5px; }
.video-accent { position: absolute; z-index: -1; right: -18px; bottom: 40px; width: 92%; height: 60%; border: 2px solid var(--orange); border-radius: 27px; opacity: .3; }

.communities { display: grid; grid-template-columns: 1fr; gap: 16px; }
.community-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 345px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.community-card:hover { transform: translateY(-5px); border-color: rgba(255,106,0,.55); box-shadow: 0 24px 50px rgba(0,0,0,.3); }
.community-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,.14), transparent 68%);
}
.card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 48px; }
.icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; background: var(--soft); font-size: 24px; }
.number { color: #666; font-size: 12px; font-weight: 700; }
.category { margin: 0 0 8px !important; color: var(--orange-light) !important; font-size: 10px !important; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.community-card h2 { margin: 0 0 10px; font-size: 25px; letter-spacing: -1px; }
.community-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.community-card p strong { color: var(--white); }
.join-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.045);
  font-size: 13px;
  font-weight: 800;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.join-button:hover, .join-button:focus-visible { color: var(--black); background: var(--orange); transform: translateY(-2px); outline: none; }
.featured { border-color: rgba(255,106,0,.55); background: linear-gradient(150deg, rgba(255,106,0,.18), rgba(255,255,255,.025)); }
.featured .icon { background: var(--orange); }
.featured .join-button { color: var(--black); border-color: var(--orange); background: var(--orange); }
.featured .join-button:hover { background: var(--orange-light); }
.recommended { position: absolute; top: 0; right: 0; padding: 8px 13px; border-radius: 0 20px 0 12px; color: var(--black); background: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: 1px; }

.final-cta {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 64px 0;
  padding: 34px 26px;
  border-radius: 24px;
  color: var(--black);
  background: var(--orange);
}
.final-cta .eyebrow { color: rgba(0,0,0,.65); }
.final-cta .eyebrow > span { background: var(--black); }
.final-cta h2 { margin: 13px 0 8px; font-size: clamp(28px, 7vw, 43px); line-height: 1.08; letter-spacing: -1.8px; }
.final-cta p { margin: 0; max-width: 600px; font-size: 14px; line-height: 1.6; }
.cta-button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 17px 19px; border-radius: 13px; color: var(--white); background: var(--black); font-size: 13px; font-weight: 800; transition: transform .25s ease, background .25s ease; }
.cta-button:hover { transform: translateY(-3px); background: #242424; }

footer { display: grid; gap: 10px; padding: 30px 0 40px; border-top: 1px solid var(--line); text-align: center; }
footer > span { font-size: 17px; font-weight: 800; }
footer p, footer small { margin: 0; color: #777; font-size: 11px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 720px) {
  .brand, main, footer { width: min(1120px, calc(100% - 64px)); }
  .hero { padding: 90px 0 82px; }
  .communities { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .community-card { padding: 28px; }
  .final-cta { flex-direction: row; align-items: end; justify-content: space-between; padding: 46px; }
  .cta-button { flex: 0 0 240px; }
  footer { grid-template-columns: 1fr 1fr 1fr; align-items: center; text-align: left; }
  footer p { text-align: center; }
  footer small { text-align: right; }
}

@media (min-width: 900px) {
  .hero { grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr); gap: 76px; min-height: 720px; }
  .hero h1 { font-size: clamp(54px, 6.2vw, 76px); }
}

@media (min-width: 1040px) {
  .communities { grid-template-columns: repeat(4, 1fr); }
}

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