/* =========================================================
   Dark sections — Solution, HiddenDangers, CleanReveal,
   SelfLearn, Close, SampleCTA
   ========================================================= */

/* =========================================================
   Odometer strip — animated proof tally between hero and journey
   ========================================================= */
.odometer-strip {
  position: relative;
  padding: 36px 0;
  background: transparent;
  overflow: hidden;
}
.odometer-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.odometer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.odometer__num {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--green-dark);
}
.odometer__digit {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  vertical-align: top;
  font-variant-numeric: tabular-nums;
  width: 0.62em;
  text-align: center;
}
.odometer__sep {
  display: inline-block;
  width: 0.28em;
  text-align: center;
  color: var(--green);
}
.odometer__reel {
  display: block;
  line-height: 1;
  transform: translateY(0);
  will-change: transform;
}
.odometer__reel > span {
  display: block;
  height: 1em;
  line-height: 1;
}
.odometer.is-running .odometer__reel {
  transition: transform 2.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.odometer__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
@media (max-width: 720px) {
  .odometer-strip { padding: 28px 0; }
  .odometer__num { font-size: 3.2rem; }
}


/* ---------- Solution section (Our solution — pipeline) ---------- */
.section--solution {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #0a1510 0%, #14201a 60%, #0f1814 100%);
  color: #fff;
  border-block: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.solution__bigword {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font);
  font-size: 18rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(58, 239, 136, 0.10);
  text-stroke: 1px rgba(58, 239, 136, 0.10);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.section--solution h2:not(.solution__bigword) { color: #fff; }

/* Solution — how-it-works split (replaces .solution-flow spinner + nodes).
   Two-column: stacked numbered steps left, visual block right. Dark-section
   variant of the validsend "How it works" pattern. */
.solution-howitworks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 56px auto 32px;
}
.solution-howitworks__steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.solution-howitworks__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.solution-howitworks__step-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: rgba(58, 239, 136, 0.62);
  min-width: 28px;
  padding-top: 2px;
  letter-spacing: 0.04em;
}
.solution-howitworks__step h4 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.018em;
  line-height: 1.3;
}
.solution-howitworks__step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.6;
}
.solution-howitworks__note {
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(58, 239, 136, 0.30);
  border-left: 4px solid rgba(58, 239, 136, 0.80);
  border-radius: 12px;
  background: rgba(58, 239, 136, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}
.solution-howitworks__note strong {
  color: #fff;
  font-weight: 700;
}
.solution-howitworks__visual {
  position: relative;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
}
.solution-howitworks__image {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
}
.solution-howitworks__visual-inner {
  display: grid;
  gap: 12px;
  text-align: center;
  width: 100%;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.solution-howitworks__visual-icon {
  margin: 0 auto;
  width: 44px;
  height: 44px;
  color: #3aef88;
}
.solution-howitworks__visual-icon svg {
  width: 100%;
  height: 100%;
}
.solution-howitworks__visual-divider {
  color: rgba(58, 239, 136, 0.55);
  font-family: var(--mono);
  font-weight: 700;
}
@media (max-width: 720px) {
  .solution-howitworks {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 36px;
  }
  .solution-howitworks__visual {
    aspect-ratio: 16 / 10;
  }
}

/* Radial-pulse spinner — sits as the validation engine between
   the Raw list (in) and Validated (out) flow nodes.
   Canvas is sized via CSS; JS reads getBoundingClientRect for DPR-aware drawing. */
.solution-spinner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}
.solution-spinner__canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* "Validation engine" label chip — hovers above the spinner canvas
   without affecting the canvas's vertical alignment with the flow nodes. */
.solution-spinner__label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(58, 239, 136, 0.95);
  white-space: nowrap;
  background: rgba(7, 16, 12, 0.85);
  border: 1px solid rgba(58, 239, 136, 0.32);
  border-radius: 999px;
  padding: 6px 14px;
  z-index: 2;
  box-shadow: 0 8px 24px -10px rgba(58, 239, 136, 0.30);
  backdrop-filter: blur(4px);
}

@media (max-width: 720px) {
  .solution-spinner { max-width: 200px; margin: 36px auto 20px; }
  .solution-spinner__label { font-size: 10px; padding: 5px 11px; top: -12px; }
}

/* Pipeline diagram */
.solution-flow {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 48px auto 32px;
  display: grid;
  grid-template-columns: minmax(170px, auto) minmax(0, 1fr) minmax(170px, auto);
  gap: 18px;
  align-items: center;
}

/* Connecting line: visible only in the GAPS between Raw list ↔ spinner ↔ Validated.
   Transparent under the spinner (38-62%) so the pulse rings have a clean field;
   node cards above sit on z-index:2 with opaque backgrounds, hiding the line
   at their own positions (0-~18% and ~82-100%). */
.solution-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-0.75px);
  background: linear-gradient(
    to right,
    rgba(58, 239, 136, 0) 0%,
    rgba(58, 239, 136, 0.42) 25%,
    rgba(58, 239, 136, 0.42) 38%,
    rgba(58, 239, 136, 0) 42%,
    rgba(58, 239, 136, 0) 58%,
    rgba(58, 239, 136, 0.42) 62%,
    rgba(58, 239, 136, 0.42) 75%,
    rgba(58, 239, 136, 0) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.solution-flow__node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 26px 22px;
  /* Solid dark base so the connecting line behind the flow is fully hidden
     under each node card; subtle white gradient layered on top. */
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    #0e1a14;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  text-align: center;
  transition: border-color 320ms ease, background 320ms ease, box-shadow 320ms ease;
}

/* Alternating highlight: Raw list and Validated swap focus every 5s.
   10s total cycle, ~4.5s held + 0.5s crossfade × 2. */
.solution-flow__node--in {
  animation: solutionAltIn 10s ease-in-out infinite;
}

.solution-flow__node--out {
  animation: solutionAltOut 10s ease-in-out infinite;
}

@keyframes solutionAltIn {
  0%, 45% {
    border-color: #ff7a00;
    background:
      linear-gradient(180deg, rgba(255,122,0,0.18), rgba(255,122,0,0.10)),
      #0e1a14;
    box-shadow: 0 0 0 4px rgba(255,122,0,0.08), 0 0 28px rgba(255,122,0,0.32);
  }
  55%, 95% {
    border-color: rgba(255,255,255,0.12);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
      #0e1a14;
    box-shadow: none;
  }
  100% {
    border-color: #ff7a00;
    background:
      linear-gradient(180deg, rgba(255,122,0,0.18), rgba(255,122,0,0.10)),
      #0e1a14;
    box-shadow: 0 0 0 4px rgba(255,122,0,0.08), 0 0 28px rgba(255,122,0,0.32);
  }
}

@keyframes solutionAltOut {
  0%, 45% {
    border-color: rgba(255,255,255,0.12);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
      #0e1a14;
    box-shadow: none;
  }
  55%, 95% {
    border-color: #3aef88;
    background:
      linear-gradient(180deg, rgba(58,239,136,0.18), rgba(58,239,136,0.10)),
      #0e1a14;
    box-shadow: 0 0 0 4px rgba(58,239,136,0.08), 0 0 28px rgba(58,239,136,0.32);
  }
  100% {
    border-color: rgba(255,255,255,0.12);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
      #0e1a14;
    box-shadow: none;
  }
}

.solution-flow__node-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 120px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  transition: border-color 320ms ease, box-shadow 320ms ease;
  overflow: hidden;
  order: 2;
}

.solution-flow__node--in .solution-flow__node-icon {
  border-color: rgba(255, 122, 0, 0.30);
}

.solution-flow__node--out .solution-flow__node-icon {
  border-color: rgba(58,239,136,0.30);
}

.solution-flow__node-icon svg { width: 34px; height: 34px; }
.solution-flow__node-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.solution-flow__node-text {
  display: grid;
  gap: 3px;
  order: 1;
  margin-bottom: 4px;
}

.solution-flow__node-label {
  font: 700 14.5px var(--font);
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.solution-flow__node-sub {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Pipeline rail */
.solution-flow__rail {
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
}

.solution-flow__line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.10);
  border-radius: 1px;
  overflow: hidden;
}

.solution-flow__line-fill {
  position: absolute; inset: 0;
  width: 0;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-bright) 100%);
  box-shadow: 0 0 12px rgba(58,239,136,0.50);
  animation: solutionLineFill 5.5s linear infinite;
}

@keyframes solutionLineFill {
  0%   { width: 0;    opacity: 0; }
  4%   { opacity: 1; }
  92%  { width: 100%; opacity: 1; }
  96%  { width: 100%; opacity: 0; }
  100% { width: 0;    opacity: 0; }
}

.solution-flow__pulse {
  position: absolute;
  top: 50%; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(58,239,136,0.30), 0 0 22px rgba(58,239,136,0.70);
  transform: translate(-50%, -50%);
  animation: solutionPulse 5.5s linear infinite;
}

@keyframes solutionPulse {
  0%   { left: 0;    opacity: 0; }
  6%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.solution-flow__stages {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
}

.solution-flow__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.solution-flow__stage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #14201a;
  border: 1.5px solid rgba(58,239,136,0.30);
  color: rgba(255,255,255,0.65);
  box-shadow: 0 0 0 4px rgba(20,33,26,1);
  animation: solutionStageGlow 5.5s linear infinite;
  animation-delay: calc((var(--stage-i) - 1.5) * 1.375s);
}

.solution-flow__stage-icon svg { width: 22px; height: 22px; }

@keyframes solutionStageGlow {
  0%, 45%, 60%, 100% {
    background: #14201a;
    border-color: rgba(58,239,136,0.30);
    color: rgba(255,255,255,0.65);
    transform: scale(1);
  }
  48%, 57% {
    background: rgba(58,239,136,0.20);
    border-color: #3aef88;
    color: #3aef88;
    box-shadow: 0 0 0 4px rgba(20,33,26,1), 0 0 22px rgba(58,239,136,0.55);
    transform: scale(1.10);
  }
}

.solution-flow__stage-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}

/* Evidence chips */
.solution-evidence {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 40px auto 0;
  max-width: 920px;
}

.solution-evidence__chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(58, 239, 136, 0.18);
  border-radius: 14px;
  will-change: transform, border-color, box-shadow;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-evidence__chip:hover {
  transform: translateY(-3px);
  border-color: rgba(58, 239, 136, 0.45);
  box-shadow: 
    0 12px 28px rgba(7, 16, 12, 0.35),
    0 0 12px rgba(58, 239, 136, 0.15);
}

.solution-evidence__chip-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(58, 239, 136, 0.10);
  color: #3aef88;
}
.solution-evidence__chip-icon svg { width: 20px; height: 20px; }

.solution-evidence__chip-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.solution-evidence__chip-num {
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 800;
  color: #3aef88;
  line-height: 1;
  letter-spacing: -0.03em;
}

.solution-evidence__chip-label {
  font: 700 13px var(--font);
  color: #fff;
  letter-spacing: -0.012em;
}

.solution-evidence__chip-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* Solution payoff strip */
.solution__payoff {
  position: relative;
  z-index: 1;
  margin: 28px auto 0;
  max-width: 1080px;
  padding: 26px 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.25), 0 1px 2px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.solution__payoff-text { flex: 1 1 380px; min-width: 0; }

.solution__payoff-text p { color: var(--text) !important; }

.solution__payoff-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.solution__payoff-foot {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Hidden Dangers section ---------- */
.section--dangers {
  position: relative;
  padding: 100px 0 80px;
  background: #ffffff;
  color: var(--text);
  border-block: 1px solid var(--border);
  overflow: hidden;
}

.dangers__bigword {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font);
  font-size: 18rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(220, 38, 38, 0.12);
  text-stroke: 1px rgba(220, 38, 38, 0.12);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.dangers__head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.dangers__head h2 { margin: 0; color: var(--text); }

/* Method-grid pattern — typographic columns, no card chrome, generous gap.
   Cards are bare blocks separated by whitespace; arrows on the titles link
   step 01 → 02 → climax (03, no arrow — it's the terminal state). */
.dangers__grid {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.dangers__act {
  display: grid;
  gap: 14px;
  /* no border, no background, no padding — typography carries it */
}

.dangers__act-num {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1;
  letter-spacing: -0.03em;
}

.dangers__act-num--red { color: rgba(255, 138, 138, 0.60); }

.dangers__act-title {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.022em;
  line-height: 1.25;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.dangers__act-arrow {
  color: rgba(58, 239, 136, 0.55);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.95em;
}

.dangers__act-sub {
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 14.5px;
  line-height: 1.6;
}

.dangers__act-visual {
  margin-top: 18px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: rgba(8, 14, 11, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.dangers__act-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

.dangers__act--climax .dangers__act-visual {
  border-color: rgba(220, 38, 38, 0.18);
  background: rgba(28, 8, 8, 0.45);
}

/* Dangers — alternating step-detail layout (replaces 3-col grid when grid--detail) */
.dangers__grid--detail {
  max-width: 1100px;
  margin: 56px auto 0;
  grid-template-columns: 1fr;
  gap: 0;
}
.dangers__detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
}
.dangers__detail-row + .dangers__detail-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dangers__detail-row--reverse .dangers__detail-visual { order: -1; }
.dangers__detail-content { display: grid; gap: 0; }
.dangers__detail-num {
  font-family: var(--mono);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
.dangers__detail-num--yellow { color: #d97706; }
.dangers__detail-num--red    { color: #b91c1c; }
.dangers__detail-title {
  margin: 0 0 14px;
  font-family: var(--font);
  font-size: 1.7rem;
  font-weight: 700;
  color: #14201a;
  letter-spacing: -0.022em;
  line-height: 1.22;
  position: relative;
  z-index: 1;
}
.dangers__detail-narr {
  margin: 0 0 20px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}
.dangers__detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dangers__detail-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.55;
}
.dangers__detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #3aef88;
  border-radius: 50%;
}
.dangers__detail-list--red li::before { background: rgba(255, 138, 138, 0.85); }
.dangers__detail-visual {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.dangers__detail-visual svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}
.dangers__detail-image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}
.dangers__detail-image--portrait {
  aspect-ratio: 4 / 5;
  height: auto;
}
/* climax row no longer carries the red-tinted frame; the image stands alone */
@media (max-width: 720px) {
  .dangers__detail-row,
  .dangers__detail-row--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0;
  }
  .dangers__detail-row--reverse .dangers__detail-visual { order: 0; }
}

.dangers__bullets {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.dangers__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.55;
}

.dangers__bullet--red {
  color: rgba(255, 150, 150, 0.62);
}

.dangers__bullet-mark {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(58, 239, 136, 0.55);
  margin-top: 8px;
  flex-shrink: 0;
}

.dangers__bullet--red .dangers__bullet-mark {
  background: rgba(255, 138, 138, 0.60);
}

.dangers__closing {
  position: relative;
  z-index: 1;
  margin: 36px auto 0;
  max-width: 64ch;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

.dangers__closing strong { color: var(--text); }

/* ---------- CleanReveal section (See it in action) ---------- */
.section--reveal {
  background: linear-gradient(180deg, #0d2b1a 0%, #0a1510 60%, #07100c 100%);
  border-block: 1px solid rgba(58, 239, 136, 0.18);
  color: #fff;
}

.section--reveal h2 { color: #fff; }
.section--reveal p { color: rgba(255,255,255,0.85); }

.section--reveal .kicker {
  border-color: rgba(58, 239, 136, 0.28);
  background: rgba(58, 239, 136, 0.10);
  color: #8ff2b2;
}

.reveal-output {
  max-width: 720px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(58, 239, 136, 0.22);
  border-radius: 20px;
  background: rgba(7, 16, 12, 0.70);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(58,239,136,0.08);
}

.reveal-output img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 0 44px rgba(58, 239, 136, 0.16);
}

/* ---------- SelfLearn section (Test the waters) ---------- */
.section--sample-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 247, 242, 0.96) 0%, rgba(246, 247, 242, 0.62) 40%, rgba(246, 247, 242, 0.10) 100%),
    linear-gradient(180deg, rgba(7, 16, 12, 0.08) 0%, rgba(7, 16, 12, 0.18) 100%),
    url("/assets/images/sample-toes.png") center 58% / cover no-repeat,
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.selfcheck__urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  color: rgba(255,255,255,0.82);
}

.selfcheck__urgency-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3aef88;
  box-shadow: 0 0 0 3px rgba(58,239,136,0.18);
}

.icon-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-stat__icon {
  display: inline-flex;
  color: #3aef88;
}

.icon-stat__val {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.icon-stat__sub {
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Close section ---------- */
.section--close {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(37, 211, 102, 0.14), transparent 28rem),
    radial-gradient(circle at 8% 88%, rgba(22, 163, 74, 0.08), transparent 24rem),
    linear-gradient(135deg, #12201a 0%, #0a1510 54%, #07100c 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.close-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 72px;
  align-items: center;
}

.close-panel h2 { color: #ffffff; }

.close-panel__copy .lede {
  margin-top: 18px;
  color: rgba(255,255,255,0.78);
}

.close-panel__action {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.close-panel__cta {
  box-shadow: 0 18px 38px rgba(22, 163, 74, 0.34);
}

.close-panel__reversal {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.close-panel__reversal li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 720;
  color: rgba(255,255,255,0.82);
}

.close-panel__reversal li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(22,163,74,0.28);
  color: #3aef88;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
}

.close-panel__voice {
  margin-top: 4px;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.5;
}

/* ---------- SampleCTA section ---------- */
.sample-cta {
  padding: 80px 0;
}

.sample-cta__panel {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 400px;
  padding: 56px;
  overflow: hidden;
  border: 1px solid rgba(189, 231, 202, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(7, 22, 16, 0.78) 0%, rgba(7, 22, 16, 0.32) 28%, rgba(7, 22, 16, 0.32) 60%, rgba(7, 22, 16, 0.86) 100%),
    linear-gradient(90deg, rgba(7, 22, 16, 0.55) 0%, rgba(7, 22, 16, 0.18) 50%, rgba(7, 22, 16, 0) 70%),
    url("/assets/images/sample-toes.png") center 70% / cover no-repeat,
    #07100c;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
  color: #ffffff;
}

.sample-cta__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  max-width: 580px;
  width: 100%;
}

.sample-cta__top h2 {
  margin-top: 14px;
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.sample-cta__top > p {
  margin-top: 14px;
  color: rgba(255,255,255,0.84);
  font-size: 1.1rem;
  line-height: 1.55;
}

.sample-cta__btn {
  position: absolute;
  right: 56px;
  bottom: 56px;
  margin-top: 0;
  box-shadow: 0 18px 38px rgba(22, 163, 74, 0.34);
}

.sample-cta__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  font-weight: 720;
}

/* ---------- Responsive for dark sections ---------- */
@media (max-width: 720px) {
  .dangers__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; max-width: 720px; }
  .dangers__act-arrow { display: none; }
}
@media (max-width: 720px) {
  .dangers__grid { grid-template-columns: 1fr; gap: 28px; max-width: 720px; }
}

@media (max-width: 720px) {
  .close-panel { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .solution-flow {
    grid-template-columns: minmax(0, auto) 1fr minmax(0, auto);
    gap: 10px;
    margin: 36px auto 24px;
  }
  .solution-flow__node { padding: 14px 10px; gap: 6px; }
  .solution-flow__node-icon { width: 120px; height: 80px; border-radius: 8px; }
  .solution-flow__node-icon svg { width: 22px; height: 22px; }
  .solution-flow__node-label { font-size: 12px; }
  .solution-flow__node-sub { display: none; }
  .solution-flow__rail { min-height: 70px; }
  .solution-flow__stage-icon { width: 36px; height: 36px; }
  .solution-flow__stage-icon svg { width: 16px; height: 16px; }
  .solution-flow__stage-label { font-size: 9px; }
  /* Stack the callouts vertically, left-aligned in a centred column.
     Each callout keeps its icon | text row reading naturally. */
  .solution-evidence {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 420px;
    margin: 28px auto 0;
  }

  .sample-cta__panel {
    flex-direction: column;
    min-height: 460px;
    padding: 32px;
    border-radius: 22px;
  }
  .sample-cta__btn { position: static; width: 100%; margin-top: 24px; }
}

@media (max-width: 720px) {
  .solution__payoff { flex-direction: column; align-items: stretch; gap: 14px; }
  .solution__payoff-text { flex: 0 0 auto; }
  .solution__payoff-cta { align-items: stretch; width: 100%; }
  .solution__payoff .btn { width: 100%; }
}

@media (max-width: 720px) {
  .solution-flow__stage-label { display: none; }
}
