/*
 * lane-page.css — shared styles for the 4 lane landing pages
 * (geo.html / audit-retainer.html / sentinel-aas.html / cluster-ops.html)
 *
 * Source-of-truth pattern lives in geo.html's <style> block; extracted here
 * so the other lane pages can <link> instead of duplicating. If you change
 * a lane-page selector below, update geo.html's inline style too (or remove
 * the inline block from geo.html and rely on this file alone).
 */

.lane-hero {
  padding: 8rem 0 4rem;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}
.lane-hero .container { max-width: 1100px; }
.lane-hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.lane-hero p.lane-sub {
  font-size: 1.15rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.85));
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.lane-hero .hero-btns { justify-content: center; }
.lane-hero .hero-btns .btn-secondary {
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-left: 0.75rem;
}
.lane-hero .hero-btns .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--garnet-text);
}

.lane-section {
  padding: 6rem 0;
  position: relative;
}
.lane-section .container {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 0 2rem;
}
.lane-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.lane-section-header .lane-eyebrow {
  display: block;
  margin-bottom: 1rem;
}
.lane-section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #f0f0f0;
}
.lane-section-header p {
  color: rgba(240, 240, 240, 0.65);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Capability cards */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.capability-card {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.capability-card:hover {
  border-color: var(--garnet-rim);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow, hsla(348, 83%, 47%, 0.15));
}
.capability-card .cap-num {
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  color: var(--garnet-text);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.75rem;
  display: block;
}
.capability-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: #f0f0f0;
}
.capability-card p {
  color: rgba(240, 240, 240, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Process / how-it-works steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.process-step { padding: 1.5rem; }
.process-step .step-num {
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--garnet-text);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #f0f0f0;
}
.process-step p {
  color: rgba(240, 240, 240, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing tiers */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.tier-card {
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}
.tier-card.tier-featured {
  border-color: var(--garnet-text);
  box-shadow: 0 0 0 1px var(--garnet-main), 0 20px 60px var(--accent-glow);
}
.tier-card.tier-featured::before {
  content: 'MOST CHOSEN';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--garnet-main);
  color: white;
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-weight: 600;
}
.tier-card .tier-name {
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--garnet-text);
  margin-bottom: 0.75rem;
}
.tier-card .tier-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.tier-card .tier-price small {
  font-size: 0.95rem;
  color: rgba(240, 240, 240, 0.55);
  font-weight: 400;
}
.tier-card .tier-tagline {
  color: rgba(240, 240, 240, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  min-height: 2.5rem;
}
.tier-card ul.tier-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.tier-card ul.tier-bullets li {
  color: rgba(240, 240, 240, 0.85);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}
.tier-card ul.tier-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--garnet-text);
  font-weight: 700;
}
.tier-card .tier-cta {
  display: block;
  width: 100%;
  padding: 0.85rem;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tier-card .tier-cta.primary {
  background: var(--garnet-main);
  color: white;
}
.tier-card .tier-cta.primary:hover {
  background: var(--accent-lift);
  transform: translateY(-1px);
}
.tier-card .tier-cta.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f0f0f0;
}
.tier-card .tier-cta.secondary:hover { border-color: var(--garnet-text); }

/* Trust strip */
.trust-strip {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.trust-stat .stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--garnet-text);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.trust-stat .stat-label {
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.55);
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}
.faq-item summary {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f0f0f0;
  cursor: pointer;
  list-style: none;
  padding: 0.5rem 0;
  position: relative;
  padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0.5rem;
  font-size: 1.5rem;
  color: var(--garnet-text);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: rgba(240, 240, 240, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 0.5rem 0;
  max-width: 680px;
}

/* CTA closer */
.cta-closer { padding: 6rem 0; text-align: center; }
.cta-closer h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f0f0f0;
}
.cta-closer p {
  color: rgba(240, 240, 240, 0.7);
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .lane-hero { padding: 6rem 0 3rem; }
  .lane-section { padding: 4rem 0; }
  /* .lane-hero is `display:flex; align-items:center` and on desktop
     the only flex child is .container (the .glb-cameo is positioned
     absolute). On mobile the cameo flips to position:relative
     (glb-cameo.css line 44+) and joins the flex row, splitting space
     with .container — which under flex-shrink defaults squeezes the
     text column to ~150px. Stack them vertically + give .container
     full width with explicit padding. */
  .lane-hero { flex-direction: column; }
  .lane-hero .container,
  .lane-section .container { width: 100%; padding: 0 1.5rem; box-sizing: border-box; }
  /* clamp the giant display H1 so it scales with viewport instead of
     being forced to 4rem (64px). */
  .lane-hero .dazzle-heading { font-size: clamp(2.25rem, 10vw, 4rem); }
}
