/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #080b14;
  --bg-alt: #0d1117;
  --surface: #111827;
  --surface-2: #1a2332;
  --accent: #00ff66;
  --accent-glow: #33ff88;
  --accent-dim: rgba(0, 255, 102, 0.06);
  --text: #f0f2f5;
  --text-2: #94a3b8;
  --text-3: #475569;
  --border: rgba(0, 255, 102, 0.15);
  --border-subtle: rgba(148, 163, 184, 0.08);
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 11, 20, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem; color: var(--text-2);
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* === HERO === */
.hero { padding: 6rem 2rem 4rem; max-width: 900px; margin: 0 auto; }
.hero-inner { text-align: left; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08; color: var(--text);
  margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.125rem; color: var(--text-2);
  line-height: 1.7; margin-bottom: 2.5rem; max-width: 600px;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-email-form { margin-top: 2.5rem; }
.hero-email-form-inner { display: flex; gap: 0.75rem; max-width: 560px; flex-wrap: wrap; }
.hero-email-form input[type="email"] {
  flex: 1; min-width: 220px;
  background: var(--surface); border: 1px solid var(--border-subtle);
  color: var(--text); font-family: var(--font-body); font-size: 0.9375rem;
  padding: 0.75rem 1rem; border-radius: 6px; outline: none;
  transition: border-color 0.2s;
}
.hero-email-form input[type="email"]::placeholder { color: var(--text-3); }
.hero-email-form input[type="email"]:focus { border-color: var(--accent); }
.hero-email-privacy { font-size: 0.75rem; color: var(--text-3); margin-top: 0.5rem; }

/* === BUTTONS === */
.btn-primary {
  display: inline-block; background: var(--accent); color: #080b14;
  font-family: var(--font-head); font-size: 0.9375rem; font-weight: 700;
  padding: 0.875rem 1.75rem; border-radius: 6px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-glow); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; color: var(--accent);
  font-family: var(--font-head); font-size: 0.9375rem; font-weight: 700;
  padding: calc(0.875rem - 1px) 1.75rem; border-radius: 6px;
  border: 1px solid var(--accent); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: rgba(0, 255, 102, 0.08); }
.btn-full { display: block; text-align: center; width: 100%; }
.btn-small { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-large { padding: 1rem 2rem; font-size: 1.0625rem; }

/* === OPPORTUNITY CARDS === */
.cards { padding: 0 2rem 5rem; max-width: 1100px; margin: 0 auto; }
.cards-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.opp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 1.5rem 1.75rem;
  transition: border-color 0.2s;
}
.opp-card:hover { border-color: var(--accent-glow); }
.opp-title {
  font-family: var(--font-head); font-size: 0.9375rem;
  font-weight: 700; color: var(--text); margin-bottom: 0.5rem;
}
.opp-meta { font-size: 0.8125rem; color: var(--text-2); line-height: 1.6; }

/* === SECTION SHARED === */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text); line-height: 1.15; margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

/* === PROBLEM === */
.problem {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.problem-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.problem-icon { color: var(--accent); margin-bottom: 1rem; }
.problem-item h3 {
  font-family: var(--font-head); font-size: 1rem;
  font-weight: 700; color: var(--text); margin-bottom: 0.75rem;
}
.problem-item p { font-size: 0.9375rem; color: var(--text-2); line-height: 1.6; }

/* === HOW IT WORKS === */
.how { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.step-num {
  font-family: var(--font-head); font-size: 0.875rem;
  font-weight: 700; color: var(--accent); margin-bottom: 1rem;
}
.how-step h3 {
  font-family: var(--font-head); font-size: 1rem;
  font-weight: 700; color: var(--text); margin-bottom: 0.75rem;
}
.how-step p { font-size: 0.9375rem; color: var(--text-2); line-height: 1.6; }

/* === FEATURES === */
.features {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.features-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: 12px; padding: 2rem; transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--border); }
.feature-icon {
  width: 44px; height: 44px; background: var(--accent-dim);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--accent); margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-family: var(--font-head); font-size: 0.9375rem;
  font-weight: 700; color: var(--text); margin-bottom: 0.625rem;
}
.feature-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

/* === PRICING === */
.pricing { padding: 5rem 2rem; max-width: 900px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 2.5rem; text-align: center;
}
.pricing-tier {
  font-family: var(--font-head); font-size: 1.25rem;
  font-weight: 800; color: var(--text); margin-bottom: 1rem;
}
.pricing-price {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--accent); line-height: 1; margin-bottom: 0.75rem;
}
.pricing-desc { font-size: 0.875rem; color: var(--text-2); margin-bottom: 2rem; }
.custom-desc { margin-top: 1rem; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-features li {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.9375rem; color: var(--text-2);
  padding: 0.5rem 0; border-bottom: 1px solid var(--border-subtle);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features svg { color: var(--accent); flex-shrink: 0; }
.pricing-recommended {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(0, 255, 102, 0.06);
  position: relative;
}
.pricing-tier-accent { color: var(--accent); }

/* === NAV SIGN IN === */
.nav-signin {
  color: var(--accent) !important;
  font-weight: 600;
  border: 1px solid var(--border);
  padding: 0.3rem 0.875rem;
  border-radius: 5px;
  transition: background 0.2s !important;
}
.nav-signin:hover { background: rgba(0, 255, 102, 0.08); }

/* === SCREENSHOTS === */
.screenshots {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.screenshots-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.screenshots-sub {
  font-size: 1.0625rem; color: var(--text-2); margin-bottom: 3.5rem;
  margin-top: -2rem; max-width: 600px;
}
.screenshots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.screenshot-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px; overflow: hidden;
  transition: border-color 0.2s;
}
.screenshot-card:hover { border-color: var(--border); }
.screenshot-label {
  padding: 0.625rem 1rem;
  font-family: var(--font-head); font-size: 0.75rem;
  font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border-subtle);
}
.screenshot-img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16/9; object-fit: cover;
}
.screenshot-caption {
  padding: 1rem 1.125rem;
  font-size: 0.875rem; color: var(--text-2); line-height: 1.55;
}

/* === DAY ONE === */
.day-one { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.day-one-sub {
  font-size: 1.0625rem; color: var(--text-2); margin-bottom: 3.5rem;
  margin-top: -2rem; max-width: 600px;
}
.day-one-list { list-style: none; display: flex; flex-direction: column; gap: 2rem; }
.day-one-item {
  display: flex; gap: 2rem; align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}
.day-one-item:last-child { border-bottom: none; padding-bottom: 0; }
.day-one-num {
  font-family: var(--font-head); font-size: 1.125rem;
  font-weight: 800; color: var(--accent);
  min-width: 2.5rem; padding-top: 0.2rem;
}
.day-one-content h3 {
  font-family: var(--font-head); font-size: 1.0625rem;
  font-weight: 700; color: var(--text); margin-bottom: 0.5rem;
}
.day-one-content p { font-size: 0.9375rem; color: var(--text-2); line-height: 1.65; max-width: 640px; }

/* === FOOTER === */
.footer { border-top: 1px solid var(--border-subtle); }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 2.5rem 2rem;
  text-align: center;
}
.footer-email { font-size: 0.875rem; color: var(--text-2); margin-bottom: 0.5rem; }
.footer-email a { color: var(--text-2); transition: color 0.2s; }
.footer-email a:hover { color: var(--accent); }
.footer-copy { font-size: 0.75rem; color: var(--text-3); }

/* === VS COMPARISON TABLE === */
.vs-comparison {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.vs-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.vs-eyebrow {
  font-family: var(--font-head); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.25rem;
}
.vs-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text); line-height: 1.15; margin-bottom: 3rem;
  letter-spacing: -0.01em; max-width: 680px;
}
.vs-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.vs-table {
  width: 100%; border-collapse: collapse; min-width: 680px;
  font-size: 0.9375rem;
}
.vs-table thead tr {
  border-bottom: 1px solid var(--border-subtle);
}
.vs-th-label { width: 220px; padding: 1rem 1.25rem 1rem 0; }
.vs-th {
  padding: 1rem 1.25rem; text-align: center;
  font-family: var(--font-head); font-size: 0.875rem;
  font-weight: 700; color: var(--text-2);
}
/* Keystone column — subtle green accent border */
.vs-th-keystone {
  color: var(--accent);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  background: rgba(0, 255, 102, 0.03);
  border-radius: 0;
}
.vs-brand-name { display: block; font-size: 0.8125rem; }
.vs-table tbody tr {
  border-bottom: 1px solid var(--border-subtle);
}
.vs-table tbody tr:last-child { border-bottom: none; }
.vs-row-label {
  padding: 1.1rem 1.25rem 1.1rem 0;
  font-family: var(--font-head); font-size: 0.875rem;
  font-weight: 600; color: var(--text-2); vertical-align: middle;
}
.vs-row-sublabel { font-size: 0.75rem; color: var(--text-3); font-weight: 400; }
.vs-cell {
  padding: 1.1rem 1.25rem; text-align: center;
  vertical-align: middle;
}
.vs-cell-keystone {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: rgba(0, 255, 102, 0.03);
  font-weight: 700; color: var(--text);
}
.vs-cell-muted { color: var(--text-3); font-size: 0.875rem; }
.vs-check {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: var(--accent); font-weight: 600; font-size: 0.875rem;
}
/* Neutral check (competitor has the feature too) */
.vs-check-neutral { color: var(--text-2); }

/* === FAQ ACCORDION === */
.faq {
  padding: 5rem 2rem;
  max-width: 800px; margin: 0 auto;
}
.faq-inner { }
.faq-eyebrow {
  font-family: var(--font-head); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.25rem;
}
.faq-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text); line-height: 1.15; margin-bottom: 3rem;
  letter-spacing: -0.01em;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item:first-of-type { border-top: 1px solid var(--border-subtle); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  list-style: none; /* remove default triangle */
  padding: 1.375rem 0;
  font-family: var(--font-head); font-size: 1rem;
  font-weight: 600; color: var(--text);
  cursor: pointer; user-select: none;
  transition: color 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  color: var(--text-3); flex-shrink: 0;
  transition: transform 0.25s, color 0.2s;
}
details[open] .faq-chevron { transform: rotate(180deg); color: var(--accent); }
details[open] > .faq-question { color: var(--accent); }
.faq-answer {
  padding: 0 0 1.5rem;
}
.faq-answer p {
  font-size: 0.9375rem; color: var(--text-2); line-height: 1.7;
}
.faq-answer a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.faq-answer a:hover { color: var(--accent-glow); }

/* === /OPPORTUNITIES PAGE === */
.opp-page { padding-bottom: 0; }
.opp-main { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem 3rem; }

.opp-header { margin-bottom: 3rem; }
.opp-eyebrow {
  font-family: var(--font-head); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.opp-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--text); line-height: 1.12; margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.opp-subhead {
  font-size: 1.0625rem; color: var(--text-2); line-height: 1.7;
  max-width: 720px; margin-bottom: 1.25rem;
}
.opp-stub-notice {
  display: flex; align-items: center; gap: 0.625rem;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 8px; padding: 0.75rem 1rem;
  font-size: 0.875rem; color: #fbbf24; margin-bottom: 1rem;
  max-width: 720px;
}
.opp-disclaimer {
  font-size: 0.8125rem; color: var(--text-3); margin-top: 0.25rem;
}
.opp-empty {
  padding: 4rem 0; text-align: center;
  font-size: 1rem; color: var(--text-2);
}
.opp-empty a { color: var(--accent); text-decoration: underline; }

/* Opportunity cards grid */
.opp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.opp-card-full {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.2s;
}
.opp-card-full:hover { border-color: var(--accent-glow); }

.opp-card-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem;
}
.opp-card-title {
  font-family: var(--font-head); font-size: 0.9375rem;
  font-weight: 700; color: var(--text); line-height: 1.45;
  flex: 1;
}
.opp-badge {
  flex-shrink: 0;
  display: inline-block; padding: 0.2rem 0.625rem;
  border-radius: 100px; font-family: var(--font-head);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
}
.opp-badge-8a       { background: rgba(0, 255, 102, 0.12); color: var(--accent); border: 1px solid var(--border); }
.opp-badge-sdvosb   { background: rgba(99, 179, 237, 0.12); color: #63b3ed; border: 1px solid rgba(99,179,237,0.25); }
.opp-badge-hubzone  { background: rgba(251, 191, 36, 0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.opp-badge-wosb     { background: rgba(216, 180, 254, 0.12); color: #d8b4fe; border: 1px solid rgba(216,180,254,0.25); }
.opp-badge-vosb     { background: rgba(249, 115, 22, 0.1); color: #fb923c; border: 1px solid rgba(249,115,22,0.25); }
.opp-badge-total-small-business,
.opp-badge-other    { background: var(--surface-2); color: var(--text-2); border: 1px solid var(--border-subtle); }

.opp-card-meta { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.opp-meta-row {
  display: flex; align-items: baseline; gap: 0.75rem;
  font-size: 0.8125rem; line-height: 1.5;
}
.opp-meta-label {
  font-family: var(--font-head); font-size: 0.6875rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3); min-width: 64px; flex-shrink: 0;
}
.opp-meta-value { color: var(--text-2); }
.opp-value { color: var(--accent); font-weight: 600; font-size: 0.875rem; }
.opp-deadline { color: #fb923c; }

.opp-card-footer { margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--border-subtle); }
.opp-sam-link {
  font-family: var(--font-head); font-size: 0.8125rem; font-weight: 700;
  color: var(--accent); text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.opp-sam-link:hover { color: var(--accent-glow); }

/* Footer CTA block */
.opp-footer-cta {
  text-align: center; padding: 4rem 2rem;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 0;
}
.opp-footer-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text); margin-bottom: 0.75rem;
}
.opp-footer-cta-sub {
  font-size: 1rem; color: var(--text-2); max-width: 540px;
  margin: 0 auto 2rem;
}

/* Sticky bottom CTA bar */
.opp-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 0.875rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
}
.opp-sticky-text {
  font-size: 0.9375rem; color: var(--text-2);
}
.opp-sticky-text strong { color: var(--text); }

/* Nav active link */
.nav-active { color: var(--accent) !important; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 3rem 1.5rem 3rem; }
  .hero-headline { font-size: 2.25rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; }
  .cards { padding: 0 1.5rem 4rem; }
  .cards-inner { grid-template-columns: 1fr; }
  .problem-inner { padding: 4rem 1.5rem; }
  .problem-grid { grid-template-columns: 1fr; gap: 2rem; }
  .how { padding: 4rem 1.5rem; }
  .how-steps { grid-template-columns: 1fr; gap: 2rem; }
  .features-inner { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .screenshots-inner { padding: 4rem 1.5rem; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .day-one-inner { padding: 4rem 1.5rem; }
  .pricing { padding: 4rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 2rem 1.5rem; }
  /* Opportunities page mobile */
  .opp-main { padding: 2.5rem 1.25rem 2rem; }
  .opp-grid { grid-template-columns: 1fr; }
  .opp-card-header { flex-direction: column; gap: 0.625rem; }
  .opp-sticky-bar { flex-direction: column; gap: 0.625rem; padding: 0.75rem 1.25rem; text-align: center; }
  .opp-footer-cta { padding: 3rem 1.25rem; }
}

