/* ============================================================
   BAMPAA — Home / Landing Page
   assets/home.css
   ============================================================ */

/* ── Page shell ── */
.hm-page {
  overflow-x: hidden;
}

/* ── Shared section ── */
.hm-page section {
  padding: 30px 48px;
}

.hm-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* ── Eyebrow ── */
.hm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 165, 156, 0.12);
  border: 1px solid rgba(106, 165, 156, 0.25);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6AA59C;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ── Section headings ── */
.hm-section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #e8ecf2;
  margin-bottom: 22px;
  white-space: pre-line;
}

.hm-section-sub {
  font-size: 1.05rem;
  color: #6b7f9a;
  line-height: 1.75;
  max-width: 560px;
}

/* ── Glowing divider ── */
.hm-divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106, 165, 156, 0.3), transparent);
}

/* ============================================================
   HERO
   ============================================================ */
.hm-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 100px;
  position: relative;
  overflow: hidden;
}

.hm-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 800px 600px at 50% 20%, rgba(106, 165, 156, 0.09), transparent 60%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(106, 165, 156, 0.05), transparent 50%),
    radial-gradient(ellipse 300px 300px at 90% 70%, rgba(232, 147, 90, 0.04), transparent 50%);
}

.hm-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(30, 45, 69, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 45, 69, 1) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hm-hero-headline {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #e8ecf2;
  margin-bottom: 32px;
  animation: hm-fade-up 0.6s 0.1s ease both;
}

.hm-accent { color: #6AA59C; }
.hm-dim    { color: #6b7f9a; font-weight: 300; }

.hm-hero-sub {
  font-size: 1.2rem;
  color: #6b7f9a;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 52px;
  animation: hm-fade-up 0.6s 0.2s ease both;
}

.hm-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: hm-fade-up 0.6s 0.3s ease both;
}

/* Hero buttons */
.hm-btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #6AA59C, #4B7F76);
  color: #fff;
  font-family: var(--sans, 'Sora', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 36px rgba(106, 165, 156, 0.3);
  transition: all 0.2s;
  text-decoration: none;
}
.hm-btn-hero:hover {
  box-shadow: 0 0 52px rgba(106, 165, 156, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

.hm-btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  padding: 17px 38px;
  border-radius: 999px;
  border: 1px solid rgba(30, 45, 69, 1);
  background: transparent;
  color: #e8ecf2;
  font-family: var(--sans, 'Sora', sans-serif);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.hm-btn-hero-ghost:hover {
  border-color: #6AA59C;
  color: #6AA59C;
}

/* Social proof */
.hm-social-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  animation: hm-fade-up 0.6s 0.4s ease both;
}

.hm-proof-avatars { display: flex; }

.hm-proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0b1120;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  margin-left: -9px;
}
.hm-proof-avatar:first-child { margin-left: 0; }

.hm-av-teal   { background: linear-gradient(135deg, #6AA59C, #4B7F76); }
.hm-av-orange { background: linear-gradient(135deg, #E8935A, #c27340); }
.hm-av-blue   { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.hm-av-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }

.hm-proof-text {
  font-size: 0.82rem;
  color: #6b7f9a;
}
.hm-proof-divider {
  width: 1px;
  height: 22px;
  background: rgba(30, 45, 69, 1);
}
.hm-proof-stat-val {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 1rem;
  font-weight: 700;
  color: #6AA59C;
}
.hm-proof-stat-label { font-size: 0.68rem; color: #6b7f9a; }

/* ============================================================
   DEMO CARD
   ============================================================ */
.hm-demo-section {
  padding: 0 48px 140px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hm-demo-wrap {
  width: 100%;
  max-width: 880px;
  animation: hm-fade-up 0.8s 0.5s ease both;
}

.hm-demo-card {
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 48px 96px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(106, 165, 156, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hm-demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: rgba(10, 16, 30, 0.8);
  border-bottom: 1px solid rgba(30, 45, 69, 1);
}

.hm-demo-dots { display: flex; gap: 7px; }

.hm-demo-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.hm-dot-red    { background: #ef4444; }
.hm-dot-yellow { background: #f59e0b; }
.hm-dot-green  { background: #22c55e; }

.hm-demo-title-bar {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 0.72rem;
  color: #6b7f9a;
}

.hm-demo-badge-bar {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 6px;
  background: rgba(106, 165, 156, 0.12);
  border: 1px solid rgba(106, 165, 156, 0.2);
  color: #6AA59C;
}

.hm-demo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hm-demo-left {
  padding: 28px;
  border-right: 1px solid rgba(30, 45, 69, 1);
}
.hm-demo-right { padding: 28px; }

.hm-demo-q-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7f9a;
  margin-bottom: 12px;
}
.hm-demo-q-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 14px;
  color: #e8ecf2;
}
.hm-demo-q-hint {
  font-size: 0.82rem;
  color: #6b7f9a;
  line-height: 1.65;
  margin-bottom: 24px;
}
.hm-demo-q-hint code {
  font-family: var(--mono, 'Space Mono', monospace);
  background: rgba(106, 165, 156, 0.1);
  color: #6AA59C;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.72rem;
}
.hm-demo-schema-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7f9a;
  margin-bottom: 10px;
}
.hm-demo-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hm-demo-col {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 0.65rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 6px;
  color: #7dd3fc;
}
.hm-demo-editor-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7f9a;
  margin-bottom: 12px;
}
.hm-demo-code {
  background: #05090f;
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 0.78rem;
  line-height: 1.75;
  color: #c3d9f0;
  margin-bottom: 16px;
}
.hm-kw  { color: #E8935A; }
.hm-str { color: #fde68a; }
.hm-cur {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: #6AA59C;
  animation: hm-blink 1s infinite;
  vertical-align: middle;
}
@keyframes hm-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hm-demo-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-size: 0.82rem;
  color: #6ee7b7;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hm-how-section {
  background: rgba(17, 24, 39, 0.6);
  border-top: 1px solid rgba(30, 45, 69, 1);
  border-bottom: 1px solid rgba(30, 45, 69, 1);
}

.hm-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 80px;
}

.hm-step {
  padding: 56px 44px;
  background: #0b1120;
  transition: background 0.3s;
}
.hm-step:hover { background: rgba(106, 165, 156, 0.03); }
.hm-step + .hm-step { border-left: 1px solid rgba(30, 45, 69, 1); }

.hm-step-num {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(106, 165, 156, 0.1);
  line-height: 1;
  margin-bottom: 28px;
}
.hm-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(106, 165, 156, 0.12);
  border: 1px solid rgba(106, 165, 156, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.hm-step-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #e8ecf2;
  margin-bottom: 14px;
}
.hm-step-desc {
  font-size: 0.9rem;
  color: #6b7f9a;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   FEATURES
   ============================================================ */
.hm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 80px;
}

.hm-feature-card {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 22px;
  padding: 40px 36px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.hm-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6AA59C, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.hm-feature-card:hover {
  border-color: rgba(106, 165, 156, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.hm-feature-card:hover::before { opacity: 1; }

.hm-fc-orange::before { background: linear-gradient(90deg, transparent, #E8935A, transparent); }
.hm-fc-orange:hover   { border-color: rgba(232, 147, 90, 0.3); }

.hm-fc-blue::before { background: linear-gradient(90deg, transparent, #60a5fa, transparent); }
.hm-fc-blue:hover   { border-color: rgba(96, 165, 250, 0.3); }

.hm-feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(106, 165, 156, 0.12);
  border: 1px solid rgba(106, 165, 156, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 26px;
}
.hm-fc-orange .hm-feature-icon { background: rgba(232, 147, 90, 0.1); border-color: rgba(232, 147, 90, 0.2); }
.hm-fc-blue   .hm-feature-icon { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); }

.hm-feature-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #e8ecf2;
  margin-bottom: 14px;
}
.hm-feature-desc {
  font-size: 0.9rem;
  color: #6b7f9a;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   TIMED PRACTICE SPOTLIGHT
   ============================================================ */
.hm-spotlight-section { position: relative; overflow: hidden; }

.hm-spotlight-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 900px 700px at 70% 50%, rgba(106, 165, 156, 0.06), transparent 60%);
}

.hm-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
}

.hm-spotlight-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0 0;
}

.hm-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hm-perk-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(106, 165, 156, 0.12);
  border: 1px solid rgba(106, 165, 156, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.hm-perk-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e8ecf2;
  margin-bottom: 4px;
}
.hm-perk-desc { font-size: 0.85rem; color: #6b7f9a; line-height: 1.6; }

/* Timer demo widget */
.hm-timer-demo {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.hm-timer-demo-top {
  text-align: center;
  margin-bottom: 40px;
}
.hm-timer-big {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 5rem;
  font-weight: 700;
  color: #6AA59C;
  line-height: 1;
  text-shadow: 0 0 48px rgba(106, 165, 156, 0.3);
  letter-spacing: 0.05em;
}
.hm-timer-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7f9a;
  margin-top: 10px;
}

.hm-timer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.hm-t-stat {
  text-align: center;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 12px;
}
.hm-t-stat-val {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.hm-t-stat-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7f9a;
}
.hm-green  { color: #10b981 !important; }
.hm-orange { color: #E8935A !important; }
.hm-brand  { color: #6AA59C !important; }

.hm-timer-progress {
  height: 7px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}
.hm-timer-fill {
  height: 100%;
  background: linear-gradient(90deg, #6AA59C, #4B7F76);
  border-radius: 4px;
  width: 68%;
  animation: hm-fill-pulse 2s ease-in-out infinite alternate;
}
@keyframes hm-fill-pulse { from { width: 68%; } to { width: 73%; } }

/* ============================================================
   LIVE CLASSES
   ============================================================ */
.hm-live-section {
  background: rgba(17, 24, 39, 0.6);
  border-top: 1px solid rgba(30, 45, 69, 1);
  border-bottom: 1px solid rgba(30, 45, 69, 1);
}

.hm-live-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.hm-live-badge-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hm-live-dot-big {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: hm-blink-dot 1.5s infinite;
}
@keyframes hm-blink-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hm-live-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 340px;
}

.hm-live-card {
  background: rgba(22, 32, 50, 0.8);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s;
}
.hm-live-card:hover { border-color: rgba(106, 165, 156, 0.3); }

.hm-live-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hm-live-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e8ecf2;
  margin-bottom: 5px;
}
.hm-live-card-meta { font-size: 0.74rem; color: #6b7f9a; }

.hm-live-card-badge {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  flex-shrink: 0;
}
.hm-badge-today  { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #22c55e; }
.hm-badge-soon   { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.25); color: #60a5fa; }
.hm-badge-next   { background: rgba(148,163,184,0.07); border: 1px solid rgba(148,163,184,0.15); color: #6b7f9a; }

/* ============================================================
   STATS ROW
   ============================================================ */
.hm-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 24px;
  overflow: hidden;
}
.hm-stat-tile {
  padding: 60px 40px;
  text-align: center;
  background: rgba(17, 24, 39, 0.8);
  transition: background 0.2s;
}
.hm-stat-tile + .hm-stat-tile { border-left: 1px solid rgba(30, 45, 69, 1); }
.hm-stat-tile:hover { background: rgba(106, 165, 156, 0.04); }
.hm-stat-tile-val {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 3.4rem;
  font-weight: 700;
  color: #6AA59C;
  line-height: 1;
  margin-bottom: 14px;
}
.hm-stat-tile-label { font-size: 0.85rem; color: #6b7f9a; font-weight: 500; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.hm-cta-section {
  text-align: center;
  padding: 180px 48px;
  position: relative;
  overflow: hidden;
}
.hm-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 700px 500px at 50% 50%, rgba(106, 165, 156, 0.08), transparent 60%);
}
.hm-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 165, 156, 0.12);
  border: 1px solid rgba(106, 165, 156, 0.25);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6AA59C;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 36px;
  position: relative;
}
.hm-cta-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #e8ecf2;
  margin-bottom: 28px;
  white-space: pre-line;
  position: relative;
}
.hm-cta-sub {
  font-size: 1.15rem;
  color: #6b7f9a;
  max-width: 500px;
  margin: 0 auto 56px;
  line-height: 1.75;
  position: relative;
}
.hm-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   ANIMATION
   ============================================================ */
@keyframes hm-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hm-eyebrow {
  animation: hm-fade-up 0.6s ease both;
}

/* ============================================================
   MOBILE ≤900px
   ============================================================ */
@media (max-width: 900px) {
  .hm-page section { padding: 90px 24px; }

  .hm-hero { padding: 110px 24px 70px; }
  .hm-hero-headline { font-size: 2.8rem; }

  .hm-demo-section { padding: 0 24px 100px; }
  .hm-demo-body { grid-template-columns: 1fr; }
  .hm-demo-left { border-right: none; border-bottom: 1px solid rgba(30, 45, 69, 1); }

  .hm-steps-grid { grid-template-columns: 1fr; }
  .hm-step + .hm-step { border-left: none; border-top: 1px solid rgba(30, 45, 69, 1); }

  .hm-features-grid { grid-template-columns: 1fr; }

  .hm-spotlight-grid { grid-template-columns: 1fr; gap: 48px; }

  .hm-live-inner { flex-direction: column; gap: 48px; }
  .hm-live-cards { min-width: 0; width: 100%; }

  .hm-stats-row { grid-template-columns: repeat(2, 1fr); }
  .hm-stat-tile:nth-child(3) { border-left: none; border-top: 1px solid rgba(30, 45, 69, 1); }
  .hm-stat-tile:nth-child(4) { border-top: 1px solid rgba(30, 45, 69, 1); }

  .hm-cta-section { padding: 110px 24px; }
}