/* ============================================================
   BAYOU COMMERCE — Main Stylesheet
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0f2224;
  --bg-surface:  #152e31;
  --bg-raised:   #1a3a3e;
  --accent:      #1e6d71;
  --highlight:   #5eaaae;
  --white:       #ffffff;
  --secondary:   #96b2b2;
  --border:      rgba(94,170,174,0.15);
  --border-mid:  rgba(94,170,174,0.25);

  --font-head: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --max-w: 1120px;
  --section-pad: 100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  background: rgba(94,170,174,0.1);
  border: 1px solid rgba(94,170,174,0.25);
  border-radius: 100px;
  padding: 5px 14px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(15,34,36,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: #225f63;
  color: var(--white);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(30,109,113,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 60px;
}

.hero-text .eyebrow { margin-bottom: 24px; }

.hero-h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
}

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

.hero-subhead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--secondary);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 560px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(30,109,113,0.35);
}

.btn-primary:hover {
  background: #225f63;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30,109,113,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 4px;
  transition: color 0.2s;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--secondary);
}

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

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

/* --- Catalog Mockup --- */
.mockup-caption {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--highlight);
  text-align: center;
  margin-bottom: 12px;
  opacity: 0.85;
}

.hero-mockup {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-mid);
  box-shadow: 0 40px 120px rgba(0,0,0,0.5), 0 0 0 1px rgba(94,170,174,0.08);
  background: #0d1f21;
}

.hero-mockup .mockup-bar { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

.mockup-bar {
  background: #0a1a1c;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--secondary);
  font-family: var(--font-body);
  max-width: 360px;
  margin: 0 auto;
}

.mockup-body {
  display: flex;
  min-height: 420px;
}

.mockup-sidebar {
  width: 200px;
  background: #0c1e20;
  border-right: 1px solid var(--border);
  padding: 20px 0;
  flex-shrink: 0;
}

.mockup-sidebar-header {
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

.mockup-brand {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.mockup-tier-badge {
  display: inline-block;
  background: rgba(94,170,174,0.15);
  color: var(--highlight);
  border: 1px solid rgba(94,170,174,0.3);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  text-transform: uppercase;
}

.mockup-nav-item {
  padding: 8px 16px;
  font-size: 12px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, color 0.15s;
}

.mockup-nav-item.active {
  background: rgba(94,170,174,0.08);
  color: var(--white);
  border-left: 2px solid var(--highlight);
}

.mockup-nav-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}

.mockup-main {
  flex: 1;
  padding: 20px;
  overflow: hidden;
}

.mockup-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mockup-main-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.mockup-search {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  color: var(--secondary);
  width: 180px;
}

.mockup-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup-product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.mockup-product-card:hover {
  border-color: var(--border-mid);
}

.mockup-product-img {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
}

.mockup-product-info {
  padding: 10px;
}

.mockup-product-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-product-sku {
  font-size: 10px;
  color: var(--secondary);
  margin-bottom: 6px;
}

.mockup-product-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-wholesale-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--highlight);
}

.mockup-retail-price {
  font-size: 10px;
  color: var(--secondary);
  text-decoration: line-through;
}

/* ============================================================
   DEALER EXPERIENCE (CENTERPIECE)
   ============================================================ */
#dealer {
  padding: var(--section-pad) 24px;
  position: relative;
}

.dealer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dealer-text .eyebrow { margin-bottom: 20px; }

.dealer-text h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.dealer-text h2 em {
  font-style: normal;
  color: var(--highlight);
}

.dealer-text p {
  font-size: 17px;
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.dealer-stat-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.dealer-stat-label {
  font-size: 13px;
  color: var(--secondary);
  line-height: 1.4;
}

.dealer-stat-value {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.dealer-visual {
  position: relative;
}

.dealer-screen {
  background: var(--bg-surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

/* ============================================================
   FEATURES
   ============================================================ */
#features {
  padding: var(--section-pad) 24px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .eyebrow { margin-bottom: 16px; }

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

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

.feature-card {
  background: var(--bg-surface);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--bg-raised); }

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(30,109,113,0.15);
  border: 1px solid rgba(30,109,113,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--highlight);
}

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

.feature-card p {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.65;
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
#who {
  padding: var(--section-pad) 24px;
}

.who-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-text .eyebrow { margin-bottom: 20px; }

.who-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.who-text > p {
  font-size: 17px;
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.5;
}

.who-list-check {
  width: 20px;
  height: 20px;
  background: rgba(94,170,174,0.1);
  border: 1px solid rgba(94,170,174,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.who-list-check svg {
  width: 10px;
  height: 10px;
  color: var(--highlight);
}

.who-visual {
  background: var(--bg-surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.who-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-raised);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.who-profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.who-profile-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.who-profile-role {
  font-size: 12px;
  color: var(--secondary);
}

.who-profile-price {
  margin-left: auto;
  text-align: right;
}

.who-profile-price-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--highlight);
}

.who-profile-price-label {
  font-size: 11px;
  color: var(--secondary);
}

/* ============================================================
   WHY BAYOU
   ============================================================ */
#why {
  padding: var(--section-pad) 24px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 64px;
}

.why-card {
  background: var(--bg-surface);
  padding: 40px;
  transition: background 0.2s;
}

.why-card:hover { background: var(--bg-raised); }

.why-card-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--highlight);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.65;
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  padding: var(--section-pad) 24px;
}

.pricing-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.pricing-inner .eyebrow { margin-bottom: 20px; }

.pricing-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.pricing-inner > p {
  font-size: 17px;
  color: var(--secondary);
  line-height: 1.65;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.pricing-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(30,109,113,0.15);
  border: 1px solid rgba(30,109,113,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.pricing-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--highlight);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.pricing-card p {
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ============================================================
   WAITLIST
   ============================================================ */
#waitlist {
  padding: var(--section-pad) 24px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.waitlist-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-inner .eyebrow { margin-bottom: 20px; }

.waitlist-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.waitlist-inner > p {
  font-size: 17px;
  color: var(--secondary);
  margin-bottom: 40px;
  line-height: 1.65;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-form input {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

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

.waitlist-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 15px;
}

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

.waitlist-success {
  display: none;
  background: rgba(94,170,174,0.1);
  border: 1px solid rgba(94,170,174,0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.waitlist-success h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--white);
}

.waitlist-success p {
  font-size: 14px;
  color: var(--secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo img {
  height: 28px;
  width: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--secondary);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 13px;
  color: var(--secondary);
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-pad: 72px; }

  .dealer-inner,
  .who-inner { grid-template-columns: 1fr; gap: 48px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; }

  .mockup-sidebar { display: none; }

  .mockup-product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }
  .nav-links.open a { font-size: 16px; color: var(--white); }

  .nav-hamburger { display: flex; }

  .features-grid { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .mockup-product-grid { grid-template-columns: repeat(2, 1fr); }

  .mockup-main { padding: 14px; }

  .dealer-stat-row { flex-direction: column; gap: 20px; }

  .why-card { padding: 28px 24px; }

  .pricing-card { padding: 32px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --- Hero capability panel (replaces fake catalog) --- */
.hero-panel {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(160deg, #12292c, #0d1f21);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 120px rgba(0,0,0,0.45), 0 0 0 1px rgba(94,170,174,0.08);
  padding: 28px 28px 22px;
}
.hero-panel-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 20px;
}
.hero-panel-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.hero-panel-list li { display: flex; gap: 14px; align-items: flex-start; }
.hp-icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(94,170,174,0.10);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.hp-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.hp-sub { font-size: 13.5px; line-height: 1.5; color: var(--secondary); }
.hero-panel-foot {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--secondary);
  text-align: center;
}

/* --- Dealer flow card (replaces fake order) --- */
.flow-card {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(160deg, #12292c, #0d1f21);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 120px rgba(0,0,0,0.45), 0 0 0 1px rgba(94,170,174,0.08);
  padding: 30px 28px;
}
.flow-step { display: flex; gap: 16px; align-items: flex-start; }
.flow-num {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
}
.flow-title { font-family: var(--font-head); font-size: 15.5px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.flow-sub { font-size: 13.5px; line-height: 1.5; color: var(--secondary); }
.flow-line { width: 2px; height: 22px; background: var(--border); margin: 6px 0 6px 16px; }

/* ============================================================
   HYPE VIDEO
   ============================================================ */
#video {
  padding: var(--section-pad) 24px;
  position: relative;
}
#video .eyebrow { display: inline-block; }
#video h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.video-frame {
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}
