.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 86vh;
  padding: 72px 56px 84px;
  gap: 56px;
  align-items: start;
  position: relative;
  background: transparent;
}

.hero-bg-circle {
  display: none;
}

.hero-bg-line {
  display: none;
}

/* ─── Hero Left ──────────────────────────────────────────── */
.hero-left {
  position: relative;
  z-index: 1;
  padding: 24px 0;
  min-width: 0;
}

.hero::before {
  display: none;
}



.hero-logo {
  position: absolute;
  top: 80px;
  left: 120px;
  height: 480px;
  width: auto;
  display: none;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.5s ease 0.05s forwards;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.25s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
}

/* ─── Hero Focus Cards (Glassmorphism) ──────────────────── */
.hero-focus-cards {
  display: flex;
  gap: 16px;
  margin: 24px 0 28px 0;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.15s forwards;
}

.hero-focus-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.95);
  border-left: 3px solid var(--emerald);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 4px 24px rgba(15,23,42,0.08);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
}

.hero-focus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(15,23,42,0.15);
  background: rgba(255,255,255,0.85);
}

.hero-focus-card .focus-icon {
  width: 28px;
  height: 28px;
  margin: 0;
  flex-shrink: 0;
  color: var(--navy);
}

.hero-focus-card .focus-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-focus-card .focus-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.hero-focus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-accent), transparent);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity var(--transition);
}

.hero-focus-card:hover::before {
  opacity: 1;
}

.hero-h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 24px;
  color: var(--navy);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

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

.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 34px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

/* ─── Hero Right (stats) ─────────────────────────────────── */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  min-width: 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}

/* ─── Stat cards ─────────────────────────────────────────── */
.growth-card {
  background: transparent;
  border-radius: 0;
  color: var(--ink);
  padding: 20px 0 12px;
  overflow: visible;
  position: relative;
  border: none;
  border-top: 1px solid rgba(15,23,42,0.06);
}

.growth-card::before {
  display: none;
}

.growth-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.growth-kicker {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.growth-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.growth-badge {
  background: rgba(16,185,129,0.08);
  color: var(--emerald, #10b981);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: none;
  letter-spacing: -0.01em;
  border: 1px solid rgba(16,185,129,0.12);
}

.growth-chart {
  height: 130px;
  position: relative;
  z-index: 1;
  margin: 8px 0 18px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.growth-grid {
  display: none;
}

.growth-chart svg {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.growth-area {
  fill: rgba(37,99,235,0.05);
}

.growth-line {
  fill: none;
  stroke: var(--brand);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(37,99,235,0.18));
}

.growth-dot {
  fill: var(--brand);
  stroke: var(--white);
  stroke-width: 2;
  filter: drop-shadow(0 0 3px rgba(37,99,235,0.3));
}

@keyframes pulse-dot {
  0%, 100% { transform-origin: center; opacity: 1; }
  50% { opacity: 0.65; }
}

.growth-channels {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.channel-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0;
}

.channel-track {
  height: 3px;
  background: rgba(15,23,42,0.06);
  border-radius: 999px;
  overflow: hidden;
}

.channel-track i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
  opacity: 0.55;
  box-shadow: none;
}

.stat-card {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(15,23,42,0.06);
  border-radius: 0;
  padding: 22px 0 18px;
  transition: opacity 0.25s ease;
  position: relative;
  overflow: visible;
}

.stat-card::after {
  display: none;
}

.stat-card:hover {
  opacity: 0.88;
}

.stat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.stat-num {
  font-size: 48px;
  font-weight: 600;
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.stat-num em {
  font-style: normal;
  color: var(--brand);
  opacity: 0.7;
}

.stat-label {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.5;
  max-width: 220px;
  text-align: right;
  letter-spacing: 0;
}

.stat-bar {
  display: block;
  height: 2px;
  background: rgba(15,23,42,0.05);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 14px;
}

.stat-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.6;
  width: 0;
  animation: barFill 1.4s cubic-bezier(.4,0,.2,1) forwards;
  box-shadow: none;
}
