*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0C1220;
  --bg-2: #111827;
  --fg: #F8FAFC;
  --fg-muted: #94A3B8;
  --accent: #F59E0B;
  --accent-dim: rgba(245,158,11,0.12);
  --border: rgba(148,163,184,0.12);
  --card-bg: #141D2B;
  --card-border: rgba(148,163,184,0.08);
  --match-bg: rgba(34,197,94,0.15);
  --match-fg: #4ADE80;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,18,32,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  background: var(--accent);
  color: #0C1220;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 5px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.navbar-links {
  display: flex;
  gap: 32px;
}

.navbar-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-links a:hover { color: var(--fg); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 96px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 20px;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.meta-stat { display: flex; flex-direction: column; gap: 2px; }

.meta-number {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
}

.meta-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero inline form */
.hero-form {
  margin-bottom: 40px;
}

.hero-form-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.hero-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(148,163,184,0.22);
  border-radius: 10px;
  padding: 13px 18px;
  font-family: inherit;
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}

.hero-input::placeholder { color: rgba(148,163,184,0.45); }
.hero-input:focus { border-color: var(--accent); }

.hero-submit {
  background: var(--accent);
  color: #0C1220;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  padding: 13px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
}

.hero-submit:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.hero-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.hero-form-fine {
  font-size: 12px;
  color: var(--fg-muted);
}

.hero-form-msg {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
}

.hero-form-msg--error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: #F87171;
}

.hero-success {
  font-size: 14px;
  font-weight: 600;
  color: #4ADE80;
  padding: 12px 0;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0C1220;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hero-cta-fine {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Navbar CTA */
.nav-cta {
  background: var(--accent) !important;
  color: #0C1220 !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 8px 18px;
  border-radius: 8px;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.88;
  color: #0C1220 !important;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tender-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px 24px;
  transition: transform 0.2s;
}

.tender-card:first-child {
  border-color: rgba(245,158,11,0.25);
  box-shadow: 0 0 0 1px rgba(245,158,11,0.1), 0 20px 40px rgba(0,0,0,0.3);
}

.tender-card-dim { opacity: 0.6; }

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
}

.card-time {
  font-size: 12px;
  color: var(--fg-muted);
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 10px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-agency {
  font-size: 12px;
  color: var(--fg-muted);
}

.card-value {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(148,163,184,0.1);
  color: var(--fg-muted);
  font-weight: 500;
}

.tag-match {
  background: var(--match-bg);
  color: var(--match-fg);
}

/* Proof */
.proof {
  padding: 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 32px;
}

.proof-types {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.proof-type {
  text-align: center;
}

.proof-stat {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.proof-desc {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 160px;
}

/* How It Works */
.how-it-works {
  padding: 96px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  max-width: 560px;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Features */
.features {
  padding: 96px 48px;
  background: var(--bg-2);
}

.features .section-header {
  max-width: 100%;
  text-align: center;
  margin-bottom: 64px;
}

.features .section-header .section-desc {
  max-width: 520px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.feature {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature:hover {
  border-color: rgba(245,158,11,0.2);
  transform: translateY(-2px);
}

.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: 20px;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 96px 48px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.closing-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(245,158,11,0.3);
  background: var(--accent-dim);
  padding: 5px 14px;
  border-radius: 999px;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 720px;
  margin: 0 auto 20px;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Sign-up Form */
.signup-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.signup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.signup-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.signup-row .signup-field {
  margin-bottom: 0;
}

.signup-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.signup-optional {
  font-weight: 400;
  color: var(--fg-muted);
}

.signup-input {
  background: var(--card-bg);
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.signup-input::placeholder { color: rgba(148,163,184,0.5); }
.signup-input:focus { border-color: var(--accent); }

.signup-btn {
  width: 100%;
  background: var(--accent);
  color: #0C1220;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
}

.signup-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.signup-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.signup-fine {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 12px;
}

.signup-msg {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

.signup-msg--success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ADE80;
}

.signup-msg--error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: #F87171;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-brand-mark {
  background: var(--accent);
  color: #0C1220;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 7px;
  border-radius: 5px;
}

.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-contact {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.footer-link {
  color: var(--accent);
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-legal {
  font-size: 12px;
  color: rgba(148,163,184,0.5);
}

/* Mobile */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .navbar-links { display: none; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 64px; }
  .hero-visual { display: none; }
  .hero-cta { flex-wrap: wrap; }
  .proof-types { flex-direction: column; gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .how-it-works, .features, .closing { padding: 64px 24px; }
  .proof { padding: 40px 24px; }
  .section-title { font-size: 28px; }
  .closing-headline { font-size: 28px; }
  .signup-row { grid-template-columns: 1fr; }
  .hero-form-row { flex-direction: column; }
  .hero-submit { width: 100%; }
}