.how-it-works-v2 .hiw-hero {
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.how-it-works-v2 .hiw-hero .wrap {
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.how-it-works-v2 .hiw-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.how-it-works-v2 .hiw-meta .sep {
  width: 3px;
  height: 3px;
  background: var(--ink-faint);
  border-radius: 50%;
}

.how-it-works-v2 .hiw-hero h1 {
  font-family: Playfair Display, Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(34px, 4.2vw, 56px);
  color: var(--ink);
  text-wrap: balance;
}

.how-it-works-v2 .hiw-hero h1 em {
  font-family: Playfair Display, Georgia, serif;
  font-style: normal;
  font-weight: 800;
  color: var(--ink);
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.how-it-works-v2 .hiw-hero h1 em:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12%;
  height: 5px;
  border-radius: 999px;
  background: var(--ig);
  background-size: 200% 100%;
  animation: hiwIgShift 5s linear infinite;
  opacity: 0.85;
  z-index: -1;
}

.how-it-works-v2 .hiw-hero-sub {
  margin: 34px auto 0;
  max-width: 64ch;
  font-size: 19.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.how-it-works-v2 .hiw-strip {
  margin: 72px auto 0;
  max-width: 1080px;
  position: relative;
  padding: 0 12px;
}

.how-it-works-v2 .hiw-strip-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.how-it-works-v2 .hiw-strip-track:before {
  content: '';
  position: absolute;
  left: 8.33%;
  right: 8.33%;
  top: 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--line-2) 8%,
    var(--line-2) 92%,
    transparent
  );
  z-index: 0;
}

.how-it-works-v2 .hiw-strip-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  padding: 0 6px;
  text-align: center;
  transition: transform 0.2s ease;
}

.how-it-works-v2 .hiw-strip-node:hover {
  transform: translateY(-2px);
}

.how-it-works-v2 .hiw-strip-node .dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: JetBrains Mono, monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.how-it-works-v2 .hiw-strip-node:hover .dot {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.how-it-works-v2 .hiw-strip-node .lbl {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.35;
  max-width: 14ch;
  text-wrap: balance;
}

.how-it-works-v2 .hiw-strip-foot {
  text-align: center;
  margin-top: 34px;
  font-family: Playfair Display, Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-muted);
}

@media (max-width: 760px) {
  .how-it-works-v2 .hiw-strip-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 0;
    row-gap: 28px;
  }
  .how-it-works-v2 .hiw-strip-track:before {
    display: none;
  }
  .how-it-works-v2 .hiw-strip-node .lbl {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .how-it-works-v2 .hiw-strip-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

.how-it-works-v2 .hiw-short {
  background: var(--paper-2);
  padding: 88px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.how-it-works-v2 .hiw-short .wrap {
  max-width: 840px;
  text-align: center;
}

.how-it-works-v2 .hiw-short .label {
  justify-content: center;
  color: var(--ink-muted);
  margin-bottom: 18px;
}

.how-it-works-v2 .hiw-short .label:after,
.how-it-works-v2 .hiw-short .label:before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.how-it-works-v2 .hiw-short h2 {
  margin-top: 0;
}

.how-it-works-v2 .hiw-short p {
  margin-top: 30px;
  font-size: 18.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.how-it-works-v2 .hiw-step-sec {
  padding: 104px 0;
  position: relative;
}

.how-it-works-v2 .hiw-step-sec.alt {
  background: var(--paper-2);
}

@media (max-width: 900px) {
  .how-it-works-v2 .hiw-step-sec {
    padding: 72px 0;
  }
}

.how-it-works-v2 .hiw-step-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.how-it-works-v2 .hiw-step-head.solo {
  grid-template-columns: 1fr;
  max-width: 840px;
}

@media (max-width: 900px) {
  .how-it-works-v2 .hiw-step-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
}

.how-it-works-v2 .hiw-step-head h2 {
  margin-top: 18px;
  font-family: Playfair Display, Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.06;
  color: var(--ink);
  text-wrap: balance;
}

.how-it-works-v2 .hiw-step-head h2 em {
  font-style: italic;
}

.how-it-works-v2 .hiw-step-head .copy {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.how-it-works-v2 .hiw-step-head .copy p {
  margin: 0 0 18px;
}

.how-it-works-v2 .hiw-step-head .copy p:last-child {
  margin-bottom: 0;
}

.how-it-works-v2 .hiw-step-head .copy.lede-only {
  font-size: 19px;
}

.how-it-works-v2 .hiw-pull {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.how-it-works-v2 .hiw-pull:before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: var(--ig);
  border-radius: 0 3px 3px 0;
}

.how-it-works-v2 .hiw-pull q {
  display: block;
  font-family: Playfair Display, Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
  quotes: none;
}

.how-it-works-v2 .hiw-pull q:after,
.how-it-works-v2 .hiw-pull q:before {
  content: none;
}

.how-it-works-v2 .hiw-pull p {
  margin: 18px 0 0;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.how-it-works-v2 .hiw-meta-line {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-muted);
  font-size: 13.5px;
}

.how-it-works-v2 .hiw-meta-line .pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.how-it-works-v2 .hiw-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
  margin-top: 24px;
}

@media (max-width: 860px) {
  .how-it-works-v2 .hiw-options {
    grid-template-columns: 1fr;
  }
}

.how-it-works-v2 .hiw-option {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-it-works-v2 .hiw-option.recommended {
  background: var(--blue-tint);
  border-color: rgba(47, 91, 235, 0.22);
}

.how-it-works-v2 .hiw-option .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 2px;
}

.how-it-works-v2 .hiw-option .eyebrow .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.how-it-works-v2 .hiw-option h3 {
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 3.4vw, 24px);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
}

.how-it-works-v2 .hiw-option p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.how-it-works-v2 .hiw-option .foot {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-muted);
}

.how-it-works-v2 .hiw-option.recommended .foot {
  border-top-color: rgba(47, 91, 235, 0.18);
}

.how-it-works-v2 .hiw-trust-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding: 26px 28px;
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .how-it-works-v2 .hiw-trust-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }
}

.how-it-works-v2 .hiw-trust-panel .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.how-it-works-v2 .hiw-trust-panel .item .ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-it-works-v2 .hiw-target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .how-it-works-v2 .hiw-target-grid {
    grid-template-columns: 1fr;
  }
}

.how-it-works-v2 .hiw-target {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.how-it-works-v2 .hiw-target:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}

.how-it-works-v2 .hiw-target:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.how-it-works-v2 .hiw-target.c1:before {
  background: linear-gradient(90deg, #a855f7, #c084fc);
}

.how-it-works-v2 .hiw-target.c2:before {
  background: linear-gradient(90deg, var(--blue), #60a5fa);
}

.how-it-works-v2 .hiw-target.c3:before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.how-it-works-v2 .hiw-target h3 {
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: clamp(19px, 3.2vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
}

.how-it-works-v2 .hiw-target p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.how-it-works-v2 .hiw-quote-band {
  margin-top: 48px;
  padding: 36px 40px;
  border-left: 3px solid var(--ink);
  background: transparent;
  max-width: 760px;
}

.how-it-works-v2 .hiw-quote-band q {
  display: block;
  font-family: Playfair Display, Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.35;
  color: var(--ink);
  quotes: none;
}

.how-it-works-v2 .hiw-quote-band q:after,
.how-it-works-v2 .hiw-quote-band q:before {
  content: none;
}

@media (max-width: 640px) {
  .how-it-works-v2 .hiw-quote-band {
    padding: 24px;
    margin-top: 36px;
  }
  .how-it-works-v2 .hiw-quote-band q {
    font-size: 20px;
  }
}

.how-it-works-v2 .hiw-gm-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.how-it-works-v2 .hiw-gm-card:before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--ig);
}

.how-it-works-v2 .hiw-log-title {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  font-weight: 600;
  margin: 8px 0 14px;
}

.how-it-works-v2 .hiw-log {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.how-it-works-v2 .hiw-log li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.how-it-works-v2 .hiw-log .ic {
  color: var(--blue);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  line-height: 1;
  font-size: 14px;
}

.how-it-works-v2 .hiw-log .tm {
  color: var(--ink-muted);
  margin-left: auto;
  font-size: 12px;
  font-feature-settings: 'tnum';
  white-space: nowrap;
}

.how-it-works-v2 .hiw-log-foot {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-muted);
  font-style: italic;
}

.how-it-works-v2 .hiw-inline-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  .how-it-works-v2 .hiw-inline-pair {
    grid-template-columns: 1fr;
  }
}

.how-it-works-v2 .hiw-inline-pair p {
  margin: 0;
  font-family: Playfair Display, Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.how-it-works-v2 .hiw-stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

@media (max-width: 760px) {
  .how-it-works-v2 .hiw-stat-band {
    grid-template-columns: 1fr;
  }
}

.how-it-works-v2 .hiw-stat {
  padding: 38px 32px;
  border-right: 1px solid var(--line);
}

.how-it-works-v2 .hiw-stat:last-child {
  border-right: 0;
}

@media (max-width: 760px) {
  .how-it-works-v2 .hiw-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .how-it-works-v2 .hiw-stat:last-child {
    border-bottom: 0;
  }
}

.how-it-works-v2 .hiw-stat .n {
  display: block;
  font-family: Outfit, sans-serif;
  font-variation-settings: 'opsz' 60, 'wght' 600;
  font-size: clamp(38px, 4.6vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  transition: filter 0.6s ease, opacity 0.6s ease;
}

.how-it-works-v2 .hiw-stat .l {
  display: block;
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  text-wrap: balance;
}

.how-it-works-v2 .hiw-stat-foot {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--ink-muted);
  max-width: 70ch;
  line-height: 1.6;
}

.how-it-works-v2 .hiw-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .how-it-works-v2 .hiw-2col {
    grid-template-columns: 1fr;
  }
}

.how-it-works-v2 .hiw-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  min-width: 0;
}

.how-it-works-v2 .hiw-card .eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
  display: inline-block;
}

.how-it-works-v2 .hiw-card h3 {
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: clamp(19px, 3.2vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
}

.how-it-works-v2 .hiw-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.how-it-works-v2 .hiw-tl-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.how-it-works-v2 .hiw-tl-head .label {
  justify-content: center;
  color: var(--ink-muted);
}

.how-it-works-v2 .hiw-tl-head .label:after {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.how-it-works-v2 .hiw-tl-head h2 {
  margin-top: 18px;
}

.how-it-works-v2 .hiw-tl-head .lede {
  margin: 18px auto 0;
}

.how-it-works-v2 .hiw-tl {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding-left: 36px;
}

.how-it-works-v2 .hiw-tl:before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(
    180deg,
    var(--line-2),
    var(--line) 50%,
    transparent
  );
}

.how-it-works-v2 .hiw-tl:after {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  width: 3px;
  height: var(--tl-fill, 0);
  max-height: calc(100% - 16px);
  background: var(--ig);
  background-size: 200% 200%;
  animation: hiwIgShift 5s linear infinite;
  border-radius: 3px;
  transition: height 0.25s linear;
  z-index: 1;
  box-shadow: 0 0 12px rgba(225, 48, 108, 0.35);
}

.how-it-works-v2 .hiw-tl-item {
  position: relative;
  padding: 0 0 36px 28px;
}

.how-it-works-v2 .hiw-tl-item:last-child {
  padding-bottom: 0;
}

.how-it-works-v2 .hiw-tl-item:before {
  content: '';
  position: absolute;
  left: -31px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--ink);
  z-index: 2;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.how-it-works-v2 .hiw-tl-item.lit:before {
  background: var(--ig) !important;
  border-color: transparent !important;
  box-shadow: 0 0 0 5px rgba(225, 48, 108, 0.18),
    0 0 18px rgba(225, 48, 108, 0.45) !important;
}

.how-it-works-v2 .hiw-tl-item .when {
  display: inline-block;
  font-family: JetBrains Mono, monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-2);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.how-it-works-v2 .hiw-tl-item h3 {
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 3vw, 21px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}

.how-it-works-v2 .hiw-tl-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

.how-it-works-v2 .hiw-never-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.how-it-works-v2 .hiw-never-head h2 {
  font-family: Playfair Display, Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.06;
}

.how-it-works-v2 .hiw-never {
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}

.how-it-works-v2 .hiw-never li {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

@media (max-width: 640px) {
  .how-it-works-v2 .hiw-never li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }
}

.how-it-works-v2 .hiw-never li b {
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
}

.how-it-works-v2 .hiw-never li span {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.how-it-works-v2 .hiw-never li .x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #f43f5e);
  color: #fff;
  margin-right: 12px;
  vertical-align: -5px;
  box-shadow: 0 6px 14px -6px rgba(239, 68, 68, 0.55);
  flex-shrink: 0;
}

.how-it-works-v2 .hiw-never li .x svg {
  width: 11px;
  height: 11px;
}

.how-it-works-v2 #faq {
  padding-top: 84px;
}

@media (max-width: 900px) {
  .how-it-works-v2 section {
    padding: 62px 0;
  }
  .how-it-works-v2 #faq {
    padding-top: 62px;
    padding-bottom: 62px;
  }
}

.how-it-works-v2 .hiw-gm-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 860px) {
  .how-it-works-v2 .hiw-gm-feature {
    grid-template-columns: 1fr;
  }
}

.how-it-works-v2 .hiw-mgr-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.how-it-works-v2 .hiw-mgr-card:before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--ig);
}

.how-it-works-v2 .hiw-mgr-head {
  display: flex;
  gap: 18px;
  align-items: center;
}

.how-it-works-v2 .hiw-mgr-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--ig);
  padding: 3px;
  flex-shrink: 0;
  position: relative;
}

.how-it-works-v2 .hiw-mgr-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.how-it-works-v2 .hiw-mgr-photo .dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--card);
}

.how-it-works-v2 .hiw-mgr-who .n {
  font-family: Outfit, sans-serif;
  font-variation-settings: 'opsz' 60, 'wght' 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.how-it-works-v2 .hiw-mgr-who .r {
  color: var(--ink-muted);
  font-size: 14px;
  margin-top: 2px;
}

.how-it-works-v2 .hiw-mgr-who .pill {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-tint);
  color: var(--green-deep);
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.how-it-works-v2 .hiw-mgr-who .pill .d {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.how-it-works-v2 .hiw-mgr-card q {
  display: block;
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  font-family: Playfair Display, Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  quotes: none;
}

.how-it-works-v2 .hiw-mgr-card q:after,
.how-it-works-v2 .hiw-mgr-card q:before {
  content: none;
}

.how-it-works-v2 .hiw-mgr-card .hiw-meta-line {
  margin-top: 20px;
}

.how-it-works-v2 .hiw-team-side {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.how-it-works-v2 .hiw-team-side .lbl {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.how-it-works-v2 .hiw-team-side .avs {
  display: flex;
}

.how-it-works-v2 .hiw-team-side .avs span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--card);
  background: var(--paper-2);
  margin-right: -10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(20, 19, 39, 0.06);
}

.how-it-works-v2 .hiw-team-side .avs span:last-child {
  margin-right: 0;
}

.how-it-works-v2 .hiw-team-side .avs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.how-it-works-v2 .hiw-team-side .copy {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.how-it-works-v2 .hiw-team-side .copy b {
  color: var(--ink);
  font-weight: 600;
}

.how-it-works-v2 .hiw-team-side a.more {
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.how-it-works-v2 .hiw-team-side a.more:hover {
  color: var(--blue);
}

.how-it-works-v2 .mgr-notif {
  position: absolute;
  top: -18px;
  right: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  animation: hiwNotifPop 6s ease-in-out infinite;
  z-index: 3;
}

.how-it-works-v2 .mgr-notif .av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ig);
  padding: 1.5px;
  flex-shrink: 0;
}

.how-it-works-v2 .mgr-notif .av img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.how-it-works-v2 .mgr-notif .t {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}

.how-it-works-v2 .mgr-notif .t span {
  color: var(--ink-muted);
  font-weight: 500;
}

@media (max-width: 760px) {
  .how-it-works-v2 .mgr-notif {
    display: none;
  }
}

.how-it-works-v2 .hiw-niche-pills,
.how-it-works-v2 .hiw-target-avs,
.how-it-works-v2 .hiw-target-map {
  height: 130px;
  margin-bottom: 18px;
}

.how-it-works-v2 .hiw-target-avs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works-v2 .hiw-target-avs span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--card);
  background: var(--ig);
  padding: 2px;
  margin-right: -16px;
  overflow: visible;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -8px rgba(20, 19, 39, 0.25);
}

.how-it-works-v2 .hiw-target-avs span:last-child {
  margin-right: 0;
}

.how-it-works-v2 .hiw-target-avs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  border: 2px solid var(--card);
  background: var(--paper-2);
}

.how-it-works-v2 .hiw-niche-pills {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-content: center;
  justify-content: center;
  gap: 8px 10px;
}

.how-it-works-v2 .hiw-niche-pills .pill {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-tint);
  color: var(--blue-deep);
  border: 1px solid rgba(47, 91, 235, 0.18);
  letter-spacing: -0.005em;
  text-align: center;
  white-space: nowrap;
}

.how-it-works-v2 .hiw-target-map {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(160deg, #e3e0d7, #edebe4);
  border: 1px solid var(--line);
}

.how-it-works-v2 .hiw-target-map iframe {
  position: absolute;
  top: -28px;
  left: -28px;
  width: calc(100% + 56px);
  height: calc(100% + 56px);
  border: 0;
  display: block;
  filter: saturate(0.9);
  pointer-events: none;
}

.how-it-works-v2 .hiw-target-map .overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.how-it-works-v2 .hiw-target-map .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(47, 91, 235, 0.55);
  transform: translate(-50%, -50%);
  animation: hiwRing 3s ease-out infinite;
  pointer-events: none;
}

.how-it-works-v2 .hiw-target-map .ring.r2 {
  animation-delay: 1s;
}

.how-it-works-v2 .hiw-target-map .ring.r3 {
  animation-delay: 2s;
}

.how-it-works-v2 .hiw-attrib {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.how-it-works-v2 .hiw-attrib .ph {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ig);
  padding: 2px;
  flex-shrink: 0;
}

.how-it-works-v2 .hiw-attrib .ph img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.how-it-works-v2 .hiw-attrib .n {
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.how-it-works-v2 .hiw-attrib .r {
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.how-it-works-v2 .hiw-final-avs {
  display: flex;
  justify-content: center;
  margin: 0 auto 32px;
}

.how-it-works-v2 .hiw-final-avs span {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--ig);
  padding: 3px;
  margin-right: -22px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  position: relative;
}

.how-it-works-v2 .hiw-final-avs span:last-child {
  margin-right: 0;
}

.how-it-works-v2 .hiw-final-avs img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--night);
  background: var(--night);
}

@media (max-width: 640px) {
  .how-it-works-v2 .hiw-final-avs span {
    width: 64px;
    height: 64px;
    margin-right: -16px;
    padding: 2.5px;
  }
}

.how-it-works-v2 .final {
  padding: 140px 0;
  background: radial-gradient(
      600px 320px at 50% 40%,
      rgba(225, 48, 108, 0.15),
      transparent 70%
    ),
    radial-gradient(
      600px 300px at 50% 60%,
      rgba(47, 91, 235, 0.18),
      transparent 70%
    ),
    var(--night);
  color: #f5f1e8;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.how-it-works-v2 .final:before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--ig);
  opacity: 0.3;
}

.how-it-works-v2 .final:after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--ig);
  background-size: 200% 100%;
  animation: hiwIgShift 5s linear infinite;
  opacity: 0.7;
}

.how-it-works-v2 .final h2 {
  color: #f5f1e8;
}

.how-it-works-v2 .final h2 em {
  font-style: italic;
}

.how-it-works-v2 .final .lede {
  color: rgba(245, 241, 232, 0.7);
  max-width: 54ch;
  margin: 24px auto;
  font-size: 19px;
}

.how-it-works-v2 .final .final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.how-it-works-v2 .final .btn {
  font-size: 17px;
  padding: 22px 36px;
}

.how-it-works-v2 .final .btn-secondary-link {
  color: rgba(245, 241, 232, 0.85);
  font-size: 15.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
}

.how-it-works-v2 .final .btn-secondary-link:hover {
  color: #fff;
}

.how-it-works-v2 .final .btn-secondary-link .arrow {
  transition: transform 0.2s ease;
}

.how-it-works-v2 .final .btn-secondary-link:hover .arrow {
  transform: translateX(3px);
}

.how-it-works-v2 .final .reassure {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  color: rgba(245, 241, 232, 0.65);
  font-size: 14px;
}

.how-it-works-v2 .final .reassure span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.how-it-works-v2 .final .reassure svg {
  color: #6ee7b7;
}

@media (max-width: 900px) {
  .how-it-works-v2 .hiw-hero h1 {
    font-size: 54px;
    line-height: 1.08;
    letter-spacing: -0.02em;
  }
  .how-it-works-v2 .hiw-hero {
    padding: 64px 0 56px;
  }
  .how-it-works-v2 .hiw-short {
    padding: 60px 0;
  }
  .how-it-works-v2 .final {
    padding: 84px 0;
  }
  .how-it-works-v2 .final .final-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .how-it-works-v2 .final .btn {
    width: 100%;
    justify-content: center;
  }
}

.how-it-works-v2 .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.how-it-works-v2 .reveal.in {
  opacity: 1;
  transform: none;
}

.how-it-works-v2 .stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.how-it-works-v2 .stagger.in > * {
  opacity: 1;
  transform: none;
}

.how-it-works-v2 .stagger.in > :first-child {
  transition-delay: 0.04s;
}

.how-it-works-v2 .stagger.in > :nth-child(2) {
  transition-delay: 0.14s;
}

.how-it-works-v2 .stagger.in > :nth-child(3) {
  transition-delay: 0.24s;
}

.how-it-works-v2 .stagger.in > :nth-child(4) {
  transition-delay: 0.34s;
}

.how-it-works-v2 .stagger.in > :nth-child(5) {
  transition-delay: 0.44s;
}

.how-it-works-v2 .stagger.in > :nth-child(6) {
  transition-delay: 0.54s;
}

.how-it-works-v2 .ig-divider {
  position: relative;
  height: 2px;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.how-it-works-v2 .ig-divider:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(131, 58, 180, 0) 8%,
    #833ab4 22%,
    #c13584 38%,
    #e1306c 50%,
    #fd8f45 62%,
    #fccc63 78%,
    rgba(252, 204, 99, 0) 92%,
    transparent
  );
  background-size: 220% 100%;
  animation: hiwIgShift 6s linear infinite;
}

.how-it-works-v2 .ig-divider.dark:before {
  filter: saturate(1.1) brightness(1.15);
}

.how-it-works-v2 .hero-glyphs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.how-it-works-v2 .hero-glyph {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  color: var(--ink);
  animation: hiwFloatY 6s ease-in-out infinite;
}

.how-it-works-v2 .hero-glyph.ig {
  background: var(--ig);
  color: #fff;
  border: 0;
}

.how-it-works-v2 .hero-glyph.lg {
  width: 64px;
  height: 64px;
}

.how-it-works-v2 .hero-glyph.sm {
  width: 42px;
  height: 42px;
}

.how-it-works-v2 .hero-glyph svg {
  width: 22px;
  height: 22px;
}

.how-it-works-v2 .hero-glyph.lg svg {
  width: 26px;
  height: 26px;
}

.how-it-works-v2 .hero-glyph.sm svg {
  width: 18px;
  height: 18px;
}

.how-it-works-v2 .hero-glyph.g1 {
  top: 14%;
  left: 8%;
  animation-delay: 0s;
}

.how-it-works-v2 .hero-glyph.g2 {
  top: 38%;
  left: 2%;
  animation-delay: 1.2s;
}

.how-it-works-v2 .hero-glyph.g3 {
  top: 66%;
  left: 9%;
  animation-delay: 0.4s;
}

.how-it-works-v2 .hero-glyph.g4 {
  top: 88%;
  left: 18%;
  animation-delay: 1.6s;
}

.how-it-works-v2 .hero-glyph.g5 {
  top: 12%;
  right: 8%;
  animation-delay: 0.6s;
}

.how-it-works-v2 .hero-glyph.g6 {
  top: 36%;
  right: 2%;
  animation-delay: 1.4s;
}

.how-it-works-v2 .hero-glyph.g7 {
  top: 64%;
  right: 9%;
  animation-delay: 0.9s;
}

.how-it-works-v2 .hero-glyph.g8 {
  top: 88%;
  right: 18%;
  animation-delay: 2s;
}

.how-it-works-v2 .hero-glyph.g9 {
  top: 4%;
  left: 32%;
  animation-delay: 1.1s;
}

.how-it-works-v2 .hero-glyph.g10 {
  top: 4%;
  right: 32%;
  animation-delay: 0.3s;
}

@media (max-width: 1100px) {
  .how-it-works-v2 .hero-glyph.g10,
  .how-it-works-v2 .hero-glyph.g4,
  .how-it-works-v2 .hero-glyph.g8,
  .how-it-works-v2 .hero-glyph.g9 {
    display: none;
  }
}

@media (max-width: 760px) {
  .how-it-works-v2 .hero-glyphs {
    display: none;
  }
}

.how-it-works-v2 .hiw-connect-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 720px;
  margin: 44px auto 0;
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.how-it-works-v2 .hiw-connect-flow:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--ig);
  background-size: 200% 100%;
  animation: hiwIgShift 4s linear infinite;
}

.how-it-works-v2 .flow-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.how-it-works-v2 .flow-side .av {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--ig);
  padding: 3px;
  position: relative;
}

.how-it-works-v2 .flow-side .av img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper-2);
  display: block;
}

.how-it-works-v2 .flow-side .av .corner {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.how-it-works-v2 .flow-side .av .corner.green {
  color: #fff;
  background: var(--green);
  border-color: var(--card);
}

.how-it-works-v2 .flow-side .av .corner svg {
  width: 11px;
  height: 11px;
}

.how-it-works-v2 .flow-side .name {
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.how-it-works-v2 .flow-side .role {
  font-size: 11.5px;
  color: var(--ink-muted);
}

.how-it-works-v2 .flow-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}

.how-it-works-v2 .flow-link .pipe {
  position: absolute;
  left: -90px;
  right: -90px;
  top: 36px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 19, 39, 0.15) 20%,
    rgba(225, 48, 108, 0.65) 50%,
    rgba(20, 19, 39, 0.15) 80%,
    transparent
  );
  background-size: 200% 100%;
  animation: hiwIgShift 4s linear infinite;
  z-index: 0;
}

.how-it-works-v2 .flow-link .lock {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--green), var(--green-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(15, 165, 122, 0.55);
  position: relative;
  z-index: 1;
  animation: hiwLockBeat 3s ease-in-out infinite;
}

.how-it-works-v2 .flow-link .lock svg {
  width: 30px;
  height: 30px;
}

.how-it-works-v2 .flow-link .lock:after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(15, 165, 122, 0.5);
  animation: hiwLockRing 2.4s ease-out infinite;
}

.how-it-works-v2 .flow-link .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--green-tint);
  color: var(--green-deep);
  z-index: 1;
}

.how-it-works-v2 .flow-link .badge .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(15, 165, 122, 0.7);
  animation: pulse 2.5s infinite;
}

@media (max-width: 640px) {
  .how-it-works-v2 .hiw-connect-flow {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 20px;
    max-width: 420px;
  }
  .how-it-works-v2 .flow-link .pipe {
    left: 50%;
    right: auto;
    top: -12px;
    width: 2px;
    height: 24px;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      transparent,
      rgba(225, 48, 108, 0.6),
      transparent
    );
  }
}

.how-it-works-v2 .hiw-engage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.how-it-works-v2 .hiw-engage-rules {
  padding-right: 8px;
}

@media (max-width: 900px) {
  .how-it-works-v2 .hiw-engage-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
  }
  .how-it-works-v2 .hiw-engage-rules {
    padding-right: 0;
    order: 2;
  }
  .how-it-works-v2 .hiw-gm-wrap {
    order: 1;
  }
}

.how-it-works-v2 .hiw-gm-wrap {
  position: relative;
}

.how-it-works-v2 .engage-orbits {
  position: absolute;
  inset: -22px;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 520px) {
  .how-it-works-v2 .hiw-gm-card {
    padding: 22px 18px;
  }
  .how-it-works-v2 .hiw-log li {
    font-size: 13px;
    padding: 11px 12px;
    gap: 10px;
  }
  .how-it-works-v2 .hiw-log .tm {
    font-size: 11.5px;
  }
  .how-it-works-v2 .hiw-attrib .ph {
    width: 38px;
    height: 38px;
  }
}

.how-it-works-v2 .engage-orb {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e1306c;
  animation: hiwFloatY 5s ease-in-out infinite;
}

.how-it-works-v2 .engage-orb.o2 {
  color: #2f5beb;
  animation-delay: 0.6s;
}

.how-it-works-v2 .engage-orb.o3 {
  color: #0fa57a;
  animation-delay: 1.2s;
}

.how-it-works-v2 .engage-orb svg {
  width: 18px;
  height: 18px;
}

.how-it-works-v2 .engage-orb.o1 {
  top: -18px;
  left: -22px;
}

.how-it-works-v2 .engage-orb.o2 {
  bottom: 24px;
  left: -26px;
}

.how-it-works-v2 .engage-orb.o3 {
  top: 36%;
  right: -22px;
}

@media (max-width: 900px) {
  .how-it-works-v2 .engage-orbits {
    display: none;
  }
}

.how-it-works-v2 .hiw-log li {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.how-it-works-v2 .hiw-gm-card.in .hiw-log li {
  opacity: 1;
  transform: none;
}

.how-it-works-v2 .hiw-gm-card.in .hiw-log li:first-child {
  transition-delay: 0.1s;
}

.how-it-works-v2 .hiw-gm-card.in .hiw-log li:nth-child(2) {
  transition-delay: 0.45s;
}

.how-it-works-v2 .hiw-gm-card.in .hiw-log li:nth-child(3) {
  transition-delay: 0.8s;
}

.how-it-works-v2 .hiw-gm-card.in .hiw-log li:nth-child(4) {
  transition-delay: 1.15s;
}

.how-it-works-v2 .hiw-log li .ic {
  position: relative;
  color: var(--green);
}

.how-it-works-v2 .hiw-gm-card.in .hiw-log li .ic:after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(15, 165, 122, 0.55);
  animation: hiwRingTiny 1.4s ease-out;
}

.how-it-works-v2 .notif-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0 8px;
}

@media (max-width: 780px) {
  .how-it-works-v2 .notif-cards {
    grid-template-columns: 1fr;
  }
}

.how-it-works-v2 .notif-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.how-it-works-v2 .notif-card.in {
  transform: none;
  opacity: 1;
}

.how-it-works-v2 .notif-card:nth-child(2) {
  transition-delay: 0.18s;
}

.how-it-works-v2 .notif-card:nth-child(3) {
  transition-delay: 0.36s;
}

.how-it-works-v2 .notif-card .av {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ig);
  padding: 2px;
}

.how-it-works-v2 .notif-card .av img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--paper-2);
}

.how-it-works-v2 .notif-card .txt {
  flex: 1;
  min-width: 0;
}

.how-it-works-v2 .notif-card .txt .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.how-it-works-v2 .notif-card .txt .name span {
  font-weight: 400;
  color: var(--ink-soft);
}

.how-it-works-v2 .notif-card .txt .when {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.how-it-works-v2 .notif-card .follow-btn {
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  flex-shrink: 0;
}

.how-it-works-v2 .hiw-card.with-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-it-works-v2 .growth-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 96px;
  margin-top: 8px;
  padding: 0 4px;
  min-width: 0;
  overflow: hidden;
}

.how-it-works-v2 .growth-chart .bar {
  flex: 1;
  min-width: 0;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--blue), rgba(47, 91, 235, 0.35));
  height: 8%;
  transition: height 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.how-it-works-v2 .hiw-card.in .growth-chart .bar {
  height: var(--h, 50%);
}

.how-it-works-v2 .growth-chart .bar:first-child {
  transition-delay: 0.05s;
}

.how-it-works-v2 .growth-chart .bar:nth-child(2) {
  transition-delay: 0.15s;
}

.how-it-works-v2 .growth-chart .bar:nth-child(3) {
  transition-delay: 0.25s;
}

.how-it-works-v2 .growth-chart .bar:nth-child(4) {
  transition-delay: 0.35s;
}

.how-it-works-v2 .growth-chart .bar:nth-child(5) {
  transition-delay: 0.45s;
}

.how-it-works-v2 .growth-chart .bar:nth-child(6) {
  transition-delay: 0.55s;
}

.how-it-works-v2 .growth-chart .bar:nth-child(7) {
  transition-delay: 0.65s;
}

.how-it-works-v2 .growth-chart .bar:nth-child(8) {
  transition-delay: 0.75s;
}

.how-it-works-v2 .growth-chart .bar.peak {
  background: linear-gradient(180deg, #e1306c, rgba(225, 48, 108, 0.4));
}

.how-it-works-v2 .chart-foot {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.how-it-works-v2 .exit-graph {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  height: 64px;
  align-items: flex-end;
  min-width: 0;
  overflow: hidden;
}

.how-it-works-v2 .exit-graph .step {
  flex: 1;
  min-width: 0;
  border-radius: 6px;
  background: var(--blue-tint);
  position: relative;
  transition: background 0.9s ease;
}

.how-it-works-v2 .exit-graph .step:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: var(--green);
  border-radius: 6px;
  transition: height 1.2s ease;
}

.how-it-works-v2 .hiw-card.in .exit-graph .step.up:after {
  height: 100%;
}

.how-it-works-v2 .exit-graph .step.up:first-child:after {
  transition-delay: 0.1s;
}

.how-it-works-v2 .exit-graph .step.up:nth-child(2):after {
  transition-delay: 0.25s;
}

.how-it-works-v2 .exit-graph .step.up:nth-child(3):after {
  transition-delay: 0.4s;
}

.how-it-works-v2 .exit-graph .step.up:nth-child(4):after {
  transition-delay: 0.55s;
}

.how-it-works-v2 .exit-graph .step.down {
  background: var(--blue-tint);
}

.how-it-works-v2 .exit-graph .step.down:after {
  background: linear-gradient(
    180deg,
    var(--ink-muted),
    rgba(109, 109, 133, 0.3)
  );
}

.how-it-works-v2 .hiw-card.in .exit-graph .step.down:after {
  height: 18%;
}

@keyframes hiwIgShift {
  0% {
    background-position: 0 50%;
  }
  to {
    background-position: -220% 50%;
  }
}

@keyframes hiwFloatY {
  0%,
  to {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes hiwRing {
  0% {
    width: 30px;
    height: 30px;
    opacity: 0.8;
  }
  to {
    width: 140px;
    height: 140px;
    opacity: 0;
  }
}

@keyframes hiwNotifPop {
  0%,
  12%,
  to {
    transform: translateY(-8px) scale(0.96);
    opacity: 0;
  }
  3%,
  9% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes hiwLockBeat {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes hiwLockRing {
  0% {
    transform: scale(0.8);
    opacity: 0.85;
  }
  to {
    transform: scale(1.55);
    opacity: 0;
  }
}

@keyframes hiwRingTiny {
  0% {
    transform: scale(0.4);
    opacity: 0.9;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-it-works-v2 *,
  .how-it-works-v2 :after,
  .how-it-works-v2 :before {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .how-it-works-v2 .hiw-log li,
  .how-it-works-v2 .notif-card,
  .how-it-works-v2 .reveal,
  .how-it-works-v2 .stagger > * {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) and (min-width: 741px) {
  .how-it-works-v2 .hiw-target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) and (min-width: 761px) {
  .how-it-works-v2 .hiw-strip-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 0;
    row-gap: 28px;
  }
  .how-it-works-v2 .hiw-strip-track:before {
    display: none;
  }
  .how-it-works-v2 .hiw-stat-band {
    grid-template-columns: 1fr 1fr;
  }
  .how-it-works-v2 .hiw-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .how-it-works-v2 .hiw-stat:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .how-it-works-v2 .hiw-stat:last-child {
    grid-column: 1/-1;
    border-right: 0;
    border-bottom: 0;
    text-align: center;
  }
}

@media (max-width: 1024px) and (min-width: 901px) {
  .how-it-works-v2 .hiw-step-head {
    gap: 36px;
  }
  .how-it-works-v2 .hiw-gm-feature {
    gap: 18px;
  }
  .how-it-works-v2 .hiw-engage-grid {
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .how-it-works-v2 .hiw-hero h1 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
}

@media (max-width: 380px) {
  .how-it-works-v2 .hiw-hero h1 {
    font-size: clamp(24px, 7.5vw, 28px);
  }
}

@media (max-width: 640px) {
  .how-it-works-v2 .hiw-card,
  .how-it-works-v2 .hiw-mgr-card,
  .how-it-works-v2 .hiw-option,
  .how-it-works-v2 .hiw-pull,
  .how-it-works-v2 .hiw-target {
    padding: 24px 20px;
  }
  .how-it-works-v2 .hiw-stat {
    padding: 30px 22px;
  }
  .how-it-works-v2 .hiw-step-head {
    gap: 18px;
    margin-bottom: 32px;
  }
  .how-it-works-v2 .hiw-step-head .copy,
  .how-it-works-v2 .hiw-step-head .copy.lede-only {
    font-size: 16.5px;
  }
}

@media (max-width: 480px) {
  .how-it-works-v2 .hiw-tl {
    padding-left: 24px;
  }
  .how-it-works-v2 .hiw-tl-item {
    padding: 0 0 28px 18px;
  }
  .how-it-works-v2 .hiw-tl-item:before {
    left: -21px;
  }
  .how-it-works-v2 .hiw-tl:before {
    left: 5px;
  }
  .how-it-works-v2 .hiw-tl:after {
    left: 4px;
  }
}

@media (max-width: 420px) {
  .how-it-works-v2 .final .final-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .how-it-works-v2 .final .btn.btn-primary.btn-lg {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    justify-content: center;
  }
  .how-it-works-v2 .final .btn-secondary-link {
    justify-content: center;
  }
  .how-it-works-v2 .hiw-strip-foot {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .how-it-works-v2 .hiw-final-avs span {
    width: 52px;
    height: 52px;
    margin-right: -14px;
    padding: 2px;
  }
  .how-it-works-v2 .flow-side .av {
    width: 52px;
    height: 52px;
  }
  .how-it-works-v2 .flow-link .lock {
    width: 60px;
    height: 60px;
  }
  .how-it-works-v2 .flow-link .lock svg {
    width: 24px;
    height: 24px;
  }
  .how-it-works-v2 .hiw-meta {
    font-size: 11px;
    letter-spacing: 0.14em;
    gap: 6px 10px;
  }
  .how-it-works-v2 .hiw-strip-node .lbl {
    font-size: 11.5px;
    max-width: 11ch;
  }
}

/* ---- Exit chart fixes (merged from how-it-works-fixes.css) ---- */
.how-it-works-v2 .exit-card .exit-graph {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  height: 72px;
  margin-top: auto;
  padding-top: 14px;
  align-items: end;
  overflow: visible;
}

.how-it-works-v2 .exit-card .exit-graph .step {
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 91, 235, 0.12);
  border-radius: 7px;
  background: #e9edf9;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.how-it-works-v2 .exit-card .exit-graph .step::after {
  border-radius: 6px;
}

.how-it-works-v2 .exit-card .exit-graph .step.up {
  border-color: rgba(15, 165, 122, 0.22);
  background: #49a57f;
}

.how-it-works-v2 .hiw-card.in.exit-card .exit-graph .step.up::after {
  height: 0;
}

.how-it-works-v2 .exit-card .exit-graph .step.down::after,
.how-it-works-v2 .hiw-card.in.exit-card .exit-graph .step.down::after {
  height: 14px;
  background: linear-gradient(
    180deg,
    rgba(126, 128, 154, 0.95),
    rgba(80, 82, 111, 0.5)
  );
  box-shadow: 0 -4px 10px rgba(80, 82, 111, 0.24);
}

.how-it-works-v2 .exit-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .how-it-works-v2 .exit-card .exit-graph {
    gap: 8px;
    height: 58px;
  }
  .how-it-works-v2 .exit-foot {
    font-size: 11.5px;
  }
}
