:root {
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.74);
  --line: rgba(255, 255, 255, 0.1);
  --purple: #8c2cff;
  --pink: #ff4ecb;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
.page-shell {
  min-height: 100vh;
  background: radial-gradient(
      70% 30% at 50% 8%,
      rgba(185, 34, 78, 0.22) 0%,
      rgba(117, 0, 255, 0.18) 40%,
      rgba(0, 0, 0, 0) 72%
    ), linear-gradient(180deg, #000 0%, #050505 18%, #000 100%);
}
.topbar,
.hero,
.section,
.cta-band {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 8px;
}
.brand img {
  width: 94px;
  height: auto;
}
.top-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 32px 0 72px;
}
.eyebrow {
  display: inline-block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1,
.section-header h2,
.cta-copy h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -.05em;
  font-weight: 800;
}
.hero h1 {
  font-size: clamp(48px, 6vw, 88px);
}
.hero-sub {
  margin: 24px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}
.hero-actions,
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: transform .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  box-shadow: 0 18px 36px rgba(140, 44, 255, 0.24);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-visual:before {
  content: '';
  position: absolute;
  inset: auto 14% -6% 14%;
  height: 42%;
  background: radial-gradient(
    circle,
    rgba(190, 34, 78, 0.55) 0%,
    rgba(150, 0, 255, 0.4) 36%,
    rgba(0, 0, 0, 0) 74%
  );
  filter: blur(40px);
  z-index: 0;
}
.phone-frame {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  aspect-ratio: 9 / 19;
  border-radius: 48px;
  padding: 14px;
  background: #0c0c0f;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 26px;
  background: #0a0a0d;
  border-radius: 0 0 18px 18px;
  z-index: 3;
}
.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
}
.section {
  padding: 80px 0;
}
.section-dark {
  position: relative;
}
.section-dark:before {
  content: '';
  position: absolute;
  inset: 0 -24px;
  border-radius: 42px;
  background: radial-gradient(
      50% 25% at 50% 10%,
      rgba(190, 34, 78, 0.15) 0%,
      rgba(120, 0, 255, 0.14) 48%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.01)
    );
  z-index: 0;
}
.section > * {
  position: relative;
  z-index: 1;
}
.section-header.center {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 900px;
}
.section-header h2,
.cta-copy h2 {
  font-size: clamp(34px, 4vw, 56px);
}
.section-header p,
.cta-copy p {
  margin: 16px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.money-visual {
  margin-top: 36px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.money-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.money-point {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.money-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-weight: 800;
}
.money-point p {
  margin: 0;
  color: #fff;
  line-height: 1.6;
  font-size: 16px;
}
.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.itinerary-card {
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 9 / 16;
  background: #111;
  box-shadow: var(--shadow);
}
.itinerary-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.stats-card {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.stats-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(34px, 3vw, 54px);
  letter-spacing: -.04em;
  line-height: 1;
}
.stats-copy p {
  margin: 0 0 18px;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.35;
  color: #fff;
}
.bottom-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
  padding: 0 8px;
  font-size: clamp(20px, 1.7vw, 28px);
}
.cta-band {
  padding: 0 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .money-points {
    grid-template-columns: 1fr;
  }
  .itinerary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .bottom-stats {
    grid-template-columns: 1fr;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 680px) {
  .topbar,
  .hero,
  .section,
  .cta-band {
    width: min(100% - 28px, 1240px);
  }
  .top-cta {
    display: none;
  }
  .hero {
    padding-top: 18px;
    padding-bottom: 56px;
  }
  .hero-actions,
  .cta-actions {
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .itinerary-grid {
    grid-template-columns: 1fr;
  }
  .stats-card {
    flex-direction: column;
  }
  .stats-copy h3 {
    font-size: 42px;
  }
  .stats-copy p,
  .bottom-stats {
    font-size: 22px;
  }
}
