/* TelegramMT4 — How It Works page */

/* Hero */
.hiw-hero {
  position: relative;
  isolation: isolate;
  min-height: 940px;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) 0 54px;
  border-bottom: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 72% 20%, rgba(46, 167, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 10% 78%, rgba(65, 211, 158, 0.075), transparent 28rem),
    linear-gradient(180deg, #06101d 0%, #071827 58%, #081321 100%);
}

.hiw-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 190px;
  background: linear-gradient(180deg, transparent, rgba(4, 10, 19, 0.42));
  content: "";
  pointer-events: none;
}

.hiw-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -5;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(102, 227, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 227, 255, 0.07) 1px, transparent 1px);
  background-position: center top;
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.74) 62%, transparent 100%);
}

.hiw-orb {
  position: absolute;
  z-index: -4;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hiw-orb--one {
  top: 65px;
  right: -165px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at 36% 42%, rgba(102, 227, 255, 0.18), rgba(46, 167, 255, 0.025) 62%, transparent 72%);
}

.hiw-orb--two {
  bottom: 25px;
  left: -180px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle at 55% 48%, rgba(65, 211, 158, 0.105), rgba(65, 211, 158, 0.01) 64%, transparent 72%);
}

.hiw-particles span {
  position: absolute;
  z-index: -2;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 15px rgba(102, 227, 255, 0.82);
  opacity: 0.42;
}

.hiw-particles span:nth-child(1) { top: 18%; left: 7%; }
.hiw-particles span:nth-child(2) { top: 42%; left: 45%; width: 3px; height: 3px; }
.hiw-particles span:nth-child(3) { top: 14%; right: 12%; }
.hiw-particles span:nth-child(4) { top: 68%; right: 5%; width: 3px; height: 3px; }
.hiw-particles span:nth-child(5) { bottom: 12%; left: 29%; }
.hiw-particles span:nth-child(6) { bottom: 27%; right: 42%; width: 2px; height: 2px; }

.hiw-hero-layout {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(680px, 1.22fr);
  align-items: center;
  gap: clamp(2.5rem, 4vw, 5rem);
}

.hiw-hero-copy {
  position: relative;
  z-index: 2;
}

.hiw-hero-copy .page-eyebrow {
  white-space: nowrap;
  max-width: 100%;
}

.hiw-hero h1 {
  max-width: 670px;
  margin-bottom: 1.45rem;
  font-size: clamp(2.9rem, 4.5vw, 4.6rem);
  font-weight: 790;
  letter-spacing: -0.06em;
}

.hiw-hero h1 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hiw-hero-lede {
  max-width: 630px;
  margin-bottom: 1.85rem;
  color: #aebfd2;
  font-size: 1.075rem;
  line-height: 1.76;
}

.hiw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.7rem;
}

.hiw-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hiw-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.hiw-assurances li span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(65, 211, 158, 0.28);
  border-radius: 50%;
  background: rgba(65, 211, 158, 0.08);
  color: var(--color-success);
  font-size: 0.64rem;
}

/* Hero activation console */
.activation-console {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(102, 227, 255, 0.27);
  border-radius: 1.65rem;
  background: linear-gradient(150deg, rgba(13, 34, 55, 0.96), rgba(5, 16, 29, 0.97));
  box-shadow: 0 38px 105px rgba(0, 0, 0, 0.4), 0 0 80px rgba(46, 167, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.activation-console::before {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(102, 227, 255, 0.32), transparent 34%, transparent 72%, rgba(65, 211, 158, 0.18)) border-box;
  content: "";
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.activation-topbar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.4rem 0.75rem;
  color: var(--color-muted);
  font-size: 0.7rem;
  font-weight: 650;
}

.activation-title,
.window-dots {
  display: inline-flex;
  align-items: center;
}

.activation-title {
  gap: 0.75rem;
}

.window-dots {
  gap: 0.3rem;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-danger);
}

.window-dots i:nth-child(2) { background: var(--color-warning); }
.window-dots i:nth-child(3) { background: var(--color-success); }

.activation-body {
  display: grid;
  min-height: 500px;
  grid-template-columns: 205px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(148, 169, 194, 0.13);
  border-radius: 1.25rem;
  background:
    linear-gradient(rgba(102, 227, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 227, 255, 0.026) 1px, transparent 1px),
    rgba(3, 12, 23, 0.66);
  background-size: 32px 32px;
}

.activation-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--color-line);
  background: rgba(7, 20, 35, 0.82);
}

.activation-progress {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 30px;
  width: 1px;
  overflow: hidden;
  background: rgba(148, 169, 194, 0.16);
}

.activation-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: top;
  background: linear-gradient(180deg, var(--color-brand), var(--color-cyan), var(--color-success));
  box-shadow: 0 0 12px rgba(102, 227, 255, 0.58);
}

.activation-step {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 92px;
  grid-template-columns: 36px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.55rem;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.018);
}

.activation-step-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(102, 227, 255, 0.18);
  border-radius: 0.7rem;
  background: #091d31;
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 800;
}

.activation-step strong,
.activation-step small {
  display: block;
}

.activation-step strong {
  margin-bottom: 0.1rem;
  color: var(--color-text-soft);
  font-size: 0.72rem;
  line-height: 1.2;
}

.activation-step small {
  color: var(--color-muted-2);
  font-size: 0.56rem;
  line-height: 1.35;
}

.activation-step > i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(65, 211, 158, 0.25);
  border-radius: 50%;
  background: rgba(65, 211, 158, 0.1);
  color: var(--color-success);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
}

.activation-workspace {
  position: relative;
  min-width: 0;
  padding: 1rem;
}

.activation-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0.15rem 0.85rem;
}

.activation-kicker,
.activation-heading strong {
  display: block;
}

.activation-kicker {
  margin-bottom: 0.15rem;
  color: var(--color-muted-2);
  font-size: 0.55rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activation-heading strong {
  color: var(--color-text);
  font-size: 0.96rem;
}

.live-badge,
.verified-pill,
.stage-status,
.runtime-new-badge,
.runtime-ready-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border-radius: var(--radius-pill);
  font-style: normal;
  font-weight: 760;
}

.live-badge {
  padding: 0.35rem 0.58rem;
  border: 1px solid rgba(65, 211, 158, 0.25);
  background: rgba(65, 211, 158, 0.08);
  color: var(--color-success);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.live-badge i,
.stage-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.connection-map {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  border: 1px solid rgba(148, 169, 194, 0.12);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 52% 50%, rgba(46, 167, 255, 0.12), transparent 33%),
    rgba(5, 17, 31, 0.72);
}

.connection-map::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(102, 227, 255, 0.035), transparent 45%, rgba(65, 211, 158, 0.025));
  content: "";
  pointer-events: none;
}

.connection-lines {
  position: absolute;
  inset: 7% 3%;
  z-index: 1;
  width: 94%;
  height: 86%;
  overflow: visible;
}

.connection-lines path {
  fill: none;
  stroke: rgba(102, 227, 255, 0.22);
  stroke-width: 1.5;
  stroke-dasharray: 5 7;
}

.map-node,
.map-core {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 118px;
  place-items: center;
  padding: 0.75rem 0.7rem;
  border: 1px solid rgba(148, 169, 194, 0.18);
  border-radius: 0.95rem;
  background: linear-gradient(155deg, rgba(19, 42, 67, 0.95), rgba(8, 23, 39, 0.96));
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
}

.map-node img,
.map-core img {
  margin-bottom: 0.4rem;
}

.map-node strong,
.map-node small,
.map-core strong,
.map-core small {
  display: block;
}

.map-node strong,
.map-core strong {
  color: var(--color-text-soft);
  font-size: 0.7rem;
}

.map-node small,
.map-core small {
  margin-top: 0.08rem;
  color: var(--color-muted-2);
  font-size: 0.52rem;
}

.map-node--telegram {
  top: 50%;
  left: 3.5%;
  transform: translateY(-50%);
}

.map-core {
  top: 50%;
  left: 50%;
  min-width: 130px;
  border-color: rgba(102, 227, 255, 0.3);
  transform: translate(-50%, -50%);
}

.map-node--mt4 {
  top: 12%;
  right: 3.5%;
}

.map-node--mt5 {
  right: 3.5%;
  bottom: 12%;
}

.map-core-rings,
.map-core-rings i {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(102, 227, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-core-rings {
  z-index: -1;
  width: 176px;
  height: 176px;
}

.map-core-rings i:first-child {
  width: 145px;
  height: 145px;
}

.map-core-rings i:last-child {
  width: 198px;
  height: 198px;
  border-color: rgba(65, 211, 158, 0.1);
}

.map-packet {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 14px rgba(102, 227, 255, 0.92);
  opacity: 0;
}

.map-packet--one { top: calc(50% - 5px); left: 22%; }
.map-packet--two { top: calc(50% - 5px); left: 57%; }
.map-packet--three { top: calc(50% - 5px); left: 57%; }

.activation-event {
  display: grid;
  min-height: 72px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.8rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(65, 211, 158, 0.16);
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(65, 211, 158, 0.08), rgba(65, 211, 158, 0.025));
}

.event-check,
.order-check {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(65, 211, 158, 0.15);
  color: var(--color-success);
  font-weight: 850;
}

.activation-event strong,
.activation-event small {
  display: block;
}

.activation-event strong {
  color: var(--color-text-soft);
  font-size: 0.74rem;
}

.activation-event small {
  color: var(--color-muted-2);
  font-size: 0.56rem;
}

.activation-event time {
  color: var(--color-muted-2);
  font-family: var(--font-mono);
  font-size: 0.52rem;
}

.activation-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.8rem 0.35rem 0.05rem;
  color: var(--color-muted-2);
  font-size: 0.62rem;
  font-weight: 650;
  text-align: center;
}

.activation-footer span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  color: var(--color-text-soft);
}

.activation-footer .footer-pulse {
  display: inline-block;
}

.activation-console.is-paused .pause-icon::before,
.motion-paused .activation-motion-toggle .pause-icon::before {
  top: 1px;
  left: 2px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid currentColor;
  border-radius: 0;
  background: transparent;
}

.activation-console.is-paused .pause-icon::after,
.motion-paused .activation-motion-toggle .pause-icon::after {
  display: none;
}

.hiw-hero-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.6rem;
  padding: 0.9rem;
  border: 1px solid var(--color-line);
  border-radius: 1.1rem;
  background: rgba(10, 26, 44, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.summary-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.5rem;
}

.summary-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(102, 227, 255, 0.2);
  border-radius: 0.75rem;
  background: rgba(46, 167, 255, 0.08);
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
}

.summary-card strong,
.summary-card small {
  display: block;
}

.summary-card strong {
  color: var(--color-text-soft);
  font-size: 0.75rem;
}

.summary-card small {
  color: var(--color-muted-2);
  font-size: 0.58rem;
}

.summary-arrow {
  color: rgba(102, 227, 255, 0.45);
  font-size: 1.3rem;
}

/* Two-phase mental model */
.hiw-model-section {
  background:
    radial-gradient(circle at 18% 4%, rgba(46, 167, 255, 0.06), transparent 28rem),
    #091524;
}

.phase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  align-items: stretch;
}

.phase-card {
  position: relative;
  min-height: 430px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(18, 39, 63, 0.88), rgba(8, 23, 39, 0.94));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.phase-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(46, 167, 255, 0.1), transparent 38%);
  content: "";
  pointer-events: none;
}

.phase-card--loop::before {
  background: radial-gradient(circle at 90% 0%, rgba(65, 211, 158, 0.09), transparent 38%);
}

.phase-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.45rem;
}

.phase-badge {
  display: inline-flex;
  padding: 0.38rem 0.65rem;
  border: 1px solid rgba(102, 227, 255, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(46, 167, 255, 0.08);
  color: var(--color-cyan);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phase-badge--green {
  border-color: rgba(65, 211, 158, 0.22);
  background: rgba(65, 211, 158, 0.07);
  color: var(--color-success);
}

.phase-card h3 {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.phase-card > p {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin-bottom: 1.4rem;
  line-height: 1.75;
}

.phase-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
}

.phase-list span {
  display: grid;
  min-height: 48px;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(148, 169, 194, 0.11);
  border-radius: 0.78rem;
  background: rgba(255, 255, 255, 0.025);
  color: var(--color-text-soft);
  font-size: 0.76rem;
  font-weight: 650;
}

.phase-list i,
.loop-node i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(102, 227, 255, 0.2);
  border-radius: 50%;
  background: rgba(46, 167, 255, 0.07);
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 800;
}

.phase-handoff {
  position: relative;
  display: grid;
  place-items: center;
}

.handoff-line {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(46, 167, 255, 0.08), rgba(102, 227, 255, 0.65), rgba(65, 211, 158, 0.1));
}

.handoff-line::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--color-cyan);
  border-right: 1px solid var(--color-cyan);
  content: "";
  transform: rotate(45deg);
}

.handoff-packet {
  position: absolute;
  top: calc(50% - 7px);
  left: 0;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 16px rgba(102, 227, 255, 0.85);
}

.handoff-packet i {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--color-white);
}

.phase-handoff small {
  position: absolute;
  top: calc(50% + 18px);
  color: var(--color-muted-2);
  font-size: 0.55rem;
  white-space: nowrap;
}

.loop-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 1.25rem;
  padding-top: 1.8rem;
}

.loop-track::before {
  position: absolute;
  top: 12px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, rgba(65, 211, 158, 0.14), rgba(65, 211, 158, 0.6), rgba(65, 211, 158, 0.14));
  content: "";
}

.loop-node {
  display: grid;
  place-items: center;
  gap: 0.45rem;
  color: var(--color-muted);
  font-size: 0.58rem;
  font-weight: 650;
  text-align: center;
}

.loop-node i {
  border-color: rgba(65, 211, 158, 0.24);
  background: rgba(65, 211, 158, 0.07);
  color: var(--color-success);
}

.loop-runner {
  position: absolute;
  top: 7px;
  left: 7%;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 14px rgba(65, 211, 158, 0.82);
}

/* Setup tour */
.section--setup-tour {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(46, 167, 255, 0.075), transparent 31rem),
    #07111f;
}

.setup-tour {
  display: grid;
  min-height: 730px;
  grid-template-columns: 330px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 1.7rem;
  background: rgba(8, 22, 38, 0.76);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.setup-tour-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  border-right: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 0% 0%, rgba(46, 167, 255, 0.08), transparent 22rem),
    rgba(9, 24, 41, 0.9);
}

.setup-tab {
  display: grid;
  width: 100%;
  min-height: 112px;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.018);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.setup-tab:hover {
  border-color: rgba(102, 227, 255, 0.16);
  background: rgba(46, 167, 255, 0.04);
  transform: translateX(3px);
}

.setup-tab.is-active {
  border-color: rgba(102, 227, 255, 0.28);
  background: linear-gradient(135deg, rgba(46, 167, 255, 0.12), rgba(102, 227, 255, 0.035));
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.17), inset 3px 0 0 var(--color-cyan);
}

.setup-tab-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(102, 227, 255, 0.18);
  border-radius: 0.75rem;
  background: rgba(46, 167, 255, 0.07);
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
}

.setup-tab strong,
.setup-tab small {
  display: block;
}

.setup-tab strong {
  margin-bottom: 0.22rem;
  color: var(--color-text-soft);
  font-size: 0.82rem;
  line-height: 1.2;
}

.setup-tab small {
  color: var(--color-muted-2);
  font-size: 0.62rem;
  line-height: 1.45;
}

.setup-tab > i {
  color: var(--color-muted-2);
  font-style: normal;
  transition: transform var(--transition), color var(--transition);
}

.setup-tab.is-active > i {
  color: var(--color-cyan);
  transform: translateX(3px);
}

.setup-tour-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding: 0.85rem;
  border: 1px solid rgba(245, 199, 107, 0.16);
  border-radius: 0.95rem;
  background: rgba(245, 199, 107, 0.045);
}

.setup-tour-note strong,
.setup-tour-note small {
  display: block;
}

.setup-tour-note strong {
  color: var(--color-warning);
  font-size: 0.72rem;
}

.setup-tour-note small {
  color: var(--color-muted-2);
  font-size: 0.58rem;
  line-height: 1.5;
}

.setup-tour-stage {
  min-width: 0;
  padding: 1rem;
  background:
    linear-gradient(rgba(102, 227, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 227, 255, 0.025) 1px, transparent 1px),
    rgba(4, 13, 24, 0.55);
  background-size: 36px 36px;
}

.setup-stage-topbar {
  display: grid;
  min-height: 64px;
  grid-template-columns: auto minmax(150px, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0 0.35rem 0.8rem;
}

.stage-kicker,
.setup-stage-topbar strong {
  display: block;
}

.stage-kicker {
  color: var(--color-muted-2);
  font-size: 0.53rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.setup-stage-topbar strong {
  color: var(--color-text-soft);
  font-size: 0.78rem;
}

.stage-progress {
  height: 4px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(148, 169, 194, 0.14);
}

.stage-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient-brand);
  box-shadow: 0 0 14px rgba(102, 227, 255, 0.5);
  transition: width 380ms cubic-bezier(.2, .75, .25, 1);
}

.stage-status {
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(46, 167, 255, 0.2);
  background: rgba(46, 167, 255, 0.07);
  color: var(--color-cyan);
  font-size: 0.56rem;
  text-transform: uppercase;
}

.setup-panel[hidden] {
  display: none;
}

.setup-panel {
  min-width: 0;
}

.mock-browser {
  overflow: hidden;
  border: 1px solid rgba(148, 169, 194, 0.16);
  border-radius: 1.2rem;
  background: #061220;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.mock-browser-bar {
  display: grid;
  min-height: 50px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0 0.85rem;
  border-bottom: 1px solid var(--color-line);
  background: #0c2033;
}

.mock-address {
  justify-self: center;
  width: min(100%, 410px);
  padding: 0.38rem 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(148, 169, 194, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(3, 11, 20, 0.58);
  color: var(--color-muted-2);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.secure-mark {
  color: var(--color-success);
  font-size: 0.55rem;
  font-weight: 700;
}

.mock-dashboard-shell {
  display: grid;
  min-height: 550px;
  grid-template-columns: 155px minmax(0, 1fr);
}

.mock-sidebar {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem 0.85rem;
  border-right: 1px solid var(--color-line);
  background: rgba(8, 24, 40, 0.74);
}

.mock-sidebar img {
  margin-bottom: 0.8rem;
}

.mock-sidebar > span {
  height: 34px;
  border-radius: 0.65rem;
  background: linear-gradient(90deg, rgba(148, 169, 194, 0.1) 68%, transparent 68%);
}

.mock-sidebar > span.is-active {
  border: 1px solid rgba(102, 227, 255, 0.16);
  background: linear-gradient(90deg, rgba(46, 167, 255, 0.12) 76%, transparent 76%);
  box-shadow: inset 2px 0 0 var(--color-cyan);
}

.trial-screen,
.telegram-setup-screen,
.broker-setup-screen,
.rules-screen {
  min-width: 0;
  min-height: 550px;
  padding: 1.1rem;
  background:
    radial-gradient(circle at 85% 0%, rgba(46, 167, 255, 0.075), transparent 24rem),
    #071523;
}

.mock-page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.mock-page-heading small,
.mock-page-heading strong {
  display: block;
}

.mock-page-heading small {
  color: var(--color-muted-2);
  font-size: 0.58rem;
}

.mock-page-heading strong {
  color: var(--color-text);
  font-size: 1.05rem;
}

.mock-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(102, 227, 255, 0.22);
  border-radius: 50%;
  background: rgba(46, 167, 255, 0.11);
  color: var(--color-cyan);
  font-size: 0.62rem;
  font-weight: 800;
}

.trial-visual-grid {
  display: grid;
  min-height: 445px;
  grid-template-columns: minmax(0, 1.12fr) minmax(240px, 0.88fr);
  gap: 1rem;
}

.trial-ready-card,
.trial-checklist-card,
.telegram-auth-card,
.channel-picker-card,
.broker-form-card,
.account-verified-card,
.rules-panel,
.go-live-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 169, 194, 0.15);
  border-radius: 1.1rem;
  background: linear-gradient(150deg, rgba(18, 40, 64, 0.88), rgba(7, 22, 38, 0.94));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.21), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.trial-ready-card {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 2.2rem;
}

.trial-ready-card::before {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 167, 255, 0.14), transparent 68%);
  content: "";
}

.trial-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(65, 211, 158, 0.28);
  border-radius: 1rem;
  background: rgba(65, 211, 158, 0.1);
  color: var(--color-success);
  font-size: 1.5rem;
  font-weight: 850;
}

.trial-ready-card > small,
.trial-ready-card > strong {
  display: block;
}

.trial-ready-card > small {
  margin-bottom: 0.25rem;
  color: var(--color-cyan);
  font-size: 0.6rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trial-ready-card > strong {
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-size: 1.55rem;
}

.trial-ready-card p {
  max-width: 390px;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  line-height: 1.7;
}

.mock-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.75rem;
  background: var(--gradient-brand-deep);
  color: #03101c;
  box-shadow: 0 12px 32px rgba(46, 167, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  font-weight: 780;
}

.mock-button i {
  font-style: normal;
}

.mock-button--green {
  background: linear-gradient(135deg, #2bbd8c, #66e3c0);
  box-shadow: 0 12px 32px rgba(65, 211, 158, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.trial-checklist-card {
  padding: 1.35rem;
}

.mock-card-label {
  display: block;
  margin-bottom: 1rem;
  color: var(--color-muted-2);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trial-checklist-card ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trial-checklist-card li {
  display: grid;
  min-height: 49px;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(148, 169, 194, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.022);
  color: var(--color-text-soft);
  font-size: 0.7rem;
  font-weight: 650;
}

.trial-checklist-card li i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(65, 211, 158, 0.1);
  color: var(--color-success);
  font-size: 0.58rem;
  font-style: normal;
}

.trial-tip {
  margin-top: 0.8rem;
  padding: 0.75rem;
  border: 1px solid rgba(245, 199, 107, 0.14);
  border-radius: 0.8rem;
  background: rgba(245, 199, 107, 0.045);
  color: var(--color-muted);
  font-size: 0.6rem;
  line-height: 1.55;
}

.trial-tip span {
  display: block;
  color: var(--color-warning);
  font-weight: 750;
}

.setup-panel-caption {
  display: grid;
  min-height: 70px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0.35rem 0;
}

.setup-panel-caption span {
  padding: 0.28rem 0.52rem;
  border: 1px solid rgba(102, 227, 255, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(46, 167, 255, 0.06);
  color: var(--color-cyan);
  font-size: 0.53rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.setup-panel-caption strong {
  color: var(--color-text-soft);
  font-size: 0.74rem;
  line-height: 1.45;
}

/* Telegram setup panel */
.telegram-setup-screen,
.broker-setup-screen,
.rules-screen {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.telegram-auth-card,
.channel-picker-card,
.broker-form-card,
.account-verified-card,
.rules-panel,
.go-live-card {
  padding: 1.35rem;
}

.auth-heading,
.broker-heading,
.rules-heading,
.picker-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.auth-heading > div,
.broker-heading > div,
.rules-heading > div,
.picker-heading > div {
  min-width: 0;
  flex: 1;
}

.auth-heading small,
.auth-heading strong,
.broker-heading small,
.broker-heading strong,
.rules-heading small,
.rules-heading strong,
.picker-heading small,
.picker-heading strong {
  display: block;
}

.auth-heading small,
.broker-heading small,
.rules-heading small,
.picker-heading small {
  color: var(--color-muted-2);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.auth-heading strong,
.broker-heading strong,
.rules-heading strong,
.picker-heading strong {
  color: var(--color-text-soft);
  font-size: 0.8rem;
}

.verified-pill {
  flex: 0 0 auto;
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(65, 211, 158, 0.2);
  background: rgba(65, 211, 158, 0.07);
  color: var(--color-success);
  font-size: 0.5rem;
  text-transform: uppercase;
}

.auth-field {
  display: grid;
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(148, 169, 194, 0.11);
  border-radius: 0.78rem;
  background: rgba(255, 255, 255, 0.022);
}

.auth-field + .auth-field {
  margin-top: 0.55rem;
}

.auth-field span,
.auth-field strong {
  display: block;
}

.auth-field span {
  color: var(--color-muted-2);
  font-size: 0.58rem;
}

.auth-field strong {
  color: var(--color-text-soft);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.auth-field i {
  color: var(--color-success);
  font-size: 0.7rem;
  font-style: normal;
}

.auth-scope {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.75rem;
  border: 1px solid rgba(102, 227, 255, 0.13);
  border-radius: 0.85rem;
  background: rgba(46, 167, 255, 0.04);
}

.auth-scope p {
  margin: 0;
}

.auth-scope strong,
.auth-scope span {
  display: block;
}

.auth-scope strong {
  color: var(--color-text-soft);
  font-size: 0.68rem;
}

.auth-scope span {
  color: var(--color-muted-2);
  font-size: 0.56rem;
  line-height: 1.45;
}

.picker-heading > span {
  flex: 0 0 auto;
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.56rem;
}

.channel-row {
  display: grid;
  min-height: 66px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 0.65rem;
  border: 1px solid rgba(148, 169, 194, 0.1);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.022);
}

.channel-row + .channel-row {
  margin-top: 0.52rem;
}

.channel-row.is-selected {
  border-color: rgba(65, 211, 158, 0.18);
  background: rgba(65, 211, 158, 0.045);
}

.channel-avatar--blue {
  background: linear-gradient(135deg, var(--color-brand), var(--color-cyan));
  color: #03101c;
}

.channel-avatar--muted {
  background: #1b2c40;
  color: var(--color-muted);
}

.channel-row strong,
.channel-row small {
  display: block;
}

.channel-row strong {
  color: var(--color-text-soft);
  font-size: 0.7rem;
}

.channel-row small {
  color: var(--color-muted-2);
  font-size: 0.55rem;
}

.channel-row > i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(65, 211, 158, 0.1);
  color: var(--color-success);
  font-size: 0.6rem;
  font-style: normal;
}

.channel-row.is-private > i {
  background: rgba(148, 169, 194, 0.08);
  color: var(--color-muted-2);
}

.channel-picker-footer {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  color: var(--color-muted-2);
  font-size: 0.56rem;
}

.scope-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 10px rgba(65, 211, 158, 0.78);
}

/* Broker panel */
.broker-heading {
  justify-content: flex-start;
}

.mock-form-field {
  display: grid;
  min-height: 66px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(148, 169, 194, 0.12);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.022);
}

.mock-form-field + .mock-form-field {
  margin-top: 0.58rem;
}

.mock-form-field span,
.mock-form-field strong {
  display: block;
}

.mock-form-field span {
  grid-column: 1 / -1;
  margin-bottom: -0.25rem;
  color: var(--color-muted-2);
  font-size: 0.54rem;
}

.mock-form-field strong {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-soft);
  font-size: 0.68rem;
}

.mock-form-field > i {
  color: var(--color-cyan);
  font-style: normal;
}

.broker-form-card > .mock-button {
  width: 100%;
  margin-top: 0.85rem;
}

.account-verified-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.verified-orbit,
.verified-orbit i {
  position: absolute;
  top: 48%;
  left: 50%;
  border: 1px solid rgba(102, 227, 255, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.verified-orbit {
  width: 250px;
  height: 250px;
}

.verified-orbit i:first-child {
  width: 190px;
  height: 190px;
}

.verified-orbit i:last-child {
  width: 310px;
  height: 310px;
  border-color: rgba(65, 211, 158, 0.08);
}

.account-verified-icon {
  position: relative;
  z-index: 1;
  margin-bottom: 0.9rem;
}

.account-verified-icon > span {
  position: absolute;
  right: -4px;
  bottom: -4px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 2px solid #0c2033;
  border-radius: 50%;
  background: var(--color-success);
  color: #03150f;
  font-size: 0.62rem;
  font-weight: 850;
}

.account-verified-card > small,
.account-verified-card > strong,
.account-verified-card > p,
.account-meta {
  position: relative;
  z-index: 1;
}

.account-verified-card > small {
  color: var(--color-success);
  font-size: 0.56rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-verified-card > strong {
  margin: 0.25rem 0 0.5rem;
  color: var(--color-text);
  font-size: 1.35rem;
}

.account-verified-card > p {
  max-width: 300px;
  margin-bottom: 1rem;
  font-size: 0.68rem;
}

.account-meta {
  display: grid;
  width: 100%;
  max-width: 300px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(148, 169, 194, 0.12);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.025);
}

.account-meta span {
  padding: 0.65rem;
}

.account-meta span + span {
  border-left: 1px solid var(--color-line);
}

.account-meta small,
.account-meta strong {
  display: block;
}

.account-meta small {
  color: var(--color-muted-2);
  font-size: 0.52rem;
}

.account-meta strong {
  color: var(--color-text-soft);
  font-size: 0.64rem;
}

/* Rules panel */
.rules-panel {
  display: flex;
  flex-direction: column;
}

.rules-heading {
  align-items: flex-start;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.rule-control {
  display: grid;
  min-height: 86px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid rgba(148, 169, 194, 0.11);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.022);
}

.rule-control span {
  grid-column: 1 / -1;
  color: var(--color-muted-2);
  font-size: 0.55rem;
}

.rule-control strong {
  color: var(--color-text-soft);
  font-size: 0.72rem;
}

.rule-control > i {
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-style: normal;
}

.mock-switch {
  position: relative;
  width: 30px;
  height: 17px;
  border-radius: var(--radius-pill);
  background: rgba(148, 169, 194, 0.18);
}

.mock-switch::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-muted);
  content: "";
}

.mock-switch.is-on {
  background: rgba(65, 211, 158, 0.28);
}

.mock-switch.is-on::after {
  left: 16px;
  background: var(--color-success);
  box-shadow: 0 0 8px rgba(65, 211, 158, 0.6);
}

.rule-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem 0.8rem;
  margin-top: auto;
  padding: 0.8rem;
  border: 1px solid rgba(102, 227, 255, 0.12);
  border-radius: 0.85rem;
  background: rgba(46, 167, 255, 0.035);
}

.rule-summary span {
  color: var(--color-muted-2);
  font-size: 0.56rem;
}

.rule-summary strong {
  color: var(--color-text-soft);
  font-size: 0.62rem;
}

.go-live-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.go-live-card::before {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(65, 211, 158, 0.1);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.go-live-icon,
.go-live-card > small,
.go-live-card > strong,
.go-live-card > p,
.go-live-toggle,
.demo-reminder {
  position: relative;
  z-index: 1;
}

.go-live-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(65, 211, 158, 0.22);
  border-radius: 1.35rem;
  background: rgba(65, 211, 158, 0.07);
  box-shadow: 0 0 42px rgba(65, 211, 158, 0.08);
}

.go-live-card > small {
  color: var(--color-success);
  font-size: 0.56rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-live-card > strong {
  margin: 0.25rem 0 0.5rem;
  color: var(--color-text);
  font-size: 1.4rem;
}

.go-live-card > p {
  max-width: 310px;
  margin-bottom: 0.9rem;
  font-size: 0.68rem;
}

.go-live-toggle {
  display: flex;
  width: 100%;
  max-width: 300px;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(65, 211, 158, 0.2);
  border-radius: 0.82rem;
  background: rgba(65, 211, 158, 0.07);
}

.go-live-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-soft);
  font-size: 0.68rem;
  font-weight: 650;
}

.go-live-toggle span i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 12px rgba(65, 211, 158, 0.8);
}

.go-live-toggle > strong {
  color: var(--color-success);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.demo-reminder {
  display: grid;
  width: 100%;
  max-width: 300px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.7rem;
  padding: 0.6rem;
  border: 1px solid rgba(245, 199, 107, 0.14);
  border-radius: 0.78rem;
  background: rgba(245, 199, 107, 0.04);
  text-align: left;
}

.demo-reminder > i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 199, 107, 0.12);
  color: var(--color-warning);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 850;
}

.demo-reminder span {
  color: var(--color-muted-2);
  font-size: 0.54rem;
  line-height: 1.4;
}

.demo-reminder strong {
  color: var(--color-warning);
}

/* Runtime workflow */
.section--runtime {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(46, 167, 255, 0.075), transparent 34rem),
    #091524;
}

.runtime-board {
  position: relative;
  padding: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(102, 227, 255, 0.22);
  border-radius: 1.65rem;
  background: linear-gradient(150deg, rgba(13, 34, 55, 0.94), rgba(5, 16, 29, 0.96));
  box-shadow: var(--shadow-md), 0 0 70px rgba(46, 167, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.runtime-topbar,
.runtime-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0.45rem 0.9rem;
}

.runtime-topbar > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.45rem 0.55rem;
}

.runtime-topbar > div small {
  grid-column: 2;
  color: var(--color-muted-2);
  font-size: 0.56rem;
}

.runtime-topbar strong {
  color: var(--color-text-soft);
  font-size: 0.72rem;
}

.runtime-cycle-label {
  color: var(--color-muted-2);
  font-family: var(--font-mono);
  font-size: 0.55rem;
}

.runtime-grid {
  position: relative;
  display: grid;
  min-height: 480px;
  grid-template-columns: minmax(230px, 0.86fr) 66px minmax(300px, 1.08fr) 66px minmax(245px, 0.92fr);
  align-items: center;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(148, 169, 194, 0.11);
  border-radius: 1.25rem;
  background:
    linear-gradient(rgba(102, 227, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 227, 255, 0.03) 1px, transparent 1px),
    rgba(3, 12, 23, 0.58);
  background-size: 34px 34px;
}

.runtime-grid::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(46, 167, 255, 0.08), transparent 45%);
  content: "";
  pointer-events: none;
}

.runtime-source-card,
.runtime-engine-card,
.runtime-destination-card {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 400px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 169, 194, 0.17);
  border-radius: 1.15rem;
  background: linear-gradient(155deg, rgba(20, 42, 67, 0.94), rgba(8, 22, 38, 0.96));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.runtime-card-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.runtime-card-heading span,
.runtime-card-heading strong {
  display: block;
}

.runtime-card-heading span {
  color: var(--color-muted-2);
  font-size: 0.52rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.runtime-card-heading strong {
  color: var(--color-text-soft);
  font-size: 0.78rem;
}

.runtime-new-badge,
.runtime-ready-badge {
  padding: 0.27rem 0.44rem;
  border: 1px solid rgba(46, 167, 255, 0.2);
  background: rgba(46, 167, 255, 0.07);
  color: var(--color-cyan);
  font-size: 0.48rem;
  text-transform: uppercase;
}

.runtime-ready-badge {
  border-color: rgba(65, 211, 158, 0.2);
  background: rgba(65, 211, 158, 0.07);
  color: var(--color-success);
}

.runtime-message {
  position: relative;
  padding: 1rem 0.9rem 1.3rem;
  border: 1px solid rgba(65, 211, 158, 0.18);
  border-radius: 1rem 1rem 0.3rem 1rem;
  background: linear-gradient(145deg, rgba(25, 62, 60, 0.85), rgba(12, 40, 41, 0.94));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.runtime-message > div:first-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.runtime-message > div:first-child strong {
  color: var(--color-white);
  font-size: 0.82rem;
}

.runtime-message dl,
.destination-order dl {
  display: grid;
  gap: 0.42rem;
  margin: 0;
}

.runtime-message dl div,
.destination-order dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.runtime-message dt,
.runtime-message dd,
.destination-order dt,
.destination-order dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.57rem;
}

.runtime-message dt,
.destination-order dt {
  color: #9db8b4;
}

.runtime-message dd,
.destination-order dd {
  color: #e7fffa;
  font-weight: 700;
  text-align: right;
}

.runtime-message time {
  position: absolute;
  right: 0.65rem;
  bottom: 0.4rem;
  color: #779894;
  font-family: var(--font-mono);
  font-size: 0.48rem;
}

.runtime-source-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.9rem;
  padding: 0.7rem;
  border: 1px solid rgba(46, 167, 255, 0.12);
  border-radius: 0.8rem;
  background: rgba(46, 167, 255, 0.035);
  color: var(--color-muted);
  font-size: 0.6rem;
  font-weight: 650;
}

.runtime-source-footer i {
  color: var(--color-success);
  font-style: normal;
}

.runtime-connector {
  position: relative;
  z-index: 3;
  align-self: stretch;
  min-width: 0;
}

.runtime-line {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(46, 167, 255, 0.1), rgba(102, 227, 255, 0.68), rgba(46, 167, 255, 0.1));
}

.runtime-line::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--color-cyan);
  border-right: 1px solid var(--color-cyan);
  content: "";
  transform: rotate(45deg);
}

.runtime-packet {
  position: absolute;
  top: calc(50% - 6px);
  left: -2px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 15px rgba(102, 227, 255, 0.9);
  opacity: 0;
}

.runtime-packet i {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--color-white);
}

.runtime-connector small {
  position: absolute;
  top: calc(50% + 12px);
  right: 0;
  left: 0;
  color: var(--color-muted-2);
  font-family: var(--font-mono);
  font-size: 0.46rem;
  text-align: center;
}

.runtime-engine-card {
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
}

.engine-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
}

.engine-core img {
  margin-bottom: 0.5rem;
}

.engine-core strong,
.engine-core small {
  display: block;
}

.engine-core strong {
  color: var(--color-text-soft);
  font-size: 0.72rem;
}

.engine-core small {
  color: var(--color-muted-2);
  font-size: 0.52rem;
}

.engine-rings,
.engine-rings i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  border: 1px solid rgba(102, 227, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.engine-rings {
  width: 145px;
  height: 145px;
}

.engine-rings i:nth-child(1) { width: 112px; height: 112px; }
.engine-rings i:nth-child(2) { width: 178px; height: 178px; border-color: rgba(46, 167, 255, 0.11); }
.engine-rings i:nth-child(3) { width: 215px; height: 215px; border-color: rgba(65, 211, 158, 0.07); }

.engine-stages {
  display: grid;
  gap: 0.55rem;
}

.engine-stage {
  display: grid;
  min-height: 72px;
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem;
  border: 1px solid rgba(148, 169, 194, 0.11);
  border-radius: 0.82rem;
  background: rgba(255, 255, 255, 0.022);
}

.engine-stage > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(102, 227, 255, 0.18);
  border-radius: 0.6rem;
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 800;
}

.engine-stage strong,
.engine-stage small {
  display: block;
}

.engine-stage strong {
  color: var(--color-text-soft);
  font-size: 0.64rem;
}

.engine-stage small {
  color: var(--color-muted-2);
  font-size: 0.5rem;
}

.engine-stage > i {
  color: var(--color-success);
  font-size: 0.62rem;
  font-style: normal;
  opacity: 0.35;
}

.runtime-platform-stack {
  display: flex;
  align-items: center;
}

.runtime-platform-stack img + img {
  margin-left: -9px;
}

.destination-order {
  padding: 0.9rem;
  border: 1px solid rgba(65, 211, 158, 0.17);
  border-radius: 0.95rem;
  background: linear-gradient(145deg, rgba(65, 211, 158, 0.075), rgba(65, 211, 158, 0.025));
}

.order-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
}

.order-check {
  width: 38px;
  height: 38px;
}

.order-heading small,
.order-heading strong {
  display: block;
}

.order-heading small {
  color: var(--color-success);
  font-size: 0.52rem;
  font-weight: 750;
  text-transform: uppercase;
}

.order-heading strong {
  color: var(--color-text);
  font-size: 0.85rem;
}

.destination-order dt {
  color: var(--color-muted-2);
}

.destination-order dd {
  color: var(--color-text-soft);
}

.event-log-row {
  display: grid;
  min-height: 70px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.85rem;
  padding: 0.65rem;
  border: 1px solid rgba(148, 169, 194, 0.1);
  border-radius: 0.82rem;
  background: rgba(255, 255, 255, 0.022);
}

.event-log-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 12px rgba(65, 211, 158, 0.75);
}

.event-log-row strong,
.event-log-row small {
  display: block;
}

.event-log-row strong {
  color: var(--color-text-soft);
  font-size: 0.62rem;
}

.event-log-row small {
  color: var(--color-muted-2);
  font-size: 0.5rem;
}

.event-log-row time {
  color: var(--color-muted-2);
  font-family: var(--font-mono);
  font-size: 0.48rem;
}

.runtime-bottom {
  padding-top: 0.9rem;
  padding-bottom: 0.1rem;
}

.runtime-bottom > span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-muted);
  font-size: 0.64rem;
}

/* Control handoff */
.section--control {
  background: #07111f;
}

.control-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  align-items: stretch;
  padding: 1rem;
  border: 1px solid var(--color-line);
  border-radius: 1.6rem;
  background:
    linear-gradient(rgba(102, 227, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 227, 255, 0.025) 1px, transparent 1px),
    rgba(8, 23, 39, 0.74);
  background-size: 38px 38px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.control-column {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(148, 169, 194, 0.13);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(18, 39, 63, 0.86), rgba(8, 23, 39, 0.94));
}

.control-column--you {
  box-shadow: inset 3px 0 0 rgba(46, 167, 255, 0.68);
}

.control-column--cloud {
  box-shadow: inset -3px 0 0 rgba(65, 211, 158, 0.58);
}

.control-column-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--color-line);
}

.control-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(102, 227, 255, 0.22);
  border-radius: 0.95rem;
  background: rgba(46, 167, 255, 0.08);
  color: var(--color-cyan);
  font-size: 0.64rem;
  font-weight: 850;
}

.control-avatar--cloud {
  border-color: rgba(65, 211, 158, 0.22);
  background: rgba(65, 211, 158, 0.07);
  color: var(--color-success);
  font-size: 1.1rem;
}

.control-column-heading small,
.control-column-heading strong {
  display: block;
}

.control-column-heading small {
  color: var(--color-muted-2);
  font-size: 0.55rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-column-heading strong {
  color: var(--color-text);
  font-size: 1rem;
}

.control-item {
  display: grid;
  min-height: 84px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem;
  border: 1px solid rgba(148, 169, 194, 0.1);
  border-radius: 0.88rem;
  background: rgba(255, 255, 255, 0.022);
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.control-item + .control-item {
  margin-top: 0.58rem;
}

.control-item:hover {
  border-color: rgba(102, 227, 255, 0.2);
  background: rgba(46, 167, 255, 0.04);
  transform: translateY(-2px);
}

.control-column--cloud .control-item:hover {
  border-color: rgba(65, 211, 158, 0.2);
  background: rgba(65, 211, 158, 0.035);
}

.control-item strong,
.control-item small {
  display: block;
}

.control-item strong {
  color: var(--color-text-soft);
  font-size: 0.72rem;
}

.control-item small {
  color: var(--color-muted-2);
  font-size: 0.56rem;
  line-height: 1.45;
}

.control-item > i {
  color: var(--color-success);
  font-size: 0.65rem;
  font-style: normal;
}

.control-handoff {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
}

.control-handoff-line {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(46, 167, 255, 0.35), rgba(102, 227, 255, 0.72), rgba(65, 211, 158, 0.35));
}

.control-cloud {
  position: relative;
  z-index: 2;
  display: grid;
  width: 122px;
  min-height: 142px;
  place-items: center;
  padding: 0.8rem;
  border: 1px solid rgba(102, 227, 255, 0.25);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(20, 43, 68, 0.97), rgba(8, 23, 39, 0.98));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(46, 167, 255, 0.08);
  text-align: center;
}

.control-cloud-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 176px;
  height: 176px;
  border: 1px solid rgba(102, 227, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.control-cloud strong,
.control-cloud small {
  display: block;
}

.control-cloud strong {
  color: var(--color-text-soft);
  font-size: 0.7rem;
}

.control-cloud small {
  margin-top: -0.4rem;
  color: var(--color-muted-2);
  font-size: 0.52rem;
}

.control-handoff-packet {
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  z-index: 3;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 15px rgba(102, 227, 255, 0.9);
}

.control-risk-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  max-width: 980px;
  margin: 1.3rem auto 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(245, 199, 107, 0.15);
  border-radius: 1rem;
  background: rgba(245, 199, 107, 0.04);
}

.control-risk-note > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 199, 107, 0.1);
  color: var(--color-warning);
  font-weight: 850;
}

.control-risk-note p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.7rem;
  line-height: 1.65;
}

.control-risk-note strong {
  color: var(--color-text-soft);
}

/* Privacy */
.section--hiw-privacy {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 40%, rgba(46, 167, 255, 0.08), transparent 31rem),
    radial-gradient(circle at 85% 20%, rgba(65, 211, 158, 0.055), transparent 25rem),
    #091524;
}

.hiw-privacy-layout {
  display: grid;
  grid-template-columns: minmax(500px, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.privacy-scope-visual {
  position: relative;
  padding: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(102, 227, 255, 0.2);
  border-radius: 1.5rem;
  background: linear-gradient(150deg, rgba(14, 35, 56, 0.94), rgba(6, 18, 32, 0.97));
  box-shadow: var(--shadow-md), 0 0 70px rgba(46, 167, 255, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.privacy-console-top,
.privacy-console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0.35rem 0.95rem;
}

.privacy-console-top > div {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.privacy-console-top strong {
  color: var(--color-text-soft);
  font-size: 0.72rem;
}

.privacy-console-top > span {
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.55rem;
}

.scope-boundary,
.scope-outside {
  position: relative;
  padding: 0.9rem;
  border-radius: 1rem;
}

.scope-boundary {
  border: 1px solid rgba(65, 211, 158, 0.2);
  background:
    linear-gradient(135deg, rgba(65, 211, 158, 0.07), rgba(65, 211, 158, 0.018)),
    rgba(5, 18, 31, 0.76);
  box-shadow: inset 3px 0 0 rgba(65, 211, 158, 0.72);
}

.scope-outside {
  margin-top: 0.75rem;
  border: 1px solid rgba(148, 169, 194, 0.11);
  background: rgba(5, 18, 31, 0.52);
}

.scope-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
  color: var(--color-success);
  font-size: 0.55rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scope-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.scope-label--muted {
  color: var(--color-muted-2);
}

.scope-channel {
  position: relative;
  display: grid;
  min-height: 76px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(148, 169, 194, 0.1);
  border-radius: 0.88rem;
  background: rgba(255, 255, 255, 0.024);
}

.scope-channel + .scope-channel {
  margin-top: 0.55rem;
}

.scope-channel.is-scanned {
  border-color: rgba(65, 211, 158, 0.16);
  background: rgba(65, 211, 158, 0.035);
}

.scope-channel.is-scanned::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(102, 227, 255, 0.13), transparent);
  content: "";
  transform: skewX(-18deg);
}

.scope-channel strong,
.scope-channel small {
  display: block;
}

.scope-channel strong {
  color: var(--color-text-soft);
  font-size: 0.72rem;
}

.scope-channel small {
  color: var(--color-muted-2);
  font-size: 0.55rem;
}

.scope-channel > i {
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(65, 211, 158, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(65, 211, 158, 0.07);
  color: var(--color-success);
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 750;
}

.scope-channel--locked {
  opacity: 0.68;
}

.scope-channel--locked > i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  padding: 0;
  border-color: rgba(148, 169, 194, 0.14);
  background: rgba(148, 169, 194, 0.06);
  color: var(--color-muted-2);
  font-size: 0.65rem;
}

.privacy-console-footer {
  justify-content: flex-start;
  padding-top: 0.95rem;
  padding-bottom: 0.25rem;
}

.privacy-console-footer > span {
  min-width: 0;
}

.privacy-console-footer strong,
.privacy-console-footer small {
  display: block;
}

.privacy-console-footer strong {
  color: var(--color-text-soft);
  font-size: 0.68rem;
}

.privacy-console-footer small {
  color: var(--color-muted-2);
  font-size: 0.54rem;
}

.hiw-privacy-copy .eyebrow {
  color: var(--color-cyan);
}

.hiw-privacy-copy h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.privacy-points {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 1.5rem;
}

.privacy-points > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(148, 169, 194, 0.1);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.022);
}

.privacy-points > div > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(102, 227, 255, 0.18);
  border-radius: 0.75rem;
  background: rgba(46, 167, 255, 0.06);
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 800;
}

.privacy-points p {
  margin: 0;
}

.privacy-points strong,
.privacy-points small {
  display: block;
}

.privacy-points strong {
  color: var(--color-text-soft);
  font-size: 0.74rem;
}

.privacy-points small {
  color: var(--color-muted-2);
  font-size: 0.58rem;
  line-height: 1.55;
}

/* Before start */
.section--before-start {
  background: #07111f;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.requirement-card {
  position: relative;
  min-height: 300px;
  padding: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(18, 39, 63, 0.84), rgba(8, 23, 39, 0.94));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.requirement-card::before {
  position: absolute;
  top: -75px;
  right: -75px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 167, 255, 0.08), transparent 68%);
  content: "";
}

.requirement-card > span {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: rgba(102, 227, 255, 0.35);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
}

.requirement-card > img,
.requirement-platforms {
  position: relative;
  z-index: 1;
  margin-bottom: 1.4rem;
}

.requirement-platforms {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.requirement-platforms img {
  width: 48px;
  height: 48px;
}

.requirement-platforms img + img {
  margin-left: -10px;
}

.requirement-card h3,
.requirement-card p {
  position: relative;
  z-index: 1;
}

.requirement-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

.requirement-card p {
  margin-bottom: 0;
  font-size: 0.78rem;
  line-height: 1.7;
}

.demo-first-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.3rem;
  margin-top: 1.2rem;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(102, 227, 255, 0.2);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(46, 167, 255, 0.1), transparent 22rem),
    linear-gradient(145deg, rgba(17, 42, 67, 0.88), rgba(8, 23, 39, 0.95));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.demo-first-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(102, 227, 255, 0.18);
  border-radius: 1.2rem;
  background: rgba(46, 167, 255, 0.06);
}

.demo-first-banner .eyebrow {
  margin-bottom: 0.25rem;
  font-size: 0.6rem;
}

.demo-first-banner h3 {
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.demo-first-banner p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 0.72rem;
}

.hiw-final-cta .final-cta-inner {
  border-color: rgba(102, 227, 255, 0.22);
}

.page-how-it-works .footer-trust span {
  color: var(--color-cyan);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Panel transition helper */
.js .setup-panel.is-entering .mock-browser,
.js .setup-panel.is-entering .setup-panel-caption {
  animation: hiw-panel-enter 520ms cubic-bezier(.2, .75, .25, 1) both;
}

.js .setup-panel.is-entering .setup-panel-caption {
  animation-delay: 90ms;
}
