*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0d0d;
  --dark: #111111;
  --card: #1a1a1a;
  --card2: #1e1e1e;
  --border: #2a2a2a;
  --lime: #c8f135;
  --lime-dark: #aad420;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #bbbbbb;
  --text: #e8e8e8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: rgba(13,13,13,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-size: 22px; font-weight: 900; letter-spacing: -.5px; color: var(--lime); text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: var(--gray-light); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--lime); color: var(--black);
  border: none; padding: 10px 22px; border-radius: 8px;
  font-weight: 700; font-size: 14px; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: background .2s, transform .2s;
}
.btn-nav:hover { background: var(--lime-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(13,13,13,.97) 0%, rgba(13,13,13,.85) 45%, rgba(13,13,13,.25) 100%),
    url('/assets/img/hero.png');
  background-size: cover;
  background-position: center 35%;
}
.hero-content {
  padding: 80px 80px 80px 80px;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--lime); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--lime); }
.hero h1 {
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 900; line-height: 1.0; letter-spacing: -2.5px;
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--lime); }
.hero-desc { font-size: 17px; color: var(--gray-light); line-height: 1.7; margin-bottom: 40px; max-width: 440px; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lime); color: var(--black);
  border: none; padding: 18px 40px; border-radius: 10px;
  font-weight: 800; font-size: 16px; cursor: pointer;
  text-decoration: none; letter-spacing: -.3px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-hero:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,241,53,.3); }
.hero-note {
  font-size: 12px; color: var(--gray); margin-top: 14px;
  display: flex; align-items: center; gap: 6px;
}
.hero-note::before { content: '●'; color: var(--lime); font-size: 8px; }
.social-proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--black); margin-left: -9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.avatars span:first-child { margin-left: 0; }
.av1 { background: #3d5a3e; }
.av2 { background: #5a3d3d; }
.av3 { background: #3d435a; }
.av4 { background: #4a3d5a; }
.av5 { background: #5a4f3d; }
.social-proof-text { font-size: 13px; color: var(--gray); }
.social-proof-text strong { color: var(--white); }

.hero-phone {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  padding: 100px 40px 60px;
}
.hero-phone img {
  width: 300px; max-width: 100%;
  transform: rotate(3deg);
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.9)) drop-shadow(0 0 60px rgba(200,241,53,.08));
  transition: transform .4s ease;
}
.hero-phone img:hover { transform: rotate(0deg) scale(1.02); }

/* ── URGENCY BANNER ── */
.urgency-banner {
  background: linear-gradient(90deg, #1a1f0a, #1e2610, #1a1f0a);
  border-top: 1px solid rgba(200,241,53,.2);
  border-bottom: 1px solid rgba(200,241,53,.2);
  padding: 14px 48px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap; text-align: center;
}
.urgency-banner span { font-size: 13px; color: var(--gray-light); }
.urgency-banner strong { color: var(--lime); }
.spots-pill {
  background: rgba(200,241,53,.12); border: 1px solid rgba(200,241,53,.3);
  color: var(--lime); font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; letter-spacing: .05em;
  text-transform: uppercase; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.live-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.btn-banner {
  background: var(--lime); color: var(--black);
  padding: 9px 18px; border-radius: 8px; font-weight: 700;
  font-size: 13px; text-decoration: none; white-space: nowrap;
  transition: background .2s;
}
.btn-banner:hover { background: var(--lime-dark); }

/* ── SHARED SECTION STYLES ── */
.section { padding: 96px 80px; }
.eyebrow {
  text-align: center; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--lime);
  margin-bottom: 14px;
}
.section-title {
  text-align: center; font-size: clamp(30px, 3vw, 46px);
  font-weight: 900; letter-spacing: -1.5px; margin-bottom: 56px;
  line-height: 1.1;
}
.divider { width: 100%; height: 1px; background: var(--border); }

/* ── HOW IT WORKS ── */
.steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; max-width: 900px; margin: 0 auto;
}
.step { flex: 1; text-align: center; padding: 32px 24px; }
.step-connector {
  flex: 0 0 60px; display: flex; align-items: flex-start;
  padding-top: 52px; justify-content: center;
}
.step-connector::after {
  content: ''; display: block; width: 50px; height: 1px;
  background: linear-gradient(90deg, rgba(200,241,53,.3), rgba(200,241,53,.7));
}
.step-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--card); border: 1px solid rgba(200,241,53,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-num { font-size: 11px; font-weight: 700; color: var(--lime); letter-spacing: .08em; margin-bottom: 14px; }
.step h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ── APP SCREENS ── */
.screens-section {
  padding: 96px 80px;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.screens-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: end;
}
.screen-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.screen-card:hover { transform: translateY(-6px); border-color: rgba(200,241,53,.25); }
.screen-card:nth-child(2) { transform: translateY(-24px); }
.screen-card:nth-child(2):hover { transform: translateY(-30px); }
.screen-card:nth-child(4) { transform: translateY(-16px); }
.screen-card:nth-child(4):hover { transform: translateY(-22px); }
.screen-card img { width: 100%; display: block; }
.screen-label {
  padding: 14px 16px;
  font-size: 11px; font-weight: 700; color: var(--lime);
  text-transform: uppercase; letter-spacing: .08em;
}
.screen-desc {
  padding: 0 16px 16px;
  font-size: 12px; color: var(--gray); line-height: 1.5;
}

/* ── RECONNECT ── */
.reconnect-inner {
  display: grid; grid-template-columns: 400px 1fr;
  gap: 96px; align-items: center;
  max-width: 1180px; margin: 0 auto;
}
.reconnect-left h2 {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 900;
  letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 20px;
}
.reconnect-left > p { font-size: 16px; color: var(--gray-light); margin-bottom: 36px; line-height: 1.75; }
.feature-list { display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; align-items: center; gap: 14px; }
.feat-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: rgba(200,241,53,.08); border: 1px solid rgba(200,241,53,.2);
  display: flex; align-items: center; justify-content: center;
}
.feature-item span { font-size: 15px; font-weight: 500; color: var(--text); }
.photo-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start;
}
.photo-card {
  background: var(--card); border-radius: 16px;
  border: 1px solid var(--border); overflow: hidden;
}
.photo-card:nth-child(2) { margin-top: 32px; }
.photo-card img { width: 100%; display: block; }
.photo-card-info { padding: 14px 16px; }
.photo-card-kicker { font-size: 11px; font-weight: 700; color: var(--lime); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.photo-card-desc { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ── TESTIMONIAL ── */
.testimonial-section {
  padding: 80px;
  background: linear-gradient(135deg, #111a08, #0d0d0d);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.testimonial-quote {
  font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; line-height: 1.55;
  color: var(--white); margin-bottom: 28px; letter-spacing: -.4px;
}
.testimonial-quote::before { content: '\201C'; color: var(--lime); }
.testimonial-quote::after  { content: '\201D'; color: var(--lime); }
.t-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #4a6741, #3a5266);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: white;
}
.t-name { font-size: 14px; font-weight: 700; }
.t-role { font-size: 13px; color: var(--gray); }

/* ── WHY RALLY ── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; max-width: 1100px; margin: 0 auto;
}
.why-card {
  background: var(--card); padding: 48px 40px;
  border: 1px solid var(--border);
  transition: background .2s, border-color .2s;
}
.why-card:first-child { border-radius: 16px 0 0 16px; }
.why-card:last-child  { border-radius: 0 16px 16px 0; }
.why-card:hover { background: #1f1f1f; border-color: rgba(200,241,53,.25); }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(200,241,53,.1); border: 1px solid rgba(200,241,53,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.why-card h4 { font-size: 20px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.4px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── GROUP PHOTO ── */
.group-photo {
  position: relative; height: 560px; overflow: hidden;
  background-image: url('/assets/img/hero.png');
  background-size: cover; background-position: center top;
}
.group-photo-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(13,13,13,.5) 0%, transparent 25%, transparent 70%, rgba(13,13,13,.5) 100%);
}
.group-photo-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.group-photo-content .eyebrow { text-align: center; }
.group-photo-content h2 {
  font-size: clamp(32px, 5vw, 64px); font-weight: 900; letter-spacing: -2px;
  line-height: 1.05; max-width: 700px;
  text-shadow: 0 2px 40px rgba(0,0,0,.8);
  margin-bottom: 16px;
}
.group-photo-content p {
  font-size: 17px; color: rgba(255,255,255,.82);
  max-width: 480px; line-height: 1.7;
  text-shadow: 0 1px 20px rgba(0,0,0,.9);
  margin-bottom: 32px;
}
.btn-group-photo {
  background: var(--lime); color: var(--black);
  padding: 16px 36px; border-radius: 10px;
  font-weight: 800; font-size: 15px; text-decoration: none;
  letter-spacing: -.3px;
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
  transition: background .2s, transform .2s;
}
.btn-group-photo:hover { background: var(--lime-dark); transform: translateY(-2px); }

/* ── WAITLIST ── */
.waitlist-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1180px; margin: 0 auto;
  padding: 96px 80px; align-items: start;
}
.wl-left h2 {
  font-size: clamp(34px, 4vw, 56px); font-weight: 900;
  letter-spacing: -2px; line-height: 1.05; margin-bottom: 16px;
}
.wl-left h2 em { font-style: normal; color: var(--lime); }
.wl-left > p { font-size: 15px; color: var(--gray); margin-bottom: 28px; line-height: 1.7; }
.price-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(200,241,53,.1); border: 1px solid rgba(200,241,53,.3);
  border-radius: 10px; padding: 12px 18px; margin-bottom: 20px;
}
.price-big { font-size: 30px; font-weight: 900; color: var(--lime); letter-spacing: -1px; }
.price-note { font-size: 13px; color: var(--gray-light); line-height: 1.4; }
.price-note strong { color: var(--lime); }
.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 28px;
}
.tier-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border); border-radius: 12px; padding: 16px;
}
.tier-card.featured {
  background: rgba(200,241,53,.1);
  border-color: rgba(200,241,53,.45);
}
.tier-label { font-size: 10px; font-weight: 900; color: var(--lime); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.tier-price { font-size: 30px; font-weight: 900; letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.tier-note { font-size: 12px; color: var(--gray-light); line-height: 1.4; }
.perks { display: flex; flex-direction: column; gap: 12px; }
.perk { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.perk-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(200,241,53,.12); border: 1.5px solid var(--lime);
  display: flex; align-items: center; justify-content: center;
}
.wl-form {
  background: var(--card); border-radius: 20px; padding: 40px;
  border: 1px solid var(--border);
}
.wl-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.field { margin-bottom: 12px; }
.field input, .field select {
  width: 100%; background: var(--card2);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px; color: var(--white);
  font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .2s; appearance: none;
}
.field input::placeholder { color: var(--gray); }
.field input:focus, .field select:focus { border-color: var(--lime); background: #242424; }
.btn-submit {
  width: 100%; background: var(--lime); color: var(--black);
  border: none; padding: 16px; border-radius: 10px;
  font-weight: 800; font-size: 16px; cursor: pointer;
  margin-top: 6px; letter-spacing: -.3px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-submit:hover { background: var(--lime-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,241,53,.25); }
.form-guarantee {
  text-align: center; font-size: 12px; color: var(--gray);
  margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.spots-counter {
  text-align: center; margin-top: 18px; padding: 14px;
  background: rgba(200,241,53,.05); border-radius: 8px;
  border: 1px solid rgba(200,241,53,.15);
}
.spots-counter strong { color: var(--lime); font-size: 24px; font-weight: 900; display: block; }
.spots-counter span { font-size: 12px; color: var(--gray); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border); padding: 32px 80px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-logo { font-size: 18px; font-weight: 900; color: var(--lime); }
footer p { font-size: 13px; color: var(--gray); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--gray); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--lime); }

/* ── FADE-UP ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .7s ease forwards; }
.fade-up.d1 { animation-delay: .05s; }
.fade-up.d2 { animation-delay: .15s; }
.fade-up.d3 { animation-delay: .25s; }
.fade-up.d4 { animation-delay: .35s; }
.fade-up.d5 { animation-delay: .45s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-phone { padding: 40px 40px 60px; }
  .hero-phone img { transform: none; width: 260px; }
  .screens-row { grid-template-columns: repeat(3, 1fr); }
  .screen-card:nth-child(2), .screen-card:nth-child(4) { transform: none !important; }
  .reconnect-inner { grid-template-columns: 1fr; gap: 56px; }
  .why-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-card { border-radius: 12px !important; }
  .waitlist-wrap { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 100px 24px 40px; }
  .section { padding: 60px 24px; }
  .screens-section { padding: 60px 24px; }
  .screens-row { grid-template-columns: repeat(2, 1fr); }
  .testimonial-section { padding: 60px 24px; }
  .urgency-banner { padding: 12px 20px; }
  .waitlist-wrap { padding: 60px 24px; }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  footer { flex-direction: column; text-align: center; padding: 24px; }
  .tiers { grid-template-columns: 1fr; }
  .photo-cards { grid-template-columns: 1fr; }
  .photo-card:nth-child(2) { margin-top: 0; }
}
.hero-phone img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 40px 80px rgba(0,0,0,.25))
    drop-shadow(0 15px 30px rgba(0,0,0,.15));
}

.hero-phone {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
