/* SponsorPath — Bright Network energy: navy base, electric blue, optimistic yellow */

:root {
  --navy: #0a2540;
  --navy-soft: #16345c;
  --blue: #1d6ff2;
  --blue-dark: #1558c9;
  --yellow: #ffd34d;
  --green: #00b67a;
  --green-bg: #e6f8f1;
  --amber: #b45309;
  --amber-bg: #fef3c7;
  --ink: #1f2a3d;
  --muted: #5b6b82;
  --line: #e3e9f2;
  --bg: #f7f9fc;
  --card: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(10, 37, 64, 0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
h1, h2, h3 { color: var(--navy); line-height: 1.2; }
h2 { font-size: 2rem; font-weight: 800; text-align: center; }
.section-sub { text-align: center; color: var(--muted); margin: 10px 0 40px; }

/* ------------------------------------------------------------- buttons */
.btn {
  font-family: var(--font); font-weight: 600; font-size: 0.95rem;
  border: none; border-radius: 10px; padding: 12px 22px; cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(29, 111, 242, 0.35); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-light { background: var(--yellow); color: var(--navy); font-weight: 700; }
.btn-small { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* -------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.25rem; font-weight: 500; color: var(--navy); text-decoration: none;
}
.logo strong { font-weight: 800; }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 9px; background: var(--blue); color: #fff;
}
.site-nav { display: flex; gap: 24px; margin-left: auto; }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.site-nav a:hover { color: var(--blue); }
.header-trial-chip {
  background: var(--green-bg); color: var(--green); font-weight: 700;
  border-radius: 999px; padding: 8px 16px; font-size: 0.85rem;
}

/* ---------------------------------------------------------------- hero */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  padding: 72px 0 40px; text-align: center;
}
.eyebrow {
  display: inline-block; background: var(--navy); color: var(--yellow);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); font-weight: 800; max-width: 800px; margin: 0 auto; }
.hl { position: relative; white-space: nowrap; z-index: 0; }
.hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px;
  background: var(--yellow); z-index: -1; border-radius: 3px;
}
.hero-sub { max-width: 620px; margin: 18px auto 36px; color: var(--muted); font-size: 1.15rem; }

.search-card {
  max-width: 720px; margin: 0 auto; background: var(--card);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px;
  border: 1px solid var(--line); scroll-margin-top: 90px;
}
.search-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.tab {
  flex: 1; padding: 10px; border: none; border-radius: 9px; cursor: pointer;
  background: var(--bg); color: var(--muted); font-family: var(--font);
  font-weight: 600; font-size: 0.95rem;
}
.tab.active { background: var(--navy); color: #fff; }
#search-form { display: flex; gap: 10px; }
.search-fields { display: flex; gap: 10px; flex: 1; }
.search-fields input {
  flex: 1; min-width: 0; padding: 13px 16px; font-size: 1rem; font-family: var(--font);
  border: 2px solid var(--line); border-radius: 10px; outline: none;
}
.search-fields input:focus { border-color: var(--blue); }
.field-where { max-width: 200px; }
.btn-search { flex-shrink: 0; }
.search-hint { margin-top: 12px; font-size: 0.85rem; color: var(--muted); }
.trust-line { margin-top: 22px; font-size: 0.9rem; color: var(--muted); }
.trust-line strong { color: var(--navy); }

/* --------------------------------------------------------------- stats */
.stats-strip { background: var(--navy); color: #fff; padding: 30px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-num { display: block; font-size: 1.7rem; font-weight: 800; color: var(--yellow); }
.stat-label { font-size: 0.85rem; color: #b9c6da; }

/* ------------------------------------------------------------- results */
.results-section { padding: 44px 0; scroll-margin-top: 80px; }
.free-banner {
  background: #fff8e1; border: 1px solid #f0d98c; border-radius: 10px;
  padding: 14px 18px; margin-bottom: 24px; display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap; font-size: 0.95rem;
}
.free-banner .btn { margin-left: auto; }
.results-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.results-list { display: grid; gap: 14px; }

.result-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start;
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.04);
}
.result-main { flex: 1; min-width: 0; }
.result-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.result-sub { color: var(--muted); font-size: 0.9rem; }
.result-desc { font-size: 0.9rem; color: var(--ink); margin-top: 8px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chip {
  font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  background: var(--bg); color: var(--muted); border: 1px solid var(--line);
}
.chip-route { background: #eaf1fe; color: var(--blue-dark); border-color: #cfdffc; }
.badge {
  flex-shrink: 0; font-size: 0.78rem; font-weight: 700; padding: 6px 12px;
  border-radius: 999px; white-space: nowrap;
}
.badge-verified { background: var(--green-bg); color: var(--green); }
.badge-a { background: var(--green-bg); color: var(--green); }
.badge-b { background: var(--amber-bg); color: var(--amber); }
.badge-unknown { background: var(--bg); color: var(--muted); border: 1px solid var(--line); }
.result-salary { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.result-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.no-results {
  text-align: center; color: var(--muted); padding: 40px 0; background: var(--card);
  border: 1px dashed var(--line); border-radius: var(--radius);
}

/* --------------------------------------------------------------- how */
.how { padding: 72px 0 60px; background: #fff; }
.how h2 { margin-bottom: 40px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--yellow);
  color: var(--navy); font-weight: 800; font-size: 1.1rem; margin-bottom: 14px;
}
.how-step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.how-step p { color: var(--muted); font-size: 0.95rem; }

/* ---------------------------------------------------------------- tips */
.tips { padding: 72px 0; }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tip-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 2px 8px rgba(10, 37, 64, 0.04);
  border-top: 4px solid var(--blue);
}
.tip-card:nth-child(2n) { border-top-color: var(--yellow); }
.tip-card:nth-child(3n) { border-top-color: var(--green); }
.tip-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.tip-card p { font-size: 0.9rem; color: var(--muted); }

/* ------------------------------------------------------------- pricing */
.pricing { padding: 72px 0; background: #fff; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 24px; max-width: 780px; margin: 0 auto; }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
}
.price-card.featured { border: 2px solid var(--blue); box-shadow: var(--shadow); }
.badge-popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--navy); font-size: 0.75rem; font-weight: 800;
  padding: 4px 14px; border-radius: 999px;
}
.price { margin: 8px 0 2px; color: var(--muted); }
.price-num { font-size: 2.4rem; font-weight: 800; color: var(--navy); }
.price-trial { font-size: 0.85rem; color: var(--green); font-weight: 600; margin-bottom: 6px; }
.price-card ul { list-style: none; margin: 18px 0 26px; flex: 1; }
.price-card li { padding: 7px 0 7px 28px; position: relative; font-size: 0.93rem; }
.price-card li::before {
  content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800;
}

/* ----------------------------------------------------------- final cta */
.final-cta { background: var(--navy); color: #fff; text-align: center; padding: 72px 0; }
.final-cta h2 { color: #fff; }
.final-cta p { color: #b9c6da; margin: 12px 0 28px; }

/* -------------------------------------------------------------- footer */
.site-footer { padding: 40px 0 56px; text-align: center; }
.site-footer p { margin-bottom: 8px; }
.fine-print { font-size: 0.78rem; color: var(--muted); max-width: 640px; margin: 0 auto 8px; }
.fine-print a { color: var(--muted); }

/* -------------------------------------------------------------- modals */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(10, 37, 64, 0.55); z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal {
  background: #fff; border-radius: 16px; padding: 36px; max-width: 480px; width: 100%;
  position: relative; box-shadow: 0 20px 60px rgba(10, 37, 64, 0.3);
  max-height: 90vh; overflow-y: auto;
}
.modal h2 { font-size: 1.5rem; margin-bottom: 12px; text-align: left; }
.modal p { color: var(--muted); font-size: 0.95rem; }
.modal-close {
  position: absolute; top: 14px; right: 18px; background: none; border: none;
  font-size: 1.6rem; color: var(--muted); cursor: pointer; line-height: 1;
}
.modal-features { list-style: none; margin: 18px 0 24px; }
.modal-features li { padding: 6px 0 6px 28px; position: relative; font-size: 0.93rem; }
.modal-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.modal-fine { font-size: 0.78rem; text-align: center; margin-top: 12px; }
.checkout-sub { margin-bottom: 20px; }
#checkout-form label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 14px;
}
#checkout-form input {
  display: block; width: 100%; margin-top: 5px; padding: 11px 14px; font-size: 0.95rem;
  font-family: var(--font); border: 2px solid var(--line); border-radius: 9px; outline: none;
}
#checkout-form input:focus { border-color: var(--blue); }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ---------------------------------------------------------- responsive */
@media (max-width: 860px) {
  .site-nav { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid, .tips-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  #search-form { flex-direction: column; }
  .search-fields { flex-direction: column; }
  .field-where { max-width: none; }
  .result-card { flex-direction: column; }
  .result-actions { flex-direction: row; width: 100%; justify-content: space-between; align-items: center; }
}
