/* DOTPermit — Dark Industrial UI */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base:    #0D0D0D;
  --bg-card:    #181818;
  --bg-raised:  #222222;
  --bg-input:   #1A1A1A;
  --border:     #2E2E2E;
  --border-hi:  #3A3A3A;
  --text:       #E8E8E8;
  --text-muted: #888;
  --text-dim:   #555;
  --accent:     #F97316;
  --accent-hi:  #FB923C;
  --accent-dim: rgba(249,115,22,0.12);
  --accent-dimmer: rgba(249,115,22,0.06);
  --green:      #22C55E;
  --green-bg:   rgba(34,197,94,0.1);
  --warn:       #EAB308;
  --warn-bg:    rgba(234,179,8,0.12);
  --red:        #EF4444;
  --red-bg:     rgba(239,68,68,0.1);
  --radius:     8px;
  --radius-sm:  5px;
  --shadow:     0 4px 20px rgba(0,0,0,0.5);
}

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

body {
  background: var(--bg-base);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== NAVIGATION ===== */
.topnav {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.topnav::-webkit-scrollbar { display: none; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  height: 56px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0 16px;
  height: 56px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-btn:hover { color: var(--text); background: var(--bg-raised); }
.nav-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ===== LAYOUT ===== */
.container {
  flex: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 16px 48px;
  width: 100%;
}

.page { display: none; }
.page.active { display: block; }

.page-header {
  margin-bottom: 28px;
}
.page-header h1 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
}
.sub {
  color: var(--text-muted);
  margin-top: 6px;
  font-size: 0.9rem;
}

/* ===== STAT CARDS ===== */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== FORMS ===== */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.form-section { margin-bottom: 24px; }
.form-section:last-of-type { margin-bottom: 0; }

.section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.field-group { display: flex; flex-direction: column; gap: 5px; flex: 1; }

.field-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.field-row:last-child { margin-bottom: 0; }

.field {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 9px 12px;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.field:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-raised);
}

.field::placeholder { color: var(--text-dim); }

select.field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  cursor: pointer;
}

input[type="date"].field {
  color-scheme: dark;
}

label.field-group label,
label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ===== SPECS GRID ===== */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.spec-card {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.spec-card label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.spec-card input {
  background: none;
  border: none;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  padding: 0;
}
.spec-card input:focus { outline: none; }

/* ===== TOGGLE ===== */
.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 0;
}
.toggle-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}
.toggle-label { color: var(--text); font-size: 0.9rem; font-weight: 500; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hi); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-accent {
  background: var(--green);
  color: #fff;
}
.btn-accent:hover { background: #16A34A; }
.btn-accent:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-raised); color: var(--text); }

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===== RESULTS PANEL ===== */
.results-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.results-panel h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 14px;
}

/* ===== PERMIT ROWS ===== */
.permit-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.permit-row:last-child { border-bottom: none; }
.permit-row.no-require { opacity: 0.6; }

.permit-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 44px;
}

.permit-detail { flex: 1; }
.permit-reason { font-size: 0.8rem; color: var(--text-muted); margin: 4px 0; }
.permit-cost { font-weight: 700; color: var(--warn); font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; }

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-ok { background: var(--green-bg); color: var(--green); }
.badge-warn { background: var(--warn-bg); color: var(--warn); }
.badge-err { background: var(--red-bg); color: var(--red); }

.state-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-raised);
  border: 1px solid var(--border-hi);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 36px;
  padding: 2px 6px;
  color: var(--accent);
}
.state-badge.lg {
  font-size: 1rem;
  min-width: 44px;
  padding: 4px 8px;
}

/* ===== SUMMARY ===== */
.results-summary {
  background: var(--accent-dimmer);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 12px;
}

.summary-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary-cost {
  margin-left: auto;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

/* ===== FILED LIST ===== */
.filed-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.filed-row:last-child { border-bottom: none; }

.filed-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mono { font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; color: var(--text); }
.filed-exp { font-size: 0.78rem; color: var(--text-muted); }

/* ===== LOAD CARDS ===== */
.loads-list { display: flex; flex-direction: column; gap: 10px; }

.load-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.load-card:hover { border-color: var(--accent); background: var(--bg-raised); }

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

.load-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

.load-status {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
}
.status-draft { background: var(--bg-raised); color: var(--text-muted); }
.status-permits_filed { background: var(--green-bg); color: var(--green); }
.status-pending { background: var(--warn-bg); color: var(--warn); }

.load-route {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text);
}

.load-specs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.weight { color: var(--warn); font-weight: 600; }

.load-dates { font-size: 0.78rem; color: var(--text-dim); }

/* ===== STATE GRID (Route Planner) ===== */
.route-specs-row {
  display: flex;
  gap: 10px;
  margin: 14px 0;
  flex-wrap: wrap;
}
.route-spec {
  flex: 1;
  min-width: 80px;
}
.route-spec label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* Route Visualization */
.route-visual {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.route-line {
  display: flex;
  align-items: center;
  gap: 0;
}

.route-city {
  font-weight: 800;
  font-size: 1.1rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.origin-label { color: var(--green); }
.dest-label { color: var(--red); }

.route-path {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--border) 40%, var(--border) 60%, var(--red) 100%);
  margin: 0 16px;
  border-radius: 2px;
}

/* State Grid */
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.state-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.state-card.needs-permit { border-color: rgba(234,179,8,0.3); }

.state-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 6px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
}

.state-card-name {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.state-card-body {
  padding: 8px 12px 10px;
}

.small-text { font-size: 0.78rem; color: var(--text-muted); margin: 4px 0; }
.state-cost { font-weight: 700; color: var(--warn); font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; }

.route-summary-box {
  background: var(--accent-dimmer);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.results-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ===== CARRIER LIST ===== */
.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.section-header-row h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
}

.carrier-list { display: flex; flex-direction: column; gap: 10px; }

.carrier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.carrier-card:hover { border-color: var(--accent); }

.carrier-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.carrier-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== EMPTY STATE ===== */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
  color: var(--text-muted);
}
.empty-state p { font-size: 0.9rem; max-width: 280px; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 { font-size: 1rem; font-weight: 700; }
.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.modal-close:hover { color: var(--text); }

.modal-body { padding: 20px; }

.modal-route {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

.modal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-body h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 10px;
}

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

.permit-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  background: var(--bg-raised);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.permit-item.required { border-left: 3px solid var(--warn); }
.permit-item.clear { border-left: 3px solid var(--green); }

.modal-summary {
  display: flex;
  gap: 16px;
  padding: 12px 16px;
  background: var(--accent-dimmer);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.modal-summary strong { color: var(--accent); }

.modal-notification { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
.app-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
}
.app-footer a { color: var(--text-muted); text-decoration: none; }
.app-footer a:hover { color: var(--accent); }
.footer-sep { color: var(--text-dim); }

/* ===== UTILITY ===== */
.hidden { display: none !important; }

/* ===== SUBSCRIBE GATE ===== */
.gate-desc { color: var(--text-muted); margin-bottom: 16px; }
.gate-price { font-size: 2.5rem; font-weight: 900; color: var(--text); margin-bottom: 16px; line-height: 1; }
.gate-price small { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.gate-features { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.gate-features li { color: var(--text-muted); font-size: 0.9rem; padding-left: 20px; position: relative; }
.gate-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  html { font-size: 13px; }
  .dashboard-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-card { padding: 12px 10px; }
  .stat-value { font-size: 1.5rem; }
  .form-card { padding: 16px; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { flex-direction: column; }
  .state-grid { grid-template-columns: repeat(2, 1fr); }
  .route-specs-row { flex-wrap: wrap; }
}

/* ===== LANDING PAGE ===== */
.landing-nav {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 56px;
  padding: 0 20px;
  gap: 12px;
}
.nav-spacer { flex: 1; }
.nav-cta { font-size: 0.85rem; padding: 8px 16px; text-decoration: none; }

/* HERO */
.landing-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.72);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 24px;
  max-width: 680px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-social-proof {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.btn-lg {
  font-size: 1rem;
  padding: 13px 28px;
}
.btn-full { width: 100%; max-width: 320px; }

/* SECTIONS */
.landing-section {
  padding: 80px 16px;
}
.landing-how { background: var(--bg-base); }
.landing-benefits { background: var(--bg-card); }
.landing-waitlist { background: var(--bg-base); }
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title-text {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 44px;
  line-height: 1.15;
}

/* HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dimmer);
  color: var(--accent);
  margin: 0 auto 16px;
}
.step-number {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.benefit-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dimmer);
  color: var(--accent);
  margin-bottom: 14px;
}
.benefit-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.benefit-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* WAITLIST */
.waitlist-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: -32px;
  margin-bottom: 32px;
  max-width: 480px;
}
.waitlist-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 560px;
  margin: 0 auto;
}
.waitlist-form .field-row { display: flex; gap: 14px; }
.waitlist-form .field-row .field-group { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.waitlist-form label.field-group label,
.waitlist-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.waitlist-form .btn { margin-top: 16px; }
.waitlist-error {
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--red-bg);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-sm);
  color: var(--red);
  font-size: 0.875rem;
}
.waitlist-success {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--green-bg);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: 0.875rem;
}

/* FOOTER */
.landing-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
  background: var(--bg-base);
  flex-wrap: wrap;
}
.footer-brand {
  font-weight: 700;
  color: var(--text-muted);
}
.footer-sep { color: var(--text-dim); }
.footer-tagline { color: var(--text-dim); }
.footer-year { color: var(--text-dim); }

/* RESPONSIVE */
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .waitlist-form .field-row { flex-direction: column; }
  .landing-section { padding: 56px 16px; }
  .hero-headline { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .hero-content { padding: 36px 16px; }
  .btn-lg { font-size: 0.95rem; padding: 11px 20px; }
}

@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-grid { grid-template-columns: repeat(4, 1fr); }
}