/* ============ base ============ */
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #0c121c;
  --surface-1: #101a29;
  --surface-2: #16233a;
  --line: rgba(161, 175, 180, 0.16);
  --text: #ffffff;
  --text-2: #a1afb4;
  --blue: #2176ff;
  --blue-bright: #4a8dff;
  --orange: #ff9e00;
  --cyan: #00f2ff;
  --gold: #eea530;
  --gold-deep: #d08610;
  --green: #00ff83;
  --coral: #ff494c;
  --rad: 16px;
  --rad-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: var(--cyan); }

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ header ============ */
.site-header {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark { width: 40px; height: 37px; }

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.header-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s;
}
.header-cta:hover { border-color: var(--blue); background: rgba(33, 118, 255, 0.12); }

/* ============ hero ============ */
.hero {
  display: grid;
  gap: 48px;
  padding: 40px 0 72px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(238, 165, 48, 0.12);
  border: 1px solid rgba(238, 165, 48, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.grad {
  background: linear-gradient(92deg, var(--blue-bright) 0%, var(--cyan) 55%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 34em;
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 14px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(33, 118, 255, 0.35);
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); }

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover { border-color: var(--text-2); }

.btn-block { width: 100%; }

/* ============ phone mockup ============ */
.hero-visual { display: flex; justify-content: center; }

.phone {
  width: min(320px, 88vw);
  background: linear-gradient(160deg, #131c2c, #0d1420);
  border: 1px solid rgba(161, 175, 180, 0.25);
  border-radius: 44px;
  padding: 14px 12px 22px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 6px rgba(9, 13, 20, 0.9),
    0 0 90px rgba(33, 118, 255, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-notch {
  width: 108px;
  height: 22px;
  background: #05080d;
  border-radius: 999px;
  margin: 0 auto 10px;
}

.phone-shot {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 14px;
  background: #0a0e16;
  border-radius: 12px 12px 32px 32px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============ features ============ */
.features { padding: 24px 0 64px; }

h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.card {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(33, 118, 255, 0.4); transform: translateY(-2px); }

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 26px; height: 26px; }

.icon-blue   { color: var(--blue-bright); background: rgba(33, 118, 255, 0.14); }
.icon-gold   { color: var(--gold);        background: rgba(238, 165, 48, 0.13); }
.icon-cyan   { color: var(--cyan);        background: rgba(0, 242, 255, 0.1); }
.icon-orange { color: var(--orange);      background: rgba(255, 158, 0, 0.12); }
.icon-green  { color: var(--green);       background: rgba(0, 255, 131, 0.1); }
.icon-coral  { color: var(--coral);       background: rgba(255, 73, 76, 0.12); }

.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 0.95rem; color: var(--text-2); }

/* ============ get the app ============ */
.get { padding: 24px 0 56px; }

.get-sub {
  text-align: center;
  color: var(--text-2);
  margin: -28px 0 36px;
}

.store-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  align-items: start;
}

.store-card {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 28px;
  scroll-margin-top: 24px;
}

.store-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.store-logo { width: 26px; height: 26px; color: var(--text); flex: none; }
.store-head h3 { font-size: 1.25rem; font-weight: 800; flex: 1; }

.pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.pill-live { color: var(--green); background: rgba(0, 255, 131, 0.1); border: 1px solid rgba(0, 255, 131, 0.35); }
.pill-soon { color: var(--orange); background: rgba(255, 158, 0, 0.1); border: 1px solid rgba(255, 158, 0, 0.35); }

.store-preamble {
  font-size: 0.92rem;
  color: var(--text-2);
  margin-bottom: 16px;
}
.store-preamble strong { color: var(--text); }

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.steps li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-2);
}
.steps strong { color: var(--text); }

.step-n {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(33, 118, 255, 0.16);
  color: var(--blue-bright);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 2px;
}

.mini-link { font-size: 0.88rem; font-weight: 600; }

.store-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-2);
}

.upgrade-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--rad);
  background: rgba(255, 158, 0, 0.07);
  border: 1px solid rgba(255, 158, 0, 0.28);
  font-size: 0.88rem;
  color: var(--text-2);
}
.upgrade-note strong { color: var(--orange); }

/* ============ trust ============ */
.trust {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(33, 118, 255, 0.08), rgba(0, 242, 255, 0.05));
  border: 1px solid rgba(33, 118, 255, 0.25);
  border-radius: var(--rad-lg);
  padding: 26px;
  margin-bottom: 64px;
}

.trust-mark { width: 40px; height: 40px; color: var(--cyan); flex: none; }
.trust p { font-size: 0.98rem; color: var(--text-2); }
.trust strong { color: var(--text); }

/* ============ footer ============ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 20px 40px;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-2);
}
.site-footer a { color: var(--text-2); text-decoration: none; }
.site-footer a:hover { color: var(--text); }

/* ============ desktop ============ */
@media (min-width: 760px) {
  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 64px 0 96px;
  }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .store-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 500px) and (max-width: 759px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
