/* ============================================================
   Landing page specific styles
   ============================================================ */

/* ── Hero ── */
.hero { position: relative; padding-top: clamp(2.5rem, 6vw, 4.5rem); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  min-height: 62vh;
}
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  margin: 1.2rem 0 1.4rem;
}
.hero-sub { font-size: 1.14rem; color: var(--fog-2); max-width: 40ch; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-trust strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}
.hero-trust span { font-size: 0.8rem; color: var(--fog); }

/* ── Orbit hero visual ── */
.hero-visual { display: grid; place-items: center; }
.orbit-stage {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.orbit-core {
  width: 46%;
  filter: drop-shadow(0 0 30px var(--red-glow));
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(-6px); } 50% { transform: translateY(6px); } }
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line-2);
}
.ring-1 { width: 60%; height: 60%; animation: spin 14s linear infinite; }
.ring-2 { width: 82%; height: 82%; border-color: rgba(224,30,38,0.25); animation: spin 22s linear infinite reverse; }
.ring-3 { width: 100%; height: 100%; border-style: dashed; border-color: var(--line); animation: spin 34s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.node {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 12px var(--red-glow);
}
.n1 { top: 8%; left: 50%; }
.n2 { top: 50%; right: 4%; background: var(--chrome-2); box-shadow: 0 0 10px rgba(255,255,255,0.5); }
.n3 { bottom: 10%; left: 22%; }
.n4 { top: 30%; left: 6%; background: var(--chrome-2); }
.n5 { bottom: 24%; right: 14%; }
.node { animation: nodepulse 3s ease-in-out infinite; }
.n2 { animation-delay: 0.6s; } .n3 { animation-delay: 1.2s; }
.n4 { animation-delay: 1.8s; } .n5 { animation-delay: 2.4s; }
@keyframes nodepulse { 0%,100% { opacity: 0.4; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.3); } }

/* ── Payment row ── */
.pay-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--fog);
  font-size: 0.85rem;
}
.pay-chips { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.pay-chips em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  color: var(--fog-2);
}

/* ── Product grid ── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.prod {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
}
.prod::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.prod:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 20px 40px -22px var(--red-glow); }
.prod:hover::before { opacity: 1; }
.prod-badge {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  padding: 0.25rem 0.6rem;
  border-radius: 5px;
  background: rgba(224,30,38,0.14);
  color: var(--red-bright);
  border: 1px solid rgba(224,30,38,0.3);
}
.prod-badge.flag { background: linear-gradient(180deg,var(--red-bright),var(--red-deep)); color:#fff; border:none; }
.prod h3 { font-size: 1.15rem; }
.prod-tag { font-size: 0.88rem; color: var(--fog); min-height: 3.2em; }
.prod-price { font-family: var(--font-display); }
.prod-price b { font-size: 1.7rem; color: var(--white); }
.prod-price span { font-size: 0.82rem; color: var(--fog); }
.prod-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.2rem; }
.prod-list li { font-size: 0.82rem; color: var(--fog-2); padding-left: 1.2rem; position: relative; }
.prod-list li::before { content: '▸'; position: absolute; left: 0; color: var(--red); }
.prod .btn { margin-top: auto; justify-content: center; }

/* ── ISP spotlight ── */
.isp-spot { position: relative; }
.isp-spot::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(224,30,38,0.04), transparent);
}
.isp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.isp-copy h2 { font-size: clamp(2rem,4.5vw,3rem); margin: 0.8rem 0 1.2rem; }
.isp-copy > p { color: var(--fog-2); font-size: 1.05rem; margin-bottom: 1.6rem; }
.isp-points { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.isp-points li { padding-left: 1.6rem; position: relative; color: var(--fog-2); font-size: 0.95rem; }
.isp-points li::before {
  content: '⚡'; position: absolute; left: 0; color: var(--red-bright);
}
.isp-meter { padding: 1.8rem; }
.meter-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; font-size: 0.82rem; color: var(--fog); font-family: var(--font-display); }
.meter-live { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--red-bright); }
.meter-rows { display: flex; flex-direction: column; gap: 1rem; }
.meter-row { display: grid; grid-template-columns: 120px 1fr 48px; gap: 0.8rem; align-items: center; }
.meter-city { font-size: 0.85rem; color: var(--fog-2); }
.meter-bar { height: 8px; background: var(--ink); border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
.meter-fill { height: 100%; background: linear-gradient(90deg, var(--red-bright), var(--red-deep)); border-radius: 6px; width: 0; transition: width 1.1s cubic-bezier(.2,.8,.2,1); box-shadow: 0 0 10px var(--red-glow); }
.meter-ms { font-family: var(--font-display); font-size: 0.85rem; color: var(--white); text-align: right; }
.meter-foot { display: flex; gap: 2rem; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.meter-foot strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--white); }
.meter-foot span { font-size: 0.76rem; color: var(--fog); }

/* ── Stats wall ── */
.stat-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { padding: 1.4rem; text-align: left; }
.stat .stat-label { font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.14em; color: var(--red); }
.stat .stat-val { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin: 0.4rem 0 0.2rem; }
.stat .stat-desc { font-size: 0.78rem; color: var(--fog); }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.step { position: relative; }
.step-n { font-family: var(--font-display); font-size: 2.4rem; color: var(--line-2); display: block; margin-bottom: 0.6rem; }
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--fog); }

/* ── Pricing ── */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.price-card { display: flex; flex-direction: column; gap: 1rem; }
.price-card h3 { font-size: 1.1rem; }
.price-tiers { display: flex; flex-direction: column; gap: 0.5rem; }
.price-tier { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.5rem 0; border-bottom: 1px dashed var(--line); }
.price-tier span { color: var(--fog-2); }
.price-tier b { color: var(--white); font-family: var(--font-display); }
.price-card .btn { justify-content: center; margin-top: auto; }

/* ── Community ── */
.comm-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: 2.4rem; background: linear-gradient(120deg, var(--panel), rgba(88,101,242,0.06)); }
.comm-inner h2 { font-size: 1.8rem; margin: 0.6rem 0; }
.comm-inner p { color: var(--fog); max-width: 46ch; }

/* ── FAQ ── */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  background: var(--panel);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  list-style: none;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 1.3rem; color: var(--red); font-size: 1.3rem; transition: transform 0.2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 1.3rem 1.2rem; color: var(--fog-2); font-size: 0.92rem; }
.faq-list code { background: var(--ink); padding: 0.1rem 0.4rem; border-radius: 4px; color: var(--red-bright); font-size: 0.85em; }

/* ── Final CTA ── */
.final-cta { text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.cta-inner .speedlines { flex-direction: column; align-items: center; }
.cta-inner .speedlines span { align-self: center; }
.cta-inner h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.cta-inner p { color: var(--fog); }

/* ── Footer ── */
.footer { border-top: 1px solid var(--line); padding-top: 3rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.foot-tag { color: var(--fog); font-size: 0.9rem; margin-top: 1rem; max-width: 34ch; }
.footer h4 { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fog); margin-bottom: 0.9rem; }
.footer-grid a { display: block; color: var(--fog-2); font-size: 0.9rem; margin-bottom: 0.55rem; transition: color 0.15s; }
.footer-grid a:hover { color: var(--red-bright); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 0; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--fog); }
.foot-op { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .product-grid, .price-grid, .stat-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .orbit-stage { width: min(300px, 70%); }
  .isp-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .product-grid, .price-grid, .stat-wall { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
