/* ============================================================
   ULTIMATE ASTA – Landing Page Styles
   ============================================================ */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-deep: #080e1a;
  --bg-dark: #0f2027;
  --bg-mid: #162a3a;
  --teal: #2c5364;
  --teal-light: #4a7c8f;
  --purple: #6200ee;
  --purple-light: #bb86fc;
  --gold: #ffd700;
  --gold-light: #ffe566;
  --green: #00c853;
  --blue: #0091ea;
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  --font: 'Montserrat', sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Utility ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--purple-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--purple-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--white-70);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(8, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.gavel-icon {
  font-size: 22px;
}

.nav-brand {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--white);
}

.nav-brand .accent {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--white-70);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(98, 0, 238, 0.4);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 110px 24px 80px;
}

/* ---- Stadium background image ---- */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 30%;
  transform: perspective(900px) rotateX(6deg) scale(1.12);
  transform-origin: center top;
  opacity: 0.45;
  filter: saturate(1.3) brightness(0.7);
  will-change: transform;
}

/* Gradient overlays on top of the stadium image */
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8, 14, 26, 0.82) 0%,
      rgba(8, 14, 26, 0.30) 38%,
      rgba(8, 14, 26, 0.50) 70%,
      rgba(8, 14, 26, 0.95) 100%),
    linear-gradient(to right,
      rgba(8, 14, 26, 0.60) 0%,
      transparent 40%,
      transparent 60%,
      rgba(8, 14, 26, 0.60) 100%);
}

/* Animated orbs — kept on top of bg img */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
  z-index: 1;
}

.orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(98, 0, 238, 0.22) 0%, transparent 70%);
  top: -300px;
  left: -250px;
  animation-delay: 0s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 83, 100, 0.28) 0%, transparent 70%);
  bottom: -200px;
  right: -150px;
  animation-delay: -3s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.10) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: -5s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -40px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.97);
  }
}

#particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* ---- Hero Text ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(187, 134, 252, 0.12);
  border: 1px solid rgba(187, 134, 252, 0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--purple-light);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(3.4rem, 7.5vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -2px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 500px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* ---- Download Badges ---- */
.download-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.store-badge {
  text-decoration: none;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}

.store-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(98, 0, 238, 0.3);
}

.badge-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition);
}

.store-badge:hover .badge-inner {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(187, 134, 252, 0.4);
}

.store-icon {
  width: 28px;
  height: 28px;
  color: var(--white);
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-sub {
  font-size: 10px;
  color: var(--white-70);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.badge-store {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
}

.hero-free {
  font-size: 13px;
  color: var(--white-40);
  font-weight: 500;
}

/* ---- Hero Phone ---- */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(98, 0, 238, 0.45) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

.phone-frame {
  position: relative;
  width: 360px;
  border-radius: 48px;
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(187, 134, 252, 0.4),
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(98, 0, 238, 0.3);
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(-1.5deg);
  }

  50% {
    transform: translateY(-20px) rotate(1.5deg);
  }
}

.phone-img {
  width: 100%;
  display: block;
}

/* Fallback auction demo if image missing */
.phone-fallback {
  display: none;
  background: linear-gradient(160deg, #0f2027, #203a43, #2c5364);
  padding: 40px 24px;
  min-height: 500px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.auction-demo {
  text-align: center;
  width: 100%;
}

.demo-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--white-40);
  font-weight: 700;
  margin-bottom: 20px;
}

.demo-player {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.demo-bid {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.demo-bid span {
  font-size: 24px;
}

.demo-timer {
  font-size: 80px;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  margin: 16px 0 24px;
  font-family: 'Courier New', monospace;
}

.demo-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.demo-btn {
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  cursor: pointer;
  flex: 1;
}

.demo-btn.green {
  background: var(--green);
}

.demo-btn.blue {
  background: var(--blue);
}

.demo-btn.purple {
  background: var(--purple);
}

/* Floating chips */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 32, 39, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.chip-bid {
  left: -80px;
  top: 20%;
  animation: chipFloat 3.5s ease-in-out infinite;
}

.chip-win {
  right: -70px;
  bottom: 25%;
  animation: chipFloat 4s ease-in-out infinite reverse;
}

@keyframes chipFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.chip-icon {
  font-size: 20px;
}

.chip-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.chip-sub {
  font-size: 11px;
  color: var(--white-70);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--purple-light), transparent);
  margin: 0 auto;
  border-radius: 2px;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }

  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  padding: 28px 24px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
}

.stat-num {
  font-size: 22px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white-70);
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--white-10);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 120px 24px;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(98, 0, 238, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(187, 134, 252, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(98, 0, 238, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 20px;
}

.feature-large h3,
.feature-large p,
.feature-large .feature-tag {
  grid-column: 2;
}

.feature-right {
  direction: rtl;
}

.feature-right>* {
  direction: ltr;
}

.feature-icon-wrap {
  grid-column: 1;
  grid-row: 1 / 4;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(187, 134, 252, 0.1);
  border: 1px solid rgba(187, 134, 252, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-large .feature-icon {
  margin-bottom: 0;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  background: rgba(187, 134, 252, 0.12);
  border: 1px solid rgba(187, 134, 252, 0.25);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--purple-light);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 120px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(98, 0, 238, 0.04) 50%, transparent 100%);
}

.how-it-works .section-inner {
  text-align: center;
}

.how-it-works .section-sub {
  margin: 0 auto 60px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step {
  position: relative;
  padding: 0 20px;
  text-align: center;
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(187, 134, 252, 0.15);
  line-height: 1;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.step-content p {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.65;
}

.step-connector {
  position: absolute;
  top: 24px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, rgba(187, 134, 252, 0.4), rgba(187, 134, 252, 0.1));
  z-index: 1;
}

/* ============================================================
   MECHANICS SECTION
   ============================================================ */
.mechanics {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(15, 32, 39, 0.6) 100%);
}

.mechanics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.mechanic-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.3s, border-color 0.3s;
}

.mechanic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.mechanic-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.mechanic-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.mechanic-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .mechanics-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing {
  padding: 100px 24px;
  background: var(--bg-deep);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  position: relative;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-featured {
  border-color: var(--purple-light);
  background: rgba(98, 0, 238, 0.08);
}

.pricing-featured:hover {
  border-color: var(--purple-light);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-light);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pricing-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
}

.pricing-featured .pricing-price {
  background: linear-gradient(135deg, var(--purple-light), #e040fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-features {
  list-style: none;
  text-align: left;
}

.pricing-features li {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--white-70);
  padding: 8px 0;
  border-bottom: 1px solid var(--white-05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-featured {
    order: -1;
  }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
  text-align: center;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(98, 0, 238, 0.2) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  bottom: 0;
  right: 20%;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-gavel {
  font-size: 64px;
  margin-bottom: 24px;
  display: block;
  animation: gavelBounce 2s ease-in-out infinite;
}

@keyframes gavelBounce {

  0%,
  100% {
    transform: rotate(-5deg) scale(1);
  }

  50% {
    transform: rotate(5deg) scale(1.1);
  }
}

.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--white-70);
  margin-bottom: 48px;
}

.cta-badges {
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--white-10);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-copy {
  font-size: 13px;
  color: var(--white-40);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {

  .chip-bid,
  .chip-win {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .feature-large .feature-icon-wrap {
    grid-row: auto;
  }

  .feature-large h3,
  .feature-large p,
  .feature-large .feature-tag {
    grid-column: 1;
  }

  .feature-right {
    direction: ltr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .download-badges {
    justify-content: center;
  }

  .hero-phone {
    order: -1;
  }

  .phone-frame {
    width: 220px;
  }

  .phone-glow {
    width: 220px;
    height: 220px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .stat-divider {
    display: none;
  }

  .stats-inner {
    gap: 8px;
  }

  .stat-item {
    padding: 8px 16px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 16px 60px;
    min-height: auto;
    /* Allow height to adapt on small screens */
  }

  .hero-title {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
    /* Smaller base size for mobile */
  }

  .download-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .store-badge {
    width: 100%;
    max-width: 280px;
  }

  .badge-inner {
    justify-content: center;
  }
}