/* =============================================
   BondReady — styles.css
   Aesthetic: Industrial urgency. Dark authority.
   Fonts: Bebas Neue (display) + DM Sans (body)
   ============================================= */

:root {
  --black:       #0a0a0b;
  --dark:        #111114;
  --dark-mid:    #1a1a1f;
  --dark-light:  #242430;
  --border:      #2e2e3a;
  --text:        #e8e8ec;
  --text-muted:  #8888a0;
  --accent:      #e8b020;
  --accent-dim:  #b88a18;
  --accent-glow: rgba(232,176,32,0.15);
  --red:         #d63b3b;
  --red-dim:     #a02020;
  --ky-blue:     #1a4fa8;
  --oh-red:      #c0392b;
  --white:       #ffffff;
  --radius:      4px;
  --radius-lg:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.3);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --max-width:    1140px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--white); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--white);
  color: var(--black);
}
.btn-urgent {
  background: var(--red);
  color: var(--white);
  animation: pulse-red 2s infinite;
}
.btn-urgent:hover {
  background: #ff4444;
  color: var(--white);
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214,59,59,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(214,59,59,0); }
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--black);
}

/* ---- HEADER ---- */
.site-header {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}
.logo img { height: 36px; width: auto; }
.main-nav {
  display: flex;
  gap: 1.5rem;
  margin-right: auto;
}
.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--text); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) saturate(0.4);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,11,0.95) 0%,
    rgba(10,10,11,0.6) 50%,
    rgba(10,10,11,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.25rem;
  background: var(--accent-glow);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ---- URGENT BAR ---- */
.urgent-bar {
  background: linear-gradient(135deg, #1a0808, #200e0e);
  border-top: 2px solid var(--red);
  border-bottom: 1px solid rgba(214,59,59,0.3);
}
.urgent-inner {
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.urgent-icon { font-size: 1.1rem; }
.urgent-inner a {
  color: var(--accent);
  font-weight: 600;
}

/* ---- SECTIONS ---- */
.section {
  padding: 5rem 0;
}
.section--dark {
  background: var(--dark);
}
.section--accent {
  background: var(--dark-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ---- COUNTY GRID ---- */
.county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.county-card {
  background: var(--dark-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  position: relative;
}
.county-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,176,32,0.12);
  color: var(--text);
}
.county-card--coming { opacity: 0.65; pointer-events: none; }
.county-state-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: var(--ky-blue);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius);
  z-index: 2;
}
.county-state-tag--oh {
  background: var(--oh-red);
}
.county-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.5);
  transition: filter 0.25s;
}
.county-card:hover .county-img {
  filter: brightness(0.8) saturate(0.7);
}
.county-img-placeholder {
  width: 100%;
  height: 160px;
  background: var(--dark-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.county-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.county-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.county-card-body > p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.county-facts {
  list-style: none;
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.county-facts li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}
.county-facts li:last-child { border-bottom: none; }
.fact-label {
  color: var(--text-muted);
  min-width: 90px;
  flex-shrink: 0;
}
.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
}
.coming-tag {
  color: var(--text-muted);
  font-style: italic;
}

/* ---- STEPS GRID ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.step {
  background: var(--dark-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ---- COMPARE TABLE ---- */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 1rem;
}
.compare-table th {
  background: var(--dark-light);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--accent-dim);
}
.compare-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
.compare-table tr:hover td { background: var(--dark-light); color: var(--text); }
.compare-table td:first-child {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

/* ---- CALCULATOR ---- */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.calculator {
  background: var(--dark-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.calc-field {
  margin-bottom: 1.25rem;
}
.calc-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.calc-field input,
.calc-field select {
  width: 100%;
  background: var(--dark-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.calc-field input:focus,
.calc-field select:focus {
  border-color: var(--accent);
}
.calc-btn { width: 100%; justify-content: center; margin-bottom: 1.25rem; }
.calc-result {
  background: var(--dark-light);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.result-row:last-of-type { border-bottom: none; }
.result-row--highlight .result-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}
.result-label { color: var(--text-muted); }
.calc-note {
  font-size: 0.78rem;
  color: var(--accent);
  margin-top: 0.75rem;
  line-height: 1.5;
  font-style: italic;
}
.calc-explainer h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}
.calc-explainer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.calc-explainer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}
.calc-explainer ul {
  padding-left: 1.25rem;
}
.calc-explainer li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.calc-explainer li strong { color: var(--text); }

/* ---- VERIFY SECTION ---- */
.verify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.verify-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.verify-state {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  background: var(--ky-blue);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
.verify-state--oh { background: var(--oh-red); }
.verify-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}
.verify-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.verify-tips {
  list-style: none;
  margin-top: 1.25rem;
  padding: 0;
}
.verify-tips li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.verify-tips li:last-child { border-bottom: none; }
.verify-tips li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
  top: 0.5rem;
}

/* ---- FAQ ---- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.faq-item {
  background: var(--dark-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.faq-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 1.5rem 2.5rem;
}
.footer-logo { margin-bottom: 1rem; filter: brightness(0.9); }
.footer-col p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.footer-col li a { color: var(--text-muted); }
.footer-col li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.footer-bottom a { color: var(--text-muted); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .calc-wrap,
  .verify-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .main-nav { display: none; }
}

@media (max-width: 600px) {
  .hero { min-height: 400px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-cta-row { flex-direction: column; }
  .btn { text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .county-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 0.6rem 0.75rem; }
}
