/* =====================================================================
   I-D.E.N — Homepage (v9)
   Loaded only by index.html, after style.css
   ===================================================================== */

.hm-wrap { max-width: 1200px; margin: 0 auto; }

/* ── Pulse dot (shared) ── */
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--mint);
  display: inline-block; flex-shrink: 0; position: relative;
  box-shadow: 0 0 10px var(--mint);
}
.pulse-dot::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--mint); animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing { from { transform: scale(.6); opacity: .9; } to { transform: scale(1.8); opacity: 0; } }

/* ── Reveal on scroll ── */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* ═════════════ HERO ═════════════ */
.home-hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 0 0; position: relative; overflow: hidden;
  background-image:
    radial-gradient(ellipse 55% 60% at 78% 35%, rgba(14,122,90,0.55), transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(61,245,184,0.12), transparent 60%);
  background-size: auto;
}
.hh-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hh-inner {
  position: relative; z-index: 2; flex: 1;
  max-width: 1240px; width: 100%; margin: 0 auto; padding: 0 40px 70px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.hh-copy { animation: fadeInUp .9s var(--ease) both; }

.hh-title {
  font-size: clamp(3rem, 7.2vw, 6.4rem);
  font-weight: 700; line-height: 0.98; letter-spacing: -0.045em;
  color: #fff; margin-bottom: 28px;
  display: flex; flex-direction: column;
}
.hh-l1 { display: block; }
.hh-l2 { display: flex; align-items: center; gap: 0.18em; }
.hh-bar {
  color: var(--mint); font-weight: 300; transform: translateY(-0.04em);
  text-shadow: 0 0 22px rgba(61,245,184,0.8);
  animation: caret 1.1s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0.15; } }
.hh-hub {
  background: linear-gradient(100deg, var(--mint) 0%, var(--mint-soft) 40%, #fff 50%, var(--mint-soft) 60%, var(--mint) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: sheen 6s ease-in-out infinite;
}
@keyframes sheen { 0%,100% { background-position: 100% 0; } 50% { background-position: 0% 0; } }

.hh-desc { color: rgba(255,255,255,0.72); font-size: 1.12rem; max-width: 540px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.home-hero .btn-outline { background: rgba(4,26,20,0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }

/* ── Hero visual: glass dashboard ── */
.hh-visual { position: relative; perspective: 1200px; animation: fadeInUp 1s .15s var(--ease) both; }
.hh-panel {
  position: relative;
  background: linear-gradient(160deg, rgba(14,58,45,0.72), rgba(4,26,20,0.82));
  border: 1px solid rgba(61,245,184,0.22); border-radius: 18px;
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), 0 0 60px -20px rgba(61,245,184,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 0 0 16px; transform-style: preserve-3d;
  transition: transform .5s var(--ease);
  animation: hover 7s ease-in-out infinite;
}
@keyframes hover { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.hh-panel-top {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid var(--line-dark);
}
.hh-dots { display: inline-flex; gap: 6px; }
.hh-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); display: block; }
.hh-url { font-size: 0.72rem; color: rgba(166,255,224,0.55); font-family: var(--font-head); letter-spacing: 0.02em; }
.hh-live { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--mint); font-family: var(--font-head); font-weight: 600; }
.hh-kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px 16px 6px; }
.hh-kpi {
  background: rgba(4,26,20,0.55); border: 1px solid var(--line-dark);
  border-radius: 12px; padding: 12px 14px; display: flex; flex-direction: column;
}
.hh-kpi-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.hh-kpi-val { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1.2; font-variant-numeric: tabular-nums; }
.hh-kpi-val.warn { color: #FF8A7A; }
.hh-kpi-sub { font-size: 0.7rem; color: var(--mint); }
.hh-spark { width: 100%; height: 96px; display: block; padding: 0 6px; overflow: visible; }
#sparkLine { filter: drop-shadow(0 0 6px rgba(61,245,184,0.7)); }
#sparkDot { filter: drop-shadow(0 0 8px #3DF5B8); }
.hh-rows { padding: 4px 16px 0; display: grid; gap: 10px; }
.hh-row { display: grid; grid-template-columns: 1fr auto; gap: 6px 10px; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.hh-row b { font-family: var(--font-head); color: var(--mint); font-weight: 600; }
.hh-row b.amber { color: #FFC857; }
.hh-track { grid-column: 1 / -1; height: 4px; border-radius: 4px; background: rgba(61,245,184,0.08); overflow: hidden; }
.hh-fill {
  height: 100%; width: var(--w); border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--mint));
  transform-origin: left; animation: grow 1.6s .6s var(--ease) both;
}
.hh-fill.amber { background: linear-gradient(90deg, #B7791F, #FFC857); }
@keyframes grow { from { transform: scaleX(0); } }
.hh-foot { padding: 12px 16px 0; font-size: 0.68rem; color: rgba(255,255,255,0.3); text-align: right; }

.hh-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 10px;
  background: rgba(4,26,20,0.85); border: 1px solid rgba(61,245,184,0.25);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: 10px 14px; border-radius: 12px; color: #fff;
  font-size: 0.8rem; font-family: var(--font-head); font-weight: 500;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.7); white-space: nowrap;
}
.hh-chip-a { top: -26px; right: -14px; animation: hover 6s 1s ease-in-out infinite; }
.hh-chip-b { bottom: -22px; left: -34px; animation: hover 8s 2s ease-in-out infinite; }
.chip-ring { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--mint); }

/* ── Hero marquee ── */
.hh-marquee {
  position: relative; z-index: 2; overflow: hidden;
  border-top: 1px solid var(--line-dark); padding: 18px 0;
  background: rgba(4,26,20,0.6);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.hh-marquee .strip-track { gap: 28px; align-items: center; }
.hh-marquee .strip-track span { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.mq-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 8px var(--mint); flex-shrink: 0; display: block; }

/* ═════════════ AI MODULES (light) ═════════════ */
.hm-modules {
  padding: 130px 40px 110px; background: #fff; position: relative;
  background-image: radial-gradient(circle at 1px 1px, rgba(14,122,90,0.14) 1px, transparent 0);
  background-size: 26px 26px;
}
.hm-modules::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 40%, #fff 100%);
}
.hm-modules > * { position: relative; }
.hm-head { max-width: 720px; margin-bottom: 56px; }
.hm-head h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 700; line-height: 1.05;
  letter-spacing: -0.035em; color: var(--dark); margin-bottom: 18px;
}
.hm-head p { font-size: 1.12rem; color: var(--text-light); max-width: 600px; }

.hm-console {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0;
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 50px 100px -50px rgba(4,26,20,0.5);
  background: #fff;
}
.hm-tabs { display: flex; flex-direction: column; background: var(--mist); }
.hm-tab {
  position: relative; text-align: left; cursor: pointer;
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 26px 30px; display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-head); color: var(--text); flex: 1;
  transition: background .25s;
}
.hm-tab:last-child { border-bottom: none; }
.hm-tab:hover { background: rgba(14,122,90,0.05); }
.hm-q { font-size: 1.12rem; font-weight: 600; line-height: 1.3; color: var(--dark); transition: color .25s; }
.hm-m { font-size: 0.82rem; color: var(--text-light); font-family: var(--font-body); }
.hm-tab.is-active { background: #fff; }
.hm-tab.is-active .hm-q { color: var(--primary); }
.hm-tab::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--primary); transform: scaleY(0); transition: transform .35s var(--ease);
}
.hm-tab.is-active::before { transform: scaleY(1); }
.hm-progress {
  position: absolute; left: 30px; right: 30px; bottom: 12px; height: 2px;
  background: transparent; overflow: hidden; border-radius: 2px;
}
.hm-progress::after {
  content: ''; position: absolute; inset: 0; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
}
.hm-console.autoplay .hm-tab.is-active .hm-progress { background: rgba(14,122,90,0.12); }
.hm-console.autoplay .hm-tab.is-active .hm-progress::after { animation: prog var(--cycle, 5.5s) linear forwards; }
.hm-console.paused .hm-tab.is-active .hm-progress::after { animation-play-state: paused; }
@keyframes prog { to { transform: scaleX(1); } }

.hm-screen {
  position: relative; overflow: hidden; color: #fff; min-height: 460px;
  padding: 38px 40px 30px;
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(14,122,90,0.55), transparent 60%),
    linear-gradient(rgba(61,245,184,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,245,184,0.05) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}
.hm-scan {
  position: absolute; left: 0; right: 0; height: 120px; top: -120px; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(61,245,184,0.12), transparent);
}
.hm-screen.scanning .hm-scan { animation: scan 1s var(--ease); }
@keyframes scan { to { top: 100%; } }

.hm-panel { display: none; }
.hm-panel.is-active { display: block; animation: panelIn .55s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }
.hm-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: rgba(255,255,255,0.85);
  padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); margin-bottom: 26px;
}
.st { font-style: normal; font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.st.live { color: var(--mint); background: rgba(61,245,184,0.1); border: 1px solid rgba(61,245,184,0.3); }
.st.concept { color: #FFC857; background: rgba(255,200,87,0.08); border: 1px solid rgba(255,200,87,0.3); }
.hm-metric { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hm-metric b {
  font-family: var(--font-head); font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 700;
  line-height: 1; letter-spacing: -0.03em; color: var(--mint);
  text-shadow: 0 0 30px rgba(61,245,184,0.45);
}
.hm-metric b.amber { color: #FFC857; text-shadow: 0 0 30px rgba(255,200,87,0.35); }
.hm-metric b.red { color: #FF8A7A; text-shadow: 0 0 30px rgba(255,138,122,0.35); }
.hm-metric span { color: rgba(255,255,255,0.65); font-size: 0.98rem; max-width: 240px; line-height: 1.4; }
.hm-bars {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; align-items: end;
  height: 110px; margin-bottom: 26px;
  padding: 12px; border: 1px solid var(--line-dark); border-radius: 12px; background: rgba(4,26,20,0.5);
}
.hm-bars i {
  display: block; border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--mint), rgba(14,122,90,0.6));
  transform-origin: bottom; animation: barUp .8s var(--ease) both;
}
.hm-bars.amber i { background: linear-gradient(180deg, #FFC857, rgba(183,121,31,0.5)); }
.hm-bars.red i { background: linear-gradient(180deg, #FF8A7A, rgba(160,50,40,0.5)); }
.hm-bars i:nth-child(1){height:var(--h1);animation-delay:.05s} .hm-bars i:nth-child(2){height:var(--h2);animation-delay:.1s}
.hm-bars i:nth-child(3){height:var(--h3);animation-delay:.15s} .hm-bars i:nth-child(4){height:var(--h4);animation-delay:.2s}
.hm-bars i:nth-child(5){height:var(--h5);animation-delay:.25s} .hm-bars i:nth-child(6){height:var(--h6);animation-delay:.3s}
.hm-bars i:nth-child(7){height:var(--h7);animation-delay:.35s} .hm-bars i:nth-child(8){height:var(--h8);animation-delay:.4s}
@keyframes barUp { from { transform: scaleY(0); } }
.hm-signals { list-style: none; display: grid; gap: 10px; }
.hm-signals li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.93rem; color: rgba(255,255,255,0.78); }
.hm-signals li::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; border-radius: 5px;
  border: 1px solid rgba(61,245,184,0.45);
  background: radial-gradient(circle, var(--mint) 0 3px, transparent 3.5px);
}
.hm-screen-foot { position: absolute; right: 22px; bottom: 14px; font-size: 0.68rem; color: rgba(255,255,255,0.3); }

.hm-foot {
  margin-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.hm-foot p { font-family: var(--font-head); font-size: 1.05rem; color: var(--dark); font-weight: 500; }

/* ═════════════ NETWORK (dark) ═════════════ */
.hm-network { padding: 130px 40px; position: relative; overflow: hidden; }
.hn-top { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: end; margin-bottom: 70px; }
.hn-copy h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: 700; line-height: 1.06;
  letter-spacing: -0.035em; color: #fff; margin-bottom: 20px;
}
.hn-copy p { color: rgba(255,255,255,0.7); font-size: 1.08rem; max-width: 580px; margin-bottom: 32px; }
.hn-stats { display: grid; gap: 0; border-left: 1px solid var(--line-dark); }
.hn-stat { padding: 18px 0 18px 28px; border-bottom: 1px solid var(--line-dark); display: flex; align-items: baseline; gap: 16px; }
.hn-stat:last-child { border-bottom: none; }
.hn-stat b {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--mint);
  line-height: 1; min-width: 3.4ch; font-variant-numeric: tabular-nums;
  text-shadow: 0 0 26px rgba(61,245,184,0.4);
}
.hn-stat > span { color: rgba(255,255,255,0.62); font-size: 0.95rem; }
.hn-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: 20px; overflow: hidden; }
.hn-tile {
  position: relative; display: block; padding: 32px 28px 36px;
  background: rgba(4,26,20,0.92); text-decoration: none; color: #fff;
  transition: background .3s;
}
.hn-tile::after {
  content: ''; position: absolute; left: 28px; right: 28px; bottom: 0; height: 2px;
  background: var(--mint); box-shadow: 0 0 12px var(--mint);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.hn-tile:hover { background: rgba(10,44,35,0.95); }
.hn-tile:hover::after { transform: scaleX(1); }
.hn-tile svg { width: 30px; height: 30px; color: var(--mint); margin-bottom: 20px; }
.hn-tile h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.hn-tile p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* ═════════════ AI PROOF (light) ═════════════ */
.hm-proof { padding: 130px 40px; background: var(--mist); position: relative; overflow: hidden; }
.hm-proof::before {
  content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%;
  right: -260px; top: -260px; pointer-events: none;
  background: radial-gradient(circle, rgba(61,245,184,0.28), transparent 65%);
}
.hp-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; position: relative; }
.hp-mock {
  background: var(--ink); border-radius: 20px; overflow: hidden; color: #fff;
  border: 1px solid rgba(61,245,184,0.18);
  box-shadow: 0 50px 90px -40px rgba(4,26,20,0.7);
}
.hp-mock-bar { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: #06201A; border-bottom: 1px solid var(--line-dark); }
.hp-mock-nav { display: flex; align-items: center; gap: 4px; padding: 0 16px; height: 44px; border-bottom: 1px solid var(--line-dark); font-size: 0.76rem; color: rgba(255,255,255,0.4); font-family: var(--font-head); overflow: hidden; }
.hp-mock-nav b { color: var(--mint); margin-right: 18px; font-size: 0.95rem; }
.hp-mock-nav span { padding: 0 10px; height: 44px; display: flex; align-items: center; border-bottom: 2px solid transparent; white-space: nowrap; }
.hp-mock-nav span.on { color: var(--mint); border-bottom-color: var(--mint); }
.hp-mock-body { padding: 18px; }
.hp-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.hp-kpis > div { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 10px; padding: 12px; display: flex; flex-direction: column; }
.hp-kpis small { font-size: 0.68rem; color: rgba(255,255,255,0.45); }
.hp-kpis b { font-family: var(--font-head); font-size: 1.45rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.hp-kpis em { font-style: normal; font-size: 0.7rem; color: var(--mint); }
.hp-kpis em.amber { color: #FFC857; }
.hp-chart {
  height: 150px; display: flex; align-items: flex-end; gap: 6px;
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 10px; padding: 14px;
}
.hp-chart i {
  flex: 1; height: var(--h); display: block; border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--mint), rgba(14,122,90,0.5));
  transform: scaleY(0); transform-origin: bottom; transition: transform .9s var(--ease);
}
.hp-mock.in .hp-chart i { transform: scaleY(1); }
.hp-chart i:nth-child(n) { transition-delay: calc(var(--i, 0) * 60ms); }

.hp-copy h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: 700; line-height: 1.05;
  letter-spacing: -0.035em; color: var(--dark); margin-bottom: 20px;
}
.hp-copy > p { color: var(--text-light); font-size: 1.08rem; margin-bottom: 30px; max-width: 520px; }
.hp-prices { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 34px; border-top: 1px solid #C9DCD3; border-bottom: 1px solid #C9DCD3; }
.hp-prices > div { padding: 20px 20px 20px 0; display: flex; flex-direction: column; gap: 4px; }
.hp-prices > div + div { padding-left: 24px; border-left: 1px solid #C9DCD3; }
.hp-prices b { font-family: var(--font-head); font-size: 2.3rem; font-weight: 700; color: var(--primary); line-height: 1.1; letter-spacing: -0.02em; }
.hp-prices span { font-size: 0.88rem; color: var(--text-light); }

/* CTA banner on home: extra glow */
.cta-banner::after {
  content: ''; position: absolute; width: 520px; height: 520px; left: 50%; top: 50%;
  transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(61,245,184,0.16), transparent 65%);
}

/* ═════════════ RESPONSIVE ═════════════ */
@media (max-width: 1024px) {
  .hh-inner { grid-template-columns: 1fr; gap: 70px; padding-bottom: 80px; }
  .hh-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .hm-console { grid-template-columns: 1fr; }
  .hm-tabs { flex-direction: row; overflow-x: auto; scrollbar-width: none; }
  .hm-tabs::-webkit-scrollbar { display: none; }
  .hm-tab { min-width: 240px; border-bottom: none; border-right: 1px solid var(--line); }
  .hm-tab::before { top: auto; left: 0; right: 0; height: 3px; width: auto; transform: scaleX(0); }
  .hm-tab.is-active::before { transform: scaleX(1); }
  .hn-top { grid-template-columns: 1fr; gap: 40px; }
  .hn-tiles { grid-template-columns: 1fr 1fr; }
  .hp-grid { grid-template-columns: 1fr; gap: 50px; }
  .hp-copy { order: -1; }
}
@media (max-width: 640px) {
  .home-hero { padding-top: 110px; }
  .hh-inner { padding: 0 20px 60px; }
  .hh-chip-a { right: 0; top: -30px; }
  .hh-chip-b { left: 0; bottom: -26px; }
  .hm-modules, .hm-network, .hm-proof { padding: 80px 20px; }
  .hm-screen { padding: 28px 22px 36px; min-height: 0; }
  .hm-tab { min-width: 210px; padding: 20px 22px; }
  .hm-q { font-size: 1rem; }
  .hn-tiles { grid-template-columns: 1fr; }
  .hn-stat b { font-size: 2.1rem; }
  .hp-kpis b { font-size: 1.1rem; }
  .hp-prices { grid-template-columns: 1fr; }
  .hp-prices > div + div { padding-left: 0; border-left: none; border-top: 1px solid #C9DCD3; }
}

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; }
  .hp-chart i { transform: scaleY(1); }
}
