/* ===== Lanemaster landing ===== */
:root {
  --bg: #07080d;
  --surface: #0d0f17;
  --surface-2: #12141d;
  --card: rgba(255, 255, 255, 0.025);
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --text: #eceef6;
  --muted: #9aa1b4;
  --muted-dim: #6b7185;
  --brand: #a855f7;
  --brand-2: #7c3aed;
  --brand-soft: rgba(168, 85, 247, 0.14);
  --green: #22c55e;
  --red: #e0555a;
  --blue: #4d8bff;
  --display: "Chakra Petch", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --maxw: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.bg-glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(680px 420px at 78% -6%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(560px 380px at 4% 8%, rgba(168, 85, 247, 0.12), transparent 62%),
    radial-gradient(700px 500px at 50% 108%, rgba(77, 139, 255, 0.08), transparent 60%);
}

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: .2px;
  border-radius: 11px; padding: 11px 20px; border: 1px solid transparent;
  transition: transform .12s ease, filter .15s ease, background .15s, border-color .15s, color .15s;
}
.btn-lg { padding: 15px 26px; font-size: 15.5px; border-radius: 13px; }
.btn-primary {
  color: #0a0511;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 34px -12px var(--brand);
}
.btn-primary:hover:not(:disabled) { filter: brightness(1.08); transform: translateY(-1px); }
.btn-primary:disabled { cursor: not-allowed; filter: grayscale(.25) brightness(.82); box-shadow: none; opacity: .78; }
.btn-ghost { color: var(--text); border-color: var(--line); background: var(--card); }
.btn-ghost:hover { border-color: var(--brand); color: #fff; background: var(--brand-soft); }

/* ---- brand ---- */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 20px; height: 20px; border-radius: 6px; transform: rotate(45deg);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 16px var(--brand-soft);
}
.brand-mark.small { width: 17px; height: 17px; }
.brand-word { font-family: var(--display); font-weight: 700; letter-spacing: 2.5px; font-size: 16px; }
.brand-word b { color: var(--brand); font-weight: 700; }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 22px;
  max-width: var(--maxw); margin: 0 auto; padding: 18px 26px;
  backdrop-filter: blur(8px);
}
.nav::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--line-soft);
  -webkit-mask: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
          mask: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}
.nav-links { margin-left: auto; display: flex; gap: 26px; }
.nav-links a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 9px 16px; font-size: 13.5px; }

/* ---- hero ---- */
.hero {
  max-width: var(--maxw); margin: 0 auto; padding: 64px 26px 40px;
  display: grid; grid-template-columns: 1.02fr 1fr; gap: 52px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--brand);
  background: var(--brand-soft); border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px var(--brand); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: .4; } }
h1 {
  font-family: var(--display); font-weight: 700; font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.03; letter-spacing: -0.5px;
}
.grad {
  background: linear-gradient(100deg, var(--brand) 10%, #c98bff 55%, var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { color: var(--muted); font-size: 17px; margin: 22px 0 30px; max-width: 520px; }
.hero-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cta-note { font-size: 12.5px; color: var(--muted-dim); }
.hero-meta {
  list-style: none; display: flex; gap: 12px; align-items: center;
  margin-top: 26px; font-size: 13px; color: var(--muted-dim); font-family: var(--display); font-weight: 500;
}
.hero-meta .sep { color: var(--line); }

/* ---- hero app mockup (signature) ---- */
.hero-app { position: relative; }
.app-frame {
  position: relative; z-index: 2;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: linear-gradient(180deg, #0e1019, #0a0b12);
  box-shadow: 0 40px 90px -30px #000, inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: perspective(1400px) rotateY(-9deg) rotateX(3deg);
  transition: transform .5s ease;
}
.hero-app:hover .app-frame { transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg); }
.app-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 15px; border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.015);
}
.app-brand { font-family: var(--display); font-weight: 700; letter-spacing: 2px; font-size: 12px; }
.app-brand b { color: var(--brand); }
.app-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; }
.app-pill .pin { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px var(--brand); animation: pulse 1.6s infinite; }
.app-body { padding: 14px; display: flex; flex-direction: column; gap: 11px; }

.bans { display: flex; align-items: stretch; gap: 14px; background: var(--card); border: 1px solid var(--line-soft); border-radius: 11px; padding: 10px 13px; }
.bans-side { flex: 1; display: flex; flex-direction: column; }
.bans-side.right { align-items: flex-end; }
.bans-k { font-size: 8.5px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 7px; }
.bans-k.blue { color: var(--blue); } .bans-k.red { color: var(--red); }
.ban-row { display: flex; gap: 5px; }
.ban { width: 24px; height: 24px; border-radius: 6px; border: 1px dashed var(--line); }
.ban.f { border: 1px solid var(--line); background: linear-gradient(135deg, #1a1420, #241826); position: relative; }
.ban.f::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 45%, rgba(224, 85, 90, .7) 47%, rgba(224, 85, 90, .7) 53%, transparent 55%); border-radius: 6px; }
.vs { align-self: center; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 9px; color: var(--muted); border: 1px solid var(--line); }

.teams { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.team { background: rgba(0, 0, 0, .2); border: 1px solid var(--line-soft); border-radius: 11px; padding: 10px; }
.team.blue { border-color: rgba(77, 139, 255, .22); }
.team.red { border-color: rgba(224, 85, 90, .2); }
.team-k { font-family: var(--display); font-size: 8.5px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 8px; }
.team.blue .team-k { color: var(--blue); } .team.red .team-k { color: var(--red); }
.prow { display: flex; align-items: center; gap: 8px; padding: 5px 7px; border-radius: 8px; background: rgba(255, 255, 255, .02); border: 1px solid var(--line-soft); margin-bottom: 5px; font-size: 11px; }
.prow:last-child { margin-bottom: 0; }
.prow.you { border-color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand-soft); }
.prow.ghost { border-style: dashed; background: transparent; color: var(--muted-dim); }
.pic { width: 22px; height: 22px; border-radius: 6px; flex: 0 0 auto; background: linear-gradient(135deg, #2a2136, #1b1622); border: 1px solid var(--line); }
.pic.e { background: transparent; border-style: dashed; }
.prow span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500; }
.prow em { font-style: normal; font-family: var(--display); font-weight: 700; font-size: 8.5px; text-transform: uppercase; letter-spacing: .4px; flex: 0 0 auto; }
.lock { color: var(--brand); }
.rank { color: var(--muted); }
.badge.lover { color: #ff8fd0; border: 1px solid rgba(255, 143, 208, .5); border-radius: 4px; padding: 1px 5px; }

.odds { background: var(--card); border: 1px solid var(--line-soft); border-radius: 11px; padding: 10px 13px; }
.odds-top { display: flex; justify-content: space-between; font-size: 10px; color: var(--muted); margin-bottom: 7px; }
.odds-top b { font-family: var(--display); font-size: 12px; }
.odds-top span:first-child b { color: var(--blue); }
.odds-top span:last-child b { color: var(--red); }
.odds-bar { height: 7px; border-radius: 4px; overflow: hidden; background: var(--red); }
.odds-bar i { display: block; height: 100%; background: var(--blue); }

.app-glow { position: absolute; inset: -20% -10% -30% -10%; z-index: 1; filter: blur(60px); opacity: .5;
  background: radial-gradient(closest-side, rgba(124, 58, 237, .5), transparent 70%); }

/* ---- trust strip ---- */
.strip {
  max-width: var(--maxw); margin: 26px auto 0; padding: 0 26px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.strip-item {
  border: 1px solid var(--line-soft); border-radius: 13px; padding: 16px 18px;
  background: var(--card); display: flex; flex-direction: column; gap: 2px;
}
.strip-item b { font-family: var(--display); font-size: 16px; }
.strip-item span { font-size: 12.5px; color: var(--muted-dim); }

/* ---- sections ---- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 96px 26px; }
.section-head { max-width: 620px; margin-bottom: 44px; }
.kicker { display: inline-block; font-family: var(--display); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: 2px; color: var(--brand); margin-bottom: 14px; }
.section-head h2 { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1; letter-spacing: -0.4px; }
.section-sub { color: var(--muted); font-size: 16px; margin-top: 14px; }

/* ---- features ---- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature {
  border: 1px solid var(--line); border-radius: 16px; padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .022), rgba(255, 255, 255, .005));
  transition: border-color .2s, transform .2s;
}
.feature:hover { border-color: rgba(168, 85, 247, .4); transform: translateY(-3px); }
.feature-ic {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand); margin-bottom: 18px;
}
.feature-ic svg { width: 23px; height: 23px; }
.feature h3 { font-family: var(--display); font-weight: 700; font-size: 19px; margin-bottom: 9px; }
.feature p { color: var(--muted); font-size: 14.5px; }
.feature .free { color: var(--green); font-weight: 700; }

/* ---- roadmap ---- */
.road { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.road-item {
  border: 1px solid var(--line); border-radius: 16px; padding: 24px;
  background: var(--card); position: relative; transition: border-color .2s, transform .2s;
}
.road-item:hover { border-color: var(--line); transform: translateY(-3px); }
.road-tag {
  display: inline-block; font-family: var(--display); font-weight: 700; font-size: 10px;
  text-transform: uppercase; letter-spacing: .8px; padding: 3px 9px; border-radius: 6px; margin-bottom: 14px;
  color: var(--muted-dim); border: 1px solid var(--line);
}
.road-tag.now { color: var(--green); border-color: rgba(34, 197, 94, .4); background: rgba(34, 197, 94, .1); }
.road-tag.next { color: var(--brand); border-color: rgba(168, 85, 247, .4); background: var(--brand-soft); }
.road-tag.planned { color: var(--blue); border-color: rgba(77, 139, 255, .35); background: rgba(77, 139, 255, .1); }
.road-item h3 { font-family: var(--display); font-weight: 700; font-size: 17.5px; margin-bottom: 8px; }
.road-item p { color: var(--muted); font-size: 14px; }
.road-vote { border-style: dashed; }

/* ---- cta ---- */
.cta {
  position: relative; overflow: hidden; text-align: center;
  border: 1px solid rgba(168, 85, 247, .3); border-radius: 24px;
  padding: 64px 30px; background: linear-gradient(180deg, rgba(124, 58, 237, .1), rgba(124, 58, 237, .02));
}
.cta-glow { position: absolute; inset: auto 0 -60% 0; height: 100%; filter: blur(70px); opacity: .5;
  background: radial-gradient(closest-side, rgba(124, 58, 237, .6), transparent 70%); }
.cta > * { position: relative; z-index: 1; }
.cta h2 { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.4px; }
.cta p { color: var(--muted); font-size: 16px; margin: 14px auto 30px; max-width: 560px; }
.cta-actions { display: inline-flex; align-items: center; gap: 14px; }
.cta-soon { font-family: var(--display); font-weight: 600; font-size: 13px; color: var(--brand); border: 1px solid rgba(168, 85, 247, .4); border-radius: 999px; padding: 6px 14px; background: var(--brand-soft); }
.cta-meta { margin-top: 20px; font-size: 12.5px; color: var(--muted-dim); font-family: var(--display); }

/* ---- footer ---- */
.foot { max-width: var(--maxw); margin: 0 auto; padding: 48px 26px 60px; border-top: 1px solid var(--line-soft); text-align: center; }
.foot-brand { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.foot-note { color: var(--muted); font-size: 14px; max-width: 440px; margin: 0 auto 18px; }
.foot-links { display: flex; gap: 22px; justify-content: center; font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.foot-links a:hover { color: var(--text); }
.foot-soon { color: var(--muted-dim); }
.foot-legal { font-size: 12px; color: var(--muted-dim); }

/* ---- multi-page additions ---- */
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { content: ""; display: block; height: 2px; border-radius: 2px; background: var(--brand); margin-top: 4px; }
.section-tight { padding-top: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.btn-block { width: 100%; justify-content: center; }
.btn-block:disabled { cursor: not-allowed; opacity: .7; }

/* roadmap teaser on home */
.road-teaser {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: 20px; padding: 36px 40px;
  background: linear-gradient(120deg, rgba(124, 58, 237, .1), rgba(255, 255, 255, .01));
}
.road-teaser h2 { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.3px; }
.road-teaser .btn { flex: 0 0 auto; }
.road-wide { grid-column: span 2; }

/* pricing */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; margin: 0 auto; }
.plan {
  position: relative; border: 1px solid var(--line); border-radius: 20px; padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .022), rgba(255, 255, 255, .004));
  display: flex; flex-direction: column;
}
.plan.featured { border-color: rgba(168, 85, 247, .5); box-shadow: 0 30px 70px -30px rgba(124, 58, 237, .6); }
.plan-ribbon {
  position: absolute; top: -12px; left: 30px; font-family: var(--display); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 1px; color: #0a0511; padding: 4px 12px; border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
}
.plan-head h3 { font-family: var(--display); font-weight: 700; font-size: 20px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 12px 0 6px; }
.plan-price .amt { font-family: var(--display); font-weight: 700; font-size: 34px; }
.plan-price .per { color: var(--muted-dim); font-size: 14px; }
.plan.featured .plan-price .amt { font-size: 24px; color: var(--brand); }
.plan-tag { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan-feats li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--text); }
.plan-feats li b { font-weight: 700; }
.plan-feats li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
.plan-feats li.yes::before {
  background-color: rgba(34, 197, 94, .16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.plan-feats li.no { color: var(--muted-dim); }
.plan-feats li.no::before {
  background-color: rgba(255, 255, 255, .05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7185' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}
.plan-note { font-size: 12px; color: var(--muted-dim); text-align: center; margin-top: 12px; }
.plans-foot { text-align: center; color: var(--muted-dim); font-size: 13px; margin-top: 30px; }

/* about + faq */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.about-card { border: 1px solid var(--line); border-radius: 16px; padding: 24px; background: var(--card); }
.about-card h3 { font-family: var(--display); font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.about-card p { color: var(--muted); font-size: 14.5px; }
.faq { max-width: 760px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: var(--card); padding: 4px 20px; transition: border-color .2s; }
.faq-item[open] { border-color: rgba(168, 85, 247, .4); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-family: var(--display); font-weight: 600; font-size: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--brand); font-size: 22px; font-weight: 400; transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); font-size: 14.5px; padding: 0 0 18px; margin: 0; }
.faq-item p a { color: var(--brand); }
.about-cta { text-align: center; margin-top: 56px; }
.about-cta p { font-family: var(--display); font-weight: 600; font-size: 20px; margin-bottom: 18px; }

/* ---- reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 44px; }
  .hero-app { order: 2; max-width: 460px; }
  .app-frame { transform: none; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .road { grid-template-columns: 1fr; }
  .road-wide { grid-column: auto; }
  .plans { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .road-teaser { padding: 28px; }
  .nav-links { display: none; }
}
@media (max-width: 520px) {
  .strip { grid-template-columns: 1fr 1fr; }
  .nav-cta { display: none; }
  .section { padding: 68px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .app-frame { transform: none; }
}
