/* ==========================================================================
   Home page — content below hero (hm- prefix)
   Editorial glass + bento layout, scroll reveals, marquee testimonials
   ========================================================================== */

.page-home main {
  padding-top: 0;
}

.hm {
  --hm-font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --hm-serif: 'Instrument Serif', Georgia, serif;
  --hm-accent: #ff9900;
  --hm-accent-2: #ff7700;
  --hm-accent-soft: rgba(255, 153, 0, 0.14);
  --hm-accent-glow: rgba(255, 153, 0, 0.38);
  --hm-violet: rgba(139, 92, 246, 0.45);
  --hm-cyan: rgba(34, 211, 238, 0.35);
  --hm-bg: #050508;
  --hm-bg-elevated: #0a0a0f;
  --hm-bg-muted: #0f0f16;
  --hm-surface: rgba(255, 255, 255, 0.035);
  --hm-surface-hover: rgba(255, 255, 255, 0.055);
  --hm-border: rgba(255, 255, 255, 0.08);
  --hm-border-strong: rgba(255, 255, 255, 0.14);
  --hm-text: #f1f5f9;
  --hm-text-muted: #94a3b8;
  --hm-radius: 22px;
  --hm-radius-sm: 14px;
  --hm-max: 1180px;
  --hm-ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--hm-font);
  background: var(--hm-bg);
  color: var(--hm-text);
  overflow-x: clip;
  position: relative;
}

[data-theme="light"] .hm {
  --hm-bg: #fafbfc;
  --hm-bg-elevated: #ffffff;
  --hm-bg-muted: #f1f5f9;
  --hm-surface: rgba(0, 0, 0, 0.03);
  --hm-surface-hover: rgba(0, 0, 0, 0.05);
  --hm-border: rgba(0, 0, 0, 0.08);
  --hm-border-strong: rgba(0, 0, 0, 0.12);
  --hm-text: #0f172a;
  --hm-text-muted: #64748b;
  --hm-accent-soft: rgba(255, 153, 0, 0.12);
}

/* Bridge from hero */
.hm-bridge {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 153, 0, 0.35) 20%,
    rgba(139, 92, 246, 0.25) 50%,
    rgba(255, 153, 0, 0.35) 80%,
    transparent
  );
  opacity: 0.9;
}

.hm-wrap {
  width: min(var(--hm-max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Reveal system ——— */
.hm-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--hm-ease), transform 0.7s var(--hm-ease);
  transition-delay: var(--hm-delay, 0ms);
}

.hm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hm-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hm-marquee-track,
  .hm-aurora span,
  .hm-orbit-ring {
    animation: none !important;
  }
}

/* ——— Typography ——— */
.hm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hm-accent);
  background: var(--hm-accent-soft);
  border: 1px solid rgba(255, 153, 0, 0.28);
}

.hm-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hm-accent);
  box-shadow: 0 0 10px var(--hm-accent-glow);
  animation: hm-pulse-dot 2.4s ease-in-out infinite;
}

@keyframes hm-pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

.hm-title {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--hm-text);
  margin: 0 0 0.85rem;
}

.hm-title em {
  font-family: var(--hm-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--hm-accent);
}

.hm-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--hm-text-muted);
  margin: 0;
  max-width: 58ch;
}

.hm-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hm-head--center {
  text-align: center;
}

.hm-head--center .hm-lead {
  margin-inline: auto;
}

/* ——— Sections ——— */
.hm-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.hm-section--alt {
  background: var(--hm-bg-muted);
}

.hm-section-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 10% 20%, rgba(255, 153, 0, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 80%, rgba(139, 92, 246, 0.06), transparent 50%);
}

[data-theme="light"] .hm-section-mesh {
  background:
    radial-gradient(ellipse 70% 55% at 10% 20%, rgba(255, 153, 0, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 80%, rgba(99, 102, 241, 0.06), transparent 50%);
}

/* ——— Features (pillar grid) ——— */
.hm-section--pillars {
  background: var(--hm-bg);
}

.hm-title--pillars {
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.hm-word-cycle {
  display: inline-block;
  font-family: var(--hm-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--hm-accent);
  min-width: 6.5ch;
  transition: opacity 0.3s var(--hm-ease);
}

.hm-word-cycle.is-swapping {
  opacity: 0;
}

.hm-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hm-pillar {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 1.35rem 1.25rem;
  border-radius: var(--hm-radius-sm);
  background: var(--hm-bg-elevated);
  border: 1px solid var(--hm-border);
  border-top: 2px solid rgba(255, 153, 0, 0.35);
  transition: border-color 0.25s ease, transform 0.3s var(--hm-ease), box-shadow 0.3s ease;
}

.hm-pillar:hover {
  border-color: rgba(255, 153, 0, 0.3);
  border-top-color: var(--hm-accent);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

[data-theme="light"] .hm-pillar {
  background: #fff;
}

.hm-pillar--highlight {
  background: linear-gradient(160deg, rgba(255, 153, 0, 0.07), var(--hm-bg-elevated) 55%);
  border-top-color: var(--hm-accent);
}

[data-theme="light"] .hm-pillar--highlight {
  background: linear-gradient(160deg, rgba(255, 153, 0, 0.09), #fff 55%);
}

.hm-pillar-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.hm-pillar-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  color: var(--hm-accent);
  background: var(--hm-accent-soft);
  border: 1px solid rgba(255, 153, 0, 0.22);
}

.hm-pillar-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--hm-text-muted);
  opacity: 0.55;
  padding-top: 0.2rem;
}

.hm-pillar h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hm-text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hm-pillar p {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--hm-text-muted);
  margin: 0 0 1rem;
}

.hm-pillar-meta {
  display: block;
  padding-top: 0.85rem;
  border-top: 1px solid var(--hm-border);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--hm-accent);
}

/* ——— Platform quick links ——— */
.hm-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hm-platform-link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--hm-radius-sm);
  text-decoration: none;
  color: var(--hm-text);
  background: var(--hm-bg-elevated);
  border: 1px solid var(--hm-border);
  overflow: hidden;
  transition: transform 0.35s var(--hm-ease), border-color 0.3s ease, box-shadow 0.35s ease;
}

.hm-platform-link::before {
  content: '';
  position: absolute;
  inset: auto -30% -60% -30%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hm-platform-link:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 0, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  color: var(--hm-text);
}

.hm-platform-link:hover::before {
  opacity: 1;
}

.hm-platform-link i {
  font-size: 1.4rem;
  color: var(--hm-accent);
}

.hm-platform-link strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hm-platform-link span {
  font-size: 0.8125rem;
  color: var(--hm-text-muted);
  line-height: 1.45;
}

.hm-platform-arrow {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hm-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.25s ease;
}

.hm-platform-link:hover .hm-platform-arrow {
  gap: 0.55rem;
}

/* ——— Testimonials marquee ——— */
.hm-voices {
  overflow: hidden;
}

.hm-voices .hm-wrap {
  padding-right: 90px;
}

.hm-marquee {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: 0.5rem;
}

.hm-marquee-row {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.hm-marquee-track {
  display: flex;
  gap: 1.15rem;
  width: max-content;
  animation: hm-marquee-l 55s linear infinite;
}

.hm-marquee-track.is-paused {
  animation-play-state: paused;
}

.hm-marquee-track--reverse {
  animation-name: hm-marquee-r;
  animation-duration: 62s;
}

.hm-marquee-row:hover .hm-marquee-track {
  animation-play-state: paused;
}

@keyframes hm-marquee-l {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes hm-marquee-r {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.hm-voice-card {
  flex: 0 0 min(380px, 82vw);
  padding: 1.65rem 1.5rem;
  border-radius: var(--hm-radius);
  background: var(--hm-bg-elevated);
  border: 1px solid var(--hm-border);
  position: relative;
  transition: transform 0.4s var(--hm-ease), border-color 0.3s ease, box-shadow 0.4s ease;
}

.hm-voice-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(255, 153, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hm-voice-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-family: var(--hm-serif);
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 153, 0, 0.12);
  pointer-events: none;
}

.hm-voice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hm-voice-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
  background: linear-gradient(135deg, var(--hm-accent), var(--hm-accent-2));
  box-shadow: 0 4px 14px rgba(255, 153, 0, 0.35);
}

.hm-voice-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--hm-accent);
  font-size: 0.9rem;
}

.hm-voice-quote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--hm-text);
  margin: 0 0 1.15rem;
}

.hm-voice-footer {
  padding-top: 0.9rem;
  border-top: 1px solid var(--hm-border);
}

.hm-voice-name {
  font-weight: 700;
  font-size: 0.9375rem;
  margin: 0 0 0.2rem;
  color: var(--hm-text);
}

.hm-voice-meta {
  font-size: 0.78rem;
  color: var(--hm-text-muted);
  margin: 0;
}

/* ——— Journey timeline ——— */
.hm-journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
}

.hm-journey-line {
  position: absolute;
  top: 1.15rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--hm-border);
  border-radius: 2px;
  overflow: hidden;
}

.hm-journey-line-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--hm-accent), var(--hm-accent-2));
  border-radius: 2px;
  transition: width 1.2s var(--hm-ease);
  box-shadow: 0 0 12px var(--hm-accent-glow);
}

.hm-journey-step {
  position: relative;
  text-align: center;
  padding: 0 0.5rem;
}

.hm-journey-node {
  width: 2.3rem;
  height: 2.3rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--hm-accent);
  background: var(--hm-bg-elevated);
  border: 2px solid rgba(255, 153, 0, 0.4);
  box-shadow: 0 0 0 6px var(--hm-accent-soft);
  transition: transform 0.4s var(--hm-ease), box-shadow 0.4s ease;
}

.hm-journey-step.is-active .hm-journey-node {
  transform: scale(1.12);
  box-shadow: 0 0 0 8px var(--hm-accent-soft), 0 8px 24px rgba(255, 153, 0, 0.25);
}

.hm-journey-card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--hm-radius-sm);
  background: var(--hm-surface);
  border: 1px solid var(--hm-border);
  text-align: left;
  transition: border-color 0.3s ease, transform 0.35s var(--hm-ease);
}

.hm-journey-step.is-active .hm-journey-card {
  border-color: rgba(255, 153, 0, 0.28);
  transform: translateY(-4px);
}

.hm-journey-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: var(--hm-text);
}

.hm-journey-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--hm-text-muted);
  margin: 0;
}

/* ——— AI section split ——— */
.hm-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hm-ai-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hm-orbit {
  position: relative;
  width: min(320px, 80vw);
  aspect-ratio: 1;
}

.hm-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 153, 0, 0.25);
  animation: hm-orbit-spin 24s linear infinite;
}

.hm-orbit-ring--inner {
  inset: 18%;
  border-color: rgba(139, 92, 246, 0.3);
  animation-duration: 18s;
  animation-direction: reverse;
}

.hm-orbit-core {
  position: absolute;
  inset: 32%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--hm-accent);
  background: radial-gradient(circle at 30% 30%, rgba(255, 153, 0, 0.25), rgba(15, 15, 20, 0.9));
  border: 1px solid rgba(255, 153, 0, 0.35);
  box-shadow: 0 0 60px rgba(255, 153, 0, 0.2), inset 0 0 30px rgba(255, 153, 0, 0.08);
  animation: hm-orbit-pulse 4s ease-in-out infinite;
}

[data-theme="light"] .hm-orbit-core {
  background: radial-gradient(circle at 30% 30%, rgba(255, 153, 0, 0.2), #fff);
}

.hm-orbit-chip {
  position: absolute;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--hm-text);
  background: var(--hm-bg-elevated);
  border: 1px solid var(--hm-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.hm-orbit-chip--1 { top: 8%; left: 50%; transform: translateX(-50%); }
.hm-orbit-chip--2 { bottom: 12%; left: 0; }
.hm-orbit-chip--3 { bottom: 18%; right: 0; }

@keyframes hm-orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes hm-orbit-pulse {
  0%, 100% { box-shadow: 0 0 60px rgba(255, 153, 0, 0.2), inset 0 0 30px rgba(255, 153, 0, 0.08); }
  50% { box-shadow: 0 0 80px rgba(255, 153, 0, 0.35), inset 0 0 40px rgba(255, 153, 0, 0.12); }
}

.hm-ai-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hm-ai-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--hm-radius-sm);
  background: var(--hm-surface);
  border: 1px solid var(--hm-border);
  transition: border-color 0.3s ease, transform 0.35s var(--hm-ease);
}

.hm-ai-item:hover {
  border-color: rgba(255, 153, 0, 0.28);
  transform: translateX(6px);
}

.hm-ai-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.1rem;
  color: var(--hm-accent);
  background: var(--hm-accent-soft);
}

.hm-ai-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--hm-text);
}

.hm-ai-item p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--hm-text-muted);
  margin: 0;
}

/* ——— Stats ——— */
.hm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.hm-stat {
  padding: 1.35rem 1.25rem;
  border-radius: var(--hm-radius-sm);
  text-align: center;
  background: var(--hm-bg-elevated);
  border: 1px solid var(--hm-border);
  transition: transform 0.35s var(--hm-ease), border-color 0.3s ease;
}

.hm-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 153, 0, 0.25);
}

.hm-stat-value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--hm-text);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.hm-stat-value .hm-accent {
  color: var(--hm-accent);
}

.hm-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hm-text-muted);
}

/* ——— CTA ——— */
.hm-section--cta {
  padding-bottom: clamp(5rem, 10vw, 7rem);
}

.hm-cta-shell {
  position: relative;
  border-radius: calc(var(--hm-radius) + 4px);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--hm-border);
  background: var(--hm-bg-elevated);
  overflow: hidden;
}

.hm-aurora {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  opacity: 0.55;
}

.hm-aurora span {
  position: absolute;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  opacity: 0.4;
  animation: hm-aurora-drift 14s ease-in-out infinite alternate;
}

.hm-aurora span:nth-child(1) {
  top: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.35), transparent 70%);
}

.hm-aurora span:nth-child(2) {
  bottom: 0;
  right: 10%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.28), transparent 70%);
  animation-delay: -5s;
}

.hm-aurora span:nth-child(3) {
  top: 40%;
  right: 35%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 70%);
  animation-delay: -9s;
}

@keyframes hm-aurora-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8%, -6%) scale(1.15); }
}

.hm-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 2rem;
  align-items: center;
}

.hm-cta-title {
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  color: var(--hm-text);
}

.hm-cta-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--hm-text-muted);
  margin: 0 0 1.25rem;
}

.hm-cta-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.hm-cta-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: var(--hm-text-muted);
}

.hm-cta-perks i {
  color: var(--hm-accent);
  font-size: 0.95rem;
}

.hm-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
}

.hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-family: var(--hm-font);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s var(--hm-ease), box-shadow 0.25s ease, background 0.25s ease;
}

.hm-btn:focus-visible {
  outline: 2px solid var(--hm-accent);
  outline-offset: 3px;
}

.hm-btn-primary {
  background: linear-gradient(135deg, var(--hm-accent), var(--hm-accent-2));
  color: #fff;
  box-shadow: 0 10px 32px rgba(255, 153, 0, 0.35);
}

.hm-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 153, 0, 0.45);
}

.hm-btn-ghost {
  background: var(--hm-surface);
  color: var(--hm-text);
  border-color: var(--hm-border);
}

.hm-btn-ghost:hover {
  color: var(--hm-text);
  border-color: var(--hm-border-strong);
  transform: translateY(-2px);
}

[data-theme="light"] .hm-btn-primary {
  color: #fff;
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .hm-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hm-platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hm-ai-grid {
    grid-template-columns: 1fr;
  }

  .hm-ai-visual {
    min-height: 300px;
    order: -1;
  }
}

@media (max-width: 900px) {
  .hm-journey-track {
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: 1.25rem;
  }

  .hm-journey-line {
    display: none;
  }

  .hm-journey-step {
    text-align: left;
  }

  .hm-journey-node {
    margin: 0 0 1rem;
  }

  .hm-cta-grid {
    grid-template-columns: 1fr;
  }

  .hm-cta-actions {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .hm-wrap {
    width: min(var(--hm-max), calc(100% - 2rem));
  }

  .hm-voices .hm-wrap {
    padding-right: 1rem;
  }

  .hm-pillar-grid {
    grid-template-columns: 1fr;
  }

  .hm-platform-grid {
    grid-template-columns: 1fr;
  }

  .hm-stats {
    grid-template-columns: 1fr;
  }

  .hm-voice-card {
    flex: 0 0 min(300px, 88vw);
  }
}

@media (max-width: 480px) {
  .hm-cta-shell {
    padding: 1.5rem 1.25rem;
  }

  .hm-btn {
    width: 100%;
  }
}
