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

:root {
  --steel:   #1a1f2e;
  --steel2:  #232a3b;
  --steel3:  #2e3750;
  --border:  #3a4460;
  --orange:  #f56a28;
  --orange2: #e05518;
  --slate:   #8a93a8;
  --light:   #c8cdd8;
  --white:   #f0f2f6;
  --green:   #2db87a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--steel);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--steel);
  z-index: 100;
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
}

.logo span { color: var(--orange); }

nav a.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

nav a.nav-cta:hover { background: var(--orange2); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(245, 106, 40, 0.15);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 106, 40, 0.3);
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
  display: block;
}

.hero-sub {
  font-size: 18px;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--light);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--slate); color: var(--white); }

.hero-trust {
  margin-top: 28px;
  font-size: 13px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

/* BID CARD DEMO */
.bid-demo {
  position: relative;
}

.demo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
  text-align: center;
}

.bid-card {
  background: var(--steel2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.bid-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #f5a028);
}

.bid-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.bid-company {
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}

.bid-location {
  font-size: 13px;
  color: var(--slate);
  margin-top: 3px;
}

.bid-new-badge {
  background: rgba(45, 184, 122, 0.15);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(45, 184, 122, 0.3);
}

.bid-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

.bid-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.bid-detail-item label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 5px;
}

.bid-detail-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.bid-salary {
  color: var(--orange) !important;
  font-size: 18px !important;
}

.bid-benefits {
  background: var(--steel3);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.bid-benefits-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benefit-tag {
  background: rgba(255,255,255,0.06);
  color: var(--light);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.bid-anon-note {
  font-size: 13px;
  color: var(--slate);
  text-align: center;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lock-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.bid-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bid-accept {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  font-family: 'Barlow', sans-serif;
}

.bid-accept:hover { opacity: 0.88; transform: translateY(-1px); }

.bid-decline {
  background: transparent;
  color: var(--slate);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Barlow', sans-serif;
}

.bid-decline:hover { color: var(--light); border-color: var(--slate); }

/* FLIP ANIMATION */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bid-card { animation: slideIn 0.5s ease both; }

/* HOW IT WORKS */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 520px;
  margin-bottom: 56px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.step {
  background: var(--steel2);
  padding: 36px 32px;
  position: relative;
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: rgba(245, 106, 40, 0.18);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.step p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
}

/* TWO SIDES */
.two-sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}

.side-card {
  background: var(--steel2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.side-card.tech::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}

.side-card.company::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
}

.side-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.side-card.tech .side-tag {
  background: rgba(245, 106, 40, 0.12);
  color: var(--orange);
  border: 1px solid rgba(245, 106, 40, 0.25);
}

.side-card.company .side-tag {
  background: rgba(45, 184, 122, 0.12);
  color: var(--green);
  border: 1px solid rgba(45, 184, 122, 0.25);
}

.side-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.side-card p {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 28px;
  line-height: 1.65;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  font-size: 15px;
  color: var(--light);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.side-card .btn-primary,
.side-card .btn-secondary {
  width: 100%;
  text-align: center;
  font-size: 15px;
  padding: 13px 24px;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--steel2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-stat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}

/* WAITLIST */
.waitlist-section {
  background: var(--steel2);
  border-top: 1px solid var(--border);
}

.waitlist-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.waitlist-inner .section-eyebrow { text-align: center; }

.waitlist-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 44px;
  margin-bottom: 14px;
  line-height: 1.05;
}

.waitlist-inner p {
  font-size: 17px;
  color: var(--slate);
  margin-bottom: 36px;
}

.tab-toggle {
  display: flex;
  background: var(--steel3);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 28px;
  gap: 4px;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--slate);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'Barlow', sans-serif;
}

.tab-btn.active {
  background: var(--steel);
  color: var(--white);
}

.waitlist-form {
  display: flex;
  gap: 10px;
}

.waitlist-form input {
  flex: 1;
  background: var(--steel3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 16px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input::placeholder { color: var(--slate); }
.waitlist-form input:focus { border-color: var(--orange); }

.waitlist-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}

.waitlist-form button:hover { background: var(--orange2); }

.waitlist-fine {
  margin-top: 16px;
  font-size: 13px;
  color: var(--slate);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

footer .logo { font-size: 20px; }

footer p {
  font-size: 13px;
  color: var(--slate);
}

/* SUCCESS STATE */
.success-msg {
  display: none;
  background: rgba(45, 184, 122, 0.12);
  border: 1px solid rgba(45, 184, 122, 0.3);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 20px 60px; }
  .hero h1 { font-size: 48px; }
  .steps { grid-template-columns: 1fr; }
  .two-sides { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 60px 20px; }
  .waitlist-inner { padding: 60px 20px; }
  .waitlist-form { flex-direction: column; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .bid-details { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .bid-card { animation: none; }
  * { transition: none !important; }
}
