/* STRIDR — the marketing site. Tokens from the design system (lib/designV2.ts). */
:root {
  --night: #060607;
  --elevated: #121215;
  --card: #0E0E11;
  --ink: #F6F3EC;
  --ink-muted: #A8A5A0;
  --ink-faint: #6B6B6E;
  --accent: #FF5F1F;
  --accent-deep: #B5430F;
  --glow: rgba(255, 95, 31, 0.07);
  --track: #1D1D23;
  --border: #1D1D23;
  --on-accent: #1B1206;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ---- nav ---- */
.nav { display: flex; align-items: center; gap: 36px; height: 84px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; text-decoration: none; }
.brand img { border-radius: 10px; }
.brand span { font-size: 21px; font-weight: 800; letter-spacing: -0.4px; color: var(--ink); }
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 600; }
.nav-links a { color: var(--ink-muted); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--ink); }
.store-btns { display: flex; gap: 10px; }
.store-btn {
  height: 40px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px; color: var(--ink);
  font-size: 13px; font-weight: 700; text-decoration: none; transition: border-color 0.15s;
}
.store-btn:hover { border-color: var(--ink-faint); }

/* ---- type + shared ---- */
.kicker { font-size: 12px; letter-spacing: 2.4px; font-weight: 700; color: var(--accent); text-transform: uppercase; }
.sub { font-size: 16.5px; line-height: 25px; color: var(--ink-muted); }
.cta {
  height: 49px; padding: 0 30px; border-radius: 999px; background: var(--accent);
  border: 0; border-bottom: 3px solid var(--accent-deep); color: var(--on-accent);
  font-weight: 800; font-size: 14px; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
  transition: filter 0.15s;
}
.cta:hover { filter: brightness(1.07); }
.cta:active { background: #D44A12; }
.cta-ghost {
  height: 49px; padding: 0 30px; border-radius: 999px; background: transparent;
  border: 1px solid var(--border); color: var(--ink); font-weight: 700; font-size: 14px;
  cursor: pointer; font-family: inherit; display: inline-flex; align-items: center;
  justify-content: center; text-decoration: none; transition: border-color 0.15s;
}
.cta-ghost:hover { border-color: var(--ink-faint); }
.pill-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border-radius: 999px; background: var(--card); border: 1px solid var(--border);
  font-size: 13.5px; color: var(--ink-muted);
}
.pill-chip b { color: var(--ink); font-weight: 800; }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 16px;
}
.plate { background: var(--glow); border-radius: 20px; padding: 18px; }
.track { height: 7px; border-radius: 999px; background: var(--track); overflow: hidden; }
.track .fill { height: 100%; border-radius: 999px; background: var(--accent); }
.label-sm { font-size: 9px; letter-spacing: 1.2px; font-weight: 700; color: var(--ink-faint); text-transform: uppercase; }
.glow-ground { height: 36px; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(255,95,31,0.22), rgba(255,95,31,0) 70%); }

/* ---- hero ---- */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 64px 0 96px; }
.hero h1 { margin: 22px 0 0; font-size: 58px; line-height: 64px; font-weight: 800; letter-spacing: -1.4px; }
.hero .sub { margin: 22px 0 0; max-width: 440px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.stage { position: relative; height: 640px; }

/* the phones */
.phone {
  position: absolute; width: 264px; height: 552px; background: var(--night);
  border: 10px solid #1A1A1F; border-radius: 44px; box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  padding: 22px 18px; display: flex; flex-direction: column;
}
.phone-l { left: 6%; top: 36px; transform: rotate(-6deg); z-index: 2; }
.phone-r { right: 2%; top: 0; transform: rotate(5deg); z-index: 3; }
.float-card { position: absolute; z-index: 4; padding: 10px 14px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.float-card .v { font-size: 14px; font-weight: 800; color: var(--ink); }

/* ---- features ---- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 48px 0 96px; }
.feature:last-of-type { padding-bottom: 120px; }
.feature h2 { margin: 16px 0 0; font-size: 42px; line-height: 48px; font-weight: 800; letter-spacing: -1px; }
.feature .sub { margin: 18px 0 0; max-width: 440px; }
.feature-phone-wrap { display: flex; justify-content: center; }
.feature-phone {
  width: 280px; height: 560px; background: var(--night); border: 10px solid #1A1A1F;
  border-radius: 44px; box-shadow: 0 40px 80px rgba(0,0,0,0.6); padding: 24px 20px;
  display: flex; flex-direction: column; position: relative;
}
.tilt-l { transform: rotate(-4deg); }
.tilt-r { transform: rotate(4deg); }

/* ---- footer ---- */
.footer { border-top: 1px solid var(--border); padding: 36px 0 48px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer .sub { font-size: 13px; }
.footer a { color: var(--ink-muted); text-decoration: none; font-size: 13px; }
.footer a:hover { color: var(--ink); }
.footer .spacer { margin-left: auto; }

/* ---- responsive ---- */
@media (max-width: 980px) {
  .wrap { padding: 0 22px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 28px 0 40px; }
  .hero h1 { font-size: 38px; line-height: 44px; letter-spacing: -1px; }
  .stage { height: 600px; margin-top: 24px; transform: scale(0.88); transform-origin: top center; }
  .feature { grid-template-columns: 1fr; padding: 24px 0 56px; }
  .feature h2 { font-size: 30px; line-height: 36px; }
  .feature-phone-wrap { order: 2; margin-top: 28px; }
}

/* ---- meet STRIDE + notifications ---- */
.meet { text-align: center; padding: 32px 0 96px; }
.meet h2 { margin: 16px 0 0; font-size: 42px; line-height: 48px; font-weight: 800; letter-spacing: -1px; }
.notif { padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.notif-head { display: flex; gap: 8px; align-items: baseline; }
.notif-head span:first-child { font-size: 13px; font-weight: 800; color: var(--ink); }
.notif-body { font-size: 13.5px; line-height: 19px; margin-top: 2px; }
@media (max-width: 980px) { .meet h2 { font-size: 30px; } .notif { margin-left: 0 !important; } }
