/* How Anavsan Works — interactive TAPE loop */

.hiw-page {
  --hiw-trace: #3b82f6;
  --hiw-assign: #f59e0b;
  --hiw-prove: #22c55e;
  --hiw-enforce: #8b5cf6;
  overflow-x: clip;
}

.hiw-hero {
  position: relative;
  padding: 132px 24px 56px;
  text-align: center;
  overflow: hidden;
}

.hiw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(111, 81, 206, 0.28), transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 40%, rgba(59, 130, 246, 0.12), transparent 55%),
    radial-gradient(ellipse 35% 35% at 10% 60%, rgba(34, 197, 94, 0.08), transparent 50%);
  pointer-events: none;
}

.hiw-hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.hiw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 18px;
}

.hiw-kicker::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--brand-light);
}

.hiw-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-0);
  margin: 0 0 16px;
}

.hiw-hero h1 .grad {
  background: linear-gradient(120deg, var(--brand-light), #60a5fa 45%, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hiw-hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 28px;
}

.hiw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.hiw-loop-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
}

.hiw-loop-strip span { color: var(--text-1); }
.hiw-loop-strip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.hiw-loop-strip .dot.t { background: var(--hiw-trace); }
.hiw-loop-strip .dot.a { background: var(--hiw-assign); }
.hiw-loop-strip .dot.p { background: var(--hiw-prove); }
.hiw-loop-strip .dot.e { background: var(--hiw-enforce); }

/* Sticky step nav */
.hiw-steps-nav-wrap {
  position: sticky;
  top: 72px;
  z-index: 40;
  padding: 0 16px;
  margin-bottom: 8px;
  background: linear-gradient(to bottom, var(--bg-0) 70%, transparent);
  overflow: visible;
}

.hiw-steps-nav {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 4px;
  border-radius: 16px;
  border: 1px solid var(--border-1);
  background: rgba(11, 15, 26, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

[data-theme="light"] .hiw-steps-nav {
  background: rgba(255, 255, 255, 0.92);
}

.hiw-step-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-3);
  text-align: left;
  padding: 14px 14px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}

.hiw-step-tab:hover { color: var(--text-1); background: rgba(255, 255, 255, 0.03); }

.hiw-step-tab .num {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  opacity: 0.75;
}

.hiw-step-tab .label {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hiw-step-tab.is-active { color: var(--text-0); background: rgba(255, 255, 255, 0.05); }
.hiw-step-tab.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--tab-accent, var(--brand-light));
}

.hiw-step-tab[data-step="trace"].is-active { --tab-accent: var(--hiw-trace); color: #93c5fd; }
.hiw-step-tab[data-step="assign"].is-active { --tab-accent: var(--hiw-assign); color: #fcd34d; }
.hiw-step-tab[data-step="prove"].is-active { --tab-accent: var(--hiw-prove); color: #86efac; }
.hiw-step-tab[data-step="enforce"].is-active { --tab-accent: var(--hiw-enforce); color: #c4b5fd; }

@media (max-width: 800px) {
  .hiw-steps-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .hiw-step-tab { padding: 12px; }
  .hiw-step-tab .label { font-size: 12.5px; }
}

/* Showcase: copy + persistent product player */
.hiw-showcase {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: start;
}

@media (max-width: 900px) {
  .hiw-showcase { grid-template-columns: 1fr; gap: 24px; }
}

.hiw-panels {
  min-width: 0;
  position: relative;
  min-height: 560px;
}

.hiw-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.28s ease;
}

.hiw-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Tab progress (auto-advance) */
.hiw-step-tab { padding-bottom: 16px; }
.hiw-tab-progress {
  display: block;
  height: 2px;
  margin-top: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.hiw-tab-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--tab-accent, var(--brand-light));
  transition: width 0.08s linear;
}

/* Product video / reel player */
.hiw-player {
  position: sticky;
  top: 148px;
  border-radius: 18px;
  border: 1px solid var(--border-1);
  background: #0b1220;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  align-self: start;
}

@media (max-width: 900px) {
  .hiw-player { position: relative; top: 0; }
}

.hiw-player-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-1);
  background: rgba(255, 255, 255, 0.02);
}

.hiw-player-dots { display: flex; gap: 5px; }
.hiw-player-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.hiw-player-dots span:first-child { background: #ef4444; }
.hiw-player-dots span:nth-child(2) { background: #f59e0b; }
.hiw-player-dots span:nth-child(3) { background: #22c55e; }

.hiw-player-title {
  flex: 1;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

.hiw-player-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-1);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
}
.hiw-player-toggle .icon-play { display: none; }
.hiw-player-toggle:not(.is-playing) .icon-pause { display: none; }
.hiw-player-toggle:not(.is-playing) .icon-play { display: block; }

.hiw-player-stage {
  position: relative;
  aspect-ratio: 5 / 4;
  min-height: 360px;
  background: #0c1220;
  overflow: hidden;
}

.hiw-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  z-index: 2;
  background: #0a0f1a;
}

html.hiw-has-video .hiw-video { display: block; }
html.hiw-has-video .hiw-reel { opacity: 0; pointer-events: none; }

.hiw-reel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hiw-scene {
  position: absolute;
  inset: 0;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hiw-scene.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hiw-scene .hiw-visual-meta {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.hiw-scene .hiw-stage {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hiw-player-bar {
  padding: 10px 12px 12px;
  border-top: 1px solid var(--border-1);
  background: rgba(255, 255, 255, 0.02);
}

.hiw-player-scrub {
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 8px;
}

.hiw-player-scrub span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3b82f6, #f59e0b, #22c55e, #8b5cf6);
  transition: width 0.08s linear;
}

.hiw-player-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: var(--text-3);
}

.hiw-player-hint { opacity: 0.85; }

.hiw-player[data-step="trace"] { border-color: rgba(59, 130, 246, 0.28); }
.hiw-player[data-step="assign"] { border-color: rgba(245, 158, 11, 0.28); }
.hiw-player[data-step="prove"] { border-color: rgba(34, 197, 94, 0.28); }
.hiw-player[data-step="enforce"] { border-color: rgba(139, 92, 246, 0.28); }

.hiw-pulse-dot {
  transform-origin: center;
  animation: hiw-dot 1.8s ease-in-out infinite;
}
@keyframes hiw-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.hiw-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hiw-panel[data-panel="trace"] .hiw-eyebrow { color: var(--hiw-trace); }
.hiw-panel[data-panel="assign"] .hiw-eyebrow { color: var(--hiw-assign); }
.hiw-panel[data-panel="prove"] .hiw-eyebrow { color: var(--hiw-prove); }
.hiw-panel[data-panel="enforce"] .hiw-eyebrow { color: var(--hiw-enforce); }

.hiw-copy h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--text-0);
}

.hiw-copy h2 em {
  font-style: italic;
  font-weight: 700;
  color: var(--brand-xlight);
}

.hiw-copy > p {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.hiw-points {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hiw-points li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
}

.hiw-points li svg { margin-top: 2px; color: var(--point, var(--brand-light)); }
.hiw-panel[data-panel="trace"] .hiw-points li { --point: var(--hiw-trace); }
.hiw-panel[data-panel="assign"] .hiw-points li { --point: var(--hiw-assign); }
.hiw-panel[data-panel="prove"] .hiw-points li { --point: var(--hiw-prove); }
.hiw-panel[data-panel="enforce"] .hiw-points li { --point: var(--hiw-enforce); }

.hiw-contrast {
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.06);
  border-left: 3px solid #f97316;
  margin-bottom: 16px;
}

.hiw-contrast strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fb923c;
  margin-bottom: 4px;
}

.hiw-contrast p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
}

.hiw-tagline {
  font-size: 14px;
  font-style: italic;
  color: #93c5fd;
  margin: 0;
}

.hiw-panel[data-panel="assign"] .hiw-tagline { color: #fcd34d; }
.hiw-panel[data-panel="prove"] .hiw-tagline { color: #86efac; }
.hiw-panel[data-panel="enforce"] .hiw-tagline { color: #c4b5fd; }

/* Readable reel scenes — no overlapping floats */
.hiw-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hiw-info-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.92);
  padding: 14px 14px 13px;
  min-height: 84px;
}

.hiw-info-card strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 750;
  color: #f8fafc;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.25;
  word-break: break-word;
}

.hiw-info-card span {
  display: block;
  font-size: 12.5px;
  line-height: 1.4;
  color: #94a3b8;
}

.hiw-info-card--focus {
  border-color: rgba(59, 130, 246, 0.55);
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.22), rgba(15, 23, 42, 0.95));
}

.hiw-info-card--focus strong { color: #dbeafe; }
.hiw-info-card--focus span { color: #93c5fd; }

.hiw-stage--assign {
  align-items: stretch;
}

.hiw-assign-card {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  background: rgba(15, 23, 42, 0.96);
  padding: 18px 18px 16px;
}

.hiw-assign-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

.hiw-assign-card .badge {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #fcd34d;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.hiw-assign-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.hiw-assign-card p {
  margin: 0 0 14px;
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.5;
}

.hiw-owner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.22);
  margin-bottom: 12px;
}

.hiw-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #111;
  flex-shrink: 0;
}

.hiw-owner strong { display: block; font-size: 14px; color: #f8fafc; }
.hiw-owner span { font-size: 12.5px; color: #94a3b8; }

.hiw-assign-status {
  font-size: 12.5px;
  font-weight: 700;
  color: #86efac;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.hiw-stage--prove { gap: 14px; }

.hiw-sim-chip {
  align-self: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #bbf7d0;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.hiw-prove-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
  flex: 1;
  min-height: 180px;
}

.hiw-bar-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.hiw-bar-col .bar {
  border-radius: 12px 12px 8px 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 8px;
  min-height: 72px;
}

.hiw-bar-col.before .bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.38), rgba(239, 68, 68, 0.1));
  border: 1px solid rgba(248, 113, 113, 0.4);
}

.hiw-bar-col.after .bar {
  height: 58%;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.42), rgba(34, 197, 94, 0.1));
  border: 1px solid rgba(74, 222, 128, 0.45);
}

.hiw-bar-col .val {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #f8fafc;
  line-height: 1;
}

.hiw-bar-col .cap {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.hiw-stage--enforce {
  justify-content: center;
}

.hiw-closure-card {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  background: rgba(15, 23, 42, 0.96);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hiw-closure-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hiw-closure-id {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #94a3b8;
}

.hiw-closure-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.hiw-closure-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}

.hiw-closure-steps::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, #8b5cf6, rgba(34, 197, 94, 0.7));
  border-radius: 2px;
}

.hiw-closure-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 8px 0;
  position: relative;
}

.hiw-closure-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f8fafc;
  background: #7c3aed;
  border: 2px solid rgba(196, 181, 253, 0.55);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
  z-index: 1;
}

.hiw-closure-steps li:last-child .hiw-closure-dot {
  background: #16a34a;
  border-color: rgba(134, 239, 172, 0.55);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.hiw-closure-steps li div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hiw-closure-steps strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 750;
  color: #f8fafc;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hiw-closure-steps li span {
  font-size: 12.5px;
  line-height: 1.4;
  color: #94a3b8;
}

.hiw-closure-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.38);
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.hiw-closure-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .hiw-card-grid { grid-template-columns: 1fr; }
  .hiw-player-stage { min-height: 320px; aspect-ratio: auto; height: 360px; }
}

/* Outcomes + CTA */
.hiw-outcomes {
  max-width: 1100px;
  margin: 0 auto 72px;
  padding: 0 24px;
}

.hiw-outcomes-head {
  text-align: center;
  margin-bottom: 28px;
}

.hiw-outcomes-head h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.hiw-outcomes-head p {
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
}

.hiw-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .hiw-outcomes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .hiw-outcomes-grid { grid-template-columns: 1fr; }
}

.hiw-outcome {
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-1);
  background: var(--bg-card);
}

.hiw-outcome .mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.hiw-outcome h3 {
  font-size: 14px;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.hiw-outcome p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
}

.hiw-cta {
  max-width: 860px;
  margin: 0 auto 96px;
  padding: 36px 28px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(111, 81, 206, 0.35);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(111, 81, 206, 0.22), transparent 55%),
    var(--bg-card);
}

.hiw-cta h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.hiw-cta p {
  margin: 0 auto 22px;
  max-width: 480px;
  color: var(--text-2);
  font-size: 15px;
}

.hiw-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .hiw-panel,
  .hiw-node-card,
  .hiw-assign-ping,
  .hiw-sim-chip,
}
