@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --black: #000000;
  --ink: #ffffff;
  --peach: #fc815b;
  --peach-2: #ff9a78;
  --muted: rgba(255, 255, 255, 0.62);
  --gray: #f3f3f3;
  --dark-card: #111111;
  --max: 1200px;
  --nav-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--black);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* NAV */
.ahq-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(16px);
}
.ahq-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand,
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.brand-mark,
.brand-lockup img.mark,
.brand-lockup .mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
}
.brand-wordmark,
.brand-lockup img.wordmark {
  height: 36px;
  width: auto;
  max-width: min(200px, 48vw);
  display: block;
  flex-shrink: 0;
}

/* Real wordmark partner logos (not fake icon soup) */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 2.5rem;
}
.logo-strip .lw {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: #0f0f0f;
}
.logo-strip .lw em {
  font-style: normal;
  color: var(--peach);
}
.nav-links {
  display: flex;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: #fff;
  border-radius: 1px;
}

/* BUTTONS */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 0.7rem 0.75rem 0.7rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.btn-pill:hover { transform: translateY(-2px); }
.btn-pill .orb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--peach);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

/* HERO — brand-first, full-bleed */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 2.5rem) 0 4.5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.78) 42%, rgba(0,0,0,0.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 35%, rgba(0,0,0,0.72) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
  animation: hero-rise 0.9s ease both;
}
.hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.45));
}
.hero-mark {
  width: clamp(64px, 10vw, 88px);
  height: clamp(64px, 10vw, 88px);
  border-radius: 20px;
  flex-shrink: 0;
  display: block;
}
.hero-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1;
}
.hero-wordmark strong {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f7f4ee;
}
.hero-wordmark span {
  font-size: clamp(0.72rem, 1.4vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--peach);
}
.hero h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.1rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 1.1rem;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero h1 .p { color: var(--peach); }
.hero-lead {
  margin: 0 0 1.85rem;
  max-width: 38ch;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}
.hero .btn-pill {
  animation: hero-rise 1.05s ease 0.12s both;
}
@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media > img,
  .hero-copy,
  .hero .btn-pill {
    animation: none;
  }
}
.orb-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--peach);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}

/* SECTIONS */
.sec { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.sec.light { background: var(--gray); color: #111; }
.sec.dark { background: #0a0a0a; }
.center { text-align: center; }
.big-line {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
}
.stats3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.stats3 strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.stats3 span { color: var(--muted); }
.sec.light .stats3 span { color: #666; }

.logos {
  margin-top: 2.5rem;
  border-radius: 18px;
  overflow: hidden;
  opacity: 0.92;
}

.grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
}
.card {
  background: #141414;
  border-radius: 18px;
  padding: 1.35rem;
  min-height: 170px;
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.sec.light .card {
  background: #fff;
  border: 1px solid #e6e6e6;
}
.sec.light .card p { color: #666; }

.h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.lead {
  color: var(--muted);
  max-width: 40rem;
  margin: 0;
  font-size: 1.05rem;
}
.sec.light .lead { color: #555; }

.split2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}
.media {
  border-radius: 20px;
  overflow: hidden;
  background: #111;
}
.media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.step {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 1.4rem;
}
.step .n { color: var(--peach); font-weight: 800; margin-bottom: 0.5rem; }
.step h3 { margin: 0 0 0.4rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Influencer whitelist gallery */
.inf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 2.25rem;
}
.inf-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
}
.inf-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.inf-card figcaption {
  padding: 0.7rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}

/* Real flywheel */
.wheel-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1rem;
}
.wheel {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}
.wheel-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(252,129,91,0.45);
  background:
    radial-gradient(circle at center, rgba(252,129,91,0.12), transparent 55%),
    conic-gradient(
      from 0deg,
      rgba(252,129,91,0.28) 0 72deg,
      rgba(255,255,255,0.05) 72deg 144deg,
      rgba(252,129,91,0.2) 144deg 216deg,
      rgba(255,255,255,0.05) 216deg 288deg,
      rgba(252,129,91,0.24) 288deg 360deg
    );
  animation: spinWheel 24s linear infinite;
  box-shadow: 0 0 60px rgba(252,129,91,0.15);
}
.wheel-ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.2);
  animation: spinWheel 24s linear infinite reverse;
}
.spoke {
  position: absolute;
  width: 96px;
  text-align: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 3;
}
.spoke span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--peach);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  margin: 0 auto 0.35rem;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.45);
}
/* Fixed positions around the circle — labels stay upright */
.spoke.s1 { left: 50%; top: 4%; transform: translateX(-50%); }
.spoke.s2 { right: 2%; top: 28%; }
.spoke.s3 { right: 10%; bottom: 14%; }
.spoke.s4 { left: 10%; bottom: 14%; }
.spoke.s5 { left: 2%; top: 28%; }
.wheel-hub {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: #0a0a0a;
  border: 2px solid var(--peach);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  z-index: 2;
}
.wheel-hub img { width: 42px; height: 42px; margin: 0 auto 0.4rem; }
.wheel-hub strong {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #fff;
}
.wheel-legend {
  display: grid;
  gap: 0.75rem;
}
.wheel-legend article {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.02);
}
.wheel-legend strong { display: block; margin-bottom: 0.3rem; }
.wheel-legend span { color: var(--muted); font-size: 0.9rem; }

@keyframes spinWheel {
  to { transform: rotate(360deg); }
}

.cta-band {
  background: var(--peach);
  color: #111;
  padding: 4rem 0;
}
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.cta-band p { margin: 0; opacity: 0.85; }
.cta-band .btn-pill { background: #111; color: #fff; }
.cta-band .btn-pill .orb { background: #fff; color: #111; }

.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 0.9rem;
}
.footer .grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer h4 { color: #fff; margin: 0 0 0.7rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .split2, .stats3, .grid5, .steps, .footer .grid, .wheel-layout, .inf-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 780px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 1rem auto;
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    background: #0a0a0a;
    padding: 0.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: #f5f2ea;
    padding: 0.9rem 0.85rem;
  }
  .nav-links .btn-pill {
    color: #000;
    justify-content: center;
  }
  .split2, .stats3, .grid5, .steps, .footer .grid, .wheel-layout, .inf-grid {
    grid-template-columns: 1fr;
  }
  .inf-grid { grid-template-columns: 1fr 1fr; }
  .hero {
    align-items: center;
    padding-bottom: 3.25rem;
  }
  .hero h1 { max-width: none; }
  .hero-brand { gap: 0.85rem; }
}
