/* ============== Reset + tokens ============== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

:root {
  --bg: #030303;
  --bg-2: #0c0c0c;
  --card: #181818;
  --card-2: #212121;
  --line: #2a2a2a;
  --text: #ffffff;
  --text-dim: #b3b3b3;
  --text-faint: #6f6f6f;
  --green: #72EB89;
  --green-2: #9FE565;
  --green-soft: rgba(114,235,137,0.12);
  --red: #EB7272;
  --radius: 28px;
  --radius-sm: 16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Kumbh Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Kumbh Sans", "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: pretty;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.kicker {
  display: inline-block;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  padding: 8px 14px;
  border: 1px solid rgba(114,235,137,0.3);
  border-radius: 999px;
  background: var(--green-soft);
  margin-bottom: 24px;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background: rgba(3,3,3,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-mark { width: 28px; height: 28px; display: inline-flex; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-name { color: var(--text); }
.nav-links {
  display: flex; gap: 28px;
  margin-left: auto;
  font-size: 14px;
  color: var(--text-dim);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  transition: transform .15s ease, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-pill { background: var(--green); color: #022; }
.btn-pill:hover { background: var(--green-2); }
.btn-green { padding: 16px 28px; font-size: 15px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -300px;
  left: -200px;
  width: 1100px; height: 700px;
  background: radial-gradient(closest-side, rgba(114,235,137,0.35), rgba(114,235,137,0));
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: 720px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(114,235,137,0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(114,235,137,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(114,235,137,0); }
  100% { box-shadow: 0 0 0 0 rgba(114,235,137,0); }
}
.hero-copy h1 {
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}
.accent {
  color: var(--green);
  font-style: italic;
  font-weight: 400;
}
.lead {
  font-size: 20px;
  line-height: 1.45;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 0 36px;
}
.cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-row-center { justify-content: center; }

.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  background: #fff;
  color: #030303;
  border-radius: 16px;
  font-family: "Kumbh Sans", sans-serif;
  transition: transform .15s ease, background .2s;
}
.store-btn:hover { transform: translateY(-1px); background: #f6f6f6; }
.store-btn svg { width: 26px; height: 26px; fill: currentColor; flex-shrink: 0; }
.store-btn-small { display: block; font-size: 11px; letter-spacing: 0.04em; opacity: 0.7; line-height: 1; margin-bottom: 2px; }
.store-btn-big { display: block; font-size: 18px; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
.store-btn-dark { background: #1c1c1c; color: #fff; }
.store-btn-dark:hover { background: #262626; }

.trust-row {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-dim);
  font-size: 14px;
}
.trust-stars { display: inline-flex; gap: 2px; }
.trust-stars svg { width: 18px; height: 18px; fill: var(--green); }
.trust-text strong { color: var(--text); font-weight: 600; }

/* ============== Phone mockup ============== */
.hero-phone-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 720px;
}
.hero-phone-glow {
  position: absolute;
  inset: -10% -10%;
  background:
    radial-gradient(closest-side at 70% 30%, rgba(114,235,137,0.25), transparent 70%),
    radial-gradient(closest-side at 30% 80%, rgba(255,255,255,0.05), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.phone {
  position: relative;
  width: 360px;
  height: 740px;
  border-radius: 52px;
  background: linear-gradient(160deg, #2a2a2a, #0a0a0a);
  padding: 10px;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.6),
    0 20px 40px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  z-index: 1;
}
.phone-notch {
  position: absolute;
  top: 20px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 30px;
  background: #030303;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 44px;
  background: #030303;
  overflow: hidden;
  padding: 16px 18px;
  font-family: "Kumbh Sans", sans-serif;
  display: flex; flex-direction: column;
  gap: 14px;
}
.phone-home-indicator {
  position: absolute;
  bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 4px;
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
}

.status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 14px 4px;
  font-size: 14px; font-weight: 600;
  font-family: "Inter", sans-serif;
}
.sb-icons { display: inline-flex; gap: 6px; align-items: center; }
.sb-signal, .sb-wifi, .sb-battery {
  display: inline-block; background: #fff; border-radius: 2px;
}
.sb-signal { width: 16px; height: 10px;
  background:
    linear-gradient(to top, #fff 35%, transparent 35%) 0 100%/2px 35% no-repeat,
    linear-gradient(to top, #fff 55%, transparent 55%) 4px 100%/2px 55% no-repeat,
    linear-gradient(to top, #fff 75%, transparent 75%) 8px 100%/2px 75% no-repeat,
    linear-gradient(to top, #fff 100%, transparent 100%) 12px 100%/2px 100% no-repeat;
  background-color: transparent;
}
.sb-wifi { width: 14px; height: 10px;
  background:
    radial-gradient(circle at 50% 100%, #fff 18%, transparent 19%) center/100% 100% no-repeat;
  position: relative;
}
.sb-wifi::before, .sb-wifi::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 70%; height: 70%; transform: translateX(-50%);
  border: 2px solid #fff; border-bottom: 0; border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.sb-wifi::after { width: 100%; height: 100%; }
.sb-battery { width: 22px; height: 11px; border: 1px solid #fff; background: transparent; position: relative; padding: 1px; }
.sb-battery::before { content: ""; display: block; width: 100%; height: 100%; background: #fff; border-radius: 1px; }
.sb-battery::after { content: ""; position: absolute; right: -3px; top: 3px; width: 2px; height: 5px; background: #fff; border-radius: 1px; }

.app-header {
  display: flex; justify-content: space-between; align-items: center;
}
.app-brand { display: flex; align-items: center; gap: 8px; }
.app-logo { width: 30px; height: 30px; display: inline-flex; }
.app-title { font-size: 18px; font-weight: 400; letter-spacing: -0.03em; }
.app-icons { display: flex; gap: 8px; }
.app-icon-btn {
  position: relative;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--card-2);
  display: inline-flex; align-items: center; justify-content: center;
}
.app-icon-btn svg { width: 20px; height: 20px; }
.app-icon-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--card-2);
}

/* chart card */
.chart-card {
  background: linear-gradient(180deg, #212121, #0f0f0f);
  border-radius: 22px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.chart-head { display: flex; justify-content: space-between; align-items: center; }
.chart-coin { display: flex; align-items: center; gap: 10px; }
.coin-icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff;
  font-family: "Inter", sans-serif;
}
.coin-btc { background: #F7931A; color: #fff; }
.coin-eth { background: #4F5D7E; }
.coin-sol { background: linear-gradient(135deg, #9945FF, #14F195); color: #030303; }

.coin-sym { font-size: 18px; font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.coin-name { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

.chart-price { text-align: right; }
.price-tag { display: inline-block; font-size: 10px; padding: 3px 6px; border-radius: 6px; }
.price-tag.up { background: rgba(114,235,137,0.15); color: var(--green); }
.price-tag.down { background: rgba(235,114,114,0.15); color: var(--red); }
.price-value { font-size: 14px; font-weight: 500; margin-top: 4px; }

.chart-candles {
  display: flex; align-items: flex-end; gap: 4px;
  height: 130px;
  padding: 6px 0;
}
.chart-candles .c {
  flex: 1;
  height: var(--h);
  border-radius: 1px;
  position: relative;
}
.chart-candles .g { background: var(--green); }
.chart-candles .r { background: var(--red); }

.chart-times {
  display: flex; gap: 6px;
}
.chart-times .t {
  flex: 1;
  text-align: center;
  font-size: 11px;
  padding: 6px 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
}
.chart-times .t.active {
  background: var(--green);
  color: #022;
  font-weight: 600;
}

.alerts-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-top: 4px;
}
.alerts-add {
  width: 36px; height: 36px;
  background: var(--green);
  color: #022;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 400;
}

.alert-card {
  background: var(--card-2);
  border-radius: 16px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
}
.alert-icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.alert-body { flex: 1; min-width: 0; }
.alert-title { font-size: 12px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-weight: 500; }
.alert-sub { font-size: 10px; color: var(--text-faint); margin-top: 2px; }
.alert-sub strong { color: var(--text); font-weight: 500; }
.chip {
  display: inline-flex; align-items: center;
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
  font-weight: 500;
}
.chip.up { background: rgba(114,235,137,0.12); color: var(--green); }
.chip.down { background: rgba(235,114,114,0.12); color: var(--red); }
.alert-toggle {
  width: 36px; height: 20px;
  border-radius: 999px;
  background: #353535;
  position: relative;
  flex-shrink: 0;
}
.alert-toggle span {
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left .2s;
}
.alert-toggle.on { background: var(--green); }
.alert-toggle.on span { left: 18px; background: #1c1c1c; }

/* Floating notification */
.float-notif {
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 320px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(28,28,28,0.85);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  z-index: 2;
  animation: float-in 1.6s 0.4s ease-out both;
}
@keyframes float-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.float-notif-icon {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-notif-icon svg { width: 20px; height: 20px; }
.float-notif-body { flex: 1; min-width: 0; }
.float-notif-title { font-family: "Kumbh Sans", sans-serif; font-weight: 600; font-size: 13px; }
.float-notif-text { font-size: 13px; color: var(--text-dim); margin-top: 2px; }
.float-notif-time { font-size: 11px; color: var(--text-faint); }

/* ============== MARQUEE ============== */
.marquee {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  overflow: hidden;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  color: var(--text-dim);
}
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: marquee 50s linear infinite;
  will-change: transform;
}
.marquee-track span { display: inline-block; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== FEATURES ============== */
.features {
  padding: 120px 0 100px;
  position: relative;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 340px;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.feat:hover { border-color: rgba(114,235,137,0.4); transform: translateY(-2px); }
.feat-wide { grid-column: span 2; }
.feat-num {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 13px;
  color: var(--green);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.feat h3 {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.feat p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  max-width: 480px;
}
.feat-art { flex: 1; display: flex; align-items: flex-end; justify-content: flex-end; position: relative; }

.feat-art-notif { gap: 10px; flex-direction: column; align-items: stretch; padding-top: 12px; }
.mock-notif {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 10px 12px;
  align-self: flex-end;
  width: 86%;
}
.mock-notif-2 { width: 78%; opacity: 0.7; }
.mock-notif-icon {
  width: 30px; height: 30px;
  background: var(--green);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mock-notif-icon svg { width: 16px; height: 16px; }
.mock-notif-row { display: flex; justify-content: space-between; font-size: 12px; }
.mock-notif-row span { color: var(--text-faint); }
.mock-notif-text { font-size: 13px; color: var(--text-dim); margin-top: 2px; }
.mock-notif-text strong { color: var(--text); }

.feat-coin-cloud {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
}
.cc {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: #fff;
  font-family: "Inter", sans-serif;
}
.cc-btc { background: #F7931A; }
.cc-eth { background: #4F5D7E; }
.cc-sol { background: linear-gradient(135deg, #9945FF, #14F195); color: #030303; }
.cc-xrp { background: #23292F; border: 1px solid #444; }
.cc-doge { background: #C2A633; color: #030303; }
.cc-ada { background: #0033AD; }

.feat-tabs {
  display: flex; gap: 6px;
  margin-top: auto;
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
}
.feat-tabs .tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  border-radius: 10px;
}
.feat-tabs .tab.active {
  background: var(--green);
  color: #022;
  font-weight: 600;
}

.feat-sounds { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.sound-row { display: flex; align-items: center; gap: 14px; }
.play {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green); color: #022;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  padding-left: 2px;
  flex-shrink: 0;
}
.name { font-size: 14px; min-width: 60px; }
.wave { display: inline-flex; align-items: center; gap: 3px; height: 26px; flex: 1; }
.wave i {
  display: inline-block; width: 3px;
  height: var(--h);
  background: var(--text-dim);
  border-radius: 2px;
}

.feat-widget {
  margin-top: auto; display: flex; justify-content: center;
}
.widget-mock {
  width: 200px;
  background: linear-gradient(160deg, #212121, #0f0f0f);
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.widget-mock-coin {
  width: 32px; height: 32px;
  background: #F7931A; color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}
.widget-mock-price { font-family: "Kumbh Sans", sans-serif; font-size: 22px; letter-spacing: -0.02em; }
.widget-mock-delta { color: var(--green); font-size: 12px; margin-top: 4px; }

.feat-pricing { margin-top: auto; }
.price { font-family: "Kumbh Sans", sans-serif; font-size: 56px; letter-spacing: -0.04em; line-height: 1; }
.price span { font-size: 18px; color: var(--text-dim); }
.price-note { font-size: 13px; color: var(--text-dim); margin-top: 6px; }

/* ============== HOW IT WORKS ============== */
.how {
  padding: 120px 0;
  background: linear-gradient(180deg, #030303 0%, #0a1a0d 50%, #030303 100%);
  position: relative;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding: 36px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 14px;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #022;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
.step h3 { font-size: 24px; font-weight: 500; letter-spacing: -0.02em; }
.step p { color: var(--text-dim); font-size: 14px; margin: 0; }

.step-shot {
  background: #030303;
  border: 1px solid #1a1a1a;
  border-radius: 18px;
  padding: 14px;
  margin-top: auto;
  display: flex; flex-direction: column; gap: 8px;
  font-family: "Kumbh Sans", sans-serif;
}
.ss-search {
  display: flex; align-items: center; gap: 8px;
  background: #1c1c1c;
  border-radius: 12px;
  padding: 10px 12px;
}
.ss-search-icon { color: var(--text-faint); }
.ss-search-text { color: var(--text-dim); font-size: 13px; }
.ss-row {
  display: flex; align-items: center; gap: 10px;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
}
.ss-row .coin-icon { width: 22px; height: 22px; font-size: 11px; }
.ss-price { margin-left: auto; color: var(--text-dim); font-size: 11px; }

.ss-tabs { display: flex; gap: 6px; background: #1c1c1c; padding: 4px; border-radius: 12px; }
.ss-tab { flex: 1; text-align: center; font-size: 11px; padding: 8px; border-radius: 8px; color: var(--text-dim); }
.ss-tab.active { background: var(--green); color: #022; font-weight: 600; }
.ss-input { background: #1c1c1c; border: 1px solid var(--green); border-radius: 12px; padding: 12px; font-size: 13px; }
.ss-slider {
  height: 6px;
  background: #1c1c1c;
  border-radius: 999px;
  position: relative;
  margin: 8px 0;
}
.ss-slider-fill { position: absolute; left: 0; top: 0; height: 100%; width: 70%; background: var(--green); border-radius: 999px; }
.ss-slider-knob { position: absolute; left: 70%; top: 50%; width: 14px; height: 14px; transform: translate(-50%, -50%); background: var(--green); border-radius: 50%; border: 2px solid #030303; }
.ss-cta { background: var(--green); color: #022; text-align: center; padding: 10px; border-radius: 12px; font-weight: 600; font-size: 12px; }

.step-shot-3 { padding: 20px 14px; }
.ss-time { text-align: center; font-family: "Kumbh Sans", sans-serif; font-size: 46px; letter-spacing: -0.04em; }
.ss-notif {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 10px 12px;
}
.ss-notif-icon {
  width: 30px; height: 30px;
  background: var(--green);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ss-notif-icon svg { width: 16px; height: 16px; }
.ss-notif-title { font-size: 11px; color: var(--text-dim); }
.ss-notif-text { font-size: 13px; }

/* ============== PREVIEW BAND ============== */
.preview-band {
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}
.preview-glow {
  position: absolute;
  bottom: -200px; right: -200px;
  width: 800px; height: 600px;
  background: radial-gradient(closest-side, rgba(114,235,137,0.25), transparent);
  filter: blur(40px);
  pointer-events: none;
}
.preview-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.preview-copy h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 0.95;
  margin: 12px 0 24px;
}
.preview-copy p { color: var(--text-dim); font-size: 18px; max-width: 540px; margin: 0 0 28px; }
.check-list { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 5px;
  width: 20px; height: 20px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23022' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 13 10 18 19 7'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.preview-stack {
  position: relative;
  display: flex; justify-content: center;
  perspective: 1200px;
}
.phone-tilted {
  transform: rotateY(-10deg) rotateX(4deg);
  transform-origin: center;
}

/* create-alert screen */
.create-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 4px 0;
}
.create-back, .create-trash {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1.5px solid var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.create-trash { border-color: rgba(255,255,255,0.1); border-width: 1px; }
.create-title { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; }

.create-coin {
  display: flex; align-items: center; gap: 10px;
  background: var(--card-2);
  border-radius: 14px;
  padding: 10px 12px;
}
.cc-name { font-weight: 500; font-size: 14px; }
.cc-price { margin-left: auto; font-size: 13px; color: var(--text-dim); }

.create-tabs {
  display: flex; gap: 4px;
  background: rgba(255,255,255,0.04);
  padding: 4px;
  border-radius: 14px;
}
.ct { flex: 1; text-align: center; padding: 8px; font-size: 12px; border-radius: 10px; color: var(--text-dim); }
.ct.active { background: var(--green); color: #022; font-weight: 600; }

.set-value {
  background: var(--card-2);
  border-radius: 16px;
  padding: 14px;
  font-size: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.sv-label { font-size: 16px; font-weight: 500; letter-spacing: -0.02em; }
.sv-sub { font-size: 11px; color: var(--text-faint); }
.sv-row { display: flex; align-items: center; gap: 6px; }
.sv-input {
  flex: 1;
  background: #0a0a0a;
  border: 1px solid var(--green);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
}
.sv-arrow {
  width: 32px; height: 32px;
  border: 1px solid var(--green);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 14px;
}
.sv-note { color: var(--text-dim); font-size: 11px; }
.sv-slider {
  position: relative;
  height: 5px;
  background: #1a1a1a;
  border-radius: 999px;
  margin-top: 6px;
}
.sv-slider-fill { position: absolute; left: 0; top: 0; height: 100%; width: 78%; background: var(--green); border-radius: 999px; }
.sv-slider-knob { position: absolute; left: 78%; top: 50%; transform: translate(-50%, -50%); width: 14px; height: 14px; background: var(--green); border-radius: 50%; }
.sv-ticks { display: flex; justify-content: space-between; font-size: 9px; color: var(--text-faint); margin-top: 4px; }

.sv-row-card {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--card-2);
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
}
.muted { color: var(--text-dim); }

.create-cta {
  background: var(--green);
  color: #022;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}

/* ============== FINAL CTA ============== */
.bottom-cta { padding: 60px 0 100px; }
.cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #72EB89 0%, #9FE565 100%);
  border-radius: 40px;
  padding: 100px 60px;
  text-align: center;
  color: #022;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15), transparent 50%);
  pointer-events: none;
}
.cta-card h2 {
  font-size: clamp(36px, 5.5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  position: relative;
}
.cta-card p { font-size: 18px; margin: 20px 0 36px; opacity: 0.8; position: relative; }
.cta-card .cta-row { position: relative; }

/* ============== FOOTER ============== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 40px;
  color: var(--text-dim);
  font-size: 13px;
}
.disclaimer {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.disclaimer-label {
  flex-shrink: 0;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  padding: 4px 10px;
  border: 1px solid rgba(114,235,137,0.3);
  border-radius: 999px;
  background: var(--green-soft);
  line-height: 1.4;
  margin-top: 1px;
}
.disclaimer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 820px;
}
@media (max-width: 560px) {
  .disclaimer { flex-direction: column; gap: 10px; padding: 18px 20px; }
}
.footer-inner {
  display: flex; align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  color: var(--text);
}
.footer-brand .brand-mark { width: 24px; height: 24px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--text); }
.footer-meta { margin-left: auto; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 80px; }
  .hero-phone-wrap { min-height: auto; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-wide { grid-column: span 2; }
  .preview-grid { grid-template-columns: 1fr; gap: 60px; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; gap: 16px; }
  .nav-links { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-wide { grid-column: span 1; }
  .feat { min-height: auto; padding: 24px; }
  .float-notif { left: 50%; transform: translateX(-50%); width: 90%; }
  .cta-card { padding: 60px 24px; border-radius: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-meta { margin-left: 0; }
  .phone { width: 320px; height: 660px; }
  .preview-stack .phone-tilted { transform: none; }
}
