@font-face {
  font-family: "Clash Display";
  src: local("Clash Display Regular"), url("../assets/fonts/ClashDisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: local("Clash Display Medium"), url("../assets/fonts/ClashDisplay-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: local("Clash Display Semibold"), url("../assets/fonts/ClashDisplay-Semibold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: local("Clash Display Bold"), url("../assets/fonts/ClashDisplay-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #15345F;
  --lime: #B1FA15;
  --teal: #34D298;
  --yellow: #FACC15;
  --orange: #F97316;
  --red: #D82A2A;
  --white: #fff;
  --font-display: "Clash Display", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --sky-bg: linear-gradient(180deg, #0682DD 0%, #90D1FE 21%, #D0EEFF 50%, #91CFF4 71%, #3A9FEC 100%);
  --lime-grad: linear-gradient(79deg, #B1FA15, #34D298);
  --orange-grad: linear-gradient(73.5deg, #FACC15, #F97316);
  --cta-grad: linear-gradient(180deg, #68CDF7, #19BCF1 28%, #0CB0E6);
  --title-shadow: 0 3px 12px rgba(6, 60, 130, .25);
  --col: min(600px, 100% - 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body.ob {
  min-height: 100svh;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--sky-bg) fixed;
  font-family: var(--font-display);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Rolling meadow along the bottom, faded in from the sky */
body.ob::after {
  position: fixed;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(104px, 13vh, 170px);
  background: url("../assets/hero-meadow.jpg") center bottom / cover no-repeat;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 38%);
  mask-image: linear-gradient(180deg, transparent, #000 38%);
  content: "";
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

.ob-button:focus-visible,
.ob-back:focus-visible {
  outline-color: var(--white);
}

.ob-screen:focus {
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Top bar ---------- */
.ob-top {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  width: var(--col);
  margin-inline: auto;
  padding-top: max(14px, env(safe-area-inset-top));
  padding-bottom: 12px;
  left: 0;
  right: 0;
}

.ob-top::before {
  position: absolute;
  z-index: -1;
  inset: 0 -100vw;
  background: linear-gradient(to bottom, rgba(6, 122, 208, .82) 45%, rgba(6, 122, 208, 0));
  content: "";
  pointer-events: none;
}

.ob-back[hidden] {
  display: none;
}

.ob-back {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, .18);
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, background-color .2s ease;
}

.ob-back:hover {
  background: rgba(255, 255, 255, .32);
  transform: translateX(-2px);
}

.ob-back svg {
  width: 18px;
  height: 18px;
}

.ob-brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(6, 60, 130, .3);
}

.ob-brand img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(6, 60, 130, .35);
}

.ob-step-count {
  display: none;
}

/* One cohesive progress bar with an eased, glossy fill */
.ob-progress {
  grid-column: 1 / -1;
  height: 11px;
  margin-top: 12px;
  background: rgba(255, 255, 255, .26);
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  box-shadow: inset 0 1px 3px rgba(8, 60, 130, .2);
  overflow: hidden;
}

.ob-progress[hidden] {
  display: none;
}

.ob-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--teal));
  border-radius: 999px;
  /* top white line = shine, bottom shade = depth, outer glow = pop */
  box-shadow:
    inset 0 1.5px 1px rgba(255, 255, 255, .7),
    inset 0 -1.5px 2px rgba(9, 90, 40, .3),
    0 2px 8px rgba(30, 160, 90, .5);
  transition: width .7s cubic-bezier(.34, 1.35, .64, 1);
}

/* ---------- Screens ---------- */
.ob-main {
  position: relative;
  z-index: 1;
  width: var(--col);
  min-height: 100svh;
  margin-inline: auto;
  padding-top: calc(104px + env(safe-area-inset-top));
  padding-bottom: calc(44px + env(safe-area-inset-bottom));
  display: grid;
}

.ob-screen {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  animation: ob-enter .5s cubic-bezier(.22, 1, .36, 1) both;
}

.ob-screen.is-leaving {
  animation: ob-leave .28s ease both;
  pointer-events: none;
}

@keyframes ob-enter {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ob-leave {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: translateX(-24px);
  }
}

.ob-kicker {
  margin-bottom: .6rem;
  color: rgba(255, 255, 255, .85);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ob-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 6vw, 2.25rem);
  font-weight: 600;
  line-height: 1.08;
  text-shadow: var(--title-shadow);
  text-wrap: balance;
}

.ob-title em {
  font-style: normal;
}

.ob-sub {
  margin-top: .8rem;
  color: var(--white);
  font-size: .98rem;
  font-weight: 500;
  max-width: 46ch;
  text-shadow: 0 1px 3px rgba(6, 60, 130, .45), 0 2px 12px rgba(6, 60, 130, .35);
}

/* ---------- Marker highlights ---------- */
.ob-marker {
  display: inline-block;
  padding: 2px 12px 4px;
  color: var(--white);
  font-weight: 700;
  transform: rotate(-1.5deg);
}

.ob-marker-lime {
  background: var(--lime-grad);
  box-shadow: 0 8px 22px rgba(30, 160, 90, .35);
}

.ob-marker-orange {
  background: var(--orange-grad);
  box-shadow: 0 14px 30px rgba(200, 100, 10, .4);
}

.ob-marker-line {
  margin-top: .7rem;
}

.ob-marker-big {
  margin-top: 1.2rem;
}

.ob-marker-big .ob-marker {
  padding: 2px 18px 8px;
  font-size: clamp(2.5rem, 11vw, 3.5rem);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  transform: rotate(-2deg);
}

.ob-title em {
  display: inline-block;
  padding: 0 10px 2px;
  background: var(--lime-grad);
  box-shadow: 0 8px 22px rgba(30, 160, 90, .35);
  transform: rotate(-1deg);
}

/* ---------- Options ---------- */
.ob-options {
  display: grid;
  gap: .75rem;
  margin-top: 1.6rem;
}

.ob-option {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: .85rem;
  min-height: 58px;
  padding: 1.05rem 1.2rem;
  text-align: left;
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
  border: 0;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 20, 60, .12);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.ob-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 20, 60, .18);
}

.ob-option.is-selected {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(30, 160, 90, .4), inset 0 2px 3px rgba(255, 255, 255, .6);
  transform: rotate(-.8deg);
}

.ob-option.is-selected:hover {
  transform: rotate(-.8deg) translateY(-2px);
}

.ob-option.is-selected .ob-option-sub {
  color: rgba(255, 255, 255, .88);
}

.ob-option-logo {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 11px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 20, 60, .18);
}

.ob-option-text {
  min-width: 0;
}

.ob-option-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.25;
}

.ob-option.is-selected .ob-option-text strong {
  font-weight: 700;
}

.ob-option-sub {
  display: block;
  margin-top: .15rem;
  color: rgba(21, 52, 95, .65);
  font-family: var(--font-body);
  font-size: .76rem;
  line-height: 1.35;
}

.ob-option-check {
  margin-left: auto;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(21, 52, 95, .18);
  color: transparent;
  opacity: 0;
  transition: opacity .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

/* multi-selects keep a faint circle as a "pick several" affordance */
.ob-options.is-multi .ob-option-check {
  opacity: 1;
}

.ob-option-check svg {
  width: 12px;
  height: 12px;
}

.ob-option.is-selected .ob-option-check {
  opacity: 1;
  background: var(--white);
  border-color: var(--white);
  color: #15803D;
}

/* ---------- Bottom CTA ---------- */
.ob-cta-row {
  position: sticky;
  bottom: 0;
  z-index: 3;
  margin-top: auto;
  padding-top: 1.6rem;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

/* Glass dock under the sticky buttons so scrolling content never
   visually collides with them. */
.ob-cta-row::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: .95rem -14px -6px;
  background: rgba(120, 188, 237, .88);
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 26px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 34px rgba(0, 20, 60, .2);
}

.ob-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  width: 100%;
  height: 58px;
  padding: 0 1.6rem;
  border: 0;
  border-radius: 29px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.ob-button-primary {
  color: var(--white);
  background: var(--cta-grad);
  box-shadow: 0 10px 24px rgba(8, 110, 190, .45), inset 0 2px 3px rgba(255, 255, 255, .65);
}

.ob-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(8, 110, 190, .5), inset 0 2px 3px rgba(255, 255, 255, .65);
}

.ob-button-primary:disabled {
  background: rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .8);
  box-shadow: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: none;
  cursor: not-allowed;
}

.ob-button-ghost {
  color: rgba(255, 255, 255, .92);
  background: transparent;
  font-size: .9rem;
  letter-spacing: .02em;
  text-transform: none;
}

.ob-button-ghost:hover {
  color: var(--white);
}

/* ---------- Intro ---------- */
.ob-intro {
  position: relative;
  text-align: center;
  justify-content: center;
  min-height: calc(100svh - 240px);
}

.ob-float {
  position: absolute;
  z-index: 0;
  filter: drop-shadow(0 12px 16px rgba(6, 60, 130, .35));
  pointer-events: none;
}

.ob-float-plane {
  top: 1%;
  left: 2%;
  font-size: 46px;
  transform: rotate(-12deg);
}

.ob-float-home {
  top: 52%;
  left: 3%;
  font-size: 38px;
  transform: rotate(9deg);
}

.ob-float-ring {
  top: 12%;
  right: 5%;
  font-size: 36px;
  transform: rotate(-9deg);
}

.ob-pig {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  border-radius: 26px;
  background: linear-gradient(160deg, #B1FA15, #34D298);
  box-shadow: 0 16px 34px rgba(9, 90, 40, .35), inset 0 2px 4px rgba(255, 255, 255, .7);
}

.ob-intro .ob-title {
  font-size: clamp(2.2rem, 8vw, 2.7rem);
}

.ob-intro .ob-marker-line .ob-marker {
  font-size: clamp(1.9rem, 7vw, 2.4rem);
  font-weight: 600;
}

.ob-intro .ob-sub {
  margin-inline: auto;
  max-width: 32ch;
}

.ob-intro-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 1.1rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, .92);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ob-intro-meta span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.ob-intro-meta i {
  font-style: normal;
  color: var(--lime);
}

/* ---------- Glass cards & bar charts ---------- */
.ob-glass-card {
  margin-top: 1.6rem;
  padding: 22px 20px 16px;
  background: rgba(255, 255, 255, .16);
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-top: 2.5px solid rgba(255, 255, 255, .5);
  border-radius: 26px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(0, 20, 60, .14);
}

.ob-bars-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 130px;
}

.ob-bar {
  flex: 1;
  border-radius: 8px;
  transition: height .9s cubic-bezier(.22, 1, .36, 1);
}

.ob-bar:nth-child(1) {
  background: rgba(255, 255, 255, .45);
}

.ob-bar:nth-child(2) {
  background: rgba(255, 255, 255, .55);
}

.ob-bar:nth-child(3) {
  background: rgba(255, 255, 255, .65);
}

.ob-bars-gain .ob-bar:nth-child(4) {
  background: linear-gradient(180deg, #FACC15, #F97316);
}

.ob-bars-gain .ob-bar:nth-child(5),
.ob-bars-gain .ob-bar:nth-child(6) {
  background: linear-gradient(180deg, #B1FA15, #34D298);
}

.ob-bars-gain .ob-bar:nth-child(6) {
  box-shadow: 0 8px 20px rgba(30, 160, 90, .45);
}

.ob-bars-loss .ob-bar:nth-child(4) {
  background: linear-gradient(180deg, #FACC15, #F97316);
}

.ob-bars-loss .ob-bar:nth-child(5),
.ob-bars-loss .ob-bar:nth-child(6) {
  background: linear-gradient(180deg, #F97316, #D82A2A);
}

.ob-bars-loss .ob-bar:nth-child(6) {
  box-shadow: 0 8px 20px rgba(200, 50, 30, .45);
}

.ob-bars-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: rgba(255, 255, 255, .8);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.ob-big-caption {
  margin-top: .8rem;
  color: rgba(255, 255, 255, .95);
  font-size: .95rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(6, 60, 130, .2);
}

/* ---------- Analyzing ---------- */
.ob-analyzing {
  text-align: center;
  justify-content: center;
  min-height: calc(100svh - 260px);
}

.ob-ring {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.6rem;
}

.ob-ring circle {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
}

.ob-ring .ring-track {
  stroke: rgba(255, 255, 255, .3);
}

.ob-ring .ring-arc {
  stroke: var(--lime);
  stroke-dasharray: 150 210;
  transform-origin: center;
  animation: ob-spin 1.1s linear infinite;
}

@keyframes ob-spin {
  to {
    transform: rotate(360deg);
  }
}

.ob-checklist {
  display: grid;
  gap: .7rem;
  margin: 1.8rem auto 0;
  max-width: 350px;
  text-align: left;
}

.ob-checklist li {
  display: flex;
  align-items: center;
  gap: .7rem;
  list-style: none;
  color: rgba(255, 255, 255, .95);
  font-size: .92rem;
  font-weight: 500;
  opacity: .3;
  transition: opacity .4s ease;
}

.ob-checklist li.is-done {
  opacity: 1;
}

.ob-checklist li i {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: var(--lime);
  font-size: .7rem;
  font-style: normal;
}

/* ---------- Results ---------- */
.ob-score-card {
  margin-top: 1.6rem;
  padding: 1.6rem 1.4rem 1.4rem;
  text-align: center;
  color: var(--navy);
  background: rgba(255, 255, 255, .94);
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(0, 20, 60, .18);
}

.ob-gauge {
  width: min(300px, 80%);
  margin: 0 auto;
}

.ob-gauge svg {
  display: block;
  width: 100%;
  height: auto;
}

.ob-gauge-value {
  margin-top: -1.6rem;
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ob-gauge-band {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .6rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ob-gauge-band.band-low {
  color: #15803D;
  background: rgba(52, 210, 152, .18);
}

.ob-gauge-band.band-moderate {
  color: #8a6d00;
  background: rgba(250, 204, 21, .28);
}

.ob-gauge-band.band-high,
.ob-gauge-band.band-severe {
  color: var(--red);
  background: rgba(216, 42, 42, .12);
}

.ob-gauge-note {
  margin-top: .9rem;
  color: rgba(21, 52, 95, .75);
  font-family: var(--font-body);
  font-size: .85rem;
  max-width: 40ch;
  margin-inline: auto;
}

.ob-result-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.2rem;
  justify-content: center;
}

.ob-chip {
  padding: .45rem .8rem;
  background: rgba(21, 52, 95, .07);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--navy);
}

.ob-flip {
  margin-top: 2.4rem;
}

.ob-reset {
  margin-top: 2.4rem;
}

/* Demo video screen */
.ob-video-card {
  margin-top: 1.4rem;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(6, 60, 130, .35);
  background: rgba(255, 255, 255, .16);
}

.ob-video-card video {
  display: block;
  width: 100%;
  height: auto;
}

.ob-reset .ob-glass-card svg {
  display: block;
  width: 100%;
  height: auto;
}

.ob-reset .ob-glass-card svg text {
  fill: rgba(21, 52, 95, .72);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.ob-reset .ob-glass-card svg text.ob-base-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .12em;
}

.ob-reset .ob-glass-card svg text.ob-base-label.is-old {
  fill: rgba(21, 52, 95, .6);
}

.ob-reset .ob-glass-card svg text.ob-base-label.is-new {
  fill: #3F8F0A;
}

.ob-flip-title {
  font-size: clamp(1.5rem, 5vw, 1.9rem);
}

.ob-flip-note {
  margin-top: 1.1rem;
  color: var(--white);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(6, 60, 130, .2);
}

.ob-disclaimer {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, .8);
  font-family: var(--font-body);
  font-size: .72rem;
  text-align: center;
  max-width: 44ch;
  margin-inline: auto;
}

/* ---------- Pre-order ---------- */
.ob-believer {
  position: relative;
  margin: 2rem 0 .4rem;
  text-align: center;
}

/* Pulsing golden aura behind the pig */
.ob-believer::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  width: 200px;
  height: 130px;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 215, 94, .8), transparent 70%);
  filter: blur(12px);
  animation: ob-pig-glow 2.6s ease-in-out infinite alternate;
  pointer-events: none;
}

.ob-believer-pig {
  position: relative;
  width: 156px;
  height: auto;
  margin: 0 auto .5rem;
  display: block;
  filter: drop-shadow(0 0 24px rgba(255, 215, 94, .85)) drop-shadow(0 14px 26px rgba(160, 105, 0, .35));
  animation: ob-pig-hover 2.6s ease-in-out infinite alternate;
}

@keyframes ob-pig-hover {
  from {
    transform: translateY(0) rotate(-2deg);
  }

  to {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes ob-pig-glow {
  from {
    opacity: .5;
  }

  to {
    opacity: 1;
    transform: translateX(-50%) scale(1.18);
  }
}

.ob-believer-badge .ob-marker {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 12px 5px;
}

.ob-believer-note {
  margin: .8rem auto 0;
  max-width: 34ch;
  color: var(--white);
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(6, 60, 130, .45), 0 2px 12px rgba(6, 60, 130, .35);
}

.ob-believer-note strong {
  color: var(--sun, #FFD75E);
  font-weight: 700;
}

.ob-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .35rem .8rem;
  margin-top: 1.3rem;
}

.ob-price-was {
  color: rgba(255, 255, 255, .75);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 2.5px;
  text-decoration-color: var(--coral, #FF796D);
  text-shadow: 0 2px 8px rgba(6, 60, 130, .25);
}

.ob-price-now {
  font-size: clamp(2.3rem, 9vw, 3rem);
  line-height: 1.1;
  padding: 2px 16px 6px;
  font-variant-numeric: tabular-nums;
}

.ob-price-off {
  flex-basis: 100%;
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(6, 60, 130, .45);
}

.ob-guarantee {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 16px 18px;
}

.ob-guarantee-emo {
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 10px rgba(6, 60, 130, .3));
}

.ob-guarantee-emo img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.ob-guarantee p {
  color: var(--white);
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.45;
}

.ob-guarantee strong {
  font-weight: 700;
}

.ob-perks {
  display: grid;
  gap: .75rem;
  margin-top: 1.4rem;
}

.ob-perk {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .95rem 1.1rem;
  background: rgba(255, 255, 255, .92);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 20, 60, .12);
}

.ob-perk:nth-child(odd) {
  transform: rotate(-.4deg);
}

.ob-perk:nth-child(even) {
  transform: rotate(.4deg);
}

.ob-perk-emo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(177, 250, 21, .25), rgba(52, 210, 152, .25));
  border-radius: 13px;
}

.ob-perk-emo img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.ob-perk-text {
  min-width: 0;
}

.ob-perk-text strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.25;
}

.ob-perk-text span {
  display: block;
  margin-top: .15rem;
  color: rgba(21, 52, 95, .65);
  font-family: var(--font-body);
  font-size: .76rem;
  line-height: 1.4;
}

/* ---------- Phone capture ---------- */
.ob-phone-card {
  margin-top: 1.8rem;
}

.ob-phone-field {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem .4rem .4rem 1.2rem;
  color: var(--navy);
  background: rgba(255, 255, 255, .94);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 20, 60, .22);
  transition: box-shadow .2s ease;
}

.ob-phone-field:focus-within {
  box-shadow: 0 12px 30px rgba(0, 20, 60, .22), 0 0 0 3px rgba(177, 250, 21, .8);
}

.ob-phone-prefix {
  font-weight: 600;
  color: rgba(21, 52, 95, .55);
}

.ob-phone-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  outline: none;
}

.ob-phone-field input::placeholder {
  color: rgba(21, 52, 95, .35);
  font-weight: 500;
}

.ob-phone-field.is-international {
  min-height: 68px;
  gap: 0;
  padding: .4rem;
}

.ob-phone-field.is-international .iti {
  --iti-border-color: rgba(21, 52, 95, .16);
  --iti-country-selector-bg: #fff;
  --iti-hover-color: rgba(6, 130, 221, .09);
  --iti-icon-color: rgba(21, 52, 95, .58);
  --iti-strict-reject-flash-color: rgba(216, 42, 42, .14);
  display: block;
  flex: 1;
  width: 100%;
  height: 56px;
  color: var(--navy);
  font-family: var(--font-display);
}

.ob-phone-field.is-international .iti__country-container {
  z-index: 3;
}

.ob-phone-field.is-international .iti__selected-country {
  color: var(--navy);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
}

.ob-phone-field.is-international .iti__selected-country-primary {
  margin-block: 7px;
  padding-inline: .8rem;
  border-right: 1px solid rgba(21, 52, 95, .13);
  border-radius: 999px 0 0 999px;
}

.ob-phone-field.is-international .iti__selected-dial-code {
  margin-left: .45rem;
}

.ob-phone-field.is-international input.iti__tel-input {
  width: 100%;
  height: 56px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: .85rem;
  font-size: 1.05rem;
}

.ob-phone-field.is-international .iti__country-selector {
  z-index: 80;
  margin-top: 8px;
  overflow: hidden;
  color: var(--navy);
  background: rgba(255, 255, 255, .99);
  border: 1px solid rgba(21, 52, 95, .14);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(8, 50, 110, .22);
  font-family: var(--font-body);
  font-size: .9rem;
}

.ob-phone-field.is-international .iti__search-input {
  height: 48px;
  color: var(--navy);
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.iti--fullscreen-popup {
  --iti-border-color: rgba(21, 52, 95, .16);
  --iti-country-selector-bg: #fff;
  --iti-hover-color: rgba(6, 130, 221, .09);
  --iti-icon-color: rgba(21, 52, 95, .58);
  z-index: 1000;
  color: var(--navy);
  font-family: var(--font-body);
}

.iti--fullscreen-popup .iti__country-selector {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(8, 50, 110, .32);
}

.iti--fullscreen-popup .iti__search-input {
  min-height: 52px;
  color: var(--navy);
  background: #fff;
  font-size: 1rem;
  outline: none;
}

.ob-phone-field.is-otp {
  padding-left: .4rem;
}

.ob-phone-field.is-otp input {
  text-align: center;
  letter-spacing: .5em;
  font-size: 1.45rem;
  font-weight: 600;
}

.ob-phone-field.is-otp input::placeholder {
  letter-spacing: .3em;
}

.ob-cta-row .ob-button-ghost {
  margin-top: .5rem;
}

.ob-user-status {
  min-height: 1.2rem;
  margin-top: .6rem;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(6, 60, 130, .35);
}

.ob-user-status.is-checking {
  color: rgba(255, 255, 255, .75);
}

.ob-user-status.is-ok {
  color: var(--lime);
}

.ob-user-status.is-bad {
  display: inline-block;
  padding: .3rem .7rem;
  color: var(--white);
  background: rgba(216, 42, 42, .9);
  border-radius: 10px;
  text-shadow: none;
}

.ob-phone-error {
  min-height: 1.2rem;
  margin-top: .6rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
}

.ob-phone-error:not(:empty) {
  display: inline-block;
  padding: .3rem .7rem;
  background: rgba(216, 42, 42, .9);
  border-radius: 10px;
}

.ob-fineprint {
  display: flex;
  gap: .55rem;
  margin-top: 1rem;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(8, 50, 110, .38);
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  font-family: var(--font-body);
  font-size: .74rem;
  line-height: 1.5;
}

.ob-fineprint i {
  font-style: normal;
  color: var(--lime);
}

/* ---------- Success ---------- */
.ob-success {
  text-align: center;
  justify-content: center;
  min-height: calc(100svh - 240px);
}

.ob-success-burst {
  position: relative;
  width: 96px;
  margin: 0 auto;
}

.ob-success-burst .ob-pig {
  margin-bottom: 1.6rem;
}

.ob-success-burst::before,
.ob-success-burst::after {
  position: absolute;
  content: "✦";
  color: var(--yellow);
  font-size: 1.3rem;
  text-shadow: 0 2px 10px rgba(6, 60, 130, .3);
  animation: ob-twinkle 1.6s ease infinite alternate;
}

.ob-success-burst::before {
  top: -10px;
  left: -20px;
}

.ob-success-burst::after {
  right: -18px;
  bottom: 18px;
  animation-delay: .5s;
}

@keyframes ob-twinkle {
  from {
    opacity: .25;
    transform: scale(.8);
  }

  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* ---------- Paid success ---------- */
.ob-paid-success {
  justify-content: flex-start;
  padding-bottom: 2rem;
}

.ob-paid-success .ob-kicker,
.ob-paid-success .ob-title,
.ob-paid-success > .ob-sub {
  align-self: center;
}

.ob-paid-success > .ob-sub {
  max-width: 520px;
}

.ob-paid-burst {
  width: 118px;
  margin-bottom: .45rem;
}

.ob-paid-pig {
  width: 118px;
  filter: drop-shadow(0 16px 18px rgba(6, 60, 130, .25));
  animation: ob-paid-arrive .7s cubic-bezier(.22, 1.2, .36, 1) both;
}

@keyframes ob-paid-arrive {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.72) rotate(-6deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.ob-payment-status {
  display: flex;
  align-items: center;
  gap: .85rem;
  width: 100%;
  margin-top: 1.35rem;
  padding: 15px 16px;
  color: var(--navy);
  text-align: left;
  background: rgba(255, 255, 255, .88);
  border: 1.5px solid rgba(255, 255, 255, .95);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(6, 60, 130, .18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.ob-payment-status > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.ob-payment-status div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: .1rem;
}

.ob-payment-status strong {
  font-size: .96rem;
  line-height: 1.3;
}

.ob-payment-status div span {
  color: rgba(21, 52, 95, .7);
  font-family: var(--font-body);
  font-size: .78rem;
}

.ob-payment-spinner {
  border: 3px solid rgba(21, 52, 95, .14);
  border-top-color: #0CB0E6;
  animation: ob-spin .8s linear infinite;
}

@keyframes ob-spin {
  to {
    transform: rotate(1turn);
  }
}

.ob-payment-check {
  color: #166534;
  background: var(--lime);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(72, 160, 30, .25);
}

.ob-payment-status.is-pending {
  background: rgba(255, 248, 220, .94);
}

.ob-payment-clock {
  color: #9A5A00;
  background: var(--yellow);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.ob-pro-confirmation {
  width: 100%;
  margin-top: .85rem;
  padding: 18px;
  color: var(--navy);
  text-align: left;
  background:
    radial-gradient(circle at 100% 0, rgba(177, 250, 21, .28), transparent 42%),
    rgba(255, 255, 255, .92);
  border: 1.5px solid rgba(255, 255, 255, .98);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(6, 60, 130, .2);
}

.ob-pro-confirmation[hidden],
.ob-payment-retry[hidden] {
  display: none;
}

.ob-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: 7px 11px;
  color: #285D08;
  background: rgba(177, 250, 21, .32);
  border: 1px solid rgba(63, 143, 10, .22);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.ob-pro-badge span {
  font-size: .9rem;
}

.ob-pro-confirmation ul {
  display: grid;
  gap: .8rem;
  margin-top: 1rem;
  list-style: none;
}

.ob-pro-confirmation li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}

.ob-pro-confirmation li > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: #166534;
  background: var(--lime);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 800;
}

.ob-pro-confirmation li div {
  display: flex;
  flex-direction: column;
  gap: .05rem;
}

.ob-pro-confirmation li strong {
  font-size: .88rem;
}

.ob-pro-confirmation li small {
  color: rgba(21, 52, 95, .68);
  font-family: var(--font-body);
  font-size: .74rem;
  line-height: 1.35;
}

.ob-payment-retry {
  position: static;
  width: 100%;
  padding-bottom: 0;
}

.ob-payment-retry::before {
  content: none;
}

/* ---------- Noscript ---------- */
.ob-noscript {
  padding-top: 20vh;
  text-align: center;
}

.ob-noscript a {
  color: var(--yellow);
  font-weight: 700;
}

/* ---------- Tablet / desktop ---------- */
@media (min-width: 720px) {
  .ob-options.is-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ob-cta-row {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .75rem;
  }

  .ob-cta-row::before {
    content: none;
  }

  .ob-cta-row .ob-button-ghost {
    margin-top: 0;
  }

  .ob-button {
    width: auto;
    min-width: 300px;
  }

  .ob-cta-row-full-primary {
    flex-wrap: wrap;
  }

  .ob-cta-row-full-primary .ob-button-primary {
    flex: 0 0 100%;
    width: 100%;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

  .ob-screen,
  .ob-screen.is-leaving {
    animation: none;
  }

  .ob-option,
  .ob-button,
  .ob-bar,
  .ob-progress-fill {
    transition: none;
  }

  .ob-ring .ring-arc {
    animation-duration: 2.4s;
  }

  .ob-believer-pig,
  .ob-believer::before {
    animation: none;
  }

  .ob-success-burst::before,
  .ob-success-burst::after {
    animation: none;
  }

  .ob-paid-pig,
  .ob-payment-spinner {
    animation: none;
  }
}
