/* ═══════════════════════════════════════════════
   AI Social Mirror — Landing Page Styles (Compiled)
   Matched to mobile app: pastel candy, Sora + Inter,
   aura gradient, pebble cards, lime green accents
   ═══════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background-color: #faf8f5;
  color: #1e1832;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
em { font-style: italic; }
strong { font-weight: 700; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .container { padding: 0 40px; }
}

.aura-bg {
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(240, 160, 184, 0.55), transparent 55%),
    radial-gradient(ellipse at 95% 10%, rgba(212, 181, 240, 0.45), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(183, 221, 245, 0.45), transparent 60%);
}

/* ─── Scroll Reveal ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  transform: translateX(60px) translateY(0);
}
.reveal-right.visible {
  transform: translateX(0) translateY(0);
}

/* ─── Utility ────────────────────────────────── */
.gradient-text {
  background: linear-gradient(100deg, #1a1528, #5a3090);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4a2878;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #1a1528;
}
.section-title.light { color: #fff; }
.section-title em {
  background: linear-gradient(100deg, #1a1528, #5a3090);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  margin-top: 16px;
  font-size: 16px;
  color: #7a7488;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub.light { color: rgba(255,255,255,0.6); }


/* ═══════════════════════════════════════════════
   1. NAVIGATION
   ═══════════════════════════════════════════════ */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.glass-nav.scrolled {
  background: rgba(255,255,255, 0.65);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255, 0.70);
  box-shadow: 0 4px 30px rgba(100, 70, 150, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.035em;
  white-space: nowrap;
  color: #1a1528;
}
.nav-logo .logo-icon { font-size: 22px; }

.nav-links {
  display: none;
  margin-left: auto;
  gap: 32px;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #7a7488;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover { color: #1a1528; }

.nav-cta {
  display: none;
  margin-left: auto;
  padding: 10px 22px;
  border-radius: 100px;
  background: #1a1528;
  color: #a3e635;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 24px 50px -24px rgba(30, 20, 40, 0.35);
}
@media (min-width: 768px) {
  .nav-cta { display: inline-flex; margin-left: 24px; }
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1528;
  border-radius: 2px;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255, 0.65);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255, 0.70);
  padding: 40px 32px;
  gap: 28px;
  z-index: 99;
}
.nav-links.mobile-open .nav-link {
  font-size: 24px;
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  color: #1a1528;
}


/* ═══════════════════════════════════════════════
   2. HERO SECTION
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

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

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.7;
  animation: blob-drift 20s ease-in-out infinite;
}
.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 192, 184, 0.6), transparent 65%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 181, 240, 0.5), transparent 65%);
  bottom: -150px;
  left: -100px;
  animation-delay: -7s;
}
.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(183, 221, 245, 0.4), transparent 65%);
  top: 40%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 181, 240, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 181, 240, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 0 40px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a3a15;
  background: rgba(163, 230, 53, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #1a1528;
}
.hero-headline em {
  background: linear-gradient(100deg, #1a1528, #5a3090);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-sub {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: #7a7488;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 20px;
  font-size: 14px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn:active { transform: scale(0.98); }

.apple-btn {
  background: #1a1528;
  color: #fff;
  box-shadow: 0 24px 50px -24px rgba(30, 20, 40, 0.35);
}
.apple-btn:hover { box-shadow: 0 30px 60px -24px rgba(30, 20, 40, 0.5); }

.google-btn {
  background: rgba(255,255,255, 0.65);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  color: #1a1528;
  border: 1.5px solid #dfdce4;
}
.google-btn:hover { background: rgba(255,255,255,0.85); }

.store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.store-btn-text small { font-size: 11px; opacity: 0.6; }
.store-btn-text strong { font-size: 16px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 13px;
  color: #7a7488;
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a3e635;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(163, 230, 53, 0.6);
}


/* ─── Phone Mockup ───────────────────────────── */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero-phone { justify-content: flex-end; }
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 181, 240, 0.35), rgba(245, 192, 184, 0.2), transparent 70%);
  filter: blur(60px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  border-radius: 44px;
  background: #faf8f5;
  border: 3px solid #dfdce4;
  box-shadow:
    0 0 0 1px rgba(212, 181, 240, 0.1),
    0 25px 80px rgba(100, 70, 150, 0.18),
    inset 0 0 0 1px rgba(255,255,255,0.5);
  overflow: hidden;
  animation: phone-float 6s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .phone-frame { width: 310px; height: 630px; }
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #eceaef;
  border-radius: 0 0 18px 18px;
  z-index: 5;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #faf8f5;
}

.chat-view {
  padding: 50px 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chat-header-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dfdce4;
  margin-bottom: 16px;
}
.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4b5f0, #b7ddf5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #4a2878;
}
.chat-name {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1a1528;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  animation: bubble-in 0.4s ease forwards;
}
.outgoing {
  align-self: flex-end;
  background: #1a1528;
  color: #a3e635;
  border-bottom-right-radius: 6px;
}
.incoming {
  align-self: flex-start;
  background: #eceaef;
  color: #1a1528;
  border-bottom-left-radius: 6px;
}
.bubble-1 { animation-delay: 0.5s; }
.bubble-2 { animation-delay: 1.2s; }
.bubble-3 { animation-delay: 2.0s; }
.bubble-4 { animation-delay: 2.8s; }

@keyframes bubble-in {
  from { opacity: 0; transform: translateY(12px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Score Overlay */
.score-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: overlay-in 0.8s ease forwards;
  animation-delay: 4s;
}
@keyframes overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #a3e635, #d4b5f0, transparent);
  opacity: 0;
  animation: scan-sweep 1.2s ease-in-out forwards;
  animation-delay: 3.5s;
}
@keyframes scan-sweep {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.score-card-hero {
  border-radius: 1.75rem;
  background: #ffffff;
  box-shadow: 0 24px 60px -24px rgba(90, 200, 80, 0.3);
  padding: 28px 24px;
  text-align: center;
  width: 85%;
  transform: scale(0.8);
  opacity: 0;
  animation: score-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 4.2s;
}
@keyframes score-pop {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.score-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a7488;
}
.score-value {
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.score-num {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(100deg, #1a1528, #5a3090);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.score-of {
  font-size: 22px;
  font-weight: 300;
  color: #7a7488;
}
.score-headline {
  margin-top: 4px;
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a4d38;
}
.score-vibe-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(168, 235, 199, 0.3);
  font-size: 11px;
  font-weight: 600;
  color: #1a4d38;
}
.vibe-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1a4d38;
}
.score-flags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.flag-pill {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
}
.flag-pill.green { background: rgba(168, 235, 199, 0.35); color: #1a4d38; }
.flag-pill.yellow { background: rgba(240, 215, 138, 0.35); color: #5c4a1a; }
.flag-pill.red { background: rgba(245, 192, 184, 0.35); color: #5e2a22; }


/* ═══════════════════════════════════════════════
   3. SOCIAL PROOF TICKER
   ═══════════════════════════════════════════════ */
.ticker-strip {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid #dfdce4;
  border-bottom: 1px solid #dfdce4;
  background: rgba(255,255,255, 0.5);
}
.ticker-strip::before,
.ticker-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker-strip::before { left: 0; background: linear-gradient(90deg, #faf8f5, transparent); }
.ticker-strip::after  { right: 0; background: linear-gradient(270deg, #faf8f5, transparent); }

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #7a7488;
  flex-shrink: 0;
}
.ticker-score {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: -0.02em;
}
.ticker-score.high { background: rgba(168, 235, 199, 0.35); color: #1a4d38; }
.ticker-score.mid  { background: rgba(240, 215, 138, 0.35); color: #5c4a1a; }
.ticker-score.low  { background: rgba(245, 192, 184, 0.35); color: #5e2a22; }


/* ═══════════════════════════════════════════════
   4. HOW IT WORKS
   ═══════════════════════════════════════════════ */
.how-section {
  padding: 100px 0;
  position: relative;
}

.steps-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.step-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 1.75rem;
  background: #ffffff;
  box-shadow: 0 18px 40px -22px rgba(100, 70, 150, 0.25);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -24px rgba(90, 200, 80, 0.3);
}

.step-number {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #dfdce4;
  position: absolute;
  top: 16px;
  right: 20px;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon-wrap.mint  { background: rgba(168, 235, 199, 0.4); color: #1a4d38; }
.step-icon-wrap.sky   { background: rgba(183, 221, 245, 0.4); color: #1a3a52; }
.step-icon-wrap.blush { background: rgba(245, 192, 184, 0.4); color: #5e2a22; }

.step-title {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1a1528;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 15px;
  color: #7a7488;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   5. FEATURES GRID
   ═══════════════════════════════════════════════ */
.features-section {
  padding: 100px 0;
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(245, 192, 184, 0.2), transparent 55%),
    radial-gradient(ellipse at 95% 10%, rgba(212, 181, 240, 0.18), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(183, 221, 245, 0.18), transparent 60%);
}

.features-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid > :nth-child(4) { grid-column: 1 / 2; }
  .features-grid > :nth-child(5) { grid-column: 2 / 4; }
}

.feature-card {
  padding: 32px 28px;
  border-radius: 1.75rem;
  background: #ffffff;
  box-shadow: 0 18px 40px -22px rgba(100, 70, 150, 0.25);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -18px rgba(100, 70, 150, 0.2);
}

.feature-icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
}
.feature-icon-ring.mint-ring   { background: rgba(168, 235, 199, 0.4); color: #1a4d38; }
.feature-icon-ring.sky-ring    { background: rgba(183, 221, 245, 0.4); color: #1a3a52; }
.feature-icon-ring.blush-ring  { background: rgba(245, 192, 184, 0.4); color: #5e2a22; }
.feature-icon-ring.amber-ring  { background: rgba(240, 215, 138, 0.4); color: #5c4a1a; }
.feature-icon-ring.purple-ring { background: rgba(212, 181, 240, 0.4); color: #4a2878; }

.feature-icon-num {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.02em;
}

.feature-name {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1a1528;
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 14px;
  color: #7a7488;
  line-height: 1.7;
}
.feature-desc em { color: #1a1528; font-style: italic; }

.inline-flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.inline-flag.green-flag  { background: rgba(168, 235, 199, 0.35); color: #1a4d38; }
.inline-flag.red-flag    { background: rgba(245, 192, 184, 0.35); color: #5e2a22; }
.inline-flag.yellow-flag { background: rgba(240, 215, 138, 0.35); color: #5c4a1a; }


/* ═══════════════════════════════════════════════
   6. USE CASES (Tabbed)
   ═══════════════════════════════════════════════ */
.use-cases-section {
  padding: 100px 0;
}

.tabs-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
  background: rgba(255,255,255, 0.65);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255, 0.70);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 4px;
  border-radius: 100px;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: #7a7488;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}
.tab-btn:hover { color: #1a1528; }
.tab-btn.active {
  background: #1a1528;
  color: #a3e635;
  box-shadow: 0 24px 50px -24px rgba(30, 20, 40, 0.35);
}

.tab-panel {
  display: none;
  animation: fade-tab 0.5s ease;
}
.tab-panel.active { display: block; }

@keyframes fade-tab {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tab-panel-inner {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .tab-panel-inner { grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
}

.tab-title {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #1a1528;
  margin-bottom: 16px;
}
.tab-body {
  font-size: 15px;
  color: #7a7488;
  line-height: 1.7;
}
.tab-body em { color: #1a1528; }

.tab-bullets {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tab-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #7a7488;
}
.tab-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a3e635;
  flex-shrink: 0;
}

.tab-cta {
  display: inline-flex;
  margin-top: 24px;
  padding: 12px 28px;
  border-radius: 100px;
  background: #1a1528;
  color: #a3e635;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  box-shadow: 0 24px 50px -24px rgba(30, 20, 40, 0.35);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.tab-cta:hover { transform: translateY(-2px); opacity: 0.9; }

.tab-mockup { display: flex; justify-content: center; }

.mockup-card {
  width: 220px;
  padding: 32px 24px;
  border-radius: 1.75rem;
  text-align: center;
  box-shadow: 0 18px 40px -22px rgba(100, 70, 150, 0.25);
  animation: card-float 5s ease-in-out infinite;
}
@keyframes card-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.mint-card  { background: #a8ebc7; color: #1a4d38; }
.sky-card   { background: #b7ddf5; color: #1a3a52; }
.blush-card { background: #f5c0b8; color: #5e2a22; }
.amber-card { background: #f0d78a; color: #5c4a1a; }

.mockup-score {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.mockup-label {
  margin-top: 8px;
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mockup-vibe {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.6;
}


/* ═══════════════════════════════════════════════
   7. LEADERBOARD (Dark Section)
   ═══════════════════════════════════════════════ */
.leaderboard-section {
  padding: 100px 0;
  background: #1a1528;
  position: relative;
  overflow: hidden;
}
.leaderboard-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.1), transparent 70%);
  filter: blur(60px);
}
.leaderboard-section .section-eyebrow { color: rgba(163, 230, 53, 0.7); }

.leaderboard-display {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lb-row {
  display: grid;
  grid-template-columns: 40px 40px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 20px;
  background: rgba(26, 21, 40, 0.78);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255,255,255,0.85);
}
.lb-row:hover {
  transform: translateX(6px);
  background: rgba(26, 21, 40, 0.6);
}

.lb-gold   { border: 1px solid rgba(240, 215, 138, 0.3) !important; box-shadow: 0 0 30px rgba(240, 215, 138, 0.08); }
.lb-silver { border: 1px solid rgba(192,192,192, 0.2) !important; }
.lb-bronze { border: 1px solid rgba(205,127,50, 0.2) !important; }

.lb-rank {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: -0.02em;
}

.lb-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(255,255,255,0.06);
}
.lb-avatar.gold-av   { background: rgba(240, 215, 138, 0.2); }
.lb-avatar.silver-av { background: rgba(192,192,192, 0.12); }
.lb-avatar.bronze-av { background: rgba(205,127,50, 0.12); }

.lb-name { font-size: 15px; font-weight: 600; }

.lb-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 100px;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.lb-score {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #a3e635;
}

.lb-you {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 40px 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 20px;
  border: 2px dashed rgba(163, 230, 53, 0.3);
  background: rgba(163, 230, 53, 0.04);
  color: rgba(255,255,255,0.85);
}
.lb-you .lb-rank {
  font-size: 22px;
  color: #a3e635;
}

.you-av {
  font-size: 11px;
  font-weight: 700;
  color: #a3e635;
  background: rgba(163, 230, 53, 0.15) !important;
}

.lb-join-btn {
  padding: 10px 20px;
  border-radius: 100px;
  background: #a3e635;
  color: #1a3a15;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  box-shadow: 0 24px 60px -24px rgba(90, 200, 80, 0.3);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lb-join-btn:hover { transform: translateY(-2px); }

.lb-footnote {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}


/* ═══════════════════════════════════════════════
   8. PRICING
   ═══════════════════════════════════════════════ */
.pricing-section {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.pricing-card {
  padding: 36px 28px;
  border-radius: 1.75rem;
  background: #ffffff;
  box-shadow: 0 18px 40px -22px rgba(100, 70, 150, 0.25);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card:hover { transform: translateY(-4px); }

.plus-card {
  position: relative;
  overflow: hidden;
}
.plus-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 36px;
  background: linear-gradient(135deg, #f5c0b8, #d4b5f0, #a3e635);
  z-index: -1;
  animation: border-rotate 4s linear infinite;
  background-size: 200% 200%;
}
.plus-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: #ffffff;
  z-index: -1;
}

@keyframes border-rotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.plus-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 18px;
  border-radius: 0 34px 0 20px;
  background: #1a1528;
  font-size: 11px;
  font-weight: 700;
  color: #a3e635;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-plan-name {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1a1528;
}

.pricing-price {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pricing-amount {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1a1528;
}
.plus-card .pricing-amount {
  background: linear-gradient(100deg, #1a1528, #5a3090);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-period {
  font-size: 14px;
  color: #7a7488;
}

.pricing-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #7a7488;
  line-height: 1.5;
}
.pricing-features li.muted { opacity: 0.4; }

.check {
  color: #1a4d38;
  font-weight: 700;
  flex-shrink: 0;
}
.check.plus-check { color: #4a2878; }
.x-mark { color: #dfdce4; flex-shrink: 0; }

.pricing-btn {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 16px 24px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-btn:hover { transform: translateY(-2px); }

.free-btn {
  background: #eceaef;
  color: #1a1528;
  border: 1px solid #dfdce4;
}
.free-btn:hover { background: #e3e0e7; }

.plus-btn {
  background: #1a1528;
  color: #a3e635;
  box-shadow: 0 24px 50px -24px rgba(30, 20, 40, 0.35);
}
.plus-btn:hover { opacity: 0.9; }

.pricing-alt {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: #7a7488;
}


/* ═══════════════════════════════════════════════
   9. FINAL CTA
   ═══════════════════════════════════════════════ */
.final-cta-section {
  padding: 80px 0;
}

.final-cta-card {
  padding: 60px 32px;
  border-radius: 2rem;
  background: #1a1528;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px -24px rgba(30, 20, 40, 0.35);
}
@media (min-width: 768px) {
  .final-cta-card { padding: 80px 60px; }
}
.final-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 50%, rgba(212, 181, 240, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(163, 230, 53, 0.08) 0%, transparent 50%);
  animation: cta-shimmer 8s ease-in-out infinite;
}
@keyframes cta-shimmer {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5%, -5%); }
}

.final-headline {
  position: relative;
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #fff;
}
.final-headline em {
  color: #a3e635;
  font-style: italic;
}

.final-sub {
  position: relative;
  margin-top: 20px;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.final-btns {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.final-btns .apple-btn {
  background: #fff;
  color: #1a1528;
  box-shadow: 0 4px 24px rgba(255,255,255,0.15);
}
.final-btns .google-btn {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.final-btns .google-btn:hover { background: rgba(255,255,255,0.18); }


/* ═══════════════════════════════════════════════
   10. FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
  padding: 60px 0 32px;
  border-top: 1px solid #dfdce4;
}

.footer-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); gap: 40px; }
}

.footer-logo {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1a1528;
}
.footer-tagline {
  margin-top: 8px;
  font-size: 14px;
  color: #7a7488;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: #7a7488;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-col a:hover { color: #1a1528; }

.footer-col-title {
  font-family: 'Sora', 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1528;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #dfdce4;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: #7a7488;
}
.footer-privacy-note {
  color: #1a4d38 !important;
}
