/* ==========================================================================
   OTTRUN design system — light
   Written for Bootstrap 5.3.x. Bootstrap supplies reset, grid and utilities;
   everything visual below is ours. No jQuery, no theme CSS from the old build.

   Palette is taken from the logo: cyan #05CDFF with a near-black wordmark.
   The logo art is dark-on-transparent, so a light ground is what it was drawn
   for. Brand cyan is kept for fills and graphics only — at 1.7:1 on white it
   is far too pale for text, so type and icons use --o-accent-ink instead.

   Class prefix `o-` keeps these from ever colliding with Bootstrap's own.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand — fills, borders, graphics */
  --o-cyan:        #05cdff;
  --o-cyan-bright: #5ddeff;
  --o-cyan-pale:   #d9f5ff;
  --o-cyan-wash:   #eefaff;

  /* Brand — anything carrying text weight (5.5:1 on white) */
  --o-accent-ink:  #036c8c;
  --o-accent-deep: #024f67;

  /* Surfaces, lightest to deepest */
  --o-bg:        #ffffff;
  --o-bg-2:      #f4f8fb;
  --o-surface:   #ffffff;
  --o-surface-2: #eaf2f8;
  --o-line:      rgba(12, 30, 50, .11);
  --o-line-soft: rgba(12, 30, 50, .06);

  /* Ink */
  --o-heading:   #0d1b2a;
  --o-text:      #263749;
  --o-text-mute: #566579;
  --o-text-dim:  #8393a6;

  /* Accents */
  --o-danger:      #c2334a;
  --o-danger-line: rgba(194, 51, 74, .28);
  --o-danger-bg:   #fdf2f4;

  /* Type */
  --o-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
            "Helvetica Neue", Arial, sans-serif;

  /* Shape */
  --o-radius:    14px;
  --o-radius-lg: 22px;
  --o-radius-sm: 9px;

  /* Depth — soft and cool, never grey mud */
  --o-shadow:    0 18px 44px rgba(13, 27, 42, .10);
  --o-shadow-sm: 0 6px 18px rgba(13, 27, 42, .07);
  --o-glow:      0 0 0 1px rgba(5, 205, 255, .45), 0 16px 38px rgba(5, 160, 205, .16);

  /* Motion */
  --o-ease: cubic-bezier(.22, .61, .36, 1);

  /* Rhythm — sections breathe less on small screens */
  --o-section-y: clamp(3.5rem, 8vw, 7rem);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
  /* Guard against any single element pushing the page sideways. `clip` does
     not create a scroll container, so sticky and fixed positioning still work
     (which `hidden` on html would break). */
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  background: var(--o-bg);
  color: var(--o-text);
  font-family: var(--o-font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--o-heading);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.18;
}

p { color: var(--o-text-mute); }

a {
  color: var(--o-accent-ink);
  text-decoration: none;
  transition: color .2s var(--o-ease);
}
a:hover { color: var(--o-accent-deep); }

img { max-width: 100%; height: auto; }

::selection { background: var(--o-cyan); color: #04121a; }

:focus-visible {
  outline: 2px solid var(--o-accent-ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link — visible only when focused */
.o-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  padding: .75rem 1.25rem;
  background: var(--o-accent-ink);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--o-radius-sm) 0;
}
.o-skip:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */

.o-section { padding-block: var(--o-section-y); position: relative; }
.o-section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.o-panel   { background: var(--o-bg-2); }
.o-panel-2 { background: linear-gradient(180deg, var(--o-bg) 0%, var(--o-bg-2) 100%); }

/* A single hairline that fades out at both ends */
.o-rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--o-line), transparent);
}

/* --------------------------------------------------------------------------
   4. Section headings
   -------------------------------------------------------------------------- */

.o-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding: .35rem .85rem;
  border: 1px solid rgba(5, 205, 255, .45);
  border-radius: 999px;
  background: var(--o-cyan-wash);
  color: var(--o-accent-ink);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.o-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--o-cyan);
}

.o-title {
  font-size: clamp(1.75rem, 3.4vw, 2.85rem);
  margin-bottom: 1rem;
}

.o-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 600;
  color: var(--o-accent-ink);
  margin-bottom: .85rem;
}

.o-lead {
  font-size: 1.05rem;
  max-width: 62ch;
}
.o-lead--center { margin-inline: auto; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.o-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .22s var(--o-ease), box-shadow .22s var(--o-ease),
              background-color .22s var(--o-ease), border-color .22s var(--o-ease),
              color .22s var(--o-ease);
}
.o-btn:hover { transform: translateY(-2px); }
.o-btn:active { transform: translateY(0); }

/* Deep teal rather than pale cyan: white text needs a ground it can sit on. */
.o-btn--primary {
  background: linear-gradient(135deg, var(--o-accent-ink) 0%, #0490b8 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(3, 108, 140, .28);
}
.o-btn--primary:hover {
  color: #fff;
  box-shadow: 0 16px 34px rgba(3, 108, 140, .38);
}

.o-btn--ghost {
  background: #fff;
  border-color: var(--o-line);
  color: var(--o-heading);
  box-shadow: var(--o-shadow-sm);
}
.o-btn--ghost:hover {
  border-color: rgba(5, 205, 255, .6);
  background: var(--o-cyan-wash);
  color: var(--o-accent-deep);
}

.o-btn--sm { padding: .6rem 1.15rem; font-size: .875rem; }

.o-btn svg { width: 1em; height: 1em; flex: none; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.o-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--o-line-soft);
  transition: background-color .25s var(--o-ease), border-color .25s var(--o-ease),
              box-shadow .25s var(--o-ease);
}
.o-header.is-stuck {
  background: rgba(255, 255, 255, .95);
  border-bottom-color: var(--o-line);
  box-shadow: 0 4px 20px rgba(13, 27, 42, .06);
}

/* Fallback for browsers without backdrop-filter */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .o-header { background: rgba(255, 255, 255, .98); }
}

.o-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.o-logo { display: inline-flex; align-items: center; }
.o-logo img { height: 34px; width: auto; }

.o-nav { display: flex; align-items: center; gap: .35rem; }

.o-nav__link {
  position: relative;
  padding: .55rem .9rem;
  border-radius: var(--o-radius-sm);
  color: var(--o-text-mute);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: none;
  border: 0;
  transition: color .2s var(--o-ease), background-color .2s var(--o-ease);
}
.o-nav__link:hover,
.o-nav__link[aria-expanded="true"] {
  color: var(--o-heading);
  background: var(--o-surface-2);
}
.o-nav__link.is-active { color: var(--o-heading); }
.o-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .3rem;
  height: 2px;
  border-radius: 2px;
  background: var(--o-cyan);
}

/* Dropdown, restyled from Bootstrap's base */
.o-nav .dropdown-menu {
  margin-top: .5rem;
  padding: .5rem;
  min-width: 15rem;
  background: #fff;
  border: 1px solid var(--o-line);
  border-radius: var(--o-radius);
  box-shadow: var(--o-shadow);
}
.o-nav .dropdown-item {
  padding: .6rem .8rem;
  border-radius: var(--o-radius-sm);
  color: var(--o-text-mute);
  font-size: .9rem;
  font-weight: 500;
  white-space: normal;
}
.o-nav .dropdown-item:hover,
.o-nav .dropdown-item:focus {
  background: var(--o-cyan-wash);
  color: var(--o-accent-deep);
}

/* Mobile toggle */
.o-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--o-line);
  border-radius: var(--o-radius-sm);
  background: #fff;
  color: var(--o-heading);
}
.o-burger:hover { border-color: rgba(5, 205, 255, .6); color: var(--o-accent-ink); }

/* Offcanvas panel */
.o-offcanvas {
  background: #fff;
  border-left: 1px solid var(--o-line);
  color: var(--o-text);
  width: min(88vw, 340px);
}
.o-offcanvas__link {
  display: block;
  padding: .8rem .25rem;
  border-bottom: 1px solid var(--o-line-soft);
  color: var(--o-heading);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .9rem;
}
.o-offcanvas__link:hover { color: var(--o-accent-ink); }
.o-offcanvas__sub {
  display: block;
  padding: .55rem .25rem .55rem 1rem;
  color: var(--o-text-mute);
  font-size: .875rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.o-offcanvas__sub:hover { color: var(--o-accent-ink); }

@media (max-width: 991.98px) {
  .o-nav-desktop { display: none; }
  .o-burger { display: inline-flex; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.o-hero {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 7.5rem);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, var(--o-cyan-wash) 0%, #ffffff 62%);
}

/* Two soft colour pools + a faint grid, all painted behind the content */
.o-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130%;
  z-index: -2;
  background:
    radial-gradient(52% 46% at 80% 14%, rgba(5, 205, 255, .26) 0%, transparent 62%),
    radial-gradient(46% 44% at 10% 82%, rgba(3, 108, 140, .12) 0%, transparent 66%);
}
.o-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(13, 27, 42, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 42, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 35%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 35%, #000 0%, transparent 78%);
}

.o-hero__title {
  /* Sized for a sentence headline rather than a three-word one: at 4rem
     "Launch your own branded OTT service" ran to three lines and pushed the
     call to action below the fold. */
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin-bottom: 1.1rem;
}
.o-hero__title span {
  background: linear-gradient(110deg, var(--o-accent-deep) 0%, #0596c1 55%, #05b6e6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.o-hero__kicker {
  display: block;
  font-size: clamp(1rem, 1.9vw, 1.3rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--o-text-mute);
  text-transform: uppercase;
  margin-bottom: .5rem;
  /* Override the gradient clip inherited from the sibling span rule */
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--o-text-mute);
}
.o-hero__lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  max-width: 46ch;
  margin-bottom: 1.9rem;
}

/* Platform chips */
.o-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.o-platforms li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .9rem;
  border: 1px solid var(--o-line);
  border-radius: 999px;
  background: #fff;
  color: var(--o-heading);
  font-size: .85rem;
  font-weight: 600;
  box-shadow: var(--o-shadow-sm);
}
.o-platforms svg { width: 1rem; height: 1rem; color: var(--o-accent-ink); flex: none; }

.o-hero__media { position: relative; text-align: center; }
.o-hero__media img { position: relative; z-index: 1; filter: drop-shadow(0 26px 46px rgba(13, 27, 42, .22)); }
.o-hero__media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(120%, 520px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 205, 255, .22) 0%, transparent 66%);
}

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */

.o-card {
  position: relative;
  height: 100%;
  padding: 2rem 1.6rem;
  border: 1px solid var(--o-line);
  border-radius: var(--o-radius-lg);
  background: #fff;
  box-shadow: var(--o-shadow-sm);
  text-align: center;
  overflow: hidden;
  transition: transform .3s var(--o-ease), border-color .3s var(--o-ease),
              box-shadow .3s var(--o-ease);
}
/* Cyan wash that fades in on hover */
.o-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--o-cyan-wash) 0%, transparent 62%);
  opacity: 0;
  transition: opacity .3s var(--o-ease);
  pointer-events: none;
}
.o-card:hover {
  transform: translateY(-6px);
  border-color: rgba(5, 205, 255, .55);
  box-shadow: var(--o-glow);
}
.o-card:hover::before { opacity: 1; }

.o-card__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 116px;
  margin-bottom: 1.2rem;
}
.o-card__icon img { max-height: 116px; width: auto; }

.o-card__title { position: relative; z-index: 1; font-size: 1.2rem; margin-bottom: .6rem; }
.o-card p { position: relative; z-index: 1; margin: 0; font-size: .95rem; }

/* A card can be a link. Inherit colour so the title stays heading-dark rather
   than picking up the accent colour every anchor gets. */
/* Column layout so the "Learn more" row sits on a common baseline across
   the group, however many lines each description runs to. */
a.o-card { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
a.o-card:hover { color: inherit; }

.o-card__more {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
  padding-top: 1rem;
  align-self: center;
  color: var(--o-accent-ink);
  font-size: .85rem;
  font-weight: 600;
}
.o-card__more svg {
  width: .95em;
  height: .95em;
  transition: transform .25s var(--o-ease);
}
a.o-card:hover .o-card__more svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   9. Stats
   -------------------------------------------------------------------------- */

.o-stat {
  height: 100%;
  padding: 1.6rem 1.1rem;
  border: 1px solid var(--o-line);
  border-radius: var(--o-radius);
  background: #fff;
  box-shadow: var(--o-shadow-sm);
  text-align: center;
}
.o-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: .75rem;
  border-radius: 12px;
  background: var(--o-cyan-wash);
  color: var(--o-accent-ink);
}
.o-stat__icon svg { width: 20px; height: 20px; }
.o-stat__value {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1;
  margin-bottom: .35rem;
}
.o-stat__value span { color: var(--o-accent-ink); }
.o-stat p { margin: 0; font-size: .875rem; }

/* --------------------------------------------------------------------------
   10. Checklist
   -------------------------------------------------------------------------- */

.o-checklist {
  padding: 1.9rem 1.7rem;
  border: 1px solid var(--o-line);
  border-radius: var(--o-radius-lg);
  background: #fff;
  box-shadow: var(--o-shadow);
}
.o-checklist ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.o-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--o-line-soft);
  color: var(--o-heading);
  font-weight: 500;
  font-size: .95rem;
}
.o-checklist li:last-child { border-bottom: 0; }
.o-checklist li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: .2rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px 11px no-repeat,
    var(--o-accent-ink);
}

/* --------------------------------------------------------------------------
   11. Feature columns
   -------------------------------------------------------------------------- */

.o-feature { height: 100%; }
.o-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  border-radius: 16px;
  background: var(--o-cyan-wash);
  border: 1px solid rgba(5, 205, 255, .45);
  color: var(--o-accent-ink);
}
.o-feature__icon svg { width: 24px; height: 24px; }
.o-feature__title { font-size: 1.12rem; margin-bottom: .85rem; }
.o-feature ul { list-style: none; padding: 0; margin: 0; }
.o-feature li {
  position: relative;
  padding: .32rem 0 .32rem 1.1rem;
  color: var(--o-text-mute);
  font-size: .93rem;
}
.o-feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .95em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--o-cyan);
}

/* --------------------------------------------------------------------------
   12. CTA band
   -------------------------------------------------------------------------- */

.o-cta {
  position: relative;
  padding: clamp(2rem, 5vw, 3.2rem);
  border: 1px solid rgba(5, 205, 255, .38);
  border-radius: var(--o-radius-lg);
  background:
    radial-gradient(80% 140% at 88% 8%, rgba(5, 205, 255, .28) 0%, transparent 62%),
    linear-gradient(135deg, var(--o-cyan-wash) 0%, #ffffff 100%);
  box-shadow: var(--o-shadow-sm);
  overflow: hidden;
}
.o-cta__title { font-size: clamp(1.35rem, 2.6vw, 1.95rem); margin: 0; }
.o-cta p { margin: .6rem 0 0; }

/* --------------------------------------------------------------------------
   13. Disclaimer band
   -------------------------------------------------------------------------- */

.o-notice {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid var(--o-danger-line);
  border-left: 4px solid var(--o-danger);
  border-radius: var(--o-radius);
  background: var(--o-danger-bg);
}
.o-notice__label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .5rem;
  color: var(--o-danger);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.o-notice__label svg { width: 15px; height: 15px; }
.o-notice p { color: #4a3b41; font-size: .93rem; margin-bottom: 0; }
.o-notice p + .o-notice__label { margin-top: 1.4rem; }

/* --------------------------------------------------------------------------
   14. Demo image
   -------------------------------------------------------------------------- */

.o-video {
  position: relative;
  display: block;
  border: 1px solid var(--o-line);
  border-radius: var(--o-radius-lg);
  overflow: hidden;
  box-shadow: var(--o-shadow);
  background: var(--o-surface-2);
}
/* Not interactive, so no hover zoom and no play affordance. */
.o-video img { display: block; width: 100%; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */

.o-footer {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--o-bg-2);
  border-top: 1px solid var(--o-line);
}
.o-footer h3 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--o-text-dim);
  margin-bottom: 1.1rem;
}
.o-footer ul { list-style: none; padding: 0; margin: 0; }
.o-footer li { margin-bottom: .55rem; }
.o-footer li a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--o-text-mute);
  font-size: .93rem;
}
.o-footer li a:hover { color: var(--o-accent-ink); }
.o-footer li a svg { width: 15px; height: 15px; flex: none; }

.o-footer__logo img { height: 34px; width: auto; margin-bottom: 1rem; }
.o-footer__blurb { font-size: .93rem; max-width: 32ch; }

/* App store badges */
.o-store {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .6rem .9rem;
  margin-bottom: .6rem;
  border: 1px solid var(--o-line);
  border-radius: var(--o-radius-sm);
  background: #fff;
  color: var(--o-heading);
  transition: border-color .2s var(--o-ease), background-color .2s var(--o-ease),
              box-shadow .2s var(--o-ease);
}
.o-store:hover {
  border-color: rgba(5, 205, 255, .6);
  background: var(--o-cyan-wash);
  color: var(--o-accent-deep);
  box-shadow: var(--o-shadow-sm);
}
.o-store svg { width: 22px; height: 22px; flex: none; color: var(--o-accent-ink); }
.o-store small { display: block; font-size: .68rem; color: var(--o-text-dim); line-height: 1.3; }
.o-store strong { display: block; font-size: .92rem; font-weight: 600; line-height: 1.3; }

.o-footer__bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-block: 1.4rem;
  border-top: 1px solid var(--o-line);
}
.o-footer__bottom p { margin: 0; font-size: .86rem; color: var(--o-text-dim); }

/* --------------------------------------------------------------------------
   16. Back to top
   -------------------------------------------------------------------------- */

.o-totop {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--o-line);
  border-radius: 50%;
  background: #fff;
  color: var(--o-accent-ink);
  box-shadow: var(--o-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .28s var(--o-ease), transform .28s var(--o-ease),
              visibility .28s var(--o-ease);
}
.o-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.o-totop:hover { background: var(--o-accent-ink); color: #fff; border-color: var(--o-accent-ink); }
.o-totop svg { width: 19px; height: 19px; }

/* --------------------------------------------------------------------------
   17. Reveal on scroll — replaces WOW.js / animate.css
   Elements stay visible if JS never runs, so content is never hidden.
   -------------------------------------------------------------------------- */

.o-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--o-ease), transform .6s var(--o-ease);
}
.o-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .o-reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   18. Slider — Bootstrap carousel, restyled
   -------------------------------------------------------------------------- */

.o-slider {
  position: relative;
  background: linear-gradient(180deg, var(--o-cyan-wash) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--o-line);
  overflow: hidden;
}
.o-slider::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 140%;
  background: radial-gradient(50% 44% at 78% 16%, rgba(5, 205, 255, .24) 0%, transparent 62%);
  pointer-events: none;
}
.o-slider .container { position: relative; z-index: 1; }

.o-slider__item { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.o-slider__title { font-size: clamp(1.5rem, 3.2vw, 2.4rem); margin-bottom: .9rem; }
.o-slider__lead { font-size: 1.02rem; max-width: 52ch; }

.o-slider__media {
  border-radius: var(--o-radius-lg);
  overflow: hidden;
  box-shadow: var(--o-shadow);
  border: 1px solid var(--o-line);
  background: #fff;
}
.o-slider__media img { display: block; width: 100%; }

/* Tag pills inside a slide */
.o-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}
.o-tags li {
  padding: .3rem .75rem;
  border: 1px solid rgba(5, 205, 255, .4);
  border-radius: 999px;
  background: #fff;
  color: var(--o-accent-ink);
  font-size: .78rem;
  font-weight: 600;
}

/* Controls — Bootstrap's default chevrons are white and vanish on a light hero */
.o-slider .carousel-control-prev,
.o-slider .carousel-control-next {
  width: 4rem;
  opacity: 1;
}
.o-slider .carousel-control-prev-icon,
.o-slider .carousel-control-next-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #fff;
  background-size: 40% 40%;
  border: 1px solid var(--o-line);
  box-shadow: var(--o-shadow-sm);
}
.o-slider .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23036c8c'%3E%3Cpath d='M11.4 1.6 10 .2 2.2 8l7.8 7.8 1.4-1.4L5 8z'/%3E%3C/svg%3E");
}
.o-slider .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23036c8c'%3E%3Cpath d='M4.6 1.6 6 .2 13.8 8 6 15.8l-1.4-1.4L11 8z'/%3E%3C/svg%3E");
}

.o-slider .carousel-indicators { margin-bottom: .75rem; }
.o-slider .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  margin-inline: 5px;
  background-color: var(--o-heading);
  opacity: .22;
  transition: opacity .2s var(--o-ease), background-color .2s var(--o-ease);
}
.o-slider .carousel-indicators .active {
  opacity: 1;
  background-color: var(--o-accent-ink);
}

@media (max-width: 991.98px) {
  /* Chevrons would sit over the text column on a stacked slide */
  .o-slider .carousel-control-prev,
  .o-slider .carousel-control-next { display: none; }
}

/* --------------------------------------------------------------------------
   19. Mini cards — left-aligned, icon tile, for dense benefit grids
   -------------------------------------------------------------------------- */

.o-minicard {
  height: 100%;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--o-line);
  border-radius: var(--o-radius);
  background: #fff;
  box-shadow: var(--o-shadow-sm);
  transition: transform .3s var(--o-ease), border-color .3s var(--o-ease),
              box-shadow .3s var(--o-ease);
}
.o-minicard:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 205, 255, .5);
  box-shadow: var(--o-glow);
}
.o-minicard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: .95rem;
  border-radius: 13px;
  background: var(--o-cyan-wash);
  border: 1px solid rgba(5, 205, 255, .4);
  color: var(--o-accent-ink);
}
.o-minicard__icon svg { width: 21px; height: 21px; }
.o-minicard__title { font-size: 1rem; margin-bottom: .45rem; }
.o-minicard p { margin: 0; font-size: .89rem; }

/* --------------------------------------------------------------------------
   20. Spec lists — long capability breakdowns
   -------------------------------------------------------------------------- */

.o-spec {
  height: 100%;
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--o-line);
  border-radius: var(--o-radius);
  background: #fff;
  box-shadow: var(--o-shadow-sm);
}
.o-spec__head {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--o-line-soft);
}
.o-spec__head svg { width: 20px; height: 20px; flex: none; color: var(--o-accent-ink); }
.o-spec__head h3 { font-size: 1.05rem; margin: 0; }

.o-spec ul { list-style: none; padding: 0; margin: 0; }
.o-spec li {
  position: relative;
  padding: .34rem 0 .34rem 1.55rem;
  color: var(--o-text-mute);
  font-size: .9rem;
  line-height: 1.5;
}
.o-spec li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 9px 9px no-repeat,
    var(--o-accent-ink);
}

/* --------------------------------------------------------------------------
   21. Page head — the title band on interior pages
   -------------------------------------------------------------------------- */

.o-pagehead {
  position: relative;
  padding-block: clamp(2.75rem, 7vw, 4.5rem);
  background: linear-gradient(180deg, var(--o-cyan-wash) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--o-line);
  overflow: hidden;
  text-align: center;
}
.o-pagehead::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 160%;
  background: radial-gradient(46% 42% at 50% 12%, rgba(5, 205, 255, .22) 0%, transparent 64%);
  pointer-events: none;
}
.o-pagehead .container { position: relative; z-index: 1; }
.o-pagehead__title { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: .6rem; }
.o-pagehead__lead { font-size: 1.05rem; max-width: 60ch; margin: 0 auto; }

/* --------------------------------------------------------------------------
   22. Platform tabs
   -------------------------------------------------------------------------- */

.o-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}
.o-tabs a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.15rem;
  border: 1px solid var(--o-line);
  border-radius: 999px;
  background: #fff;
  color: var(--o-text-mute);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: var(--o-shadow-sm);
  transition: border-color .2s var(--o-ease), color .2s var(--o-ease),
              background-color .2s var(--o-ease);
}
.o-tabs a:hover { border-color: rgba(5, 205, 255, .6); color: var(--o-accent-ink); }
.o-tabs a[aria-current="page"] {
  background: var(--o-accent-ink);
  border-color: var(--o-accent-ink);
  color: #fff;
}
.o-tabs svg { width: 1rem; height: 1rem; flex: none; }

/* --------------------------------------------------------------------------
   23. Product split — device shot beside the copy
   -------------------------------------------------------------------------- */

.o-device { text-align: center; position: relative; }
.o-device img { filter: drop-shadow(0 22px 40px rgba(13, 27, 42, .2)); }
.o-device::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(110%, 460px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 205, 255, .2) 0%, transparent 66%);
}

/* Small "OS support" style fact rows */
.o-facts {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--o-line-soft);
}
.o-facts li {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--o-line-soft);
  font-size: .93rem;
}
.o-facts dt, .o-facts b {
  color: var(--o-heading);
  font-weight: 600;
  min-width: 9rem;
}
.o-facts span { color: var(--o-text-mute); }

/* Two-column feature checklist for product pages */
.o-featlist {
  column-count: 2;
  column-gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.o-featlist li {
  position: relative;
  break-inside: avoid;
  padding: .3rem 0 .3rem 1.5rem;
  color: var(--o-text-mute);
  font-size: .92rem;
}
.o-featlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 9px 9px no-repeat,
    var(--o-accent-ink);
}
@media (max-width: 575.98px) { .o-featlist { column-count: 1; } }

/* --------------------------------------------------------------------------
   24. Screenshot gallery
   -------------------------------------------------------------------------- */

.o-shots {
  display: grid;
  /* 280px lands 3 across in a 1140px container, so six shots read as 3x2
     rather than an unbalanced 5+1. */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.o-shot {
  display: block;
  border: 1px solid var(--o-line);
  border-radius: var(--o-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--o-shadow-sm);
  transition: transform .3s var(--o-ease), box-shadow .3s var(--o-ease),
              border-color .3s var(--o-ease);
}
.o-shot img { display: block; width: 100%; }
.o-shot:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 205, 255, .55);
  box-shadow: var(--o-glow);
}

/* Lightbox — replaces the old lightbox/fancybox jQuery plugins */
.o-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 1.5rem;
  background: rgba(8, 18, 30, .82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.o-lightbox.is-open { display: grid; }
.o-lightbox img {
  max-width: min(100%, 1200px);
  max-height: 88vh;
  border-radius: var(--o-radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.o-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--o-heading);
  cursor: pointer;
}
.o-lightbox__close svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   25. Pricing
   -------------------------------------------------------------------------- */

.o-price {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.9rem 1.6rem;
  border: 1px solid var(--o-line);
  border-radius: var(--o-radius-lg);
  background: #fff;
  box-shadow: var(--o-shadow-sm);
  transition: transform .3s var(--o-ease), border-color .3s var(--o-ease),
              box-shadow .3s var(--o-ease);
}
.o-price:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 205, 255, .55);
  box-shadow: var(--o-glow);
}
.o-price--featured { border-color: rgba(5, 205, 255, .55); box-shadow: var(--o-glow); }

.o-price__term {
  align-self: flex-start;
  padding: .25rem .7rem;
  border-radius: 999px;
  background: var(--o-cyan-wash);
  border: 1px solid rgba(5, 205, 255, .4);
  color: var(--o-accent-ink);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.o-price__amount {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin: 1rem 0 .2rem;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--o-heading);
}
.o-price__amount small {
  font-size: .8rem;
  font-weight: 600;
  color: var(--o-text-dim);
  letter-spacing: 0;
}
.o-price__setup { font-size: .84rem; color: var(--o-text-dim); margin-bottom: .2rem; }
.o-price__for {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--o-line-soft);
  font-size: .92rem;
  color: var(--o-text-mute);
}
.o-price ul { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1 1 auto; }
.o-price li {
  position: relative;
  padding: .28rem 0 .28rem 1.4rem;
  font-size: .88rem;
  color: var(--o-text-mute);
}
.o-price li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--o-cyan);
}

/* Platform heading above each pricing pair */
.o-pricegroup { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.o-pricegroup:first-of-type { margin-top: 0; }
.o-pricegroup__head { margin-bottom: 1.5rem; }
.o-pricegroup__head h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin-bottom: .5rem; }

.o-soon {
  display: inline-block;
  padding: .22rem .65rem;
  border-radius: 999px;
  background: #fff5e6;
  border: 1px solid #f0c684;
  color: #8a5a12;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   26. Prose — long-form legal and editorial copy
   -------------------------------------------------------------------------- */

.o-prose {
  max-width: 78ch;
  margin-inline: auto;
  color: var(--o-text-mute);
  font-size: .97rem;
  line-height: 1.78;
}
.o-prose h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  margin: 0 0 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--o-line);
}
.o-prose h3, .o-prose h4, .o-prose h5 {
  font-size: 1.05rem;
  margin: 2rem 0 .6rem;
  color: var(--o-heading);
}
.o-prose p { margin-bottom: 1.1rem; }
.o-prose strong, .o-prose b { color: var(--o-heading); font-weight: 700; }
.o-prose a { text-decoration: underline; text-underline-offset: 2px; }
.o-prose ul, .o-prose ol { margin: 0 0 1.1rem 1.1rem; padding: 0; }
.o-prose li { margin-bottom: .35rem; }
.o-prose hr { margin: 2rem 0; border: 0; border-top: 1px solid var(--o-line); }

/* --------------------------------------------------------------------------
   27. Technology partner
   Sits between the footer columns and the copyright line. Its own band rather
   than a sixth column, because the five columns already fill all 12 units.
   -------------------------------------------------------------------------- */

.o-partner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem 1.25rem;
  margin-top: clamp(1.25rem, 2.4vw, 1.6rem);
  padding-top: clamp(.9rem, 1.8vw, 1.15rem);
  border-top: 1px solid var(--o-line-soft);
}

/* The band already separates itself from the columns above and the copyright
   below, so the copyright's own top margin would only stack a third gap. */
.o-partner + .o-footer__bottom { margin-top: clamp(.9rem, 1.8vw, 1.15rem); }
.o-partner__label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--o-text-dim);
}
.o-partner__logo {
  display: inline-flex;
  align-items: center;
  opacity: .85;
  transition: opacity .2s var(--o-ease), transform .2s var(--o-ease);
}
.o-partner__logo:hover { opacity: 1; transform: translateY(-1px); }
.o-partner__logo img { height: 30px; width: auto; display: block; }
