/* StripFi landing — matches the app's design system (navy / teal / blue). */
:root {
  --bg: #0b0e15;
  --surface: #121724;
  --surface-2: #0e1220;
  --border: #202939;
  --border-strong: #2d3a52;
  --text: #e9edf6;
  --muted: #8b95a9;
  --faint: #5c667a;
  --accent: #2fd6a3;
  --accent-bright: #43eab8;
  --accent-ink: #04241a;
  --blue: #5b8bff;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-feature-settings: "cv02", "cv03", "ss01";
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(680px 380px at 15% -8%, rgba(91, 139, 255, 0.16), transparent 62%),
    radial-gradient(760px 420px at 88% -12%, rgba(47, 214, 163, 0.12), transparent 60%);
}
a { color: inherit; }
img { display: block; }

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11, 14, 21, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 120ms ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links .btn { color: var(--accent-ink); }
@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 11px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 80ms ease, filter 120ms ease, background 120ms ease, border-color 120ms ease;
}
.btn-sm { padding: 8px 15px; font-size: 14px; border-radius: 9px; }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: var(--accent-ink);
}
.btn-primary:hover { filter: brightness(1.07); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); }

/* layout */
main { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; border-top: 1px solid var(--border); }
.section-title { font-size: clamp(26px, 4vw, 38px); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; }
.section-sub { color: var(--muted); font-size: 16px; max-width: 62ch; margin: 0 0 40px; }

/* hero */
.hero { padding: 96px 0 84px; text-align: center; }
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding: 5px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface-2);
}
.hero h1 {
  font-size: clamp(38px, 6.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 auto 22px;
  max-width: 15ch;
}
.grad { background: linear-gradient(120deg, var(--accent-bright), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-blue { background: linear-gradient(120deg, #7ea4ff, var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { color: var(--muted); font-size: clamp(16px, 2vw, 19px); max-width: 62ch; margin: 0 auto 34px; }
.lede b { color: var(--text); font-weight: 600; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.stat-chips { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 52px; }
.chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 26px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 150px;
}
.chip-val { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.chip-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* two-col token cards */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.token-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 55%), var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
}
.token-card.pt { box-shadow: 0 0 0 1px rgba(47, 214, 163, 0.12), 0 24px 60px rgba(47, 214, 163, 0.05); }
.token-card.yt { box-shadow: 0 0 0 1px rgba(91, 139, 255, 0.12), 0 24px 60px rgba(91, 139, 255, 0.05); }
.token-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  color: var(--accent-ink);
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  margin-bottom: 18px;
}
.token-badge.blue { background: linear-gradient(135deg, #7ea4ff, var(--blue)); color: #06122e; }
.token-card h3 { font-size: 22px; margin: 0 0 10px; letter-spacing: -0.01em; }
.token-card p { color: var(--muted); margin: 0 0 18px; }
.token-card em { color: var(--text); font-style: normal; font-weight: 600; }
.ticks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ticks li { position: relative; padding-left: 26px; color: var(--text); font-size: 14.5px; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.yt .ticks li::before { border-color: var(--blue); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 16px;
}
.step h3 { margin: 0 0 8px; font-size: 18px; }
.step p { color: var(--muted); margin: 0; font-size: 15px; }

/* features */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 800px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}
.feature h4 { margin: 0 0 8px; font-size: 17px; letter-spacing: -0.01em; }
.feature p { color: var(--muted); margin: 0; font-size: 15px; }

/* market CTA */
.market-cta { border-top: 1px solid var(--border); }
.market-card {
  background:
    radial-gradient(500px 200px at 90% 0%, rgba(47, 214, 163, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 60%), var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.market-card h2 { font-size: clamp(24px, 3.5vw, 34px); margin: 8px 0 0; letter-spacing: -0.02em; }

/* footer */
.foot { border-top: 1px solid var(--border); padding: 44px 24px 60px; }
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-brand { display: flex; align-items: center; gap: 9px; font-weight: 700; }
.foot-links { display: flex; gap: 26px; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 14.5px; }
.foot-links a:hover { color: var(--text); }
.disclaimer {
  max-width: var(--max);
  margin: 24px auto 0;
  color: var(--faint);
  font-size: 12.5px;
  line-height: 1.6;
}
