/* ============================================================
   Home Hero — 2026 Edition
   Standalone styles. Relies only on theme CSS variables.
   ============================================================ */

/* ---------- Keyframes ---------- */
@keyframes hh-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(1.5deg); }
  66%       { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes hh-float-slow {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50%       { transform: translateY(-24px) translateX(8px); }
}
@keyframes hh-float-rev {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(14px) rotate(-2deg); }
}
@keyframes hh-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes hh-spin-rev {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes hh-pulse-glow {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%       { opacity: 0.75; transform: scale(1.12); }
}
@keyframes hh-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes hh-aurora {
  0%   { transform: translate(0%, 0%) rotate(0deg)   scale(1); }
  33%  { transform: translate(4%, -6%) rotate(45deg)  scale(1.08); }
  66%  { transform: translate(-3%, 4%) rotate(-30deg) scale(0.95); }
  100% { transform: translate(0%, 0%) rotate(0deg)   scale(1); }
}
@keyframes hh-type-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes hh-fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hh-scale-in {
  from { opacity: 0; transform: scale(0.82); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes hh-orbit {
  from { transform: rotate(0deg) translateX(var(--orbit-r, 120px)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--orbit-r, 120px)) rotate(-360deg); }
}
@keyframes hh-grid-fade {
  0%,100% { opacity: 0.03; }
  50%      { opacity: 0.07; }
}
@keyframes hh-progress {
  from { width: 0; }
  to   { width: var(--bar-w, 80%); }
}
@keyframes hh-count-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hh-particle-drift {
  0%   { transform: translate(0,0) scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translate(var(--px,40px), var(--py,-80px)) scale(0.4); opacity: 0; }
}

/* ---------- Section shell ---------- */
.home-hero {
  position: relative;
  min-height: 100vh;
  background: #040135;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  isolation: isolate;
}

/* ---------- Aurora / mesh background ---------- */
.hh-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hh-aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: hh-aurora 14s ease-in-out infinite;
}
.hh-aurora__blob--1 {
  width: 700px; height: 700px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(245,130,15,0.22) 0%, transparent 70%);
  animation-duration: 16s;
}
.hh-aurora__blob--2 {
  width: 600px; height: 600px;
  top: 30%; right: -100px;
  background: radial-gradient(circle, rgba(9,4,104,0.55) 0%, rgba(245,130,15,0.12) 60%, transparent 100%);
  animation-duration: 20s;
  animation-delay: -6s;
}
.hh-aurora__blob--3 {
  width: 450px; height: 450px;
  bottom: -80px; left: 35%;
  background: radial-gradient(circle, rgba(255,198,26,0.14) 0%, transparent 70%);
  animation-duration: 18s;
  animation-delay: -10s;
}

/* ---------- Animated grid ---------- */
.hh-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,130,15,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,130,15,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: hh-grid-fade 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Floating particles ---------- */
.hh-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hh-particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--bs-primary);
  animation: hh-particle-drift 6s linear infinite;
}
.hh-particle:nth-child(2)  { --px:-30px; --py:-100px; left:15%; top:70%; animation-delay:-1s; background:var(--bs-secondary); }
.hh-particle:nth-child(3)  { --px: 50px; --py:-120px; left:40%; top:80%; animation-delay:-2.5s; width:3px;height:3px; }
.hh-particle:nth-child(4)  { --px:-60px; --py: -90px; left:70%; top:60%; animation-delay:-4s; background:var(--bs-secondary); }
.hh-particle:nth-child(5)  { --px: 35px; --py:-110px; left:85%; top:75%; animation-delay:-0.8s; width:5px;height:5px; }
.hh-particle:nth-child(6)  { --px:-20px; --py:-130px; left:25%; top:50%; animation-delay:-3.2s; }
.hh-particle:nth-child(7)  { --px: 45px; --py: -80px; left:55%; top:88%; animation-delay:-5s; background:var(--bs-secondary); }
.hh-particle:nth-child(8)  { --px:-50px; --py:-100px; left:10%; top:40%; animation-delay:-1.8s; width:3px;height:3px; }

/* ---------- Layout ---------- */
.hh-content {
  position: relative;
  z-index: 2;
}

/* ---------- Left / text column ---------- */
.hh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(245,130,15,0.12);
  border: 1px solid rgba(245,130,15,0.35);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bs-primary);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  animation: hh-fade-up 0.7s ease both;
  backdrop-filter: blur(6px);
}
.hh-badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bs-primary);
  box-shadow: 0 0 6px var(--bs-primary);
  animation: hh-pulse-glow 2s ease-in-out infinite;
}

.hh-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  animation: hh-fade-up 0.8s 0.1s ease both;
}
.hh-headline__gradient {
  background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hh-shimmer 4s linear infinite;
  display: inline;
}
.hh-typewriter {
  background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hh-shimmer 3s linear infinite;
  display: inline;
}
.hh-cursor {
  display: inline-block;
  color: var(--bs-primary);
  -webkit-text-fill-color: var(--bs-primary);
  font-weight: 300;
  margin-left: 2px;
  animation: hh-type-cursor 0.7s step-end infinite;
}

.hh-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
  animation: hh-fade-up 0.8s 0.2s ease both;
}

/* Lighthouse metric badges */
.hh-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  animation: hh-fade-up 0.8s 0.25s ease both;
}
.hh-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hh-metric__score {
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hh-metric__score--green  { color: #28c840; }
.hh-metric__score--orange { color: var(--bs-secondary); }
.hh-metric__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

/* CTA row */
.hh-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 52px;
  animation: hh-fade-up 0.8s 0.3s ease both;
}
.hh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #e06b00 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(245,130,15,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.hh-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  border-radius: inherit;
}
.hh-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(245,130,15,0.55);
  color: #fff !important;
}
.hh-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  backdrop-filter: blur(6px);
}
.hh-btn-outline:hover {
  border-color: var(--bs-primary);
  background: rgba(245,130,15,0.08);
  color: #fff !important;
}

/* Stats row */
.hh-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  animation: hh-fade-up 0.8s 0.4s ease both;
}
.hh-stat {}
.hh-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
}
.hh-stat__num span {
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hh-stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}
.hh-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* ---------- Right / visual column ---------- */
.hh-visual {
  position: relative;
  height: 560px;
  animation: hh-scale-in 1s 0.2s ease both;
  perspective: 1000px;
}

/* Browser mockup */
.hh-browser {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-10deg) rotateX(4deg);
  transform-style: preserve-3d;
  width: 420px;
  background: rgba(10,8,60,0.85);
  border: 1px solid rgba(245,130,15,0.25);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.08s linear;
  overflow: hidden;
}
.hh-browser__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hh-browser__dots {
  display: flex;
  gap: 6px;
}
.hh-browser__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hh-browser__dot--r { background: #ff5f57; }
.hh-browser__dot--y { background: #febc2e; }
.hh-browser__dot--g { background: #28c840; }
.hh-browser__address {
  flex: 1;
  height: 22px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  overflow: hidden;
  white-space: nowrap;
}
.hh-browser__address i { color: #28c840; font-size: 10px; }
.hh-browser__body {
  padding: 20px;
}

/* Mini website preview inside browser */
.hh-preview-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.hh-preview-logo {
  width: 80px; height: 10px;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
  border-radius: 4px;
}
.hh-preview-links {
  display: flex;
  gap: 12px;
}
.hh-preview-link {
  width: 28px; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}
.hh-preview-hero {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, rgba(245,130,15,0.15) 0%, rgba(9,4,104,0.4) 100%);
  border-radius: 10px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hh-preview-hero::before {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(245,130,15,0.5), transparent 70%);
  border-radius: 50%;
  animation: hh-pulse-glow 2s ease-in-out infinite;
}
.hh-preview-title {
  width: 60%; height: 9px;
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
  margin: 0 auto 6px;
}
.hh-preview-sub {
  width: 40%; height: 6px;
  background: rgba(255,255,255,0.35);
  border-radius: 3px;
  margin: 0 auto;
}
.hh-preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hh-preview-card {
  height: 52px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.hh-preview-bar {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.hh-preview-bar-item {
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
}

/* Progress bars inside browser */
.hh-skill-bars {
  margin-top: 14px;
}
.hh-skill-bar {
  margin-bottom: 8px;
}
.hh-skill-bar__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}
.hh-skill-bar__track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.hh-skill-bar__fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
  width: 0;
  transition: width 1.6s cubic-bezier(0.22,1,0.36,1);
}
.hh-skill-bar__fill.hh-animated { width: var(--bar-w, 80%); }

/* ---------- Floating cards ---------- */
.hh-float-card {
  position: absolute;
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,8,60,0.7);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 3;
  transition: transform 0.08s linear;
}

/* Code snippet card — top-right */
.hh-float-card--code {
  top: 0%;
  right: -30px;
  width: 224px;
  animation: hh-float 5s ease-in-out infinite;
  font-size: 12px;
  font-family: 'Courier New', monospace;
  line-height: 1.7;
}
.hh-code-line { white-space: nowrap; }
.hh-code-line--purple { color: #c084fc; }
.hh-code-line--blue   { color: #60a5fa; }
.hh-code-line--green  { color: #34d399; }
.hh-code-line--yellow { color: #fbbf24; }
.hh-code-line--white  { color: rgba(255,255,255,0.6); }
.hh-code-line--orange { color: var(--bs-primary); }

/* Performance card — mid-left */
.hh-float-card--perf {
  top: 32%;
  left: -20px;
  width: 214px;
  animation: hh-float-rev 6s ease-in-out infinite;
}
.hh-perf-score {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.hh-perf-ring {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: conic-gradient(#28c840 0% 96%, rgba(255,255,255,0.1) 96%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #28c840;
  position: relative;
  flex-shrink: 0;
}
.hh-perf-ring::before {
  content: '';
  position: absolute;
  inset: 4px;
  background: rgba(10,8,60,0.9);
  border-radius: 50%;
}
.hh-perf-ring span { position: relative; z-index: 1; }
.hh-perf-info {}
.hh-perf-title { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 1px; }
.hh-perf-sub   { font-size: 11px; color: rgba(255,255,255,0.45); }
.hh-perf-bars { display: flex; flex-direction: column; gap: 4px; }
.hh-perf-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hh-perf-bar-label { font-size: 10px; color: rgba(255,255,255,0.4); width: 42px; flex-shrink: 0; }
.hh-perf-bar-track { flex: 1; height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.hh-perf-bar-fill  { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary)); }

/* Tech stack card — mid-right */
.hh-float-card--tech {
  top: 52%;
  right: -24px;
  width: 194px;
  animation: hh-float-slow 7s ease-in-out infinite;
}
.hh-tech-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.hh-tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.hh-tech-chip {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid;
}
.hh-tc--react   { color: #61dafb; border-color: rgba(97,218,251,0.3); background: rgba(97,218,251,0.08); }
.hh-tc--wp      { color: #21a1f0; border-color: rgba(33,161,240,0.3); background: rgba(33,161,240,0.08); }
.hh-tc--node    { color: #68a063; border-color: rgba(104,160,99,0.3); background: rgba(104,160,99,0.08); }
.hh-tc--next    { color: #fff;    border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); }
.hh-tc--ts      { color: #3178c6; border-color: rgba(49,120,198,0.3); background: rgba(49,120,198,0.08); }
.hh-tc--php     { color: #8993be; border-color: rgba(137,147,190,0.3); background: rgba(137,147,190,0.08); }

/* Notification toast — top-left */
.hh-float-card--toast {
  top: 6%;
  left: -20px;
  width: 234px;
  animation: hh-float 8s 1s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hh-toast-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hh-toast-text {}
.hh-toast-title { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.hh-toast-sub   { font-size: 11px; color: rgba(255,255,255,0.5); }

/* ---------- Section-wide floating tech icons ---------- */
.hh-tech-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hh-ti {
  position: absolute;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hh-ti__text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
/* Right-half only. Top group ~5 icons, bottom group ~4 icons */
.hh-ti--1 { top:    8%;  right: 44%; color: #61dafb; animation: hh-float      5.0s 0.0s ease-in-out infinite; }
.hh-ti--2 { top:    5%;  right: 7%;  color: #68a063; animation: hh-float-slow 7.0s 0.5s ease-in-out infinite; }
.hh-ti--3 { bottom: 22%; right: 30%; color: #21759b; animation: hh-float-rev  6.0s 1.0s ease-in-out infinite; }
.hh-ti--4 { top:    4%;  right: 24%; color: #f7df1e; animation: hh-float      5.5s 1.5s ease-in-out infinite; }
.hh-ti--5 { bottom: 12%; right: 12%; color: #e44d26; animation: hh-float-slow 6.5s 0.8s ease-in-out infinite; }
.hh-ti--6 { bottom: 7%;  right: 4%;  color: #264de4; animation: hh-float-rev  5.0s 2.0s ease-in-out infinite; }
.hh-ti--7 { bottom: 20%; right: 42%; color: #8993be; animation: hh-float      7.0s 1.2s ease-in-out infinite; }
.hh-ti--8 { top:    10%; right: 33%; color: #512bd4; animation: hh-float-slow 6.0s 0.3s ease-in-out infinite; }
.hh-ti--9 { top:    16%; right: 18%; color: #f34f29; animation: hh-float-rev  5.8s 1.8s ease-in-out infinite; }

/* ASP.NET chip */
.hh-tc--net { color: #7c3aed; border-color: rgba(124,58,237,0.35); background: rgba(124,58,237,0.1); }

/* ---------- Scroll indicator ---------- */
.hh-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 5;
  animation: hh-fade-up 1s 1s ease both;
}
.hh-scroll__mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  position: relative;
}
.hh-scroll__wheel {
  width: 3px; height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: hh-float 1.5s ease-in-out infinite;
}
.hh-scroll__label {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .home-hero { padding: 100px 0 80px; min-height: auto; }
  .hh-visual { height: 420px; margin-top: 48px; }
  .hh-browser { width: 340px; }
  .hh-float-card--code  { right: 0; top: 0; }
  .hh-float-card--toast { left: 0; top: 6%; }
  .hh-float-card--perf  { left: 0; top: 30%; }
  .hh-float-card--tech  { right: 0; top: 50%; }
  /* scale down section-wide icons on tablet */
  .hh-ti { width: 48px; height: 48px; font-size: 22px; }
  .hh-ti--3, .hh-ti--9 { display: none; }
  .hh-scroll { display: none; }
}
@media (max-width: 767px) {
  .hh-visual { height: 360px; }
  .hh-browser { width: 300px; }
  .hh-float-card--code  { display: none; }
  .hh-float-card--toast { display: none; }
  .hh-stats { gap: 20px; }
  .hh-stat-divider { display: none; }
  /* fewer icons on mobile to avoid clutter */
  .hh-ti--3, .hh-ti--4, .hh-ti--7, .hh-ti--8, .hh-ti--9 { display: none; }
  .hh-ti { width: 42px; height: 42px; font-size: 19px; }
  .hh-headline { font-size: clamp(1.9rem, 7vw, 2.8rem); }
}
