/* Marketing landing page -- linked alongside theme.css. A real scrolling
   page (unlike the game/auth screens, which are fixed-viewport), so most
   rules here are just normal document-flow layout. */
body { overflow-y: auto; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px;
}

.nav-logo { font-size: 18px; font-weight: 800; }
.nav-actions { display: flex; gap: 10px; }

.hero {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 18px;
}

.hero h1 .grad {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 30px;
}

.hero-catch22 {
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto 16px;
  line-height: 1.5;
}

.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-ctas .btn { padding: 13px 26px; font-size: 15px; }

.hero-terminal {
  max-width: 640px;
  margin: 48px auto 0;
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.hero-terminal-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: var(--panel-bg-alt);
  border-bottom: 1px solid var(--border);
}
.hero-terminal-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.hero-terminal-body {
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}
.hero-terminal-body .p { color: var(--ok); }
.hero-terminal-body .c { color: var(--text); }
.hero-terminal-body .out { color: var(--bad); }

.features {
  max-width: 1080px;
  margin: 40px auto;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}
.feature-icon { font-size: 26px; margin-bottom: 12px; }
.feature-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.feature-body { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

.roles {
  max-width: 1080px;
  margin: 40px auto;
  padding: 24px;
}
.roles-title { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 28px; }
.role-track { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.role-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--panel-bg);
}
.role-step .icon { font-size: 20px; }
.role-step .name { font-weight: 700; font-size: 13px; }
.role-arrow { color: var(--text-muted); font-size: 18px; }

/* ---------------- "Bridging the gap" diagram ---------------- */

.gap-bridge { max-width: 1080px; margin: 56px auto; padding: 24px; }
.gap-bridge-sub {
  text-align: center; color: var(--text-muted); font-size: 14px; line-height: 1.6;
  max-width: 620px; margin: 0 auto 36px;
}
.gap-flow { display: flex; align-items: stretch; justify-content: center; gap: 14px; flex-wrap: wrap; }
.gap-card {
  flex: 1 1 240px; max-width: 280px; border-radius: 14px; padding: 24px 20px; text-align: center;
  background: var(--panel-bg); border: 1px solid var(--border);
}
.gap-card-icon { font-size: 30px; margin-bottom: 10px; }
.gap-card-kicker { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.gap-card-title { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.gap-card-body { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }
.gap-card.problem { border-color: rgba(248, 81, 73, 0.35); }
.gap-card.problem .gap-card-kicker { color: var(--bad); }
.gap-card.bridge { border: 1px solid transparent; background: linear-gradient(var(--panel-bg), var(--panel-bg)) padding-box, linear-gradient(135deg, var(--accent), var(--accent-2)) border-box; box-shadow: 0 12px 40px rgba(88, 166, 255, 0.18); }
.gap-card.bridge .gap-card-kicker { color: var(--accent); }
.gap-card.outcome { border-color: rgba(63, 185, 80, 0.35); }
.gap-card.outcome .gap-card-kicker { color: var(--ok); }
.gap-arrow { display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 22px; flex: 0 0 auto; }

@media (max-width: 760px) {
  .gap-flow { flex-direction: column; align-items: center; }
  .gap-arrow { transform: rotate(90deg); margin: -4px 0; }
  .gap-card { max-width: 320px; }
}

.certs { max-width: 1080px; margin: 60px auto; padding: 24px; }
.certs-sub {
  text-align: center; color: var(--text-muted); font-size: 14px; line-height: 1.6;
  max-width: 560px; margin: 0 auto 32px;
}
.cert-mini-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.cert-mini {
  background: #fdfbf5;
  border-radius: 8px;
  padding: 26px 22px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.cert-mini::before {
  content: ''; position: absolute; inset: 8px;
  border: 1.5px solid #a9812f; border-radius: 4px; pointer-events: none;
}
.cert-mini::after {
  content: ''; position: absolute; inset: 13px;
  border: 1px solid rgba(169, 129, 47, 0.35); border-radius: 3px; pointer-events: none;
}
.cert-mini-seal { margin-bottom: 4px; }
.cert-mini-issuer {
  color: #7d5f22; font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 2px;
}
.cert-mini-kicker {
  color: #7b8194; font-size: 9px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 10px;
}
.cert-mini-title {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 16px;
  color: #1c2436; margin-bottom: 12px; line-height: 1.25;
}
.cert-mini-line { color: #7b8194; font-size: 11px; font-style: italic; margin-bottom: 2px; }
.cert-mini-name {
  font-family: 'Dancing Script', cursive; font-weight: 600; font-size: 26px;
  color: #1c2436; margin-bottom: 8px;
}
.cert-mini-body { color: #3d4459; font-size: 11px; line-height: 1.5; }

.cert-mini.proctored::before { border-color: #3f6fb8; }
.cert-mini.proctored::after { border-color: rgba(63, 111, 184, 0.35); }
.cert-mini.proctored .cert-mini-issuer { color: #2f5590; }
.cert-mini-ribbon {
  position: absolute; top: 14px; right: -30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 34px;
  transform: rotate(38deg); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.proctored-cta { text-align: center; margin-top: 30px; }

/* ---------------- Pricing (embedded on the landing page) ---------------- */

.lp-pricing { max-width: 820px; margin: 56px auto; padding: 24px; }
.lp-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; align-items: stretch; }
.lp-pricing-card {
  background: var(--panel-bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 36px 30px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); display: flex; flex-direction: column;
}
.lp-pricing-card.pro { border-color: var(--accent); box-shadow: 0 20px 60px rgba(88,166,255,0.2); }
.lp-pricing-kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.lp-pricing-kicker.free { color: var(--text-muted); }
.lp-pricing-kicker.pro { color: var(--accent); }
.lp-pricing-amount { font-size: 48px; font-weight: 800; margin: 12px 0 4px; }
.lp-pricing-amount span { font-size: 15px; color: var(--text-muted); font-weight: 500; }
.lp-pricing-features { list-style: none; padding: 0; margin: 22px 0; text-align: left; font-size: 13.5px; color: var(--text-muted); flex: 1; }
.lp-pricing-features li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.lp-pricing-features li.limit { color: var(--tier-medium); }

.cta-band {
  max-width: 680px;
  margin: 60px auto 80px;
  padding: 40px 24px;
  text-align: center;
  background: linear-gradient(160deg, var(--panel-bg), var(--panel-bg-alt));
  border: 1px solid var(--border);
  border-radius: 16px;
}
.cta-band h2 { font-size: 30px; font-weight: 800; margin: 0 0 10px; }
.cta-band p { color: var(--text-muted); margin: 0 0 20px; }

.footer {
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .hero h1 { font-size: 34px; }
  .hero { padding: 48px 20px 36px; }
  .roles-title { font-size: 26px; }
  .role-track { flex-direction: column; }
  .role-arrow { transform: rotate(90deg); }
  .nav { padding: 16px 20px; justify-content: center; text-align: center; }
  .hero-terminal-body { font-size: 12px; padding: 14px 16px; }
  .lp-pricing-amount { font-size: 38px; }
  .cta-band h2 { font-size: 24px; }
}
