:root {
  color-scheme: dark;
  --bg-dark: #0A0E27;
  --bg-deep: radial-gradient(circle at top, rgba(15, 20, 50, 0.95), #0A0E27);
  --text-main: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.85);
  --accent: #FFD600;
  --accent-secondary: #FF6B00;
  --accent-tertiary: #8DE2FF;
  --card-glass: rgba(20, 30, 60, 0.6);
  --card-border: rgba(255, 255, 255, 0.15);
  --card-shadow: 0 40px 80px -40px rgba(255, 209, 102, 0.4);
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

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

body {
  margin: 0;
  padding: 0;
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Prevent text size adjustment on iOS */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* Prevent pull-to-refresh on mobile */
  overscroll-behavior-y: contain;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.25), transparent 60%);
  filter: blur(80px);
  z-index: -2;
  opacity: 1;
  animation: pulseGlow 8s ease-in-out infinite;
}

body::before {
  top: -300px;
  right: -300px;
}

body::after {
  bottom: -300px;
  left: -300px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.2), transparent 60%);
  animation-delay: 2s;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  padding: 72px clamp(24px, 6vw, 96px) 120px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(10, 14, 39, 0.95), rgba(4, 6, 23, 1));
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero__gradient-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.4), transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.hero__gradient-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.3), transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.hero__gradient-orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.25), transparent 70%);
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 214, 0, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 214, 0, 0.8);
  animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 80%;
  top: 40%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  left: 30%;
  top: 70%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  left: 70%;
  top: 10%;
  animation-delay: 6s;
}

.particle:nth-child(5) {
  left: 50%;
  top: 60%;
  animation-delay: 8s;
}

.particle:nth-child(6) {
  left: 20%;
  top: 50%;
  animation-delay: 10s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__brand img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 15px 30px rgba(255, 209, 102, 0.35));
}

.nav__meta {
  display: flex;
  flex-direction: column;
}

.nav__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav__subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links > a {
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav__links > a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.nav__cta {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px -24px rgba(255, 209, 102, 0.5);
}

/* Resources Dropdown - Updated v2 */
.nav__dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.nav__dropdown-toggle {
  background: none;
  border: none;
  color: white;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
  padding: 0;
  margin: 0;
}

.nav__dropdown-toggle:hover {
  opacity: 1;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav__dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  display: none !important;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  min-width: 240px;
  background: linear-gradient(135deg, rgba(28, 31, 43, 0.98) 0%, rgba(18, 20, 28, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.95);
  transition: opacity 0.2s ease, visibility 0.2s ease 0.15s, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(255, 255, 255, 0.12),
              0 8px 32px rgba(230, 126, 34, 0.15);
  z-index: 10000;
}

/* Add invisible bridge between button and menu */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.nav__dropdown:hover .nav__dropdown-menu {
  display: flex !important;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0) scale(1);
  transition: opacity 0.2s ease, visibility 0s, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Keep menu open when hovering over the menu itself */
.nav__dropdown-menu:hover {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Keep menu open when hovering over dropdown items */
.nav__dropdown:has(.nav__dropdown-menu:hover) .nav__dropdown-menu {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Force dropdown items to stay inside menu */
.nav__dropdown-menu .dropdown-item {
  position: relative;
  display: flex !important;
  pointer-events: all !important;
}

.dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none !important;
  border-radius: 10px;
  transition: all 0.25s ease;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
  pointer-events: all !important;
  cursor: pointer;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.18) 0%, rgba(243, 156, 18, 0.18) 100%);
  color: #FFD166 !important;
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

.dropdown-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  display: inline-block;
}

.dropdown-item:hover .dropdown-icon {
  transform: scale(1.15);
}

.hero__main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(40px, 8vh, 80px);
}

.hero__content {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(255, 214, 0, 0.1);
  border: 1px solid rgba(255, 214, 0, 0.3);
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 214, 0, 0.4);
  }
}

.hero__badge-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(255, 214, 0, 0.8));
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero__badge-text {
  font-size: 0.9rem;
  color: #FFD600;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__title-line {
  display: block;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFD600 50%, #FFFFFF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShine 4s ease-in-out infinite;
}

.hero__title-line--accent {
  background: linear-gradient(135deg, #FFD600 0%, #FF6B00 50%, #FFD600 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShine 4s ease-in-out infinite 0.5s;
  filter: drop-shadow(0 0 30px rgba(255, 214, 0, 0.3));
}

@keyframes titleShine {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 48px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  border-radius: 24px;
  background: rgba(20, 30, 60, 0.4);
  border: 1px solid rgba(255, 214, 0, 0.2);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: featureFadeIn 0.8s ease-out both;
  position: relative;
  overflow: hidden;
}

.hero__feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 214, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero__feature:hover::before {
  opacity: 1;
}

.hero__feature:nth-child(1) {
  animation-delay: 0.1s;
}

.hero__feature:nth-child(2) {
  animation-delay: 0.2s;
}

.hero__feature:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes featureFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__feature:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 214, 0, 0.4);
  box-shadow: 0 20px 60px -20px rgba(255, 214, 0, 0.3);
}

.hero__feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 214, 0, 0.2), rgba(255, 107, 0, 0.1));
  border: 1px solid rgba(255, 214, 0, 0.3);
  color: #FFD600;
  animation: iconFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.hero__feature-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(255, 214, 0, 0.6));
}

.hero__feature:nth-child(2) .hero__feature-icon {
  animation-delay: 0.5s;
}

.hero__feature:nth-child(3) .hero__feature-icon {
  animation-delay: 1s;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

.hero__feature-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.hero__feature-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}


.hero__cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateY(2px);
}

.btn--primary {
  background: linear-gradient(135deg, #FFD600, #FF6B00);
  color: #040617;
  box-shadow: 
    0 10px 40px -10px rgba(255, 214, 0, 0.5),
    0 0 0 1px rgba(255, 214, 0, 0.2);
  border: none;
}

.btn--primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 20px 60px -15px rgba(255, 214, 0, 0.7),
    0 0 0 1px rgba(255, 214, 0, 0.3);
}

.btn--ghost {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 214, 0, 0.6);
  background: rgba(255, 214, 0, 0.1);
  box-shadow: 0 20px 40px -15px rgba(255, 214, 0, 0.3);
}


.hero__halo {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.25), transparent 65%);
  filter: blur(120px);
  opacity: 0.8;
  z-index: 0;
  animation: haloPulse 6s ease-in-out infinite;
}

@keyframes haloPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  animation: fadeIn 1.5s ease-out 0.4s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(20, 30, 60, 0.6);
  border: 1px solid rgba(255, 214, 0, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px -30px rgba(255, 214, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 214, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 214, 0, 0.4);
  box-shadow: 0 30px 70px -25px rgba(255, 214, 0, 0.4);
}

.stat-card__icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 15px rgba(255, 214, 0, 0.5));
  animation: iconFloat 3s ease-in-out infinite;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.stat-card:nth-child(2) .stat-card__icon {
  animation-delay: 0.5s;
}

.stat-card:nth-child(3) .stat-card__icon {
  animation-delay: 1s;
}

.stat-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD600, #FF6B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-card__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.section {
  padding: clamp(96px, 12vh, 160px) clamp(24px, 6vw, 96px);
  position: relative;
}

.section__content {
  max-width: 760px;
  margin-bottom: 64px;
}

.section__content--narrow {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__content--wide {
  max-width: 1100px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 18px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.section--wow {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.wow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.wow-card {
  padding: 24px;
  border-radius: 18px;
  background: rgba(20, 30, 60, 0.78);
  border: 1px solid rgba(255, 214, 0, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px -30px rgba(255, 214, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 160px;
}

.wow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -30px rgba(255, 214, 0, 0.4);
  border-color: rgba(255, 214, 0, 0.32);
}

.wow-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.wow-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.vision__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.vision__device {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: fadeInRight 1.2s ease-out 0.2s both;
  padding: 40px;
}

.vision__device::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 214, 0, 0.1), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.vision__device:hover::before {
  opacity: 1;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.phone-mockup {
  position: relative;
  width: clamp(280px, 32vw, 400px);
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  overflow: visible;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision__device:hover .phone-mockup {
  transform: scale(1.05);
}

.phone-mockup img {
  width: 100%;
  display: block;
  border-radius: 0;
  position: relative;
  z-index: 1;
  transition: filter 0.3s ease;
}

.vision__device:hover .phone-mockup img {
  filter: brightness(1.1);
}

/* App Name on Phone - Top Header */
.phone-app-name {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 14px;
  background: rgba(4, 6, 23, 0.9);
  border: 1px solid rgba(255, 214, 0, 0.3);
  color: #FFD600;
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  z-index: 10;
  line-height: 1.2;
}

.phone-app-name::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFD600;
  flex-shrink: 0;
}

.section--modes {
  text-align: center;
  background: linear-gradient(160deg, rgba(15, 20, 50, 0.9), rgba(20, 30, 60, 0.95));
  position: relative;
}

.section--modes::before {
  content: '';
  position: absolute;
  inset: auto 10% 10% auto;
  width: clamp(220px, 30vw, 320px);
  height: clamp(220px, 30vw, 320px);
  background: radial-gradient(circle, rgba(255, 107, 0, 0.25), transparent 65%);
  z-index: -1;
  filter: blur(60px);
  animation: experienceGlow 7s ease-in-out infinite;
}

@keyframes experienceGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.mode-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.mode-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 24px;
  background: rgba(18, 24, 54, 0.78);
  border: 1px solid rgba(255, 214, 0, 0.2);
  backdrop-filter: blur(20px);
  text-align: left;
  box-shadow: 0 25px 70px -30px rgba(255, 214, 0, 0.35);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.mode-card::after {
  content: '';
  position: absolute;
  inset: auto -30% -30% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.28), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mode-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 90px -30px rgba(255, 214, 0, 0.55);
  border-color: rgba(255, 214, 0, 0.35);
}

.mode-card:hover::after {
  opacity: 1;
}

.mode-card--stability {
  background: linear-gradient(180deg, rgba(18, 24, 54, 0.9), rgba(26, 44, 96, 0.7));
}

.mode-card--stability::after {
  background: radial-gradient(circle, rgba(141, 226, 255, 0.3), transparent 70%);
}

.mode-card--galaxy {
  background: linear-gradient(180deg, rgba(24, 20, 60, 0.9), rgba(42, 20, 76, 0.65));
}

.mode-card--galaxy::after {
  background: radial-gradient(circle, rgba(255, 107, 0, 0.28), transparent 70%);
}

.mode-card--routes {
  background: linear-gradient(180deg, rgba(18, 24, 54, 0.9), rgba(20, 48, 72, 0.7));
}

.mode-card--routes::after {
  background: radial-gradient(circle, rgba(255, 214, 0, 0.28), transparent 70%);
}

.mode-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.mode-card__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD600, #FF6B00);
  box-shadow: 0 0 8px rgba(255, 214, 0, 0.6);
}

.mode-card h3 {
  font-family: var(--font-display);
  margin: 16px 0 12px;
  font-size: 1.6rem;
}

.mode-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.section--community {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95), rgba(15, 20, 50, 0.95));
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.community-card {
  padding: 28px 26px;
  border-radius: 20px;
  background: rgba(18, 24, 54, 0.78);
  border: 1px solid rgba(255, 214, 0, 0.2);
  backdrop-filter: blur(18px);
  text-align: center;
  box-shadow: 0 25px 70px -32px rgba(255, 214, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 90px -32px rgba(255, 214, 0, 0.45);
  border-color: rgba(255, 214, 0, 0.32);
}

.community-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  background: linear-gradient(135deg, #FFD600, #FF6B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.community-card__label {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.section--download {
  background: radial-gradient(circle at top, rgba(15, 20, 50, 0.95), rgba(10, 14, 39, 0.98));
}

.download__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}

.download__content {
  padding: 28px;
  border-radius: 24px;
  background: rgba(20, 30, 60, 0.8);
  border: 1px solid rgba(255, 214, 0, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px -40px rgba(255, 214, 0, 0.4);
}

.download__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.download__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0 0 18px;
}

.download__content p {
  color: var(--text-muted);
  line-height: 1.8;
}

.download__buttons {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 214, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  min-width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.store-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -35px rgba(255, 214, 0, 0.7);
  border-color: rgba(255, 214, 0, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.store-btn__icon {
  font-size: 2rem;
}

.store-btn img {
  width: 32px;
  height: 32px;
}

.store-btn__text small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.65;
}

.store-btn__text strong {
  display: block;
  font-size: 1.1rem;
}

.download__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.download__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.download__value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-top: 6px;
}

.download__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.beacon-orbit {
  position: relative;
  width: clamp(260px, 32vw, 340px);
  height: clamp(260px, 32vw, 340px);
}

.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.08);
  animation: orbitRotate 22s linear infinite;
}

.orbit--solar {
  border-color: rgba(255, 209, 102, 0.35);
}

.orbit--generator {
  inset: 12%;
  border-color: rgba(255, 122, 69, 0.35);
  animation-duration: 18s;
}

.orbit--grid {
  inset: 22%;
  border-color: rgba(255, 255, 255, 0.25);
  animation-duration: 26s;
}

.beacon {
  position: absolute;
  inset: 35%;
  border-radius: 30px;
  background: rgba(4, 6, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 60px -35px rgba(255, 209, 102, 0.6);
}

.beacon img {
  width: 70%;
  filter: drop-shadow(0 20px 40px rgba(255, 209, 102, 0.45));
}

.footer {
  padding: 64px clamp(24px, 6vw, 96px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 80px;
}

.footer__brand {
  display: flex;
  gap: 18px;
  max-width: 420px;
  align-items: center;
}

.footer__brand img {
  width: 48px;
  height: 48px;
}

.footer__links {
  display: flex;
  gap: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.75;
}

.footer__links a:hover {
  opacity: 1;
}

.footer__legal {
  width: 100%;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
}

@keyframes orbitRotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav__links {
    flex-wrap: wrap;
  }

  /* Hide dropdown on mobile */
  .nav__dropdown {
    display: none;
  }

  .vision__container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .vision__device {
    order: -1;
    margin-bottom: 24px;
  }

  .phone-mockup {
    width: clamp(260px, 50vw, 340px);
  }

  .vision__device {
    padding: 30px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero__problem {
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  .hero__problem-icon {
    font-size: 1.2rem;
  }

  .hero__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero__feature {
    padding: 24px 20px;
  }

  .hero__feature-icon {
    width: 56px;
    height: 56px;
  }

  .hero__feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .hero__feature-content h3 {
    font-size: 1.1rem;
  }

  .hero__feature-content p {
    font-size: 0.9rem;
  }

  .download__buttons {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 48px 16px 80px;
    min-height: auto;
  }

  .section {
    padding: 60px 16px;
  }

  .nav {
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav__brand {
    width: 100%;
    justify-content: center;
  }

  .nav__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
  }

  .hero__main {
    margin-top: 32px;
    gap: 32px;
  }

  .hero__device {
    margin-bottom: 16px;
  }

  .phone-mockup {
    width: clamp(240px, 70vw, 300px);
    padding: 0;
  }

  .vision__device {
    padding: 20px;
  }

  .hero__title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.2;
  }

  .hero__badge {
    font-size: 0.8rem;
    padding: 8px 18px;
  }

  .hero__badge-icon {
    font-size: 1rem;
  }

  .hero__features {
    gap: 16px;
  }

  .hero__feature {
    padding: 20px 16px;
  }

  .hero__feature-icon {
    width: 48px;
    height: 48px;
  }

  .hero__feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero__feature-content h3 {
    font-size: 1rem;
  }

  .hero__feature-content p {
    font-size: 0.85rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 20px;
    gap: 16px;
  }

  .stat-card__icon {
    font-size: 2rem;
  }

  .stat-card__value {
    font-size: 1.8rem;
  }

  .hero__badges {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-card__value {
    font-size: 1.8rem;
  }

  .section__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section__subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .wow-grid,
  .mode-carousel,
  .community-grid,
  .download__metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wow-card,
  .mode-card,
  .community-card {
    padding: 20px;
  }

  .phone-mockup {
    width: 100%;
    max-width: 280px;
    padding: 12px;
  }

  .phone-app-name {
    top: 6%;
    font-size: clamp(0.65rem, 2.5vw, 0.8rem);
    padding: 5px 12px;
  }

  .download__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .download__buttons {
    flex-direction: column;
    width: 100%;
  }

  .store-btn {
    width: 100%;
    min-width: auto;
  }

  .footer {
    padding: 48px 16px;
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer__brand {
    flex-direction: column;
    align-items: center;
  }

  .footer__links {
    flex-direction: column;
    gap: 12px;
  }
}

/* Extra small devices (phones in portrait, < 400px) */
@media (max-width: 400px) {
  .hero {
    padding: 40px 12px 60px;
  }

  .section {
    padding: 48px 12px;
  }

  .hero__title {
    font-size: 1.6rem;
  }

  .section__title {
    font-size: 1.4rem;
  }

  .phone-mockup {
    max-width: 240px;
  }

  .stat-card__value {
    font-size: 1.5rem;
  }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .store-btn,
  .nav__links a,
  .card,
  .wow-card,
  .mode-card,
  .community-card {
    -webkit-tap-highlight-color: rgba(255, 214, 0, 0.2);
    touch-action: manipulation;
  }

  .btn:active,
  .store-btn:active {
    transform: scale(0.98);
  }
}

/* Landscape orientation on mobile */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 32px 20px 60px;
  }

  .hero__content {
    margin-top: 24px;
  }

  .section {
    padding: 60px 20px;
  }
}

