/* Landing page styles */

.lp {
  min-height: 100%;
  background: #0a0e1a;
  color: #e6ecff;
  font-family: var(--cq-display);
  position: relative;
  overflow: hidden;
}

.lp__pcb { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.lp > *:not(.lp__pcb) { position: relative; z-index: 1; }

/* Nav */
.lp__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid #1d2340;
  background: rgba(10,14,26,0.7);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.lp__brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
}
.lp__brand i { color: #5da3ff; font-style: normal; }
.lp__nav-links { display: flex; align-items: center; gap: 28px; }
.lp__nav-links a {
  color: #98a2c8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.lp__nav-links a:hover { color: #e6ecff; }
.lp__nav-cta {
  background: #161b2e;
  border: 1px solid #2a3258;
  padding: 8px 14px;
  border-radius: 10px;
  color: #5da3ff !important;
  font-family: var(--cq-mono);
  font-size: 12px !important;
  letter-spacing: 0.05em;
}
.lp__nav-cta:hover { border-color: #2480ff; color: #fff !important; }

/* Hero */
.lp__hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.lp__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cq-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #4fd6e8;
  background: rgba(79, 214, 232, 0.08);
  border: 1px solid rgba(79, 214, 232, 0.25);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.lp__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4fd6e8;
  box-shadow: 0 0 8px #4fd6e8;
  animation: cq-pulse 2s ease-in-out infinite;
}

.lp__title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.lp__title-grad {
  background: linear-gradient(135deg, #5da3ff, #4fd6e8 50%, #f4b840);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp__sub {
  font-size: 18px;
  line-height: 1.55;
  color: #98a2c8;
  max-width: 560px;
  margin: 0 0 32px;
  text-wrap: pretty;
}

.lp__cta-row { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }

.lp__btn {
  height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.15s;
  border: 1px solid transparent;
}
.lp__btn--primary {
  background: linear-gradient(180deg, #2480ff, #0a3a8c);
  color: white;
  border-color: #5da3ff;
  box-shadow: 0 0 24px rgba(36,128,255,0.4), inset 0 1px 0 rgba(255,255,255,0.18);
}
.lp__btn--primary:hover { box-shadow: 0 0 36px rgba(36,128,255,0.55); transform: translateY(-1px); }
.lp__btn--ghost {
  background: #161b2e;
  color: #e6ecff;
  border-color: #2a3258;
}
.lp__btn--ghost:hover { border-color: #3b4577; }
.lp__btn-meta {
  font-family: var(--cq-mono);
  font-size: 11px;
  background: rgba(255,255,255,0.18);
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.lp__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.lp__stat-num {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #5da3ff;
  font-variant-numeric: tabular-nums;
}
.lp__stat-num i { color: #f4b840; font-style: normal; }
.lp__stat-lbl {
  font-family: var(--cq-mono);
  font-size: 10px;
  color: #5d678f;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero visual phone */
.lp__hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp__phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(36,128,255,0.3), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.lp__phone {
  width: 320px;
  height: 600px;
  background: #161b2e;
  border: 2px solid #2a3258;
  border-radius: 36px;
  padding: 14px;
  position: relative;
  box-shadow: 0 0 80px rgba(36,128,255,0.25), 0 30px 60px rgba(0,0,0,0.6);
}
.lp__phone-notch {
  width: 80px; height: 6px;
  background: #2a3258;
  border-radius: 4px;
  margin: 0 auto 14px;
}
.lp__phone-screen {
  background: #0a0e1a;
  border: 1px solid #2a3258;
  border-radius: 24px;
  padding: 16px;
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp__phone-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.lp__phone-bar i { font-style: normal; }
.lp__phone-xp-label {
  font-family: var(--cq-mono);
  font-size: 10px;
  color: #f4b840;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.lp__phone-xp {
  height: 8px;
  background: #1f2647;
  border-radius: 4px;
  border: 1px solid #2a3258;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}
.lp__phone-xp-fill {
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, #2480ff, #4fd6e8, #f4b840);
  border-radius: 3px;
  box-shadow: 0 0 12px #4fd6e8;
  animation: lp-fill 2s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes lp-fill {
  from { width: 0; }
  to { width: 82%; }
}
.lp__phone-eyebrow {
  font-family: var(--cq-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #5d678f;
  margin: 4px 0 4px;
}

.lp__phone-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(180deg, #1d2340, #161b2e);
  border: 1px solid #2a3258;
  border-radius: 12px;
  position: relative;
}
.lp__phone-glyph {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #0a0e1a;
  border: 1px solid #2a3258;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cq-mono);
  font-size: 11px;
  font-weight: 700;
  color: #5da3ff;
  flex-shrink: 0;
}
.lp__phone-glyph--gold { color: #f4b840; border-color: rgba(244,184,64,0.4); }
.lp__phone-title { font-size: 13px; font-weight: 600; }
.lp__phone-sub { font-size: 11px; color: #98a2c8; font-family: var(--cq-mono); margin-top: 2px; }
.lp__phone-status {
  font-family: var(--cq-mono);
  font-size: 10px;
  color: #f4b840;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.lp__phone-card--current {
  border-color: #f4b840;
  box-shadow: 0 0 20px rgba(244,184,64,0.18);
}
.lp__phone-card--done .lp__phone-glyph { color: #34e090; border-color: rgba(52,224,144,0.3); }
.lp__phone-check {
  margin-left: auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #34e090;
  color: #0a0e1a;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  box-shadow: 0 0 12px #34e090;
}
.lp__phone-card--locked {
  opacity: 0.5;
  border-style: dashed;
  background: #0f1422;
}
.lp__phone-card--locked .lp__phone-glyph { opacity: 0.5; }

/* Readout */
.lp__readout {
  position: absolute;
  bottom: 20px;
  left: -60px;
  background: rgba(10,14,26,0.92);
  border: 1px solid #2a3258;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--cq-mono);
  font-size: 11px;
  min-width: 130px;
  box-shadow: 0 0 24px rgba(79,214,232,0.2);
}
.lp__readout-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 3px 0;
}
.lp__readout-row span:first-child { color: #5da3ff; font-weight: 700; }
.lp__readout-row span:last-child { color: #f4b840; font-variant-numeric: tabular-nums; }

/* Sections */
.lp__features, .lp__topics, .lp__cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}

.lp__section-eyebrow {
  font-family: var(--cq-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #5da3ff;
  margin-bottom: 14px;
}
.lp__section-title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 48px;
  max-width: 700px;
  text-wrap: balance;
}

.lp__feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp__feature {
  padding: 24px;
  background: linear-gradient(180deg, #1d2340, #161b2e);
  border: 1px solid #2a3258;
  border-radius: 16px;
  transition: all 0.2s;
}
.lp__feature:hover { border-color: #3b4577; transform: translateY(-2px); }
.lp__feature-glyph {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #0a0e1a;
  border: 1px solid #2a3258;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cq-mono);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.lp__feature-glyph--blue { color: #5da3ff; border-color: rgba(93,163,255,0.35); box-shadow: 0 0 16px rgba(36,128,255,0.18) inset; }
.lp__feature-glyph--cyan { color: #4fd6e8; border-color: rgba(79,214,232,0.35); box-shadow: 0 0 16px rgba(79,214,232,0.18) inset; }
.lp__feature-glyph--gold { color: #f4b840; border-color: rgba(244,184,64,0.35); box-shadow: 0 0 16px rgba(244,184,64,0.18) inset; }
.lp__feature h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.lp__feature p {
  font-size: 14px;
  line-height: 1.5;
  color: #98a2c8;
  margin: 0;
  text-wrap: pretty;
}

/* Topics */
.lp__topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp__track {
  padding: 20px;
  background: #161b2e;
  border: 1px solid #2a3258;
  border-radius: 14px;
}
.lp__track-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.lp__track-glyph {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #0a0e1a;
  border: 1px solid rgba(93,163,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cq-mono);
  font-size: 14px;
  font-weight: 700;
  color: #5da3ff;
}
.lp__track-name { font-size: 14px; font-weight: 600; }
.lp__track-meta { font-family: var(--cq-mono); font-size: 10px; color: #5d678f; letter-spacing: 0.04em; }
.lp__track-topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp__track-topics li {
  font-family: var(--cq-mono);
  font-size: 11.5px;
  color: #98a2c8;
  padding: 4px 8px;
  background: #0f1422;
  border-radius: 4px;
  border-left: 2px solid #2a3258;
}

/* CTA card */
.lp__cta-card {
  background: linear-gradient(135deg, #161b2e, #1d2340);
  border: 1px solid #3b4577;
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(36,128,255,0.18);
}
.lp__cta-card::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  width: 600px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(36,128,255,0.18), transparent 60%);
  pointer-events: none;
}
.lp__cta-corners i {
  position: absolute;
  width: 16px; height: 16px;
  border: 1.5px solid #5da3ff;
}
.lp__cta-corners i:nth-child(1) { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.lp__cta-corners i:nth-child(2) { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.lp__cta-corners i:nth-child(3) { bottom: 16px; left: 16px; border-right: none; border-top: none; }
.lp__cta-corners i:nth-child(4) { bottom: 16px; right: 16px; border-left: none; border-top: none; }

.lp__cta-eyebrow {
  font-family: var(--cq-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #4fd6e8;
  margin-bottom: 16px;
  position: relative;
}
.lp__cta-card h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  position: relative;
}
.lp__cta-card h2 i { color: #5da3ff; font-style: normal; }
.lp__cta-card p {
  font-size: 16px;
  color: #98a2c8;
  margin: 0 0 28px;
  position: relative;
}
.lp__cta-card .lp__cta-row {
  justify-content: center;
  margin-bottom: 0;
  position: relative;
}

/* Footer */
.lp__footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 48px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #1d2340;
  flex-wrap: wrap;
  gap: 16px;
}
.lp__footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.lp__footer-brand i { color: #5da3ff; font-style: normal; }
.lp__footer-text { font-family: var(--cq-mono); font-size: 11px; color: #5d678f; letter-spacing: 0.04em; }
.lp__footer-links { display: flex; gap: 20px; }
.lp__footer-links a {
  color: #98a2c8;
  text-decoration: none;
  font-size: 13px;
  font-family: var(--cq-mono);
}
.lp__footer-links a:hover { color: #5da3ff; }

@media (max-width: 980px) {
  .lp__hero { grid-template-columns: 1fr; }
  .lp__title { font-size: 44px; }
  .lp__feature-grid, .lp__topic-grid { grid-template-columns: repeat(2, 1fr); }
}
