:root {
  --bg-dark: #050507;
  --bg-card: rgba(20, 20, 25, 0.6);
  --primary: #00f090;
  --accent: #2d9cdb;
  --danger: #ff4b4b;
  --text-main: #ffffff;
  --text-muted: #8f9bb3;
  --border: rgba(255, 255, 255, 0.08);
  --glow: rgba(0, 240, 144, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: "Outfit", sans-serif;
}

.highlight {
  color: var(--primary);
  text-shadow: 0 0 30px rgba(0, 240, 144, 0.5);
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

/* Background Effects */
.background-globes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: var(--bg-dark);
}

.svg-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  animation: svgPulse 10s infinite alternate ease-in-out;
}

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

.globe {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float-globe 20s infinite alternate ease-in-out;
}

.globe-1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 240, 144, 0.15);
  top: -10%;
  left: -10%;
}

.globe-2 {
  width: 500px;
  height: 500px;
  background: rgba(45, 156, 219, 0.15);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

.globe-3 {
  width: 400px;
  height: 400px;
  background: rgba(255, 75, 75, 0.08);
  top: 40%;
  left: 60%;
  animation-delay: -12s;
}

@keyframes float-globe {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(80px, 40px) scale(1.2);
  }
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: rgba(5, 5, 7, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  letter-spacing: -0.5px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(5, 5, 7, 0.95);
  backdrop-filter: blur(12px);
  position: fixed;
  top: 77px;
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom: 1px solid var(--border);
  padding: 16px 5%;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
  color: var(--primary);
  font-weight: 600;
}

.mobile-nav a:hover {
  color: var(--text-main);
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  border: none;
  font-size: inherit;
}

.cta-button.small {
  padding: 8px 16px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.cta-button.small:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-button.primary {
  background: var(--text-main);
  color: #000;
  border: 1px solid #fff;
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
}

.cta-button.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Coming Soon Buttons */
.coming-soon-btn {
  opacity: 0.5;
  cursor: default;
  position: relative;
}

.coming-soon-btn:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.5;
}

.coming-soon-badge {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 60px 5%;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 650px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 240, 144, 0.1);
  color: var(--primary);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 240, 144, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -2px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 540px;
}

.cta-group {
  display: flex;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.stats-preview {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
}

.top-1 {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(0, 240, 144, 0.3);
}

.stat-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.vertical-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual - Phone Mockup */
.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 740px;
}

.phone-mockup {
  width: 340px;
  max-width: min(340px, calc(100vw - 32px));
  height: 700px;
  background: #000;
  border-radius: 44px;
  border: 8px solid #1a1a1a;
  box-shadow:
    0 0 0 2px #333,
    0 40px 80px -20px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* Phone Inner UI */
.screen-content {
  width: 100%;
  height: 100%;
  background: #050507;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.app-header {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 32px;
}

.portfolio-value {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-value .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.portfolio-value .change.positive {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(0, 240, 144, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.rank-tag {
  font-size: 0.8rem;
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.chart-container {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

#marketCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.chart-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
}

.signal-tag {
  background: rgba(0, 240, 144, 0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(0, 240, 144, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.signal-tag.pulsing {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 240, 144, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 240, 144, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 240, 144, 0);
  }
}

/* Order Book Style */
.order-book {
  background: rgba(20, 20, 25, 0.5);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.book-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.75rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.book-row:last-child {
  border-bottom: none;
}

.book-row.header {
  color: var(--text-muted);
  font-size: 0.65rem;
}

.asset-name {
  color: #fff;
}
.price-up {
  color: var(--primary);
}
.price-down {
  color: var(--text-muted);
}
.action-buy {
  color: var(--primary);
  background: rgba(0, 240, 144, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}
.action-sell {
  color: var(--danger);
  background: rgba(255, 75, 75, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.app-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trade-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: default;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trade-btn.buy-btn {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 25px rgba(0, 240, 144, 0.25);
}

/* Floating Cards — positioned within phone mockup bounds */
.float-card {
  position: absolute;
  background: rgba(15, 15, 20, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 3;
  animation: float 6s infinite ease-in-out;
  min-width: 180px;
  max-width: 220px;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.3s,
    border-color 0.3s;
}

.float-card:hover {
  transform: translateY(-5px) scale(1.05) !important;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 240, 144, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation-play-state: paused;
}

.float-card i {
  font-size: 24px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-card:hover i {
  transform: scale(1.2) rotate(10deg);
}

.float-card div {
  display: flex;
  flex-direction: column;
}

.float-card strong {
  font-size: 0.9rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
}

.float-card span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.card-1 {
  top: 8%;
  left: -12%;
}
.card-2 {
  bottom: 12%;
  right: -12%;
  animation-delay: -2s;
}
.card-4 {
  top: 35%;
  right: -10%;
  animation-delay: -3s;
}

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

/* Platforms Note (under hero CTA) */
.platforms-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.platforms-note i {
  font-size: 1rem;
}

/* Trust Band */
.trust-band {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px 5%;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.trust-band span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-band i {
  color: var(--primary);
  font-size: 1rem;
}

.trust-divider {
  color: rgba(255, 255, 255, 0.15) !important;
}

/* Hero Waitlist (compact, above the fold) */
.hero-waitlist {
  padding: 48px 5%;
  position: relative;
  z-index: 2;
}

.hero-waitlist-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.hero-waitlist-text {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-waitlist-text strong {
  font-size: 1.15rem;
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
}

.hero-waitlist-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-email-form {
  max-width: 440px;
  margin: 0 auto;
}

.hero-waitlist-success {
  margin-top: 0;
}

.hero-waitlist-error {
  margin-top: 8px;
}

/* Ticker Tape */
.ticker-tape {
  width: 100%;
  background: #000;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 12px 0;
  display: flex;
}

.ticker-content {
  display: inline-block;
  animation: ticker 25s linear infinite;
  flex-shrink: 0;
}

.ticker-content span {
  display: inline-block;
  padding-left: 50px;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ticker-content .up {
  color: var(--primary);
  font-weight: bold;
}
.ticker-content .down {
  color: var(--danger);
  font-weight: bold;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* Sections */
.steps-section,
.feature-split-section,
.faq-section,
.download-section {
  padding: 120px 5%;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 80px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 20px;
  transition: 0.3s;
}

.highlight-card {
  border-color: rgba(255, 75, 75, 0.3);
  background: linear-gradient(
    180deg,
    rgba(255, 75, 75, 0.05) 0%,
    transparent 100%
  );
}

.highlight-card .step-icon {
  color: var(--danger);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--primary);
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Feature Split */
.feature-row {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 160px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.mini-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.feature-text h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  line-height: 1.1;
  text-align: left;
}

.feature-text p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.15rem;
}

.feature-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-list i {
  color: var(--primary);
  font-size: 1.4rem;
  margin-top: 2px;
}

.feature-list strong {
  color: #fff;
  font-weight: 600;
  margin-right: 4px;
}

.feature-visual {
  flex: 1;
  height: 480px;
  background: radial-gradient(
    circle at center,
    rgba(30, 30, 35, 0.8),
    rgba(10, 10, 12, 0.95)
  );
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Feature Screenshots */
.screenshot-visual {
  background: transparent;
  border: none;
  overflow: visible;
}

.feature-screenshot {
  height: 100%;
  width: auto;
  max-height: 480px;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.dual-screenshot {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.dual-screenshot .feature-screenshot {
  max-height: 440px;
  flex: 0 0 auto;
}

/* Screenshot Placeholders */
.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  text-align: center;
}

.screenshot-placeholder i {
  font-size: 64px;
  color: rgba(255, 255, 255, 0.15);
}

.screenshot-placeholder span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.screenshot-placeholder .placeholder-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

/* Mock UI Helper Classes */
.notification-mock {
  background: rgba(20, 20, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  width: 60%;
  border-left: 4px solid var(--primary);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

.leaderboard-mock {
  width: 80%;
  background: rgba(20, 20, 25, 0.9);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.lb-header {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.lb-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 16px;
}

.prize-1 {
  color: #ffd700;
}
.prize-1 .name {
  color: #ffd700;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.name {
  flex: 1;
  font-weight: 500;
  color: #fff;
}
.gw {
  font-family: monospace;
  font-weight: 600;
  color: var(--primary);
}

/* Pro Label */
.pro-label {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 14px;
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Pricing Section */
.pricing-section {
  padding: 120px 5%;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-card.pro {
  border-color: rgba(255, 215, 0, 0.3);
  background: linear-gradient(
    180deg,
    rgba(255, 215, 0, 0.04) 0%,
    transparent 100%
  );
}

.pricing-tier {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-card.pro .pricing-tier {
  color: #ffd700;
}

.pricing-price {
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  width: 100%;
  text-align: left;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-features i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pricing-card.pro .pricing-features i {
  color: #ffd700;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* FAQ Section */
.faq-section {
  border-top: 1px solid var(--border);
}

.faq-grid {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 24px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--text-muted);
  font-weight: 300;
  transition: 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: "-";
  color: var(--primary);
}

.faq-item p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  padding-bottom: 24px;
}

/* Download Section */
.download-section {
  text-align: center;
  border-top: 1px solid var(--border);
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.download-btn {
  min-width: 180px;
  padding: 16px 28px;
}

.download-btn i {
  font-size: 1.6rem;
}

.download-btn div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.download-label {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1;
}

.download-store {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Email Waitlist Form */
.waitlist-form {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.waitlist-text {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
}

.email-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: 0.3s;
}

.email-input::placeholder {
  color: var(--text-muted);
}

.email-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 240, 144, 0.15);
}

.email-submit {
  padding: 14px 24px;
  min-height: 44px;
}

.email-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.waitlist-success {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 16px;
}

.waitlist-error {
  color: var(--danger);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* Footer */
.footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 100px 5% 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 12px;
}

.footer-links a {
  margin-left: 40px;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.copyright {
  text-align: center;
  color: #333;
  font-size: 0.9rem;
}

/* ── Responsive: Tablet (768px) ── */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .feature-row {
    gap: 40px;
  }

  .feature-text h2 {
    font-size: 2.2rem;
  }

  .feature-visual {
    height: 350px;
  }

  .feature-visual.screenshot-visual {
    height: auto;
  }
}

/* ── Responsive: Mobile (900px) ── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .float-card {
    position: static;
    animation: none;
    max-width: none;
    min-width: 0;
  }

  .hero-visual {
    flex-direction: column;
    gap: 16px;
  }

  .hero-visual .phone-mockup {
    margin-bottom: 24px;
  }

  /* Show float cards as horizontal scroll on mobile */
  .hero-visual {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .float-card {
    flex: 0 0 auto;
  }

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

  .platforms-note {
    justify-content: center;
  }

  .stats-preview {
    flex-direction: column;
    gap: 20px;
  }

  .vertical-divider {
    width: 40px;
    height: 1px;
  }

  .feature-row {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }

  .feature-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .feature-list li {
    justify-content: center;
  }

  .feature-visual {
    width: 100%;
    height: 300px;
  }

  .feature-visual.screenshot-visual {
    height: auto;
  }

  .feature-screenshot {
    max-height: 360px;
    border-radius: 16px;
  }

  .dual-screenshot {
    gap: 10px;
  }

  .dual-screenshot .feature-screenshot {
    max-height: 300px;
  }

  .notification-mock {
    width: 90%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .download-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ── Responsive: Small Phone (480px) ── */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1rem;
  }

  .phone-mockup {
    width: 280px;
    height: 560px;
  }

  .ticker-content span {
    font-size: 0.7rem;
    padding-left: 25px;
  }

  .feature-visual {
    height: 250px;
  }

  .feature-visual.screenshot-visual {
    height: auto;
  }

  .dual-screenshot .feature-screenshot {
    max-height: 240px;
  }

  .steps-grid {
    gap: 20px;
  }

  .step-card {
    padding: 28px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 50px;
  }

  .cta-button {
    padding: 14px 24px;
    min-height: 44px;
  }

  .cta-button.small {
    min-height: 44px;
    padding: 10px 16px;
  }

  .faq-item summary {
    font-size: 1rem;
    padding: 20px 0;
  }

  .email-input {
    min-width: 0;
    width: 100%;
  }

  .email-form {
    flex-direction: column;
  }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Sticky Mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 5%;
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-btn {
  width: 100%;
  max-width: 400px;
  padding: 14px 24px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }

  .trust-band {
    flex-direction: column;
    gap: 8px;
    padding: 16px 5%;
  }

  .trust-divider {
    display: none;
  }

  .platforms-note {
    justify-content: center;
  }

  .hero-waitlist-inner {
    padding: 24px 20px;
  }

  /* Add bottom padding so sticky CTA doesn't overlap content */
  body {
    padding-bottom: 72px;
  }
}

/* ── Responsive: iPhone SE (375px) ── */
@media (max-width: 375px) {
  .phone-mockup {
    max-width: calc(100vw - 32px);
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .badge {
    font-size: 0.7rem;
  }

  .stats-preview {
    gap: 16px;
  }

  .stat-item .value {
    font-size: 1.2rem;
  }
}
