/* ==========================================================================
   OPTIV — home page
   Scoped to .ovh. Motion system is deliberately layout-safe: reveals either
   fade in place or move <=14px, and headline reveals use overflow masks that
   occupy no layout space. Nothing can slide on top of a neighbour.
   ========================================================================== */

.ovh {
  --paper:      #fbfbf9;
  --paper-2:    #f3f4f0;
  --paper-3:    #eaece5;
  --card:       #ffffff;

  --charcoal:   #2e2e2e;
  --ink:        #141714;
  --ink-2:      #1c201c;
  --accent:     #7bfb8e;
  --accent-soft:#e6fced;
  --accent-mid: #b6f7c4;
  --accent-deep:#14742d;
  --sky:        #d2e4fc;
  --sky-soft:   #eef4fd;

  --muted:      #6a706a;
  --hairline:   rgba(20, 23, 20, 0.10);
  --hairline-lt:rgba(255, 255, 255, 0.14);

  --s-1: 8px;  --s-2: 14px; --s-3: 20px; --s-4: 28px;
  --s-5: 40px; --s-6: 56px; --s-7: 80px; --s-8: 112px;
  --section-y: clamp(72px, 8vw, 128px);
  --radius:    22px;
  --radius-lg: 32px;

  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  /* No overflow-x/max-width here: body.ov-body handles clipping. Clipping on
     this element cut off the hero's full-bleed background layer. */
}

.ovh *, .ovh *::before, .ovh *::after { box-sizing: border-box; }

:where(.ovh) :where(h1, h2, h3, h4) {
  font-family: "Satoshi", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}
:where(.ovh) :where(p)   { margin: 0; line-height: 1.68; }
:where(.ovh) :where(ul)  { margin: 0; padding: 0; list-style: none; }
:where(.ovh) :where(a)   { text-decoration: none; }
:where(.ovh) :where(img) { max-width: 100%; }

.ovh-wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 36px); }
.ovh-section { padding-block: var(--section-y); }
.ovh-section--stone { background: var(--paper-2); }
.ovh-section--white { background: var(--card); }

.ovh-h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); line-height: 1.04; letter-spacing: -0.035em; }
.ovh-h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
.ovh-h3 { font-size: clamp(1.1rem, 1.5vw, 1.32rem); line-height: 1.3; }
.ovh-lead { font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.72; color: var(--muted); }
.ovh-micro { font-size: 13px; line-height: 1.6; color: var(--muted); }

.ovh-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-1);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  color: var(--accent-deep); background: var(--accent-soft); border: 1px solid var(--accent-mid);
}
.ovh-eyebrow--light {
  color: var(--accent); background: rgba(123, 251, 142, 0.10); border-color: rgba(123, 251, 142, 0.28);
}
.ovh-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: ovh-pulse 2.4s ease-out infinite; }
@keyframes ovh-pulse {
  0%   { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  70%  { box-shadow: 0 0 0 9px transparent; opacity: .85; }
  100% { box-shadow: 0 0 0 0 transparent; opacity: 1; }
}

/* ---------- Buttons ---------- */
.ovh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; cursor: pointer; border-radius: 999px;
  padding: 18px 34px;
  min-height: 52px;
  font-family: "Inter", sans-serif; font-size: 16px; font-weight: 600; line-height: 1; letter-spacing: -0.01em;
  transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s ease, background .22s ease;
}
.ovh-btn--primary { background: var(--accent); color: #0d1f0d; box-shadow: 0 10px 26px -14px rgba(20,116,45,.7); }
.ovh-btn--primary:hover { background: #6cf581; color: #0d1f0d; transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(20,116,45,.8); }
.ovh-btn--ghost { background: transparent; color: #fff; border: 1px solid var(--hairline-lt); }
.ovh-btn--ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.ovh-btn--xl { padding: 24px 52px; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.ovh-btn svg { width: 18px; height: 18px; }

/* ---------- Scroll progress ---------- */
.ovh-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  z-index: 1060; pointer-events: none;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.ovh-hero {
  position: relative;
  /* Full-bleed regardless of any padding an ancestor introduces */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100svh;
  display: grid;
  place-items: end center;
  padding: clamp(120px, 18vh, 200px) 0 clamp(48px, 7vh, 90px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.ovh-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  /* Pinned to the viewport, not to the section box, so the image always
     reaches both screen edges no matter what padding an ancestor adds. */
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -2;
  overflow: hidden;
}
.ovh-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.14);
  animation: ovh-kenburns 26s ease-in-out infinite alternate;
}
@keyframes ovh-kenburns {
  from { transform: scale(1.14) translate3d(0, 0, 0); }
  to   { transform: scale(1.24) translate3d(-1.5%, -2%, 0); }
}
.ovh-hero::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%); z-index: -1;
  background:
    linear-gradient(180deg, rgba(12,15,12,.62) 0%, rgba(12,15,12,.20) 34%, rgba(12,15,12,.86) 100%),
    radial-gradient(60% 50% at 50% 100%, rgba(123,251,142,.16) 0%, transparent 70%);
}
.ovh-hero-inner { width: 100%; max-width: 1200px; padding-inline: clamp(20px, 4vw, 36px); text-align: center; }
.ovh-hero h1 { color: #fff; margin-top: var(--s-4); }
.ovh-hero-sub {
  margin: var(--s-4) auto 0; max-width: 52ch;
  font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.7; color: rgba(255,255,255,.78);
}
.ovh-hero-cta { margin-top: var(--s-6); display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-3); }
.ovh-hero-note { margin-top: var(--s-4); font-size: 13.5px; color: rgba(255,255,255,.6); }

.ovh-hero-trust {
  margin-top: var(--s-7);
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline-lt);
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-2) var(--s-6);
}
.ovh-hero-trust li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,.8); }
.ovh-hero-trust svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

.ovh-scrollcue {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  display: grid; justify-items: center; padding-top: 8px; z-index: 2;
}
.ovh-scrollcue span { width: 3px; height: 8px; border-radius: 3px; background: var(--accent); animation: ovh-cue 1.9s ease-in-out infinite; }
@keyframes ovh-cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(13px); opacity: .25; }
}

/* Masked line reveal — no layout footprint, so it can never overlap anything */
.ovh-line { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.ovh-line > span { display: block; transform: translateY(110%); transition: transform 1s cubic-bezier(.16,.84,.24,1); }
.is-in .ovh-line > span,
.ovh-hero.is-ready .ovh-line > span { transform: none; }
.ovh-hero.is-ready .ovh-line:nth-child(1) > span { transition-delay: .10s; }
.ovh-hero.is-ready .ovh-line:nth-child(2) > span { transition-delay: .22s; }
.is-in .ovh-line:nth-child(1) > span { transition-delay: .04s; }
.is-in .ovh-line:nth-child(2) > span { transition-delay: .15s; }

/* ---------- Kinetic headline: word-level reveal ----------
   Selectors are written as `.ovh-line > span.ovh-w` so they out-rank the
   generic `.ovh-line > span` rule above. Matching its specificity is not
   enough — the generic rule comes first but an equal-specificity later rule
   only wins per-property, and the earlier attempt at neutralising it pinned
   transform to none and killed the whole animation. */
.ovh-kinetic .ovh-line { padding-bottom: .18em; margin-bottom: -.16em; }
.ovh-kinetic .ovh-line > span.ovh-w {
  display: inline-block;
  margin-right: .24em;
  transform: translateY(115%) rotate(2.5deg);
  transform-origin: left bottom;
  opacity: 0;
  transition:
    transform 1.15s cubic-bezier(.16,.84,.24,1),
    opacity .75s ease;
}
.ovh-hero.is-ready .ovh-kinetic .ovh-line > span.ovh-w {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

.ovh-kinetic .ovh-line > span.ovh-w--accent { position: relative; color: var(--accent); }
.ovh-kinetic .ovh-line > span.ovh-w--accent::after {
  content: "";
  position: absolute;
  left: 0; right: .18em; bottom: .02em;
  height: .07em;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(.16,.84,.24,1) 1.2s;
}
.ovh-hero.is-ready .ovh-kinetic .ovh-line > span.ovh-w--accent::after { transform: scaleX(1); }

/* ---------- Cinematic scroll exit ---------- */
/* --hero-p runs 0 → 1 across the first screen of scrolling. The headline
   drifts up and softens while the image pushes in behind it. */
.ovh-hero-inner {
  transform: translate3d(0, calc(var(--hero-p, 0) * -70px), 0);
  opacity: calc(1 - (var(--hero-p, 0) * .85));
  will-change: transform, opacity;
}
.ovh-hero-bg img {
  transform: scale(1.14);
}
/* Scroll zoom lives on the wrapper because the ken-burns keyframes already
   own the transform on the <img> itself. */
.ovh-hero-bg {
  transform: translateX(-50%) scale(calc(1 + (var(--hero-p, 0) * .08)));
}
.ovh-scrollcue { opacity: calc(1 - (var(--hero-p, 0) * 2.4)); }

.ovh-hero .ovh-eyebrow,
.ovh-hero-sub,
.ovh-hero-cta,
.ovh-hero-note,
.ovh-hero-trust { opacity: 0; transform: translateY(12px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.ovh-hero.is-ready .ovh-eyebrow  { opacity: 1; transform: none; transition-delay: .04s; }
.ovh-hero.is-ready .ovh-hero-sub { opacity: 1; transform: none; transition-delay: .40s; }
.ovh-hero.is-ready .ovh-hero-cta { opacity: 1; transform: none; transition-delay: .50s; }
.ovh-hero.is-ready .ovh-hero-note{ opacity: 1; transform: none; transition-delay: .58s; }
.ovh-hero.is-ready .ovh-hero-trust { opacity: 1; transform: none; transition-delay: .66s; }

/* ==========================================================================
   TICKER
   ========================================================================== */
.ovh-ticker { background: var(--ink); color: #fff; padding-block: var(--s-4); overflow: hidden; }
.ovh-ticker-row { display: flex; width: max-content; animation: ovh-marquee 34s linear infinite; }
.ovh-ticker:hover .ovh-ticker-row { animation-play-state: paused; }
@keyframes ovh-marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.ovh-ticker-row li {
  display: flex; align-items: center; gap: var(--s-4); padding-inline: var(--s-4);
  font-family: "Satoshi", "Inter", sans-serif; font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; color: rgba(255,255,255,.92);
}
.ovh-ticker-row li::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

/* ==========================================================================
   SECTION HEADS
   ========================================================================== */
.ovh-head { max-width: 62ch; margin-bottom: clamp(40px, 5vw, 64px); }
.ovh-head--center { margin-inline: auto; text-align: center; }
.ovh-head .ovh-eyebrow + h2 { margin-top: var(--s-4); }
.ovh-head h2 + p { margin-top: var(--s-4); }
.ovh-head--center > p { margin-inline: auto; }
.ovh-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-5); max-width: none; }
.ovh-head--split > div { max-width: 62ch; }

/* The parent theme paints every <a> blue and underlined. Neutralise at real
   specificity so card links, list rows and buttons carry their own colour. */
.ovh a, .ovh a:hover, .ovh a:focus { text-decoration: none; color: inherit; }
.ovh .ovh-btn, .ovh .ovh-btn:hover, .ovh .ovh-btn:focus { text-decoration: none; }

/* ==========================================================================
   THERAPIES — scroll-lit list
   ========================================================================== */
.ovh-list { border-top: 1px solid var(--hairline); }
.ovh-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 56px;
  align-items: center;
  gap: var(--s-4);
  padding-block: clamp(22px, 3vw, 36px);
  min-height: 88px;
  border-bottom: 1px solid var(--hairline);
  color: var(--charcoal);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.ovh-row::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .9s cubic-bezier(.16,.84,.24,1);
}
.ovh-row.is-lit::after { transform: scaleX(1); }
.ovh-row:hover { transform: translateX(10px); }

.ovh-row-num {
  font-family: "Satoshi", "Inter", sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; color: var(--muted);
  transition: color .45s ease;
}
.ovh-row.is-lit .ovh-row-num { color: var(--accent-deep); }

.ovh-row-title {
  font-family: "Satoshi", "Inter", sans-serif; font-weight: 700;
  font-size: clamp(1.55rem, 3.6vw, 3rem); line-height: 1.08; letter-spacing: -0.03em;
  color: rgba(20, 23, 20, 0.22);
  transition: color .55s cubic-bezier(.2,.7,.2,1), -webkit-text-stroke-color .55s ease;
}
@supports (-webkit-text-stroke: 1px black) {
  .ovh-row-title { color: transparent; -webkit-text-stroke: 1.2px rgba(20, 23, 20, 0.30); }
}
.ovh-row.is-lit .ovh-row-title { color: var(--ink); -webkit-text-stroke-color: transparent; }

.ovh-row-text {
  margin-top: 10px; max-width: 60ch; font-size: 15px; line-height: 1.65; color: var(--muted);
  opacity: 0; transform: translateY(6px);
  transition: opacity .55s ease .08s, transform .55s cubic-bezier(.2,.7,.2,1) .08s;
}
.ovh-row.is-lit .ovh-row-text { opacity: 1; transform: none; }

.ovh-row-arrow {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--hairline); color: var(--ink); justify-self: end;
  transition: background .35s ease, border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), color .35s ease;
}
.ovh-row-arrow svg { width: 20px; height: 20px; }
.ovh-row.is-lit .ovh-row-arrow { border-color: var(--accent-mid); }
.ovh-row:hover .ovh-row-arrow { background: var(--accent); border-color: var(--accent); color: #0d1f0d; transform: rotate(-45deg); }

/* ==========================================================================
   GOALS
   ========================================================================== */
.ovh-goals-head { text-align: center; max-width: 60ch; margin-inline: auto; }
.ovh-goals-head .ovh-eyebrow + h2 { margin-top: var(--s-4); }
.ovh-goals-head h2 + p { margin-top: var(--s-4); }
.ovh-rail-nav { display: none; justify-content: center; gap: var(--s-2); margin-top: var(--s-5); }
.ovh-rail-wrap { position: relative; margin-top: var(--s-6); }

/* Desktop: a centred five-up grid. */
.ovh-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-3);
  justify-content: center;
}
.ovh-goal {
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 3 / 4; background: var(--paper-3); display: block;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
  will-change: transform;
}
.ovh-goal:hover { box-shadow: 0 36px 60px -40px rgba(20,23,20,.7); }
.ovh-goal img {
  position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover;
  transform: scale(1.02); transition: transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.ovh-goal:hover img { transform: scale(1.1); }
.ovh-goal::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,13,10,.88) 0%, rgba(10,13,10,.12) 55%, transparent 100%);
}
.ovh .ovh-goal-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: var(--s-3); display: flex; align-items: center; justify-content: space-between; gap: var(--s-2);
  font-family: "Satoshi", "Inter", sans-serif; font-size: 1.05rem; font-weight: 700;
  color: #ffffff;
  transform: translateY(6px); transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.ovh-goal:hover .ovh-goal-label { transform: none; }
.ovh-goal-label svg {
  width: 34px; height: 34px; padding: 8px; border-radius: 50%;
  background: var(--accent); color: #0d1f0d; flex: none;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.ovh-goal:hover .ovh-goal-label svg { transform: translateX(4px) rotate(-45deg); }
.ovh-arr {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--hairline); color: var(--ink); cursor: pointer;
  transition: background .25s ease, transform .25s ease, opacity .25s ease;
}
.ovh-arr:hover { background: var(--accent); transform: translateY(-2px); }
.ovh-arr svg { width: 19px; height: 19px; }

/* Tablet and below: horizontal snap rail with arrows. */
@media (max-width: 991px) {
  .ovh-rail-nav { display: flex; }
  .ovh-rail {
    display: flex; gap: var(--s-3);
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-block: var(--s-2);
    scrollbar-width: none;
    margin-inline: calc(50% - 50vw);
    padding-inline: 20px;
  }
  .ovh-rail::-webkit-scrollbar { display: none; }
  .ovh-goal { flex: 0 0 clamp(220px, 44vw, 280px); scroll-snap-align: center; }
}

/* ==========================================================================
   PRE-FILLED / PRODUCT
   ========================================================================== */
.ovh-product { background: var(--ink); color: #fff; border-radius: var(--radius-lg); overflow: hidden; }
.ovh-product-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(28px, 4vw, 64px); }
.ovh-product-copy { padding: clamp(36px, 5vw, 76px); }
.ovh-product-copy h2 { color: #fff; }
.ovh-product-copy p { margin-top: var(--s-4); max-width: 44ch; color: rgba(255,255,255,.72); font-size: clamp(1rem,1.2vw,1.12rem); }
.ovh-product-copy .ovh-btn { margin-top: var(--s-6); }
.ovh-product-media { position: relative; align-self: stretch; min-height: 360px; }
.ovh-product-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.ovh-steps { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--s-3); }
.ovh-steps::before {
  content: ""; position: absolute; left: 0; right: 0; top: 26px; height: 2px;
  background: var(--hairline); z-index: 0;
}
.ovh-steps::after {
  content: ""; position: absolute; left: 0; top: 26px; height: 2px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1); z-index: 0;
}
.ovh-steps.is-in::after { transform: scaleX(1); }
.ovh-step { position: relative; padding-top: var(--s-6); z-index: 1; }
.ovh-step-num {
  position: absolute; top: 0; left: 0; z-index: 2;
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--card); border: 2px solid var(--hairline); color: var(--muted);
  font-family: "Satoshi", sans-serif; font-weight: 700; font-size: 16px;
  transition: background .45s ease, color .45s ease, border-color .45s ease, transform .45s cubic-bezier(.2,.7,.2,1);
}
.ovh-step.is-lit .ovh-step-num { background: var(--accent); border-color: var(--accent); color: #0d1f0d; transform: scale(1.06); }
.ovh-step h3 { margin-bottom: var(--s-2); }
.ovh-step p { font-size: 14.5px; color: var(--muted); }
.ovh-step strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   BIG CTA
   ========================================================================== */
.ovh-cta {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--ink); color: #fff; text-align: center;
  padding-block: clamp(80px, 11vw, 170px);
}
.ovh-cta::before {
  content: ""; position: absolute; inset: -30% -15% auto -15%; height: 160%; z-index: -1;
  background:
    radial-gradient(42% 52% at 50% 8%, rgba(123,251,142,.34) 0%, transparent 66%),
    radial-gradient(38% 46% at 82% 92%, rgba(210,228,252,.20) 0%, transparent 68%);
  animation: ovh-aurora 16s ease-in-out infinite alternate;
}
@keyframes ovh-aurora {
  from { transform: translate3d(-3%, 0, 0) scale(1); }
  to   { transform: translate3d(3%, 3%, 0) scale(1.14); }
}
.ovh-cta-head {
  font-family: "Satoshi", "Inter", sans-serif; font-weight: 700;
  font-size: clamp(2.5rem, 8.5vw, 6.4rem); line-height: 1.02; letter-spacing: -0.04em;
  color: #fff; margin-top: var(--s-4);
}
.ovh-cta-head em { font-style: normal; color: var(--accent); }
.ovh-cta-sub { margin: var(--s-5) auto 0; max-width: 46ch; font-size: clamp(1rem,1.3vw,1.18rem); color: rgba(255,255,255,.74); text-align: center; }
.ovh-cta .ovh-btn { margin-top: var(--s-6); }
.ovh-cta-fine { margin-top: var(--s-4); font-size: 13px; color: rgba(255,255,255,.5); }
.ovh-cta-points {
  margin-top: var(--s-7); display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-2) var(--s-3);
}
.ovh-cta-points li {
  display: flex; align-items: center; gap: 9px; padding: 11px 20px;
  border: 1px solid var(--hairline-lt); border-radius: 999px;
  font-size: 14px; line-height: 1.4; color: rgba(255,255,255,.9);
  opacity: 0; transform: translateY(12px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}
.ovh-cta-inner.is-in .ovh-cta-points li { opacity: 1; transform: none; }
.ovh-cta-inner.is-in .ovh-cta-points li:nth-child(1) { transition-delay: .30s; }
.ovh-cta-inner.is-in .ovh-cta-points li:nth-child(2) { transition-delay: .38s; }
.ovh-cta-inner.is-in .ovh-cta-points li:nth-child(3) { transition-delay: .46s; }
.ovh-cta-points svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

/* ==========================================================================
   MOTION PRIMITIVES
   ========================================================================== */
.ovh-reveal { opacity: 0; transform: translateY(14px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1); }
.ovh-reveal.is-in { opacity: 1; transform: none; }
.ovh-reveal[data-anim="fade"] { transform: none; }

.ovh-stagger > * { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.ovh-stagger.is-in > * { opacity: 1; transform: none; }
.ovh-stagger.is-in > *:nth-child(1) { transition-delay: .02s; }
.ovh-stagger.is-in > *:nth-child(2) { transition-delay: .09s; }
.ovh-stagger.is-in > *:nth-child(3) { transition-delay: .16s; }
.ovh-stagger.is-in > *:nth-child(4) { transition-delay: .23s; }
.ovh-stagger.is-in > *:nth-child(5) { transition-delay: .30s; }
.ovh-stagger.is-in > *:nth-child(6) { transition-delay: .37s; }

@media (prefers-reduced-motion: reduce) {
  .ovh *, .ovh *::before, .ovh *::after { animation: none !important; transition: none !important; }
  .ovh-reveal, .ovh-stagger > *, .ovh-cta-points li,
  .ovh-hero .ovh-eyebrow, .ovh-hero-sub, .ovh-hero-cta, .ovh-hero-note, .ovh-hero-trust
    { opacity: 1 !important; transform: none !important; }
  .ovh-line > span { transform: none !important; }
  .ovh-kinetic .ovh-line > span.ovh-w { transform: none !important; opacity: 1 !important; }
  .ovh-kinetic .ovh-line > span.ovh-w--accent::after { transform: scaleX(1) !important; }
  .ovh-hero-inner { transform: none !important; opacity: 1 !important; }
  .ovh-hero-bg { transform: translateX(-50%) !important; }
  .ovh-steps::after { transform: scaleX(1) !important; }
  .ovh-progress { display: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
  .ovh-product-grid { grid-template-columns: 1fr; }
  .ovh-product-media { order: -1; min-height: 300px; aspect-ratio: 4 / 3; }
  .ovh-head--split { flex-direction: column; align-items: flex-start; }
  .ovh-steps::before, .ovh-steps::after { display: none; }
}

@media (max-width: 767px) {
  .ovh { --section-y: 60px; --radius-lg: 24px; }
  .ovh-hero { min-height: 92svh; padding-top: clamp(88px, 14vh, 130px); padding-bottom: 72px; }
  .ovh-hero .ovh-eyebrow { font-size: 10.5px; letter-spacing: 0.10em; padding: 7px 13px; }
  .ovh-hero h1 { margin-top: var(--s-3); }
  .ovh-hero-sub { margin-top: var(--s-3); font-size: 0.98rem; }
  .ovh-hero-cta { margin-top: var(--s-5); }
  .ovh-hero-trust {
    margin-top: var(--s-5);
    padding-top: var(--s-3);
    display: grid;
    justify-items: start;
    max-width: 300px;
    margin-inline: auto;
    gap: 10px var(--s-4);
    /* Keep the last item clear of the floating chat bubble bottom-right */
    padding-right: 64px;
  }
  .ovh-hero-trust li { font-size: 13px; }
  .ovh-hero-cta .ovh-btn { width: 100%; }
  .ovh-btn--xl { padding: 20px 32px; width: 100%; }
  .ovh-rail { padding-inline: 20px; }
  .ovh-goal { flex-basis: 74vw; }
  .ovh-row { grid-template-columns: 40px 1fr 44px; gap: var(--s-2); }
  .ovh-row:hover { transform: none; }
  .ovh-row-arrow { width: 40px; height: 40px; }
  .ovh-row-title { font-size: clamp(1.4rem, 7vw, 2rem); }
  .ovh-steps { gap: var(--s-4); }
  .ovh-step { padding-top: 0; padding-left: 68px; min-height: 54px; }
  .ovh-product-copy { padding: var(--s-5) var(--s-4); }
  .ovh-cta-points li { font-size: 13px; padding: 10px 15px; }
  .ovh-scrollcue { display: none; }
}
