/* ─────────────────────────────────────────────────────────────
   MINDFLOW LANDING PAGE — style.css
   Brand palette: violet #A78BFA · pink #F9A8D4 · peach #FDBA74
   Base: dark #111111 with glassmorphism cards
   ───────────────────────────────────────────────────────────── */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0D0D0F;
  --bg-card:   #1A1A1E;
  --bg-card2:  #222228;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);

  --text-1:    #F5F5F7;
  --text-2:    #A1A1AA;
  --text-3:    #9CA3AF;

  --violet:    #A78BFA;
  --pink:      #F9A8D4;
  --peach:     #FDBA74;
  --green:     #34D399;
  --indigo:    #818CF8;
  --error:     #F87171;

  --radius-s:  8px;
  --radius-m:  14px;
  --radius-l:  20px;
  --radius-xl: 28px;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

img { display: block; max-width: 100%; height: auto; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(90deg, var(--violet) 0%, var(--pink) 60%, var(--peach) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--radius-m);
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-sm  { font-size: 13px; padding: 8px 16px; }
.btn-lg  { font-size: 15px; padding: 14px 24px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  box-shadow: 0 4px 24px rgba(167,139,250,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 32px rgba(167,139,250,0.5); }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { color: var(--text-1); border-color: rgba(255,255,255,0.25); }

.btn-outline {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border2);
  font-size: 15px;
  padding: 14px 24px;
}
.btn-outline:hover { border-color: var(--violet); color: var(--violet); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-mark { display: flex; }
.logo-text { letter-spacing: -0.01em; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text-1); }

.nav .btn-sm {
  margin-left: 8px;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 0;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--violet);
  top: -200px; left: -100px;
}
.orb-2 {
  width: 500px; height: 500px;
  background: var(--pink);
  top: -100px; right: -100px;
}
.orb-3 {
  width: 400px; height: 400px;
  background: var(--peach);
  bottom: 0; left: 50%;
  transform: translateX(-50%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(52,211,153,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(52,211,153,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(52,211,153,0.1); }
}

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-subtitle strong { color: var(--text-1); font-weight: 600; }

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 72px;
}

/* ── PHONES ──────────────────────────────────────────────── */
.phones-container {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  overflow: hidden;
}

.phones-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.phone {
  flex: 0 0 auto;
}

.phone-left,
.phone-right {
  width: 230px;
  transform: perspective(1000px) rotateY(8deg) rotateX(3deg);
  opacity: 0.85;
}
.phone-right {
  transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
}
.phone-center {
  width: 260px;
  z-index: 2;
  transform: perspective(1000px) rotateX(2deg);
}

.phone-animate {
  animation: floatSide 5s ease-in-out infinite;
}
.phone-animate-up {
  animation: floatCenter 5s ease-in-out infinite;
}
@keyframes floatSide {
  0%,100% { transform: perspective(1000px) rotateY(8deg) rotateX(3deg) translateY(0); }
  50%      { transform: perspective(1000px) rotateY(8deg) rotateX(3deg) translateY(-10px); }
}
.phone-right { animation: floatSideR 5s ease-in-out infinite; }
@keyframes floatSideR {
  0%,100% { transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(0); }
  50%      { transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(-10px); }
}
@keyframes floatCenter {
  0%,100% { transform: perspective(1000px) rotateX(2deg) translateY(0); }
  50%      { transform: perspective(1000px) rotateX(2deg) translateY(-14px); }
}

.phone-frame {
  background: var(--bg-card);
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.1);
  aspect-ratio: 9/19.5;
  overflow: hidden;
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, #1A1A1E 0%, #111114 100%);
}
.placeholder-icon { font-size: 40px; }
.placeholder-label { font-size: 14px; color: var(--text-2); font-weight: 500; }

/* ── SOCIAL PROOF ────────────────────────────────────────── */
.social-proof {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 60px;
}
.sp-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.sp-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 0 48px;
}
.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-desc {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 52px;
  background: var(--border2);
}

/* ── FEATURES ────────────────────────────────────────────── */
.features {
  padding: 100px 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.feature-card-large {
  grid-column: span 2;
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
}

.feature-bullets {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-bullets li {
  font-size: 12.5px;
  color: var(--violet);
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ── SPOTLIGHT ───────────────────────────────────────────── */
.spotlight {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(167,139,250,0.04) 50%, transparent 100%);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.spotlight-content .section-title {
  text-align: left;
  margin-bottom: 12px;
}
.spotlight-content .section-subtitle {
  text-align: left;
  margin-bottom: 36px;
}

.resource-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  transition: border-color 0.2s, transform 0.2s;
  animation: fadeSlideIn 0.5s ease both;
  animation-delay: var(--delay, 0s);
}
.resource-item:hover {
  border-color: var(--border2);
  transform: translateX(4px);
}

.resource-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resource-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.resource-item span {
  font-size: 12.5px;
  color: var(--text-2);
}

/* Phone single */
.spotlight-visual {
  display: flex;
  justify-content: center;
}
.phone-single {
  width: 280px;
  animation: floatCenter 5s ease-in-out infinite;
}

/* ── PLACEHOLDER SHEET (for phone mockup fallback) ──────── */
.placeholder-sheet {
  padding: 20px 16px;
  width: 100%;
}
.ps-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 16px;
}
.ps-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-2);
}
.ps-item:last-child { border-bottom: none; }
.ps-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.ps-item em { color: var(--text-3); }

/* ── MEMORY SECTION ──────────────────────────────────────── */
.memory-section {
  padding: 80px 0;
}

.memory-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 64px;
  text-align: center;
}

.memory-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  pointer-events: none;
}
.memory-orb-1 { width: 400px; height: 400px; background: var(--violet); top: -150px; left: -100px; }
.memory-orb-2 { width: 350px; height: 350px; background: var(--pink); bottom: -120px; right: -80px; }

.memory-content {
  position: relative;
  z-index: 1;
}

.memory-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: 20px;
  margin-bottom: 28px;
}

.memory-card h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.memory-card > .memory-content > p {
  font-size: 16px;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.memory-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.mf-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-2);
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 100px;
  padding: 6px 16px;
}
.mf-item svg { flex-shrink: 0; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.hiw {
  padding: 80px 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 0 24px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(167,139,250,0.4);
}

.step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
}

.step-arrow {
  padding-top: 22px;
  color: var(--text-3);
  align-self: flex-start;
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
}

.pricing-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.pricing-card-pro {
  background: linear-gradient(160deg, rgba(167,139,250,0.08) 0%, rgba(249,168,212,0.05) 100%);
  border-color: rgba(167,139,250,0.3);
  box-shadow: 0 0 0 1px rgba(167,139,250,0.12), 0 24px 64px rgba(167,139,250,0.15);
}

.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.plan-badge-pro {
  color: var(--violet);
  background: rgba(167,139,250,0.12);
}

.plan-price {
  margin-bottom: 12px;
}
.price-amount {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.price-period {
  font-size: 15px;
  color: var(--text-2);
  margin-left: 2px;
}

.plan-desc {
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.6;
}

.plan-features {
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet);
  flex-shrink: 0;
}
.pricing-card-pro .plan-features li::before { background: var(--green); }

/* ── DOWNLOAD CTA ────────────────────────────────────────── */
.download-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}
.download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.download-content {
  position: relative;
  z-index: 1;
}
.download-content h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.download-content p {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 40px;
}

.store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }

.ios-badge {
  background: #fff;
  color: #000;
}
.android-badge {
  background: var(--bg-card);
  color: var(--text-1);
  border: 1px solid var(--border2);
}

.badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.badge-pre {
  font-size: 10px;
  font-weight: 400;
}
.badge-store {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.download-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-3);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  margin-right: auto;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-3);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text-2); }

.footer-copy {
  width: 100%;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 8px;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card-large {
    grid-column: span 2;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .spotlight-visual { order: -1; }
  .spotlight-content .section-title,
  .spotlight-content .section-subtitle { text-align: center; }
  .phone-single { width: 240px; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }

  .hero-title { letter-spacing: -0.03em; }

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

  .phones-row {
    gap: 10px;
  }
  .phone-left, .phone-right { width: 140px; }
  .phone-center { width: 170px; }

  .sp-stats { gap: 32px; }
  .stat { padding: 0 20px; }
  .stat-divider { display: none; }

  .steps { gap: 36px; }
  .step-arrow { display: none; }

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

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-brand { margin-right: 0; }

  .memory-card { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .phones-row { display: none; }
}

/* ── LANG SWITCHER ─────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}
.lang-btn {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text-3);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font);
  line-height: 1;
  text-decoration: none;
  display: inline-block;
}
.lang-btn.active {
  color: var(--violet);
  border-color: var(--violet);
  background: rgba(167,139,250,0.12);
}
.lang-btn:hover:not(.active) {
  color: var(--text-2);
  border-color: var(--border2);
}
.lang-div { color: var(--text-3); font-size: 12px; }

/* ── NAV & FOOTER LOGO IMAGE ──────────────────────────────── */
.nav-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── STORE STRIP ───────────────────────────────────────────── */
.store-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.store-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.store-strip-label {
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.store-strip-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── DOWNLOAD SECTION LOGO ─────────────────────────────────── */
.download-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 28px;
  display: block;
}

/* ── COMING SOON — HERO CTA ────────────────────────────────── */
.coming-soon-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.coming-soon-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 100px;
  padding: 8px 16px;
}
.store-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  cursor: default;
}
.chip-soon {
  background: rgba(167, 139, 250, 0.15);
  color: var(--violet);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── STORE STRIP SOON STATE ────────────────────────────────── */
.store-badge-soon {
  opacity: 0.55;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-2);
}

/* ── FREE MODEL — PRICING ──────────────────────────────────── */
.free-model {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.free-model-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fmi-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.free-model-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
}
.free-model-item p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── LAUNCH SOON — DOWNLOAD CTA ────────────────────────────── */
.launch-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.launch-platform-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.launch-platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border2, var(--border));
  border-radius: var(--radius-m);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}
