/* =====================================================================
   WOUSPACE .WOU  —  POST-PURCHASE OTO FUNNEL STYLESHEET
   Mirrors Alen Sultanic's cybervisionaries OTO structure 1:1,
   rebranded to the wou palette (ink #0d0f1c, brand #5b3df5, teal #21c8a8).
   Dark hero chrome + light "paper" letter card + dark footer.
   Mobile-first. All interactive/focus states hit WCAG AA.
   Scope everything under .oto-page so it can't collide with portal.css.
   ===================================================================== */

.oto-page{
  /* --- palette (wou tokens tuned for a dark OTO shell) --- */
  --oto-bg:        #08090f;            /* near-black shell, darker sibling of --ink */
  --oto-bg-2:      #0d0f1c;            /* wou --ink, used for footer + total bar   */
  --oto-hero-glow: radial-gradient(1100px 520px at 72% -12%, rgba(91,61,245,.34), transparent 60%);

  --oto-paper:     #ffffff;            /* the light sales-letter reading card       */
  --oto-paper-2:   #f5f6fc;            /* alt rows / desc backgrounds               */
  --oto-line:      #e4e6f1;            /* hairlines on paper                        */
  --oto-line-d:    rgba(255,255,255,.12); /* hairlines on dark                      */

  --oto-ink:       #0d0f1c;            /* headings on paper / wou --ink             */
  --oto-body:      #3a3f57;            /* body copy on paper (AA on white ~9:1)     */
  --oto-mute:      #6a7089;            /* meta on paper (AA on white ~4.7:1)        */

  --oto-on-dark:   #eef0fb;            /* body copy on dark (AA ~15:1)              */
  --oto-mute-d:    #9aa0bd;            /* meta on dark (AA ~6.2:1)                  */

  --oto-brand:     #5b3df5;            /* wou purple                                */
  --oto-brand-lt:  #9b86ff;            /* purple lifted for legibility on dark      */
  --oto-teal:      #21c8a8;            /* wou teal                                  */
  --oto-teal-lt:   #35e3c0;            /* teal lifted for accent text on dark       */
  --oto-teal-dp:   #0e8f78;            /* teal darkened for text on WHITE (AA)      */
  --oto-grad:      linear-gradient(100deg,#5b3df5 0%,#7a5cff 45%,#21c8a8 100%);

  /* accept = "go" green, faithful to Alen's green accept button, wou teal family */
  --oto-accept:    linear-gradient(180deg,#2fe3bd 0%,#12b394 100%);
  --oto-accept-hi: linear-gradient(180deg,#42efca 0%,#18c6a3 100%);
  --oto-accept-ink:#04241d;            /* near-black-green: AA on teal (~6.4:1)     */

  /* urgency = Alen's orange/yellow energy, placed on warning + discount only */
  --oto-warn:      #ffb454;            /* amber accent                             */
  --oto-warn-ink:  #ffd8a3;            /* amber text on dark warn panel            */
  --oto-warn-bg:   #17120a;            /* warm-black warning panel                 */
  --oto-warn-line: #6d4c1c;
  --oto-hl-bg:     #fff7e4;            /* cream guarantee / discount highlight     */
  --oto-hl-line:   #f0d59a;
  --oto-hl-ink:    #7a5410;            /* warm ink for highlight labels (AA on cream)*/

  --oto-focus:     #8ab4ff;            /* focus ring, visible on dark AND paper    */
  --oto-radius:    16px;
  --oto-radius-sm: 10px;

  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI",
               "Helvetica Neue", Arial, sans-serif;
  --oto-mono: "SFMono-Regular", ui-monospace, "Roboto Mono", Menlo,
              Consolas, "Liberation Mono", monospace;

  background: var(--oto-hero-glow), var(--oto-bg);
  background-repeat: no-repeat;
  color: var(--oto-on-dark);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  padding: 0 0 4px;
}
.oto-page *{ box-sizing: border-box; }

/* ---- reading column: ~760px centered ------------------------------- */
.oto-wrap{
  width: 100%;
  max-width: 792px;               /* 760 column + 16px gutters each side */
  margin: 0 auto;
  padding: 0 16px;
}
.oto-section{ margin: 34px 0; }
.oto-section--tight{ margin: 18px 0; }

/* ====================================================================
   1. LOGO
   ==================================================================== */
.oto-logo{
  text-align: center;
  padding: 26px 16px 6px;
}
.oto-logo img,
.oto-logo svg{ height: 34px; width: auto; display: inline-block; }
.oto-logo-text{                    /* text-only fallback lockup */
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.5px;
  color: #fff;
}
.oto-logo-text .oto-dot{ color: var(--oto-teal-lt); }  /* the ".wou" accent */

/* ====================================================================
   2. STEP BAR — 4 pills + progress rail (done / active / upcoming)
   Set the fill with an inline custom prop:  style="--oto-progress:50%"
   ==================================================================== */
.oto-stepbar{
  margin: 20px auto 4px;
  max-width: 620px;
}
.oto-steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.oto-step{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  padding: 8px 6px;
  border-radius: 999px;
  border: 1px solid var(--oto-line-d);
  background: rgba(255,255,255,.03);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--oto-mute-d);
  text-align: center;
}
.oto-step-num{
  flex: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
  background: rgba(255,255,255,.10);
  color: var(--oto-mute-d);
}
.oto-step-label{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* completed step */
.oto-step--done{
  color: var(--oto-teal-lt);
  border-color: rgba(33,200,168,.40);
  background: rgba(33,200,168,.10);
}
.oto-step--done .oto-step-num{
  background: rgba(33,200,168,.22);
  color: var(--oto-teal-lt);
  font-size: 0;                    /* hide the number, show a check glyph */
}
.oto-step--done .oto-step-num::after{ content: "\2713"; font-size: 12px; }
/* current step */
.oto-step--active{
  color: #fff;
  border-color: transparent;
  background: var(--oto-grad);
  box-shadow: 0 6px 18px rgba(91,61,245,.42), 0 0 0 1px rgba(255,255,255,.10) inset;
}
.oto-step--active .oto-step-num{
  background: rgba(255,255,255,.92);
  color: var(--oto-brand);
}
/* upcoming step */
.oto-step--todo{ opacity: .72; }

/* progress rail beneath the pills — the honest "how far in" bar */
.oto-rail{
  position: relative;
  height: 6px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  overflow: hidden;
}
.oto-rail-fill{
  position: absolute; inset: 0 auto 0 0;
  width: var(--oto-progress, 50%);
  background: var(--oto-grad);
  border-radius: 999px;
  transition: width .5s cubic-bezier(.2,.7,.2,1);
}
.oto-stepbar-current{
  margin-top: 9px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--oto-mute-d);
}
.oto-stepbar-current b{ color: var(--oto-teal-lt); }

/* ====================================================================
   3. WARNING STRIP + honest session countdown (mm:ss)
   ==================================================================== */
.oto-warning{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin: 22px auto;
  padding: 16px 18px;
  border-radius: var(--oto-radius);
  background: var(--oto-warn-bg);
  border: 1px solid var(--oto-warn-line);
  border-left: 4px solid var(--oto-warn);
}
.oto-warning-icon{
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,180,84,.16);
  color: var(--oto-warn);
  font-weight: 900; font-size: 17px;
}
.oto-warning-body{ flex: 1 1 260px; min-width: 0; }
.oto-warning-title{
  font-size: 16px;
  font-weight: 800;
  color: var(--oto-warn-ink);
  letter-spacing: .1px;
}
.oto-warning-sub{
  margin-top: 3px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--oto-mute-d);
}
/* countdown lives on the right; it is a real session timer, not fake scarcity */
.oto-countdown{
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 12px;
  border-radius: var(--oto-radius-sm);
  background: rgba(0,0,0,.35);
  border: 1px solid var(--oto-warn-line);
}
.oto-countdown-time{
  font-family: var(--oto-mono);
  font-size: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  color: var(--oto-warn);
  line-height: 1;
}
.oto-countdown-note{
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--oto-mute-d);
  text-align: center;
  max-width: 150px;
}

/* ====================================================================
   4. HEADLINE / SUBHEAD  (bold, high-contrast, wou accent)
   ==================================================================== */
.oto-headline{
  margin: 22px auto 0;
  text-align: center;
  font-weight: 900;
  font-size: clamp(27px, 6.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.6px;
  color: #ffffff;
  text-wrap: balance;
}
.oto-headline .oto-accent{
  background: linear-gradient(92deg, var(--oto-teal-lt), var(--oto-brand-lt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.oto-subhead{
  margin: 14px auto 0;
  max-width: 660px;
  text-align: center;
  font-size: clamp(16px, 3.4vw, 21px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--oto-on-dark);
}
.oto-subhead strong{ color: var(--oto-teal-lt); font-weight: 800; }

/* ====================================================================
   5. VSL — video poster block, "click for sound", play button
   ==================================================================== */
.oto-vsl-cap{
  margin: 22px auto 10px;
  text-align: center;
  font-size: clamp(16px, 3.2vw, 20px);
  font-weight: 700;
  color: #fff;
}
.oto-vsl{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--oto-radius);
  overflow: hidden;
  background: #05060b center/cover no-repeat;   /* poster set inline */
  border: 1px solid var(--oto-line-d);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  cursor: pointer;
}
.oto-vsl::after{                 /* legibility scrim over the poster */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 45%, transparent 0, rgba(0,0,0,.28) 70%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.oto-vsl-play{
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 0;
  display: grid; place-items: center;
  background: var(--oto-accept);
  box-shadow: 0 10px 30px rgba(0,0,0,.5), 0 0 0 10px rgba(33,200,168,.18);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.oto-vsl-play::before{           /* play triangle */
  content: "";
  width: 0; height: 0;
  margin-left: 5px;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent var(--oto-accept-ink);
}
.oto-vsl:hover .oto-vsl-play{ transform: translate(-50%,-50%) scale(1.06); }
/* "Click to turn on sound" affordance — sits above the frame, top-right */
.oto-vsl-sound{
  position: absolute; top: 12px; right: 12px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(8,9,15,.72);
  border: 1px solid var(--oto-teal);
  color: var(--oto-teal-lt);
  font-size: 12.5px; font-weight: 800;
  letter-spacing: .2px;
  backdrop-filter: blur(4px);
}
.oto-vsl-sound::before{ content: "\1F50A"; font-size: 13px; }

/* ====================================================================
   PAPER — the light sales-letter reading card (Alen's white body).
   Wraps: .oto-letter, .oto-valuestack, .oto-bullets, .oto-price,
   .oto-guarantee.  Dark chrome sits above; footer below.
   ==================================================================== */
.oto-paper{
  background: var(--oto-paper);
  color: var(--oto-body);
  border-radius: 20px;
  padding: 34px 22px;
  margin: 26px auto;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  font-size: 16.5px;
}
.oto-paper p{ margin: 0 0 16px; }
.oto-paper p:last-child{ margin-bottom: 0; }

/* section subheads inside the paper — echo Alen's red typewriter slabs */
.oto-stack-title{
  margin: 30px 0 14px;
  text-align: center;
  font-family: var(--oto-mono);
  font-weight: 700;
  font-size: clamp(18px, 4vw, 25px);
  letter-spacing: .3px;
  color: var(--oto-brand);
}
.oto-stack-title:first-child{ margin-top: 0; }

/* ====================================================================
   6. LETTER — "Dear... / From... / Re..." monospace header + body
   ==================================================================== */
.oto-letter-head{
  font-family: var(--oto-mono);
  font-size: 15px;
  line-height: 1.7;
  color: var(--oto-ink);
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--oto-line);
}
.oto-letter-head span{ display: block; }
.oto-letter-head b{ font-weight: 700; }
.oto-letter-body{ color: var(--oto-body); }
.oto-letter-body strong{ color: var(--oto-ink); font-weight: 700; }

/* ====================================================================
   7. VALUE STACK — repeatable rows, right-aligned standalone value,
      + a total-value anchor row.
   ==================================================================== */
.oto-valuestack{
  margin: 6px 0 4px;
  border: 1px solid var(--oto-line);
  border-radius: var(--oto-radius);
  overflow: hidden;
}
.oto-value{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-top: 1px solid var(--oto-line);
}
.oto-value:first-child{ border-top: 0; }
.oto-value:nth-child(even){ background: var(--oto-paper-2); }
.oto-value-main{ flex: 1 1 auto; min-width: 0; }
.oto-value-name{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--oto-ink);
  line-height: 1.3;
}
.oto-value-name::before{         /* teal check tick, wou "included" mark */
  content: "\2713";
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 900;
  background: rgba(33,200,168,.16);
  color: var(--oto-teal-dp);
}
.oto-value-desc{
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--oto-mute);
}
.oto-value-amt{                  /* right-aligned standalone value */
  flex: none;
  text-align: right;
  font-family: var(--oto-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--oto-teal-dp);
  white-space: nowrap;
  padding-top: 1px;
}
.oto-value-amt small{
  display: block;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  color: var(--oto-mute);
  text-transform: uppercase;
  letter-spacing: .5px;
}
/* the total-value anchor row — inverted wou bar, pops off the white card */
.oto-value-total{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: var(--oto-bg-2);
  color: #fff;
  border-top: 0;
}
.oto-value-total .oto-total-label{
  font-size: 15px; font-weight: 700;
  color: #d7dbf2;
}
.oto-value-total .oto-total-amt{
  font-family: var(--oto-mono);
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 800;
  color: var(--oto-teal-lt);
  white-space: nowrap;
}

/* ====================================================================
   8. BULLETS — outcome checkmarks
   ==================================================================== */
.oto-bullets{
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.oto-bullets li{
  position: relative;
  padding: 8px 0 8px 34px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--oto-body);
}
.oto-bullets li + li{ border-top: 1px solid var(--oto-line); }
.oto-bullets li::before{
  content: "\2713";
  position: absolute; left: 0; top: 9px;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 900;
  color: #fff;
  background: linear-gradient(180deg,#2fe3bd,#12b394);
  box-shadow: 0 2px 6px rgba(18,179,148,.35);
}
.oto-bullets strong{ color: var(--oto-ink); font-weight: 800; }

/* ====================================================================
   9. PRICE + discount mechanic (struck regular + discounted emphasis)
   ==================================================================== */
.oto-price{
  margin: 24px 0;
  padding: 22px 20px;
  border-radius: var(--oto-radius);
  background: var(--oto-hl-bg);
  border: 1px solid var(--oto-hl-line);
  text-align: center;
}
.oto-price-lead{
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--oto-hl-ink);
  margin-bottom: 8px;
}
.oto-price-figs{
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.oto-price-was{
  font-size: 22px;
  font-weight: 700;
  color: var(--oto-mute);
  text-decoration: line-through;
  text-decoration-color: #c0413c;
  text-decoration-thickness: 2px;
}
.oto-price-now{
  font-size: clamp(34px, 9vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--oto-ink);
}
.oto-price-now .oto-per{
  font-size: .42em;
  font-weight: 700;
  color: var(--oto-mute);
}
.oto-price-badge{                /* the "50% OFF" / discount stamp */
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--oto-ink);
  color: var(--oto-teal-lt);
  font-size: 13px; font-weight: 800;
  letter-spacing: .3px;
  transform: rotate(-2deg);
}
.oto-price-note{
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--oto-body);
}
.oto-price-note strong{ color: var(--oto-ink); }

/* ====================================================================
   10. GUARANTEE — badge / seal box
   ==================================================================== */
.oto-guarantee{
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px 0;
  padding: 22px;
  border-radius: var(--oto-radius);
  background: var(--oto-hl-bg);
  border: 1px solid var(--oto-hl-line);
}
.oto-seal{
  flex: none;
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  color: #fff;
  background: var(--oto-grad);
  box-shadow: 0 6px 18px rgba(91,61,245,.35), 0 0 0 5px rgba(255,255,255,.9), 0 0 0 6px var(--oto-hl-line);
  font-weight: 900;
  line-height: 1;
}
.oto-seal .oto-seal-num{ font-size: 26px; }
.oto-seal .oto-seal-unit{ font-size: 10px; letter-spacing: .5px; text-transform: uppercase; margin-top: 2px; }
.oto-guarantee-body{ flex: 1 1 auto; min-width: 0; }
.oto-guarantee-title{
  font-size: 17px; font-weight: 800;
  color: var(--oto-ink);
  margin-bottom: 4px;
}
.oto-guarantee-text{
  font-size: 14.5px; line-height: 1.55;
  color: var(--oto-body);
}

/* ====================================================================
   11. PRIMARY CTA — BIG accept button (green "go" energy) + subtext
   Faithful to Alen's green accept; wou teal family; AA dark-on-teal.
   ==================================================================== */
.oto-cta{
  margin: 30px auto;
  text-align: center;
}
.oto-cta-primary{
  display: block;
  width: 100%;
  border: 0;
  cursor: pointer;
  padding: 20px 22px;
  border-radius: var(--oto-radius);
  background: var(--oto-accept);
  color: var(--oto-accept-ink);
  font-family: inherit;
  font-size: clamp(16px, 3.6vw, 20px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .1px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 14px 30px rgba(18,179,148,.42), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  animation: oto-cta-pulse 2.6s ease-in-out infinite;
}
.oto-cta-primary:hover{
  background: var(--oto-accept-hi);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(18,179,148,.55), inset 0 1px 0 rgba(255,255,255,.4);
}
.oto-cta-primary:active{ transform: translateY(0); }
.oto-cta-primary .oto-cta-arrow{ margin-left: 8px; }
.oto-cta-sub{
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--oto-mute-d);
}
.oto-cta-sub::before{ content: "\1F512\00A0"; }   /* lock glyph: no card needed */
.oto-paper .oto-cta-sub{ color: var(--oto-mute); }
@keyframes oto-cta-pulse{
  0%,100%{ box-shadow: 0 14px 30px rgba(18,179,148,.42), inset 0 1px 0 rgba(255,255,255,.35); }
  50%    { box-shadow: 0 14px 30px rgba(18,179,148,.42), 0 0 0 6px rgba(33,200,168,.14), inset 0 1px 0 rgba(255,255,255,.35); }
}

/* ====================================================================
   12. DECLINE — plain, low-friction, slightly stinging text link
   ==================================================================== */
.oto-decline{
  display: inline-block;
  margin: 6px auto 0;
  max-width: 560px;
  background: none;
  border: 0;
  padding: 6px 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  color: var(--oto-mute-d);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(154,160,189,.5);
  transition: color .15s ease;
}
.oto-decline:hover{ color: var(--oto-on-dark); text-decoration-color: currentColor; }
.oto-paper .oto-decline{ color: var(--oto-mute); }
.oto-paper .oto-decline:hover{ color: var(--oto-ink); }

/* ====================================================================
   13. PROOF — 4 real review cards
   ==================================================================== */
.oto-proof{ margin: 40px auto; }
.oto-proof-title{
  text-align: center;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.oto-proof-sub{
  text-align: center;
  font-size: 14px;
  color: var(--oto-mute-d);
  margin-bottom: 22px;
}
.oto-reviews{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.oto-review{
  background: #fff;
  color: var(--oto-body);
  border-radius: var(--oto-radius);
  padding: 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
.oto-review-stars{
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.oto-review-text{
  font-size: 15px;
  line-height: 1.55;
  color: var(--oto-ink);
  margin: 0 0 14px;
}
.oto-review-meta{
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 12px;
  border-top: 1px solid var(--oto-line);
}
.oto-review-avatar{
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--oto-grad);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}
.oto-review-who{ min-width: 0; }
.oto-review-name{
  font-size: 14px; font-weight: 800;
  color: var(--oto-ink);
  line-height: 1.2;
}
.oto-review-site{
  font-size: 12.5px;
  color: var(--oto-teal-dp);
  font-weight: 600;
}

/* ====================================================================
   14. FOOTER — Terms / Privacy / entity
   ==================================================================== */
.oto-footer{
  margin-top: 44px;
  padding: 30px 16px 40px;
  border-top: 1px solid var(--oto-line-d);
  background: var(--oto-bg-2);
  text-align: center;
  color: var(--oto-mute-d);
  font-size: 13px;
  line-height: 1.7;
}
.oto-footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 12px;
}
.oto-footer a{
  color: #c3c7de;
  text-decoration: none;
  font-weight: 600;
}
.oto-footer a:hover{ color: var(--oto-teal-lt); text-decoration: underline; text-underline-offset: 3px; }
.oto-footer-entity{ color: var(--oto-mute-d); }
.oto-footer-entity b{ color: #aeb3cf; font-weight: 700; }

/* ====================================================================
   FOCUS — single AA-compliant, visible-on-any-background ring
   ==================================================================== */
.oto-page a:focus-visible,
.oto-page button:focus-visible,
.oto-step:focus-visible,
.oto-vsl:focus-visible{
  outline: 3px solid var(--oto-focus);
  outline-offset: 3px;
  border-radius: 8px;
}
/* on the bright teal accept button, add a dark inner ring so the light
   ring never sits low-contrast against teal */
.oto-cta-primary:focus-visible{
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(8,9,15,.85), 0 14px 30px rgba(18,179,148,.42);
}
.oto-page :focus:not(:focus-visible){ outline: none; }

/* ====================================================================
   RESPONSIVE — mobile-first enhancements
   ==================================================================== */
@media (max-width: 560px){
  .oto-step-label{ display: none; }        /* keep numbered dots; label goes to .oto-stepbar-current */
  .oto-step{ padding: 9px 4px; }
  .oto-warning{ padding: 14px; }
  .oto-countdown{ margin-left: auto; }
  .oto-value{ flex-wrap: wrap; }
  .oto-value-amt{ text-align: left; padding-top: 2px; }
}
@media (min-width: 640px){
  .oto-page{ font-size: 17px; }
  .oto-paper{ padding: 44px 40px; }
  .oto-reviews{ grid-template-columns: 1fr 1fr; gap: 16px; }
  .oto-value{ padding: 18px 22px; }
  .oto-cta-primary{ padding: 22px 26px; }
}
@media (min-width: 900px){
  .oto-logo{ padding-top: 34px; }
  .oto-section{ margin: 40px 0; }
}

/* ====================================================================
   MOTION — respect reduced-motion preference
   ==================================================================== */
@media (prefers-reduced-motion: reduce){
  .oto-page *,
  .oto-page *::before,
  .oto-page *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
/* live embed: video slot + AI badge (from build_mockup additions) */
.oto-page .oto-vsl.has-video{ position:relative; padding:0; aspect-ratio:16/9; height:auto; overflow:hidden; }
.oto-page .oto-vsl.has-video::before,.oto-page .oto-vsl.has-video::after{ display:none; }
.oto-page .oto-vsl-video{ width:100%; height:100%; display:block; object-fit:cover; background:#06070d; }
.oto-page .oto-value-total .oto-value-name{ color:#e8eaf7; }
.oto-page .oto-cta-sub{ text-align:center; }
.oto-page .oto-decline{ display:block; text-align:center; margin:14px auto 0; max-width:600px; }
.oto-page .oto-reviews{ grid-template-columns:1fr 1fr; }
@media(max-width:600px){ .oto-page .oto-reviews{ grid-template-columns:1fr; } }

/* standalone funnel page: hide the site header/footer chrome for single-focus */
body.wou-oto-standalone #main-header,
body.wou-oto-standalone #top-header,
body.wou-oto-standalone #main-footer,
body.wou-oto-standalone .et-l--footer,
body.wou-oto-standalone #et-footer-nav,
body.wou-oto-standalone .et_pb_section_video_bg,
body.wou-oto-standalone #footer-bottom { display: none !important; }
body.wou-oto-standalone #page-container { padding-top: 0 !important; }
body.wou-oto-standalone #main-content .container { max-width: none !important; width: 100% !important; padding: 0 !important; }
body.wou-oto-standalone #main-content .container::before { display: none !important; }
