:root {
  color-scheme: dark;
  --bg: #08090c;
  --bg-soft: #101218;
  --ink: #f7f4ee;
  --muted: #b9b4aa;
  --line: rgba(255, 255, 255, 0.13);
  --glass: rgba(255, 255, 255, 0.08);
  --coral: #ff6f61;
  --mint: #8fe3cf;
  --teal: #1d9e75;
  --gold: #f2c572;
  --violet: #9d8cff;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(145deg, rgba(29, 158, 117, 0.08), transparent 28%),
    linear-gradient(220deg, rgba(255, 111, 97, 0.08), transparent 24%),
    var(--bg);
  color: var(--ink);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.28);
  animation: navDrop 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand, .nav-links, .trust-row, .hero-actions, .app-status, .profile-row, .footer, .footer-brand, .early-access-strip {
  display: flex;
  align-items: center;
}

.brand { gap: 10px; font-weight: 800; flex: 0 0 auto; }
.brand-logo {
  width: 132px;
  height: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand-logo img {
  width: 128px;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}

.nav-links { gap: 22px; color: var(--muted); font-size: 14px; }
.nav-links a {
  position: relative;
  transition: color 180ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--mint);
  transition: transform 180ms ease;
}
.nav-links a:hover, .header-cta:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #111;
  font-size: 14px;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(255, 255, 255, 0.14); }

.section-band, .section {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 118px 24px 74px;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
  transform: scale(1.03);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 70% 28%, rgba(143, 227, 207, 0.24), transparent 28%),
    radial-gradient(circle at 22% 78%, rgba(255, 111, 97, 0.20), transparent 32%),
    linear-gradient(90deg, rgba(8, 9, 12, 0.96) 0%, rgba(8, 9, 12, 0.72) 45%, rgba(8, 9, 12, 0.38) 100%),
    linear-gradient(180deg, transparent 72%, var(--bg));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 48px;
}

.hero-copy { max-width: 730px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
  animation: textLift 780ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(33px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 { margin-bottom: 10px; font-size: 18px; }
p { color: var(--muted); line-height: 1.7; }
.hero-text { max-width: 610px; font-size: 20px; color: #e7e0d5; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(143, 227, 207, 0.14); }
.button-primary {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #101010;
}
.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  animation: ctaSheen 4.8s ease-in-out infinite;
}
.button-primary span { position: relative; z-index: 1; }
.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  color: var(--ink);
}

.hero-actions { gap: 12px; flex-wrap: wrap; margin: 32px 0 24px; }
.trust-row { gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.trust-row span:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 227, 207, 0.36);
  background: rgba(143, 227, 207, 0.08);
}
.early-access-strip {
  width: fit-content;
  max-width: 100%;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(143, 227, 207, 0.24);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.48);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 13px;
  animation: softGlow 5s ease-in-out infinite;
}
.early-access-strip strong { color: var(--ink); }
.early-access-strip span {
  position: relative;
  padding-left: 12px;
}
.early-access-strip span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--mint);
}

.phone-wrap { justify-self: end; perspective: 1300px; }
.phone {
  position: relative;
  width: min(360px, 82vw);
  aspect-ratio: 0.5;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 42px;
  background: linear-gradient(145deg, #24252a, #050506);
  box-shadow: var(--shadow);
  transform: rotateY(-12deg) rotateX(4deg);
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

.phone-top {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 92px;
  height: 24px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #06070a;
  z-index: 2;
}

.app-screen {
  height: 100%;
  padding: 48px 18px 18px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(143, 227, 207, 0.20), transparent 34%),
    linear-gradient(145deg, #181a21, #08090c);
}

.app-status { justify-content: space-between; color: #fff; font-size: 13px; margin-bottom: 18px; }
.map-preview {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 70% 35%, rgba(242, 197, 114, 0.25), transparent 22%),
    radial-gradient(circle at 22% 72%, rgba(29, 158, 117, 0.28), transparent 24%),
    #11141b;
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(255, 111, 97, 0.18);
  animation: pulse 2.2s ease-in-out infinite;
}
.pin-one { top: 38px; left: 64px; }
.pin-two { top: 84px; right: 50px; background: var(--mint); box-shadow: 0 0 0 8px rgba(143, 227, 207, 0.16); animation-delay: 400ms; }
.pin-three { bottom: 42px; left: 128px; background: var(--gold); box-shadow: 0 0 0 8px rgba(242, 197, 114, 0.16); animation-delay: 800ms; }
.map-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(14px);
  animation: cardFloat 4.8s ease-in-out infinite;
}
.map-card small { color: var(--mint); font-weight: 760; }
.map-card strong { display: block; margin-top: 4px; font-size: 18px; }
.map-card p { margin: 2px 0 0; font-size: 13px; line-height: 1.4; }

.interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
}

.interest-grid span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #f4efe7;
}

.profile-row { gap: 8px; min-height: 56px; }
.profile-row span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #15161b;
  background: linear-gradient(135deg, var(--mint), var(--coral));
}
.profile-row p { margin: 0 0 0 4px; font-size: 12px; line-height: 1.35; }

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading p, .split-copy p, .waitlist-copy p { font-size: 18px; }

.app-grid, .feature-grid, .ambassador-grid, .photo-grid {
  display: grid;
  gap: 16px;
}

.app-grid { grid-template-columns: repeat(3, 1fr); }
.feature-grid, .ambassador-grid { grid-template-columns: repeat(3, 1fr); }

.surface, .feature, .waitlist-form, details, .photo-card, .ambassador-card, .waitlist-highlight, .signup-benefits div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.surface, .feature { padding: 26px; transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease; }
.surface:hover, .feature:hover, .photo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(143, 227, 207, 0.36);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24), 0 0 36px rgba(143, 227, 207, 0.08);
}
.icon, .feature span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(143, 227, 207, 0.12);
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.activity-showcase {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: 42px;
}
.photo-grid { grid-template-columns: 1fr; }
.photo-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 700ms ease, filter 220ms ease;
}
.photo-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}
.photo-card div { padding: 22px; }
.photo-card span, .badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(143, 227, 207, 0.12);
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.ambassador {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1120px) / 2));
  padding-right: max(16px, calc((100% - 1120px) / 2));
  background:
    linear-gradient(180deg, transparent, rgba(143, 227, 207, 0.055) 20%, rgba(255, 111, 97, 0.055) 80%, transparent);
}
.ambassador-hero {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 22px;
}
.ambassador-hero > div:first-child {
  padding: 36px;
  border: 1px solid rgba(143, 227, 207, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29, 158, 117, 0.20), rgba(255, 111, 97, 0.08)),
    rgba(255, 255, 255, 0.045);
}
.ambassador-card {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(242, 197, 114, 0.18), rgba(143, 227, 207, 0.09)),
    rgba(255, 255, 255, 0.06);
  animation: glow 4s ease-in-out infinite;
}
.ambassador-card strong {
  display: block;
  font-size: 30px;
  line-height: 1.1;
}
.ambassador-stats {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.ambassador-stats span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #f4efe7;
  background: rgba(0,0,0,0.18);
}

.faq-list { display: grid; gap: 10px; }
details { padding: 0 22px; }
summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 760;
}
summary::after { content: "+"; color: var(--mint); }
details[open] summary::after { content: "−"; }
details p { margin-bottom: 22px; }

.waitlist-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: start;
  gap: 42px;
  padding-bottom: 120px;
}
.waitlist-highlight {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  border-color: rgba(242, 197, 114, 0.34);
}
.waitlist-highlight strong { color: var(--gold); }
.waitlist-highlight span { color: #efe8df; line-height: 1.6; }
.signup-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.signup-benefits div {
  padding: 16px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.signup-benefits div:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 227, 207, 0.34);
  background: linear-gradient(180deg, rgba(143, 227, 207, 0.11), rgba(255, 255, 255, 0.035));
}
.signup-benefits span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
}
.signup-benefits strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
}
.signup-benefits p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.waitlist-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  opacity: 0.5;
  background: linear-gradient(120deg, transparent 10%, rgba(143, 227, 207, 0.16), transparent 34%);
  transform: translateX(-105%);
  animation: panelSweep 7s ease-in-out infinite;
}
.waitlist-form > * { position: relative; z-index: 1; }
.form-heading {
  padding-bottom: 2px;
}
.form-heading span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(143, 227, 207, 0.12);
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
}
.form-heading h3 {
  margin-bottom: 6px;
  font-size: 24px;
}
.form-heading p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

label { display: grid; gap: 8px; color: #efe8df; font-weight: 720; }
input, select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  font: inherit;
}
select option { color: #111; }
input:focus, select:focus { border-color: rgba(143, 227, 207, 0.72); }
.checkbox-row {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 720;
}
.checkbox-row input { min-height: 18px; width: 18px; margin-top: 4px; accent-color: var(--mint); }
.ambassador-check {
  padding: 15px;
  border: 1px solid rgba(242, 197, 114, 0.36);
  border-radius: 8px;
  background: rgba(242, 197, 114, 0.09);
}
.form-note { margin: -4px 0 4px; font-size: 13px; }
.privacy-note {
  margin: -2px 0 0;
  color: rgba(247, 244, 238, 0.62);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}
.form-button { width: 100%; border: 0; }
.form-result {
  display: none;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: #f5efe6;
  background: rgba(143, 227, 207, 0.10);
  line-height: 1.55;
}
.form-result.show { display: block; }
.form-result.error { background: rgba(255, 111, 97, 0.12); }
.ref-link {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 8px;
  color: var(--mint);
  font-weight: 760;
}

.footer {
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-brand { gap: 10px; color: var(--ink); font-weight: 800; }
.footer-brand img {
  width: 122px;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }

@keyframes navDrop {
  from { opacity: 0; transform: translateX(-50%) translateY(-14px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes textLift {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: rotateY(-12deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-10deg) rotateX(5deg) translateY(-14px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.2); opacity: 1; }
}
@keyframes slowZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.09); }
}
@keyframes ctaSheen {
  0%, 62% { transform: translateX(-120%) skewX(-18deg); }
  78%, 100% { transform: translateX(120%) skewX(-18deg); }
}
@keyframes softGlow {
  0%, 100% { border-color: rgba(143, 227, 207, 0.22); box-shadow: 0 0 0 rgba(143, 227, 207, 0); }
  50% { border-color: rgba(143, 227, 207, 0.42); box-shadow: 0 0 32px rgba(143, 227, 207, 0.08); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes panelSweep {
  0%, 58% { transform: translateX(-105%); }
  78%, 100% { transform: translateX(105%); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18), 0 0 0 rgba(242, 197, 114, 0); }
  50% { box-shadow: 0 24px 90px rgba(0, 0, 0, 0.24), 0 0 38px rgba(242, 197, 114, 0.12); }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-inner, .waitlist-section, .activity-showcase, .ambassador-hero { grid-template-columns: 1fr; }
  .phone-wrap { justify-self: center; }
  .app-grid, .feature-grid, .ambassador-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { top: 10px; width: calc(100% - 20px); }
  .brand-logo { width: 112px; height: 36px; }
  .brand-logo img { width: 108px; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding: 108px 16px 58px; }
  .hero-inner { gap: 34px; }
  .hero-actions .button { width: 100%; }
  .early-access-strip { align-items: flex-start; border-radius: 8px; }
  .app-grid, .feature-grid, .ambassador-grid { grid-template-columns: 1fr; }
  .section { width: calc(100% - 28px); padding: 72px 0; }
  .surface, .feature, .waitlist-form { padding: 20px; }
  .signup-benefits { grid-template-columns: 1fr; }
  .phone { transform: none; animation: none; }
  .photo-card { grid-template-columns: 1fr; }
  .photo-card img { min-height: 220px; }
  .ambassador-hero > div:first-child, .ambassador-card { padding: 22px; }
  .footer { align-items: flex-start; flex-direction: column; gap: 10px; }
}

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