*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1A212E;
  --navy-90: rgba(26,33,46,0.9);
  --navy-60: rgba(26,33,46,0.6);
  --navy-20: rgba(26,33,46,0.12);
  --navy-08: rgba(26,33,46,0.06);
  --white: #FFFFFF;
  --surface: #F8F9FA;
  --surface2: #EFF1F3;
  --red: #E91E63;
  --red-light: #FF4081;
  --red-dim: rgba(233,30,99,0.10);
  --red-glow: rgba(233,30,99,0.22);
  --green: #00C896;
  --text: #1A212E;
  --text-mid: #4A5568;
  --text-muted: #8896A8;
  --border: rgba(26,33,46,0.10);
  --border-strong: rgba(26,33,46,0.18);
  --ff: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-mono: 'Spline Sans Mono', monospace;
  --r-card: 20px;
  --r-btn: 10px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--ff);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(26,33,46,0.08); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-name span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta { display: flex; gap: 0.6rem; align-items: center; }
.btn-ghost {
  padding: 0.5rem 1.15rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-btn);
  background: transparent;
  color: var(--navy);
  font-family: var(--ff);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--navy); background: var(--navy-08); }
.btn-navy {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: var(--r-btn);
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff);
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s;
}
.btn-navy:hover { background: #242e40; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 9rem 4rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Subtle dot grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,33,46,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Red accent glow */
.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(233,30,99,0.07) 0%, transparent 65%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.85rem;
  background: var(--red-dim);
  border: 1.5px solid rgba(233,30,99,0.2);
  border-radius: 100px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.5s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.5s 0.08s ease both;
}
.hero-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--red);
}
.hero-title .underline-word {
  position: relative;
  display: inline-block;
}
.hero-title .underline-word::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: expandLine 0.6s 0.7s ease forwards;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 470px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  animation: fadeUp 0.5s 0.16s ease both;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.5s 0.24s ease both;
}
.btn-primary {
  padding: 0.85rem 2rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--ff);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.22s;
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--red-glow);
}
.btn-secondary {
  padding: 0.85rem 1.75rem;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  font-family: var(--ff);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.22s;
}
.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--surface);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.5s 0.32s ease both;
}
.stat { }
.stat-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* ─── PHONE MOCKUP ─── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeUp 0.5s 0.12s ease both;
  z-index: 1;
}
.phone-wrap { position: relative; }
.phone-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at 50% 40%, rgba(233,30,99,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.phone {
  width: 272px;
  background: var(--navy);
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(26,33,46,0.08),
    0 40px 80px rgba(26,33,46,0.28),
    0 8px 20px rgba(26,33,46,0.15);
  overflow: hidden;
  position: relative;
}
.phone-screenshot {
  border: 7px solid #1A212E;
  border-radius: 44px;
  box-shadow:
    0 0 0 1px rgba(26,33,46,0.12),
    0 40px 80px rgba(26,33,46,0.30),
    0 8px 20px rgba(26,33,46,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  background: #1A212E;
}
.phone-notch {
  width: 94px; height: 26px;
  background: rgba(0,0,0,0.6);
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.notch-cam {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}
.phone-screen {
  padding: 0.9rem;
  min-height: 520px;
  background: var(--surface);
}
.ps-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.15rem 0.25rem;
  margin-bottom: 0.85rem;
}
.ps-time {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--ff-mono);
}
.ps-icons { display: flex; gap: 4px; align-items: center; }
.ps-icon-bar {
  width: 12px; height: 7px;
  border: 1.2px solid var(--navy);
  border-radius: 1.5px;
  position: relative;
  overflow: hidden;
}
.ps-icon-bar::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--navy);
  width: 70%;
}
.ps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.ps-greeting { font-size: 0.58rem; color: var(--text-muted); font-weight: 500; }
.ps-name { font-size: 0.78rem; font-weight: 700; color: var(--navy); }
.ps-avatar {
  width: 30px; height: 30px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.ps-balance-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 0.85rem;
  position: relative;
  overflow: hidden;
}
.ps-balance-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -20px;
  width: 100px; height: 100px;
  background: rgba(233,30,99,0.2);
  border-radius: 50%;
}
.ps-balance-card::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 10px;
  width: 60px; height: 60px;
  background: rgba(233,30,99,0.1);
  border-radius: 50%;
}
.ps-bal-label {
  font-size: 0.54rem;
  font-family: var(--ff-mono);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.ps-bal-amount {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.ps-bal-change {
  font-size: 0.55rem;
  font-family: var(--ff-mono);
  color: #6EF7C1;
  margin-top: 0.2rem;
  position: relative;
  z-index: 1;
}

.ps-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.ps-action-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.ps-action-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-action-icon svg { width: 12px; height: 12px; stroke: var(--red); fill: none; stroke-width: 2; }
.ps-action-label {
  font-size: 0.44rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.ps-section-title {
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--ff-mono);
  margin-bottom: 0.5rem;
}
.ps-tx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
}
.ps-tx:last-child { border-bottom: none; }
.ps-tx-left { display: flex; align-items: center; gap: 0.45rem; }
.ps-tx-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}
.ps-tx-name { font-size: 0.62rem; font-weight: 700; color: var(--navy); }
.ps-tx-date { font-size: 0.48rem; color: var(--text-muted); font-family: var(--ff-mono); }
.ps-tx-amount { font-size: 0.62rem; font-weight: 700; font-family: var(--ff-mono); }
.ps-tx-amount.neg { color: #E91E63; }
.ps-tx-amount.pos { color: var(--green); }

/* Bottom nav mockup */
.ps-bottom-nav {
  display: flex;
  justify-content: space-around;
  background: var(--white);
  border-radius: 14px;
  padding: 0.6rem 0.4rem 0.4rem;
  margin-top: 0.75rem;
  box-shadow: 0 -2px 12px rgba(26,33,46,0.06);
}
.ps-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.ps-nav-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-nav-icon.active { background: var(--red-dim); }
.ps-nav-icon svg { width: 12px; height: 12px; stroke-width: 2; fill: none; stroke: var(--text-muted); }
.ps-nav-icon.active svg { stroke: var(--red); }
.ps-nav-label { font-size: 0.42rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.ps-nav-label.active { color: var(--red); }

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 32px rgba(26,33,46,0.12);
  animation: floatY 3.5s ease-in-out infinite;
}
.float-card.right {
  right: -64px; top: 16%;
  animation-delay: 0.3s;
}
.float-card.left {
  left: -68px; bottom: 22%;
  animation-delay: 1.1s;
}
.fc-dot {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--red-dim);
  border: 1px solid rgba(233,30,99,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-dot svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 2; }
.fc-label { font-size: 0.58rem; color: var(--text-muted); }
.fc-value { font-size: 0.75rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }

/* ─── TICKER ─── */
.ticker {
  background: var(--navy);
  padding: 0.65rem 0;
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.ticker::after { right: 0; background: linear-gradient(to left, var(--navy), transparent); }
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
}
.ticker-sym { color: rgba(255,255,255,0.5); font-weight: 500; }
.ticker-price { color: rgba(255,255,255,0.9); font-weight: 500; }
.ticker-change.up { color: #6EF7C1; }
.ticker-change.dn { color: #FF6B8A; }
.ticker-div { width: 1px; height: 12px; background: rgba(255,255,255,0.12); }

/* ─── SECTIONS common ─── */
section { padding: 6rem 4rem; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  font-family: var(--ff-mono);
}
.section-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--red);
  border-radius: 1px;
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-heading em { font-style: italic; color: var(--red); }

.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 520px;
  font-weight: 400;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── FEATURES ─── */
.features { background: var(--surface); }
.features-header { text-align: center; margin-bottom: 3.5rem; }
.features-header .section-eyebrow { display: flex; justify-content: center; }
.features-header .section-eyebrow::before { display: none; }
.features-header .section-body { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1120px;
  margin: 0 auto;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.28s ease;
  cursor: default;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px 2px 0 0;
}
.feature-card:hover {
  border-color: rgba(233,30,99,0.2);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(26,33,46,0.10);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card.span2 { grid-column: span 2; }
.feature-card.featured {
  background: var(--navy);
}
.feature-card.featured .fc-title,
.feature-card.featured .fc-desc { color: rgba(255,255,255,0.9); }
.feature-card.featured .fc-title { color: var(--white); }
.feature-card.featured .fc-icon-wrap { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.feature-card.featured .fc-icon-wrap svg { stroke: var(--white); }
.feature-card.featured::after { background: var(--red); }
.feature-card.featured .fc-tag { background: rgba(233,30,99,0.2); border-color: rgba(233,30,99,0.35); color: #FF8AAB; }

.fc-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--red-dim);
  border: 1.5px solid rgba(233,30,99,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.fc-icon-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fc-tag {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  background: rgba(0,200,150,0.10);
  border: 1px solid rgba(0,200,150,0.22);
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00A878;
  font-family: var(--ff-mono);
  margin-bottom: 0.8rem;
}
.fc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.55rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.fc-desc {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 400;
}

/* ─── HOW IT WORKS ─── */
.how { background: var(--white); }
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--red);
  min-width: 28px;
  padding-top: 3px;
  letter-spacing: 0.05em;
}
.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* QR Mockup */
.how-visual { position: sticky; top: 9rem; }
.qr-mockup {
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(26,33,46,0.10);
  max-width: 300px;
  margin: 0 auto;
}
.qr-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.qr-merchant-logo {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--white);
}
.qr-merchant-name { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.qr-merchant-sub { font-size: 0.65rem; color: var(--text-muted); }
.qr-amount-display {
  text-align: center;
  background: var(--surface);
  border-radius: 14px;
  padding: 1.1rem;
  margin-bottom: 1.5rem;
}
.qr-amt-label { font-size: 0.62rem; color: var(--text-muted); font-family: var(--ff-mono); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
.qr-amt { font-size: 2rem; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; }
.qr-amt sup { font-size: 1rem; font-weight: 700; vertical-align: super; }
.qr-amt-token { font-size: 0.65rem; color: var(--text-muted); font-family: var(--ff-mono); margin-top: 2px; }

.qr-box {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.25rem;
  position: relative;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--red);
  border-style: solid;
}
.qr-corner.tl { top: -2px; left: -2px; border-width: 3px 0 0 3px; border-radius: 6px 0 0 0; }
.qr-corner.tr { top: -2px; right: -2px; border-width: 3px 3px 0 0; border-radius: 0 6px 0 0; }
.qr-corner.bl { bottom: -2px; left: -2px; border-width: 0 0 3px 3px; border-radius: 0 0 0 6px; }
.qr-corner.br { bottom: -2px; right: -2px; border-width: 0 3px 3px 0; border-radius: 0 0 6px 0; }
.qr-scan-line {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: scanLine 2s ease-in-out infinite;
  border-radius: 1px;
}
.qr-inner {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 2px;
  width: 140px; height: 140px;
}
.qr-cell { border-radius: 1.5px; }

.qr-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--ff-mono);
}
.qr-status-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ─── TECH ─── */
.tech { background: var(--navy); }
.tech .section-eyebrow { color: rgba(233,30,99,0.9); }
.tech .section-eyebrow::before { background: var(--red); }
.tech .section-heading { color: var(--white); }
.tech .section-heading em { color: var(--red); }
.tech .section-body { color: rgba(255,255,255,0.55); }
.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.tech-pill {
  padding: 0.3rem 0.8rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  font-family: var(--ff-mono);
  transition: all 0.2s;
}
.tech-pill:hover { background: var(--red-dim); border-color: rgba(233,30,99,0.3); color: var(--red-light); }

.tech-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.tech-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-card);
  padding: 1.5rem;
  transition: all 0.25s;
}
.tech-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(233,30,99,0.3);
  transform: translateY(-3px);
}
.tech-card-num {
  font-size: 0.62rem;
  font-family: var(--ff-mono);
  color: var(--red);
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}
.tech-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.tech-card-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ─── CTA ─── */
.cta-section {
  background: var(--surface);
  text-align: center;
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(233,30,99,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .section-body { margin: 0 auto 2.5rem; }
.cta-section .section-eyebrow { justify-content: center; }

.store-buttons {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1.4rem;
  background: var(--navy);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.22s;
  cursor: pointer;
}
.store-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--red-glow);
}
.store-btn svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }
.store-btn svg[stroke] { fill: none; stroke: var(--white); stroke-width: 2; }
.store-small { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.6); font-weight: 500; letter-spacing: 0.02em; }
.store-name { display: block; font-size: 0.9rem; font-weight: 700; letter-spacing: -0.01em; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-mark { background: var(--red); }
.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); font-family: var(--ff-mono); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
@keyframes scanLine {
  0% { top: 8px; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: calc(100% - 10px); opacity: 0; }
}
@keyframes expandLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 3rem; min-height: auto; }
  .hero-visual { order: -1; }
  .float-card { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.span2 { grid-column: span 1; }
  .how-inner, .tech-inner { grid-template-columns: 1fr; gap: 3rem; }
  .how-visual { position: static; }
  .tech-cards { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
}
