/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── VARIABLES ─── */
:root {
  --green: #00c48c;
  --green-light: #00e6a6;
  --cyan: #0099ff;
  --purple: #6c5ce7;
  --pink: #fd79a8;
  --amber: #f9a825;
  --blue: #0984e3;
  --indigo: #4c6ef5;
  --coral: #ff6b6b;
  --teal: #00b894;
  --bg: #ffffff;
  --bg2: #f8f9ff;
  --bg3: #f0f4ff;
  --surface: rgba(255,255,255,0.85);
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --text: #1a1a2e;
  --text-muted: #636e8a;
  --text-light: #9ba3bf;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

/* ─── ANIMATED BLOBS ─── */
.blob-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.blob-layer.sm { opacity: 0.7; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}
.blob-1 {
  width: 65vw; height: 65vw;
  top: -25%; left: -15%;
  background: radial-gradient(circle, rgba(0,196,140,0.22), transparent 65%);
  animation: blobFloat1 14s ease-in-out infinite alternate;
}
.blob-2 {
  width: 55vw; height: 55vw;
  top: 5%; right: -20%;
  background: radial-gradient(circle, rgba(108,92,231,0.18), transparent 65%);
  animation: blobFloat2 17s ease-in-out infinite alternate;
}
.blob-3 {
  width: 50vw; height: 50vw;
  bottom: -15%; left: 15%;
  background: radial-gradient(circle, rgba(0,153,255,0.16), transparent 65%);
  animation: blobFloat3 11s ease-in-out infinite alternate;
}
.blob-4 {
  width: 40vw; height: 40vw;
  top: 35%; left: 35%;
  background: radial-gradient(circle, rgba(253,121,168,0.14), transparent 65%);
  animation: blobFloat4 20s ease-in-out infinite alternate;
}
@keyframes blobFloat1 {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(50px,-70px) scale(1.1); }
  66%  { transform: translate(-35px,35px) scale(0.95); }
  100% { transform: translate(25px,-25px) scale(1.06); }
}
@keyframes blobFloat2 {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-55px,45px) scale(1.12); }
  100% { transform: translate(35px,-35px) scale(0.92); }
}
@keyframes blobFloat3 {
  0%   { transform: translate(0,0) scale(1); }
  40%  { transform: translate(35px,-45px) scale(1.07); }
  80%  { transform: translate(-25px,25px) scale(0.9); }
  100% { transform: translate(12px,12px) scale(1.03); }
}
@keyframes blobFloat4 {
  0%   { transform: translate(0,0) scale(1); }
  60%  { transform: translate(-65px,-35px) scale(1.18); }
  100% { transform: translate(45px,25px) scale(0.9); }
}

/* ─── HERO GRID OVERLAY ─── */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 30%, transparent 100%);
}

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm {
  background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.footer-logo-img {
  height: 32px;
  filter: none;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: auto; }
.btn-nav {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,196,140,0.3);
}
.btn-nav:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,196,140,0.4); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(0,196,140,0.35);
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,196,140,0.45); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn-ghost svg { width: 16px; height: 16px; }
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background: rgba(0,196,140,0.04);
  box-shadow: var(--shadow-sm);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 120px 40px 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0fff9 0%, #f5f0ff 40%, #f0f8ff 70%, #fff9f0 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  flex-shrink: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 50px;
  background: rgba(0,196,140,0.1);
  border: 1px solid rgba(0,196,140,0.25);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-sub strong { color: var(--text); }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-strong);
}

/* ─── HERO PHONE ─── */
.hero-phone-wrap {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.hero-phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,196,140,0.15), transparent 70%);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  0% { opacity: 0.6; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1.03); }
}
.hero-phone {
  width: 260px;
  background: #ffffff;
  border-radius: 36px;
  border: 1.5px solid rgba(0,0,0,0.08);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.04);
  animation: phoneFloat 6s ease-in-out infinite alternate;
}
@keyframes phoneFloat {
  0% { transform: translateY(0px) rotate(-1deg); }
  100% { transform: translateY(-16px) rotate(1deg); }
}
.phone-notch {
  width: 80px; height: 24px;
  background: #ffffff;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.phone-screen { padding: 12px; }

/* app internals */
.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.app-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}
.app-greeting { font-size: 12px; font-weight: 700; color: #1a1a2e; }
.app-sub { font-size: 9px; color: #9ba3bf; }
.app-bell {
  margin-left: auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f5f5f7;
  display: flex; align-items: center; justify-content: center;
  color: #9ba3bf;
}
.app-bell svg { width: 14px; height: 14px; }
.app-balance-label { font-size: 10px; color: #9ba3bf; margin-bottom: 4px; }
.app-balance {
  font-size: 26px;
  font-weight: 900;
  color: #1a1a2e;
  letter-spacing: -1px;
  line-height: 1;
}
.app-balance span { opacity: 0.75; }
.app-balance sup { font-size: 13px; font-weight: 600; vertical-align: top; margin-top: 5px; }
.app-change {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 8px;
}
.app-change svg { width: 10px; height: 10px; }
.app-change.positive { color: var(--green); }
.app-change.negative { color: #e53e3e; }
.app-chart { margin: 4px 0 12px; }
.app-chart svg { width: 100%; }
.chart-line { stroke-dasharray: 400; stroke-dashoffset: 400; animation: drawLine 2s ease forwards 0.5s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.app-actions-row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 14px;
}
.app-action { text-align: center; }
.app-action-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 5px;
}
.app-action-icon svg { width: 16px; height: 16px; }
.app-action-icon.green { background: rgba(0,196,140,0.15); color: var(--green); }
.app-action span { font-size: 9px; color: #9ba3bf; font-weight: 500; }
.app-txn-title { font-size: 11px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.app-txn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px;
  border-radius: 10px;
  margin-bottom: 4px;
  transition: background 0.2s;
}
.app-txn.active { background: rgba(0,196,140,0.08); }
.txn-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.txn-icon.spotify { background: linear-gradient(135deg, #1DB954, #117a32); }
.txn-icon.btc { background: linear-gradient(135deg, #f59e0b, #d97706); }
.txn-icon.salary { background: linear-gradient(135deg, var(--green), var(--cyan)); }
.txn-info { flex: 1; }
.txn-name { font-size: 10px; font-weight: 600; color: #1a1a2e; }
.txn-date { font-size: 8.5px; color: #9ba3bf; }
.txn-amt { font-size: 11px; font-weight: 700; flex-shrink: 0; }
.txn-amt.positive { color: var(--green); }
.txn-amt.negative { color: #e53e3e; }

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  white-space: nowrap;
  animation: floatCardAnim 8s ease-in-out infinite alternate;
}
.card-score { top: 5%; right: -110px; animation-delay: 0s; }
.card-ai { bottom: 15%; left: -110px; animation-delay: 4s; }
@keyframes floatCardAnim {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}
.float-icon { font-size: 22px; }
.float-label { font-size: 10px; color: var(--text-muted); }
.float-value { font-size: 13px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 6px; }
.chip {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
}
.chip.green { background: rgba(0,196,140,0.12); color: var(--teal); }

/* ─── MARQUEE ─── */
.marquee-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(0,196,140,0.04), rgba(108,92,231,0.04), rgba(0,153,255,0.04));
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.marquee-track .dot {
  color: var(--green);
  font-size: 8px;
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── SECTION LABELS / TITLES ─── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ─── FEATURES ─── */
.features {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
}
.features .container { text-align: center; }
.features .section-sub { margin: 0 auto 60px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.feature-card {
  position: relative;
  padding: 32px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,196,140,0.25);
  box-shadow: var(--shadow-lg);
}
.feature-card-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card[data-color="green"] .feature-card-bg { background: radial-gradient(ellipse 80% 70% at 50% -10%, rgba(0,196,140,0.08), transparent); }
.feature-card[data-color="blue"] .feature-card-bg { background: radial-gradient(ellipse 80% 70% at 50% -10%, rgba(0,153,255,0.08), transparent); }
.feature-card[data-color="purple"] .feature-card-bg { background: radial-gradient(ellipse 80% 70% at 50% -10%, rgba(108,92,231,0.08), transparent); }
.feature-card[data-color="amber"] .feature-card-bg { background: radial-gradient(ellipse 80% 70% at 50% -10%, rgba(249,168,37,0.08), transparent); }
.feature-card[data-color="cyan"] .feature-card-bg { background: radial-gradient(ellipse 80% 70% at 50% -10%, rgba(0,153,255,0.08), transparent); }
.feature-card[data-color="pink"] .feature-card-bg { background: radial-gradient(ellipse 80% 70% at 50% -10%, rgba(253,121,168,0.08), transparent); }
.feature-card:hover .feature-card-bg { opacity: 1; }

.card-large { grid-column: span 2; }
.feature-icon-wrap {
  width: 48px; height: 48px;
  margin-bottom: 20px;
}
.feature-icon-wrap svg { width: 48px; height: 48px; }
.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.feature-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.feature-link {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: auto;
}
.feature-link:hover { opacity: 0.7; }

/* Income bars */
.feature-visual { margin: 16px 0; }
.income-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
}
.bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: rgba(0,196,140,0.12);
  border-top: 2px solid rgba(0,196,140,0.3);
  position: relative;
  transition: all 0.5s ease;
}
.bar.highlight {
  background: rgba(0,196,140,0.25);
  border-top-color: var(--green);
  box-shadow: 0 0 16px rgba(0,196,140,0.2);
}
.bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--text-light);
  white-space: nowrap;
}
.income-label {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 24px;
}

/* Asset pills */
.asset-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.pill {
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(249,168,37,0.08);
  border: 1px solid rgba(249,168,37,0.2);
  font-size: 12px;
  color: var(--text-muted);
}
.pill b { color: #d97706; margin-left: 4px; }

/* Score ring in feature */
.score-ring-wrap { margin: 16px 0; display: flex; justify-content: center; }
.score-ring { width: 110px; height: 110px; }
.score-arc {
  transform-origin: 60px 60px;
  transform: rotate(-90deg);
  animation: arcDraw 2s ease forwards 0.5s;
  stroke-dashoffset: 314;
}
@keyframes arcDraw { to { stroke-dashoffset: 47; } }

/* Achiever avatars */
.achievers-avatars {
  display: flex;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 20px;
}
.av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}
.av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.av2 { background: linear-gradient(135deg, var(--green), var(--cyan)); }
.av3 { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.av4 { background: linear-gradient(135deg, var(--blue), var(--purple)); }
.av-more {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ─── AI ENGINE ─── */
.ai-engine {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(160deg, #f5f0ff 0%, #f0f8ff 50%, #f0fff9 100%);
}
.ai-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.ai-text { flex: 1; }
.ai-text p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.ai-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.ai-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.ai-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,196,140,0.12);
  border: 1px solid rgba(0,196,140,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.ai-check svg { width: 12px; height: 12px; }
.ai-visual { flex: 1; }
.ai-card-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ai-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ai-card:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.ac1 { border-left: 3px solid var(--green); }
.ac2 { border-left: 3px solid var(--cyan); }
.ac3 { border-left: 3px solid var(--amber); }
.ac-icon { font-size: 24px; flex-shrink: 0; }
.ac-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.ac-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.ac-text .pos { color: var(--teal); font-weight: 700; }
.ai-ticker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 0 0;
}
.tick-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0,196,140,0.08);
  border: 1px solid rgba(0,196,140,0.2);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ─── SCREENS SCROLL ─── */
.screens-section { padding: 100px 0; overflow: hidden; background: #fafbff; }
.screens-section .container { text-align: center; margin-bottom: 48px; }
.screens-scroll {
  display: flex;
  gap: 24px;
  padding: 20px 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.1) transparent;
}
.screens-scroll::-webkit-scrollbar { height: 4px; }
.screens-scroll::-webkit-scrollbar-track { background: transparent; }
.screens-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 4px; }
.screen-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  text-align: center;
}
.screen-phone {
  width: 180px;
  background: #f5f5f7;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.screen-phone:hover { transform: translateY(-10px) scale(1.03); }
.dark-phone { background: #0d0d20; border-color: rgba(255,255,255,0.1); }
.sc-notch {
  width: 60px; height: 18px;
  background: #f5f5f7;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}
.dark-notch { background: #0d0d20; }
.sc-content { padding: 10px 14px 20px; }
.dark-content { color: white; }
.sc-label { font-size: 11px; color: #888; font-weight: 600; margin-bottom: 4px; }
.sc-amount {
  font-size: 20px;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.sc-change { font-size: 10px; font-weight: 600; margin-bottom: 10px; }
.sc-change.pos { color: #00a36c; }
.dark-content .sc-amount { color: white; }
.sc-mini-chart svg { width: 100%; }
.sc-btns { display: flex; gap: 6px; margin-top: 10px; }
.sc-btn {
  flex: 1;
  padding: 7px;
  border-radius: 10px;
  background: rgba(0,0,0,0.06);
  font-size: 10px;
  font-weight: 600;
  color: #333;
  text-align: center;
}
.green-btn { background: rgba(0,196,140,0.15); color: #00875a; }
.sc-txn-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.sc-txn { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.sc-txn-ico { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; }
.sc-txn-ico.green { background: linear-gradient(135deg, #00c48c, #00e6a6); }
.sc-txn-ico.purple { background: linear-gradient(135deg, #6c5ce7, #fd79a8); }
.sc-txn-ico.blue { background: linear-gradient(135deg, #0984e3, #6c5ce7); }
.sc-txn-amt { margin-left: auto; font-weight: 700; font-size: 11px; }
.sc-txn-amt.pos { color: #00875a; }
.sc-txn-amt.neg { color: #c53030; }
.screen-label { margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.sc-crypto-bars { margin: 8px 0; }
.sc-crypto-bars svg { width: 100%; }
.sc-assets-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sc-asset { display: flex; align-items: center; gap: 6px; font-size: 11px; color: white; font-weight: 600; }
.sc-asset-dot { width: 8px; height: 8px; border-radius: 50%; }
.sc-asset-dot.btc { background: #f59e0b; }
.sc-asset-dot.eth { background: #6c5ce7; }
.sc-asset-val { font-size: 11px; color: #00c48c; font-weight: 700; }
.sc-stock-row { display: flex; gap: 10px; margin: 10px 0; }
.sc-stock { display: flex; align-items: center; gap: 6px; padding: 6px 8px; border-radius: 8px; background: rgba(255,255,255,0.06); flex: 1; }
.sc-stock-ico { width: 22px; height: 22px; border-radius: 50%; }
.sc-stock-ico.sbux { background: linear-gradient(135deg, #00704a, #1e3932); }
.sc-stock-ico.amzn { background: linear-gradient(135deg, #ff9900, #232f3e); }

/* ─── ACHIEVERS SECTION ─── */
.achievers-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(160deg, #fff9f0 0%, #f5f0ff 50%, #f0fff9 100%);
}
.achievers-section .container { text-align: center; }
.achievers-section .section-sub { margin: 0 auto 60px; }
.achievers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.achiever-card {
  padding: 32px;
  border-radius: 24px;
  background: #ffffff;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.achiever-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0,196,140,0.2);
  box-shadow: var(--shadow-lg);
}
.achiever-card.featured {
  border-color: rgba(0,196,140,0.3);
  background: linear-gradient(160deg, #f0fff9 0%, #ffffff 100%);
  box-shadow: 0 0 0 1px rgba(0,196,140,0.1), var(--shadow-md);
}
.ach-featured-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(0,196,140,0.1);
  border: 1px solid rgba(0,196,140,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.ach-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 2px solid var(--border);
}
.ach-a1 { background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%); }
.ach-a2 { background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 100%); }
.ach-a3 { background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%); }
.ach-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.ach-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 4px; letter-spacing: -0.5px; }
.ach-role { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.ach-quote {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}
.ach-stat { font-size: 12px; color: var(--text-light); }
.ach-stat span { color: var(--text); font-weight: 700; }

/* ─── SCORE SECTION ─── */
.score-section { padding: 100px 0; background: #fafbff; }
.score-inner { display: flex; align-items: center; gap: 80px; }
.score-visual-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.big-score-ring { position: relative; display: flex; align-items: center; justify-content: center; }
.big-ring-svg { width: 200px; height: 200px; }
.big-arc { animation: bigArcDraw 2.5s ease forwards 0.3s; stroke-dashoffset: 534; }
@keyframes bigArcDraw { to { stroke-dashoffset: 80; } }
.big-score-center { position: absolute; text-align: center; }
.big-score-num { font-size: 48px; font-weight: 900; color: var(--text); letter-spacing: -2px; }
.big-score-label { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.score-legend { display: flex; flex-direction: column; gap: 10px; }
.legend-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.legend-item.active { color: var(--text); font-weight: 600; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.score-text { flex: 1; }
.score-text p { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin-bottom: 28px; }
.score-factors { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.sf { display: flex; align-items: center; gap: 14px; }
.sf-icon { font-size: 20px; flex-shrink: 0; width: 28px; text-align: center; }
.sf > div { flex: 1; }
.sf-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.sf-bar { height: 5px; background: rgba(0,0,0,0.06); border-radius: 5px; overflow: hidden; }
.sf-fill { height: 100%; border-radius: 5px; animation: barFill 1.5s ease forwards; transform-origin: left; transform: scaleX(0); }
@keyframes barFill { to { transform: scaleX(1); } }

/* ─── SCORE RING FEATURE (fix for light mode) ─── */
.score-ring circle:first-child { stroke: rgba(0,0,0,0.06); }
.feature-card .score-ring text { fill: var(--text) !important; }
.feature-card .score-ring text:last-child { fill: var(--text-muted) !important; }

/* ─── DOWNLOAD ─── */
.download-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 40%, #0a1a2a 70%, #0a1a14 100%);
}
.download-inner { display: flex; align-items: center; gap: 80px; }
.dl-text { flex: 1; }
.dl-text p { font-size: 17px; line-height: 1.7; margin-bottom: 32px; }
.store-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  backdrop-filter: blur(10px);
}
.store-btn svg { width: 20px; height: 20px; }
.store-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.16); }
.dl-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.trust-item svg { width: 14px; height: 14px; color: var(--green-light); }
.dl-phones {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.dl-phone {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.dl-phone:hover { transform: translateY(-8px); }
.dp1 { width: 160px; animation: phoneFloat 7s ease-in-out infinite alternate; }
.dp2 { width: 160px; animation: phoneFloat 7s ease-in-out infinite alternate-reverse; animation-delay: 1.5s; }
.dp-screen { background: #0f0f1f; height: 280px; display: flex; align-items: center; justify-content: center; }
.dark-dp { background: #0d0d14; }
.dp-content { padding: 20px; width: 100%; }

/* ─── COMPANY ─── */
.company-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: #ffffff;
}
.company-section .container { text-align: center; }
.company-section .section-sub { margin: 0 auto 60px; }
.company-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.cp {
  padding: 28px;
  border-radius: 20px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.cp:hover { transform: translateY(-5px); border-color: rgba(0,196,140,0.2); box-shadow: var(--shadow-md); }
.cp-num {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.cp h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.cp p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ─── FOOTER ─── */
.footer {
  background: #0f0f1a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 0;
}
.footer-inner { display: flex; gap: 80px; padding-bottom: 60px; }
.footer-brand { flex: 1; max-width: 280px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover { color: white; border-color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 60px; }
.fl-col { display: flex; flex-direction: column; gap: 12px; }
.fl-title { font-size: 13px; font-weight: 700; color: white; margin-bottom: 4px; letter-spacing: 0.5px; }
.fl-col a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.fl-col a:hover { color: rgba(255,255,255,0.85); }
.footer-logo-img { filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── SECTION BACKGROUNDS VARIETY ─── */
.features { background: #ffffff; }

/* Score ring colors for light mode */
.big-ring-svg circle:first-child { stroke: rgba(0,0,0,0.06) !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding: 120px 24px 60px; gap: 48px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .float-card { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .card-large { grid-column: span 2; }
  .ai-inner { flex-direction: column; }
  .score-inner { flex-direction: column; }
  .download-inner { flex-direction: column; }
  .company-pillars { grid-template-columns: 1fr 1fr; }
  .achievers-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-brand { max-width: 100%; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .card-large { grid-column: span 1; }
  .company-pillars { grid-template-columns: 1fr; }
  .achievers-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 32px; }
  .screens-scroll { padding: 20px 24px; }
  .score-visual-wrap { flex-direction: column; }
  .hero-phone { width: 220px; }
}
