/* ================================================================
   PAGE BASE — Cinematic shared styles for all static pages
   Design system extracted from quem-somos.html
   ================================================================ */

/* ---------- Override legacy body padding (navbar is fixed) ---------- */
body { padding-top: 0 !important; }

/* ---------- Reset legacy section classes ---------- */
.hero, .main, .card, .note { all: unset; display: block; }

/* ================================================================
   HERO — Full Viewport, Cinematic
   ================================================================ */
.hs-hero {
  position: relative;
  min-height: 72svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #10145B;
  padding: clamp(130px, 18vw, 190px) 0 clamp(72px, 10vw, 120px);
}
.hs-hero--tall { min-height: 100svh; }

/* Aurora background */
.hs-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hs-aurora::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 25%, rgba(223, 154, 52,0.22), transparent 58%),
    radial-gradient(ellipse 70% 55% at 85% 80%, rgba(33, 74, 255,0.26), transparent 55%),
    radial-gradient(ellipse 60% 50% at 60% 50%, rgba(33, 74, 255,0.14), transparent 60%);
  animation: hsAuroraBreath 14s ease-in-out infinite alternate;
}
.hs-aurora::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(223, 154, 52,0.09) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: hsDotsDrift 28s linear infinite;
}
@keyframes hsAuroraBreath {
  0%   { opacity: 1;    transform: scale(1)    rotate(0deg); }
  50%  { opacity: 0.75; transform: scale(1.06) rotate(1.5deg); }
  100% { opacity: 1;    transform: scale(0.96) rotate(-1deg); }
}
@keyframes hsDotsDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(44px, 44px); }
}

/* Floating orbs */
.hs-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}
.hs-orb-1 {
  width: clamp(300px,44vw,580px); height: clamp(300px,44vw,580px);
  background: radial-gradient(circle, rgba(223, 154, 52,0.28), transparent 68%);
  top: -12%; left: -8%;
  animation: hsOrbDrift 18s ease-in-out infinite;
}
.hs-orb-2 {
  width: clamp(260px,36vw,480px); height: clamp(260px,36vw,480px);
  background: radial-gradient(circle, rgba(33, 74, 255,0.3), transparent 68%);
  bottom: -10%; right: -6%;
  animation: hsOrbDrift 22s ease-in-out infinite reverse;
}
.hs-orb-3 {
  width: clamp(180px,26vw,340px); height: clamp(180px,26vw,340px);
  background: radial-gradient(circle, rgba(33, 74, 255,0.22), transparent 68%);
  top: 38%; right: 12%;
  animation: hsOrbDrift 26s ease-in-out infinite 4s;
}
@keyframes hsOrbDrift {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(28px, -22px) scale(1.06); }
  66%      { transform: translate(-18px, 16px) scale(0.96); }
}

/* Hero content */
.hs-hero-content { position: relative; z-index: 2; }

/* Eyebrow */
.hs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(223, 154, 52,0.38);
  background: rgba(223, 154, 52,0.08);
  backdrop-filter: blur(12px);
  color: #DF9A34;
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: hsFadeUp 0.55s cubic-bezier(0.16,1,0.3,1) 0s both;
}
.hs-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #DF9A34;
  animation: hsDotPulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes hsDotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.6); }
}

/* Hero title with word reveal */
.hs-hero-title {
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
.hs-word {
  display: inline-block;
  margin-right: 0.22em;
  opacity: 0;
  transform: translateY(34px) skewY(2deg);
  animation: hsWordReveal 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
.hs-word:nth-child(1) { animation-delay: 0.02s; }
.hs-word:nth-child(2) { animation-delay: 0.08s; }
.hs-word:nth-child(3) { animation-delay: 0.14s; }
.hs-word:nth-child(4) { animation-delay: 0.2s; }
.hs-word:nth-child(5) { animation-delay: 0.26s; }
.hs-gold {
  background: linear-gradient(135deg, #DF9A34 0%, #DF9A34 45%, #DF9A34 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes hsWordReveal {
  to { opacity: 1; transform: translateY(0) skewY(0); }
}

/* Gold rule */
.hs-hero-rule {
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #DF9A34, #DF9A34 60%, transparent);
  border-radius: 999px;
  margin: 22px 0 28px;
  animation: hsRuleExpand 0.6s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}
@keyframes hsRuleExpand { to { width: clamp(120px, 22vw, 260px); } }

.hs-hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(205,222,255,0.82);
  max-width: 54ch;
  line-height: 1.76;
  animation: hsFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

.hs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  animation: hsFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.16s both;
}

@keyframes hsFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll hint */
.hs-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: hsFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hs-scroll-hint-label {
  color: rgba(255,255,255,0.32);
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hs-scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.24);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hs-scroll-wheel {
  width: 3px; height: 7px;
  border-radius: 999px;
  background: #DF9A34;
  animation: hsWheelScroll 2s ease-in-out infinite;
}
@keyframes hsWheelScroll {
  0%,100% { transform: translateY(0); opacity: 1; }
  75%      { transform: translateY(12px); opacity: 0; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.hs-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #DF9A34, #DF9A34);
  color: #10145B;
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 14px 32px rgba(223, 154, 52,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s;
}
.hs-btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(223, 154, 52,0.5), inset 0 1px 0 rgba(255,255,255,0.35);
}
.hs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.26);
  color: rgba(255,255,255,0.88);
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: border-color 0.28s, background 0.28s, transform 0.32s cubic-bezier(0.22,1,0.36,1);
}
.hs-btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

/* ================================================================
   REVEAL UTILITY (Intersection Observer)
   ================================================================ */
.hs-reveal {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--d, 0ms);
}
.hs-reveal.hs-in { opacity: 1; transform: translateY(0); }

/* ================================================================
   SECTION LABEL
   ================================================================ */
.hs-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #DF9A34;
  margin-bottom: 20px;
}
.hs-label::before {
  content: '';
  width: 36px; height: 1.5px;
  background: linear-gradient(90deg, #DF9A34, #DF9A34);
  flex-shrink: 0;
}
.hs-label-light { color: rgba(223, 154, 52,0.75); }
.hs-label-light::before { background: linear-gradient(90deg, rgba(223, 154, 52,0.75), rgba(223, 154, 52,0.5)); }

/* ================================================================
   SECTION: Light (Beige)
   ================================================================ */
.hs-section-light {
  background: #ffffff;
  padding: clamp(72px, 11vw, 136px) 0;
  position: relative;
}
.hs-section-light::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(223, 154, 52,0.28), transparent);
}
.hs-section-title {
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #10145B;
  margin: 0 0 26px;
  letter-spacing: -0.02em;
}
.hs-section-title em {
  font-style: normal;
  background: linear-gradient(135deg, #DF9A34, #DF9A34);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs-section-p {
  color: #10145B;
  font-size: clamp(0.96rem, 1.7vw, 1.08rem);
  line-height: 1.82;
  max-width: 54ch;
  margin-bottom: 20px;
}
.hs-section-p:last-child { margin-bottom: 0; }

/* ================================================================
   SECTION: Dark
   ================================================================ */
.hs-section-dark {
  background: #10145B;
  padding: clamp(80px, 12vw, 150px) 0;
  position: relative;
  overflow: hidden;
}
.hs-section-dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 25% 55%, rgba(223, 154, 52,0.11), transparent 55%),
    radial-gradient(ellipse 50% 50% at 82% 18%, rgba(33, 74, 255,0.14), transparent 52%);
  pointer-events: none;
}
.hs-section-dark-body { position: relative; z-index: 1; display: grid; gap: 40px; }

.hs-dark-title {
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.hs-dark-sub {
  color: rgba(200,220,255,0.58);
  font-size: clamp(0.96rem, 1.6vw, 1.04rem);
  line-height: 1.72;
  max-width: 50ch;
}

/* Blockquote */
.hs-blockquote {
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  max-width: 26ch;
  position: relative;
  padding-left: 28px;
  margin: 0;
}
.hs-blockquote::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #DF9A34, #DF9A34 60%, transparent);
  border-radius: 999px;
}
.hs-blockquote em {
  font-style: normal;
  background: linear-gradient(135deg, #DF9A34, #DF9A34);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs-dark-text {
  color: rgba(200,220,255,0.68);
  font-size: clamp(0.96rem, 1.7vw, 1.08rem);
  line-height: 1.82;
  max-width: 54ch;
  padding-left: 28px;
}

/* ================================================================
   CARDS — Dark premium
   ================================================================ */
.hs-cards { display: grid; gap: 22px; }
.hs-card {
  border-radius: 28px;
  padding: clamp(32px, 4.5vw, 52px);
  position: relative;
  overflow: hidden;
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1), box-shadow 0.42s;
}
.hs-card:hover { transform: translateY(-8px); }
.hs-card--navy {
  background: linear-gradient(145deg, #10145B, #10145B);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 24px 56px rgba(5,14,31,0.35);
}
.hs-card--deep {
  background: linear-gradient(145deg, #10145B, #10145B);
  border: 1px solid rgba(223, 154, 52,0.18);
  box-shadow: 0 24px 56px rgba(5,14,31,0.28);
}
.hs-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 8% 8%, rgba(223, 154, 52,0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.42s;
}
.hs-card:hover::before { opacity: 1; }
.hs-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(223, 154, 52,0.5), transparent);
  opacity: 0;
  transition: opacity 0.42s;
}
.hs-card:hover::after { opacity: 1; }

.hs-card-icon {
  width: 54px; height: 54px;
  border-radius: 18px;
  background: rgba(223, 154, 52,0.1);
  border: 1px solid rgba(223, 154, 52,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  position: relative; z-index: 1;
  color: #DF9A34;
}
.hs-card-icon svg {
  width: 28px; height: 28px;
  stroke: currentColor;
  flex-shrink: 0;
}
.hs-card-tag {
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #DF9A34;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.hs-card-title {
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px;
  position: relative; z-index: 1;
  letter-spacing: -0.01em;
}
.hs-card-text {
  color: rgba(205,222,255,0.72);
  font-size: 0.97rem;
  line-height: 1.78;
  position: relative; z-index: 1;
}
.hs-card-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 12px;
  position: relative; z-index: 1;
}
.hs-card-list li {
  color: rgba(205,222,255,0.76);
  font-size: 0.95rem;
  line-height: 1.65;
  padding-left: 24px;
  position: relative;
}
.hs-card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DF9A34, #DF9A34);
  opacity: 0.7;
}

/* ================================================================
   STATS GRID
   ================================================================ */
.hs-stats {
  background: linear-gradient(160deg, #10145B 0%, #10145B 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 36px) clamp(12px, 2vw, 22px);
}
.hs-stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(223, 154, 52,0.08), transparent 55%);
  pointer-events: none;
}
.hs-stats-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(1320px, 100%);
  margin: 0 auto;
}
.hs-stat-cell {
  padding: clamp(22px, 2.8vw, 34px) clamp(18px, 2.2vw, 30px);
  background: linear-gradient(160deg, rgba(13, 25, 82, 0.92), rgba(10, 20, 70, 0.9));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(2, 8, 27, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}
.hs-stat-cell::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(223, 154, 52,0.12), transparent 58%);
  opacity: 0.65;
  transition: opacity 0.4s;
}
.hs-stat-cell:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 154, 52,0.44);
  background: linear-gradient(160deg, rgba(16, 29, 92, 0.96), rgba(12, 24, 80, 0.93));
  box-shadow: 0 22px 46px rgba(2, 8, 27, 0.36);
}
.hs-stat-cell:hover::before { opacity: 1; }

.hs-stat-num {
  display: block;
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  background: linear-gradient(135deg, #DF9A34, #DF9A34, #DF9A34);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}
.hs-stat-lbl {
  display: block;
  color: rgba(205,222,255,0.68);
  font-size: clamp(0.82rem, 1.4vw, 0.94rem);
  font-weight: 500;
  line-height: 1.45;
  max-width: 30ch;
  text-wrap: pretty;
}
.hs-stat-tag {
  display: inline-block;
  margin-top: 12px;
  color: rgba(223, 154, 52,0.6);
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.hs-cta {
  background: linear-gradient(160deg, #10145B 0%, #10145B 100%);
  padding: clamp(72px, 11vw, 136px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hs-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% -10%, rgba(223, 154, 52,0.16), transparent 52%);
  pointer-events: none;
}
.hs-cta-body {
  position: relative; z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.hs-cta-title {
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hs-cta-title em {
  font-style: normal;
  background: linear-gradient(135deg, #DF9A34, #DF9A34);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs-cta-sub {
  color: rgba(205,222,255,0.68);
  font-size: clamp(0.96rem, 1.7vw, 1.06rem);
  line-height: 1.76;
  margin: 0 auto 38px;
  max-width: 48ch;
}
.hs-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Footer styles moved to navbar.css — injected by navbar.js */

/* ================================================================
   VALUES FLOW — Animated colored pills
   ================================================================ */
.hs-values-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  padding: 0; margin: 0;
  position: relative; z-index: 1;
}
.hs-val {
  padding: 17px 28px;
  border-radius: 999px;
  font-family: 'ITC Avant Garde Gothic Std', 'Avant Garde', 'Century Gothic', Verdana, sans-serif;
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: default;
  transition:
    transform 0.36s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.36s,
    opacity 0.7s cubic-bezier(0.16,1,0.3,1),
    filter 0.36s;
  opacity: 0;
  transform: translateY(36px) scale(0.88);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hs-values-flow.hs-val-in .hs-val { opacity: 1; transform: translateY(0) scale(1); }
.hs-values-flow.hs-val-in .hs-val:nth-child(1) { transition-delay: 0.04s; }
.hs-values-flow.hs-val-in .hs-val:nth-child(2) { transition-delay: 0.11s; }
.hs-values-flow.hs-val-in .hs-val:nth-child(3) { transition-delay: 0.18s; }
.hs-values-flow.hs-val-in .hs-val:nth-child(4) { transition-delay: 0.25s; }
.hs-values-flow.hs-val-in .hs-val:nth-child(5) { transition-delay: 0.32s; }
.hs-values-flow.hs-val-in .hs-val:nth-child(6) { transition-delay: 0.39s; }
.hs-values-flow.hs-val-in .hs-val:nth-child(7) { transition-delay: 0.46s; }
.hs-values-flow.hs-val-in .hs-val:nth-child(8) { transition-delay: 0.53s; }
.hs-val:hover { transform: translateY(-5px) scale(1.06) !important; filter: brightness(1.15); }
.hs-val-icon { font-size: 1.1em; line-height: 1; display: inline-flex; align-items: center; }
.hs-val-icon svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

/* Pill colors */
.hs-val-gold    { background: rgba(223, 154, 52,0.13); border: 1.5px solid rgba(223, 154, 52,0.36); color: #DF9A34; }
.hs-val-gold:hover { box-shadow: 0 14px 32px rgba(223, 154, 52,0.25); }
.hs-val-blue    { background: rgba(33, 74, 255,0.14);   border: 1.5px solid rgba(33, 74, 255,0.32);  color: #214AFF; }
.hs-val-blue:hover { box-shadow: 0 14px 32px rgba(33, 74, 255,0.22); }
.hs-val-green   { background: rgba(33, 74, 255,0.13);  border: 1.5px solid rgba(33, 74, 255,0.32);  color: #214AFF; }
.hs-val-green:hover { box-shadow: 0 14px 32px rgba(33, 74, 255,0.22); }
.hs-val-amber   { background: rgba(223, 154, 52,0.12); border: 1.5px solid rgba(223, 154, 52,0.3);  color: #DF9A34; }
.hs-val-amber:hover { box-shadow: 0 14px 32px rgba(223, 154, 52,0.2); }
.hs-val-purple  { background: rgba(33, 74, 255,0.11); border: 1.5px solid rgba(33, 74, 255,0.3);  color: #214AFF; }
.hs-val-purple:hover { box-shadow: 0 14px 32px rgba(33, 74, 255,0.2); }
.hs-val-red     { background: rgba(223, 154, 52,0.11);   border: 1.5px solid rgba(223, 154, 52,0.28);   color: #DF9A34; }
.hs-val-red:hover { box-shadow: 0 14px 32px rgba(223, 154, 52,0.2); }
.hs-val-yellow  { background: rgba(223, 154, 52,0.09);  border: 1.5px solid rgba(223, 154, 52,0.26);  color: #DF9A34; }
.hs-val-yellow:hover { box-shadow: 0 14px 32px rgba(223, 154, 52,0.18); }
.hs-val-cyan    { background: rgba(33, 74, 255,0.09);  border: 1.5px solid rgba(33, 74, 255,0.26);  color: #214AFF; }
.hs-val-cyan:hover { box-shadow: 0 14px 32px rgba(33, 74, 255,0.18); }

/* ================================================================
   GRID LAYOUTS
   ================================================================ */
.hs-grid-2 { display: grid; gap: clamp(48px, 7vw, 96px); align-items: center; }

/* ================================================================
   GEM GRID (decorative)
   ================================================================ */
.hs-gem-wrap { display: flex; align-items: center; justify-content: center; }
.hs-gem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  transform: rotate(12deg);
}
.hs-gem {
  width: clamp(68px, 9vw, 96px);
  height: clamp(68px, 9vw, 96px);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
  cursor: default;
}
.hs-gem:hover { transform: scale(1.12); }
.hs-gem:nth-child(odd)  { background: linear-gradient(135deg, rgba(16, 20, 91, 0.18), rgba(16, 20, 91, 0.08)); border: 1px solid rgba(223, 154, 52,0.18); }
.hs-gem:nth-child(even) { background: linear-gradient(135deg, rgba(223, 154, 52,0.16), rgba(223, 154, 52,0.08)); border: 1px solid rgba(223, 154, 52,0.38); }
.hs-gem:nth-child(5)    { box-shadow: inset 0 0 24px rgba(223, 154, 52,0.12); }
.hs-gem::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(223, 154, 52,0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}
.hs-gem:hover::after { opacity: 1; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (min-width: 780px) {
  .hs-grid-2      { grid-template-columns: 1fr 1fr; }
  .hs-cards        { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 680px) {
  .hs-stats-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 780px) and (max-width: 1279px) {
  .hs-stat-cell {
    padding: clamp(24px, 2.8vw, 36px) clamp(14px, 2vw, 24px);
  }

  .hs-stat-num {
    font-size: clamp(2rem, 3.6vw, 2.8rem);
  }
}

@media (min-width: 1280px) {
  .hs-stats-inner { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 540px) {
  .hs-hero-title  { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .hs-scroll-hint { display: none; }
  .hs-gem-wrap    { display: none; }
  .hs-word,
  .hs-hero-rule,
  .hs-eyebrow,
  .hs-hero-sub,
  .hs-hero-actions {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .hs-hero-rule {
    width: clamp(120px, 22vw, 260px);
  }
}

/* ================================================================
   PREFERS REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  .hs-aurora::before,
  .hs-aurora::after,
  .hs-orb, .hs-scroll-wheel,
  .hs-hero-rule, .hs-eyebrow,
  .hs-hero-sub, .hs-hero-actions,
  .hs-scroll-hint { animation: none !important; }
  .hs-word         { animation: none !important; opacity: 1; transform: none; }
  .hs-hero-rule    { width: clamp(120px, 22vw, 260px); }
  .hs-eyebrow      { opacity: 1; transform: none; }
  .hs-hero-sub     { opacity: 1; transform: none; }
  .hs-hero-actions { opacity: 1; transform: none; }
  .hs-reveal       { opacity: 1 !important; transform: none !important; }
  .hs-val          { opacity: 1 !important; transform: none !important; }
}
