/* Accelerator page — extends assets/css/style.css */

/* ─── Hero ─────────────────────────────────────────────────────── */
.acc-hero {
  padding: 140px 0 40px;
  position: relative;
  overflow: hidden;
}
.acc-hero .container { position: relative; z-index: 2; }
.acc-hero h1 {
  max-width: 920px;
  letter-spacing: -0.01em;
}
.acc-hero h1 .accent { color: var(--cyan); }
.acc-hero .lead {
  max-width: 720px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
}
.acc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.acc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-light);
  border: 1px solid var(--navy-accent);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Montserrat';
}
.acc-chip .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--cyan); }
.acc-chip .dot-gold { background: var(--gold); }

/* glow background */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(3, 215, 247, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(245, 166, 35, 0.06), transparent 60%);
}

/* ─── Section header ─────────────────────────────────────────── */
.eyebrow {
  font-family: 'Montserrat';
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--cyan);
  display: inline-block;
}

/* ─── Road section ───────────────────────────────────────────── */
.road-section {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
}
.road-header { max-width: 760px; margin-bottom: 60px; }
.road-header h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.road-wrap {
  position: relative;
  width: 100%;
}

.road-svg {
  width: 100%;
  display: block;
}

.road-stop .stop-plate,
.road-stop .stop-label,
.road-stop .stop-dot {
  transition: all 0.3s ease;
}
.road-stop.active .stop-plate {
  fill: #03d7f7;
  filter: url(#glow);
}
.road-stop.active .stop-label {
  fill: #0a1628;
}
.road-stop:not(.active) .stop-plate {
  fill: #131f35;
  filter: none;
}
.road-stop:not(.active) .stop-label {
  fill: #ffffff;
}
.road-stop.active .stop-dot { r: 7; }
.road-stop:not(.active) .stop-dot { r: 5; }

.road-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stage-card {
  background: var(--navy-light);
  border: 1px solid var(--navy-accent);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.stage-card.active {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 24px 60px -30px rgba(3, 215, 247, 0.4);
  transform: translateY(-2px);
}
.stage-card:hover { border-color: var(--cyan); }

.stage-num {
  font-family: 'Montserrat';
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.stage-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
}
.stage-card .desc {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 18px;
  line-height: 1.6;
}
.stage-deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.stage-deliverables li {
  font-size: 13px;
  opacity: 0.92;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.stage-deliverables li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--cyan);
}
.stage-meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--navy-accent);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
}
.stage-meta-item {
  font-family: 'Montserrat';
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--navy-accent);
  border-radius: 8px;
  padding: 4px 10px;
  opacity: 0.85;
}

/* ─── Track A (hero track) ───────────────────────────────────── */
.track-a-section {
  padding: 90px 0;
  position: relative;
}

.track-a-card {
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy-accent) 100%);
  border: 1px solid var(--cyan);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(3, 215, 247, 0.4);
}
.track-a-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.track-a-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.track-tag {
  display: inline-block;
  font-family: 'Montserrat';
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cyan);
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 22px;
}
.track-name {
  font-family: 'Droid Serif';
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.track-tagline {
  font-size: 17px;
  opacity: 0.9;
  line-height: 1.55;
  margin-bottom: 28px;
}
.track-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.track-includes li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.95;
}
.track-includes li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
}

.price-block {
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid var(--navy-accent);
  border-radius: 14px;
  padding: 28px;
}
.price-amount {
  font-family: 'Montserrat';
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}
.price-amount .unit {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.7;
  margin-left: 4px;
}
.price-sub {
  font-size: 13px;
  opacity: 0.78;
  margin-top: 8px;
}
.price-divider {
  height: 1px;
  background: var(--navy-accent);
  margin: 20px 0;
}
.price-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  opacity: 0.92;
}
.price-line strong { font-family: 'Montserrat'; font-weight: 700; }

.addon-block {
  margin-top: 18px;
  padding: 16px;
  border: 1px dashed var(--gold);
  border-radius: 12px;
  font-size: 13px;
  opacity: 0.92;
  line-height: 1.5;
}
.addon-block .addon-label {
  font-family: 'Montserrat';
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

/* ─── Track B (expand) ───────────────────────────────────────── */
.track-b-section {
  padding: 90px 0;
  background: var(--navy-light);
  border-top: 1px solid var(--navy-accent);
  border-bottom: 1px solid var(--navy-accent);
}
.track-b-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.track-b-tag {
  font-family: 'Montserrat';
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.track-b-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.track-b-card {
  background: var(--navy);
  border: 1px solid var(--navy-accent);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 16px;
}
.track-b-card h4 {
  font-family: 'Droid Serif';
  font-size: 19px;
  margin-bottom: 10px;
}
.track-b-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.88;
  margin-bottom: 12px;
}
.track-b-card .partner {
  font-family: 'Montserrat';
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

/* ─── Why / values ────────────────────────────────────────────── */
.why-section {
  padding: 90px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-item {
  background: var(--navy-light);
  border: 1px solid var(--navy-accent);
  border-radius: 14px;
  padding: 28px;
}
.why-item h4 {
  font-family: 'Droid Serif';
  font-size: 19px;
  margin-bottom: 10px;
}
.why-item p {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.88;
}
.why-item .num {
  font-family: 'Montserrat';
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 14px;
  display: block;
}

/* ─── How to choose (Track A vs B) ────────────────────────────── */
.choose-section {
  padding: 90px 0;
  background: var(--navy-light);
  border-top: 1px solid var(--navy-accent);
  border-bottom: 1px solid var(--navy-accent);
}
.choose-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}
.choose-card {
  background: var(--navy);
  border: 1px solid var(--navy-accent);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.choose-card.choose-a { border-color: var(--cyan); }
.choose-card.choose-b { border-color: var(--gold); }
.choose-mark {
  font-family: 'Droid Serif';
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
  opacity: 0.95;
  margin-bottom: 16px;
}
.choose-mark-b { color: var(--gold); }
.choose-card h3 {
  font-size: 24px;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.choose-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.choose-list li {
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.92;
  padding-left: 22px;
  position: relative;
}
.choose-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 700;
}
.choose-card.choose-b .choose-list li::before { color: var(--gold); }

.choose-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--navy-accent);
}
.choose-pill {
  font-family: 'Montserrat';
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--navy-light);
  color: var(--cyan);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--navy-accent);
}
.choose-pill-gold { color: var(--gold); }
.choose-pill-muted {
  color: rgba(255, 255, 255, 0.7);
}
.choose-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Montserrat';
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0.85;
  padding: 0 4px;
}

/* ─── Terms strip ─────────────────────────────────────────────── */
.terms-section {
  padding: 90px 0;
}
.terms-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.terms-list li {
  background: var(--navy-light);
  border: 1px solid var(--navy-accent);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14.5px;
  line-height: 1.5;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.terms-bullet {
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: 90px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 40px;
  max-width: 880px;
}
details.faq-item {
  background: var(--navy-light);
  border: 1px solid var(--navy-accent);
  border-radius: 12px;
  padding: 18px 22px;
  transition: border-color 0.2s;
}
details.faq-item[open] { border-color: var(--cyan); }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Droid Serif';
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 22px;
  color: var(--cyan);
  transition: transform 0.2s;
  line-height: 1;
}
details.faq-item[open] summary::after {
  content: "−";
}
details.faq-item p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.88;
}

/* ─── Final CTA ──────────────────────────────────────────────── */
.acc-cta {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--navy-accent);
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(3, 215, 247, 0.12), transparent 60%),
    var(--navy);
}
.acc-cta h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 760px;
  margin: 0 auto 18px;
}
.acc-cta p {
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
}
.acc-cta .btn-row { justify-content: center; }

/* ─── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .acc-hero { padding: 110px 0 30px; }
  .road-stages,
  .track-a-grid,
  .track-b-grid,
  .why-grid,
  .choose-grid,
  .terms-grid { grid-template-columns: 1fr; }
  .choose-arrow { transform: rotate(90deg); margin: 8px 0; }
  .track-a-card { padding: 28px; }
}

