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

:root {
  --black:       #000000;
  --surface:     #0a0a0a;
  --surface2:    #111111;
  --surface3:    #1a1a1a;
  --gold:        #8B5CF6;
  --gold-light:  #A78BFA;
  --gold-dim:    rgba(139,92,246,0.12);
  --gold-border: rgba(139,92,246,0.25);
  --glass:       rgba(255,255,255,0.04);
  --glass-b:     rgba(255,255,255,0.08);
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,0.6);
  --text-tertiary:  rgba(255,255,255,0.35);
  --purple:      #8B5CF6;
  --mint:        #10B981;
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 40%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -200px; left: -150px;
  opacity: .15;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  top: 100px; right: -100px;
  opacity: .2;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--mint) 0%, transparent 70%);
  bottom: 0; left: 40%;
  opacity: .1;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 24px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
  flex: 1;
}
.hero-content { flex: 1; max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.purple {
  background: linear-gradient(135deg, var(--gold) 30%, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(139,92,246,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(139,92,246,.4); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  backdrop-filter: blur(10px);
  transition: background .2s, transform .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 12px; color: var(--text-tertiary); font-weight: 500; letter-spacing: .5px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

/* ── Phone Mockup ───────────────────────────────────────────── */
.hero-phone {
  position: relative;
  flex-shrink: 0;
}
.phone-frame {
  width: 260px;
  height: 520px;
  background: #111;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,.1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.1);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px 8px;
  font-size: 11px;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}
.phone-app {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 16px 16px;
}
.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.app-logo-sm {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: #000;
}
.app-header span {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
}
.app-card-stack {
  position: relative;
  flex: 1;
  margin-bottom: 16px;
}
.app-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .5s ease;
}
.app-card-1 {
  width: 200px; height: 260px;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  border: 1px solid rgba(255,255,255,.1);
}
.app-card-2 {
  width: 185px; height: 250px;
  bottom: -12px; left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(.95);
  z-index: 2;
  opacity: .7;
}
.app-card-3 {
  width: 170px; height: 240px;
  bottom: -22px; left: 50%;
  transform: translateX(-50%) translateY(-16px) scale(.90);
  z-index: 1;
  opacity: .4;
}
.app-card-img { width: 100%; height: 70%; }
.app-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-card-avatar {
  width: 32px; height: 32px;
  background: var(--glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid var(--glass-b);
}
.app-card-name { font-size: 11px; font-weight: 700; }
.app-card-sub { font-size: 10px; color: var(--text-tertiary); }
.app-tabs {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.app-tab {
  font-size: 18px;
  opacity: .4;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.app-tab.active { opacity: 1; }
.app-tab:hover { opacity: .8; transform: scale(1.1); }
.phone-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
  opacity: .2;
  pointer-events: none;
}

/* ── Scroll indicator ───────────────────────────────────────── */
.hero-scroll {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
  position: relative;
}
.scroll-dot {
  width: 6px; height: 36px;
  background: linear-gradient(var(--gold), transparent);
  border-radius: 3px;
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(.6); }
}

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 24px;
  overflow: hidden;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.trust-label {
  font-size: 12px;
  color: var(--text-tertiary);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.trust-logos {
  display: flex;
  gap: 32px;
  overflow: hidden;
  flex: 1;
}
.trust-logos span {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--text-tertiary);
  white-space: nowrap;
  letter-spacing: 1px;
  transition: color .2s;
}
.trust-logos span:hover { color: var(--gold); }

/* ── Section Commons ────────────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  margin-bottom: 24px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.7;
}

/* ── Pillars ────────────────────────────────────────────────── */
.pillars { padding: 120px 0; }
.pillars .section-sub { margin-bottom: 60px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar-card {
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.08);
  background: var(--surface);
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.pillar-community:hover { box-shadow: 0 24px 60px rgba(139,92,246,.1); border-color: var(--gold-border); }
.pillar-jobs:hover { box-shadow: 0 24px 60px rgba(16,185,129,.1); border-color: rgba(16,185,129,.3); }
.pillar-dating:hover { box-shadow: 0 24px 60px rgba(139,92,246,.1); border-color: rgba(139,92,246,.3); }
.pillar-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.pillar-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pillar-community .pillar-tag { color: var(--gold); }
.pillar-jobs .pillar-tag { color: var(--mint); }
.pillar-dating .pillar-tag { color: var(--purple); }
.pillar-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.pillar-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.pillar-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pillar-features li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.check { font-size: 10px; }
.pillar-community .check { color: var(--gold); }
.pillar-jobs .check { color: var(--mint); }
.pillar-dating .check { color: var(--purple); }
.pillar-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: color .2s;
}
.pillar-community:hover .pillar-cta { color: var(--gold); }
.pillar-jobs:hover .pillar-cta { color: var(--mint); }
.pillar-dating:hover .pillar-cta { color: var(--purple); }

/* ── How It Works ───────────────────────────────────────────── */
.how {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.how .section-title { margin-bottom: 60px; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,.06);
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.step-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.step-arrow {
  font-size: 24px;
  color: var(--text-tertiary);
  padding-top: 48px;
  flex-shrink: 0;
}

/* ── Universities ───────────────────────────────────────────── */
.universities {
  padding: 120px 0;
}
.universities .section-sub { margin-bottom: 60px; }
.uni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.uni-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid rgba(255,255,255,.07);
  transition: background .2s, border-color .2s, transform .2s;
  cursor: default;
}
.uni-card:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--gold-border);
  transform: translateY(-3px);
}
.uni-emoji { font-size: 28px; }
.uni-card span:last-child {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
}
.uni-card-more {
  background: var(--gold-dim);
  border-color: var(--gold-border);
}
.uni-card-more span {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold) !important;
  text-align: center;
  padding: 20px 0;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.testimonials .section-title { margin-bottom: 60px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card-gold {
  border-color: var(--gold-border);
  background: var(--gold-dim);
}
.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.testi-uni { font-size: 12px; color: var(--text-tertiary); }

/* ── Download ───────────────────────────────────────────────── */
.download {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.download-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-d1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -100px; left: -100px;
  opacity: .12;
}
.orb-d2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  bottom: -100px; right: -50px;
  opacity: .15;
}
.download-inner { position: relative; }
.download-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  margin-bottom: 28px;
}
.download-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.download-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}
.download-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 18px;
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  transition: background .2s, transform .2s, border-color .2s;
  min-width: 200px;
}
.store-btn:hover {
  background: var(--surface3);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.2);
}
.store-sub { font-size: 11px; color: var(--text-tertiary); }
.store-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 80px 0 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-brand { flex: 1; max-width: 280px; }
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 40%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 16px; }
.social-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  transition: color .2s;
}
.social-link:hover { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 60px;
  flex: 1;
  justify-content: flex-end;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-tertiary);
  transition: color .2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ── Phone Screenshot ───────────────────────────────────────── */
.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 38px;
}

/* ── App Showcase ───────────────────────────────────────────── */
.showcase {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.showcase .section-sub { margin-bottom: 60px; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  justify-items: center;
}
.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.showcase-phone {
  width: 220px;
  height: 440px;
  border-radius: 32px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 40px rgba(139,92,246,.08);
  transition: transform .4s ease, box-shadow .4s ease;
}
.showcase-phone:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 60px rgba(139,92,246,.15);
  border-color: rgba(139,92,246,.3);
}
.showcase-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-label {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-phone { display: none; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pillars-grid { grid-template-columns: 1fr; max-width: 520px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; }
  .steps { flex-direction: column; max-width: 400px; }
  .step-arrow { display: none; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-inner { padding: 120px 24px 60px; }
  .hero-title { font-size: 48px; }
  .hero-stats { gap: 20px; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .uni-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 560px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .showcase-phone { width: 160px; height: 320px; border-radius: 24px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .download-btns { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 280px; }
}

/* ── Animations ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
