/* Nucurate marketing page — typography aligned to local web2 reference (Plus Jakarta Sans + JetBrains Mono) */

:root {
  --black: #000;
  --white: #ffffff;
  --orange: #fc5f2b;
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-900: #18181b;
  --radius-card: 0.75rem;
  --nav-pad-x: clamp(1rem, 4vw, 4.5rem);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nc-header-h: 5.25rem;
  --nc-black: #000000;
  --nc-panel: #1a1a1a;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --nc-font: var(--font-sans);
  --web2-card: #0a0a0a;
  --web2-border: rgba(255, 255, 255, 0.06);
  --web2-accent: #22c55e;
  /* Salient material OCM (approximate shift until JS sets pixel width) */
  --nc-ocm-panel-w: 352px;
  --nc-ocm-shift: calc(var(--nc-ocm-panel-w) * -0.5);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  /* Global smooth scrolling makes wheel/trackpad feel laggy; in-page anchors use JS smooth scroll. */
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--nc-header-h) + 0.75rem);
}

/*
 * Marketing home: black document chrome behind the hero.
 * Do not set overscroll-behavior-y: none here — it can prevent normal wheel / touch scrolling
 * on some browsers when combined with fixed headers.
 */
@supports selector(:has(*)) {
  html:has(.sp-hero) {
    background-color: #000 !important;
  }
  body.nc-skin:has(.sp-hero) {
    background-color: #000 !important;
    background-image: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--zinc-900);
  background: var(--zinc-50);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
  word-break: normal;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.page-wrapper { min-height: 100vh; }
body.nc-ocm-material-open .page-wrapper {
  overflow-x: hidden;
}

/* ------------------------------------------------------------------
   Salient native header: home hero transparent + centered logo layout
   ------------------------------------------------------------------
   Goal:
   - Keep Salient's native header/hamburger/off-canvas behavior untouched.
   - On home at top-of-page, make header transparent over hero.
   - On scroll, let Salient return to its normal (native) look.
   - Desktop only: center logo, keep nav links on the left.
*/
/* Keep #header-space height — collapsing it to 0 and restoring when leaving the
   hero caused large document reflows and jumpy desktop scroll at the boundary. */
body.nc-home-top:not(.nc-header-solid) #header-space,
body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-space {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Transparent header over hero — ALL viewports (mobile was missing when this lived only in the desktop @media below). */
body.nc-home-top:not(.nc-header-solid) #header-outer,
body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer {
  background-color: transparent !important;
  box-shadow: none !important;
  border-bottom: 0 !important;
  border-bottom-color: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
body.nc-home-top:not(.nc-header-solid) #header-outer::before,
body.nc-home-top:not(.nc-header-solid) #header-outer::after,
body.nc-home-top:not(.nc-header-solid) #header-outer #top,
body.nc-home-top:not(.nc-header-solid) #header-outer header#top,
body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer::before,
body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer::after,
body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer #top,
body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer header#top {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

body.nc-home-top:not(.nc-header-solid) #header-outer.light,
body.nc-home-top:not(.nc-header-solid) #header-outer.dark,
body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer.light,
body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer.dark {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

@media (min-width: 1000px) {
  body.nc-home-top:not(.nc-header-solid) #header-outer #top > .container > .row,
  body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer #top > .container > .row {
    position: relative;
    display: flex;
    align-items: center;
  }

  /* Center logo (horizontally + vertically) while keeping nav left. */
  body.nc-home-top:not(.nc-header-solid) #header-outer #top .col.span_3,
  body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer #top .col.span_3 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto !important;
    margin: 0 !important;
    z-index: 40;
    pointer-events: none;
    display: flex;
    align-items: center;
  }
  body.nc-home-top:not(.nc-header-solid) #header-outer #top .col.span_3 #logo,
  body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer #top .col.span_3 #logo {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }

  /* Keep main nav links in the original left slot, clear of centered logo. */
  body.nc-home-top:not(.nc-header-solid) #header-outer #top .col.span_9.col_last,
  body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer #top .col.span_9.col_last {
    width: 100% !important;
  }
  body.nc-home-top:not(.nc-header-solid) #header-outer #top .col.span_9.col_last > nav,
  body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer #top .col.span_9.col_last > nav {
    width: calc(50% - 140px);
    min-width: 360px;
    margin: 0 !important;
    padding: 0 !important;
  }
  body.nc-home-top:not(.nc-header-solid) #header-outer #top .col.span_9.col_last > nav > ul.sf-menu,
  body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer #top .col.span_9.col_last > nav > ul.sf-menu {
    float: none !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 !important;
    padding: 0 !important;
  }
  body.nc-home-top:not(.nc-header-solid) #header-outer #top .col.span_9.col_last > nav > ul.sf-menu > li,
  body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer #top .col.span_9.col_last > nav > ul.sf-menu > li {
    float: none !important;
    display: flex;
    align-items: center;
  }

  /* Improve contrast while transparent over hero. */
  body.nc-home-top:not(.nc-header-solid) #header-outer #top nav > ul > li > a,
  body.nc-skin:has(.sp-hero):not(.nc-header-solid) #header-outer #top nav > ul > li > a {
    color: rgba(255, 255, 255, 0.92) !important;
  }
}

/* After hero: Salient’s solid “light” header is white — keep bar + wrap black while scrolling. */
body.nc-skin:has(.sp-hero).nc-header-solid #header-space,
body.nc-skin.nc-home-top.nc-header-solid #header-space,
body.nc-skin:has(.sp-hero).nc-header-solid #header-outer,
body.nc-skin.nc-home-top.nc-header-solid #header-outer,
body.nc-skin:has(.sp-hero).nc-header-solid #header-outer #top,
body.nc-skin.nc-home-top.nc-header-solid #header-outer #top {
  background-color: #0a0a0a !important;
  background-image: none !important;
  box-shadow: none !important;
}
body.nc-skin:has(.sp-hero).nc-header-solid #header-outer #top nav > ul > li > a,
body.nc-skin.nc-home-top.nc-header-solid #header-outer #top nav > ul > li > a,
body.nc-skin:has(.sp-hero).nc-header-solid #header-outer #top #logo a,
body.nc-skin.nc-home-top.nc-header-solid #header-outer #top #logo a {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* —— Nucurate site chrome (header, search overlay, slide-out menu) ——
   These rules are written against the EXACT class names produced by
   header.php / footer.php. Do not rename without updating both. */

/* Accessibility helpers */
.nc-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.nc-skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100100;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  background: #fff;
  color: #000;
  border-radius: 0.35rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  font-family: var(--nc-font);
}
.nc-header.is-scrolled {
  background: rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.nc-header__container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
.nc-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--nc-header-h);
  position: relative;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
}
.nc-header__brand {
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.nc-header__logo {
  display: block;
  line-height: 0;
}
.nc-header__logo-img {
  height: auto;
  width: auto;
  max-width: min(10.5rem, 35vw);
}
.nc-header__nav {
  position: relative;
  z-index: 2;
}
.nc-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.nc-header__menu a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: opacity 0.15s ease-out;
}
.nc-header__menu a:hover {
  opacity: 0.82;
}
.nc-header__actions {
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1.2vw, 0.75rem);
}
.nc-header__link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.55rem;
  transition: opacity 0.15s ease-out;
}
.nc-header__link:hover { opacity: 0.82; }
.nc-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: none;
  transition: opacity 0.15s ease-out;
}
.nc-header__cta:hover { opacity: 0.94; }

/*
 * Salient already offsets the main column with `#header-space` (same height as the fixed bar).
 * Adding padding-top here stacked with that offset and with the hero’s negative margin, which
 * misaligned the fold and made Salient’s default opaque “light” header read as a solid white bar
 * (especially because `.sp-hero` is not a Salient “page header / slider” transparency trigger).
 */
#ajax-content-wrap {
  position: relative;
}

/* Salient can paint this wrap white after our theme CSS — keep hero pad black on marketing home. */
html body.nc-home-top:not(.nc-header-solid) #ajax-content-wrap,
html body.nc-skin:has(.sp-hero):not(.nc-header-solid) #ajax-content-wrap {
  background-color: #000 !important;
  background-image: none !important;
}

/* —— Hero: slide under fixed header (Salient `#header-space`) ——
   Salient keeps a spacer `#header-space` the same height as the fixed bar. Without a matching
   negative margin on the first `.sp-hero`, the hero starts *below* that spacer — so the spacer
   reads as a solid white band *on top of* the card. One `-1 * --nc-header-h` pull (no extra
   `#ajax-content-wrap` padding) matches how Salient expects full-bleed hero under transparent nav. */
#ajax-content-wrap > .sp-hero:first-child,
#ajax-content-wrap > .container-wrap > .sp-hero:first-child,
#ajax-content-wrap > .container-wrap > .main-content > .sp-hero:first-child,
#ajax-content-wrap .container-wrap .sp-hero:first-of-type,
#ajax-content-wrap .main-content .sp-hero:first-of-type,
#ajax-content-wrap .row > .sp-hero:first-child,
#ajax-content-wrap .row .sp-hero:first-of-type {
  margin-top: calc(-1 * var(--nc-header-h));
  position: relative;
  z-index: 0;
}

/* Kill default light wrappers around full-width hero (Salient / WPBakery). */
body.home #ajax-content-wrap > .container-wrap,
body.home #ajax-content-wrap .container-wrap,
body.front-page #ajax-content-wrap > .container-wrap,
body.front-page #ajax-content-wrap .container-wrap,
body.page-template-tpl-home #ajax-content-wrap > .container-wrap,
body.page-template-tpl-home #ajax-content-wrap .container-wrap {
  background-color: #000 !important;
  background-image: none !important;
}
body.home #ajax-content-wrap .container.main-content,
body.home #ajax-content-wrap .main-content,
body.front-page #ajax-content-wrap .container.main-content,
body.front-page #ajax-content-wrap .main-content,
body.page-template-tpl-home #ajax-content-wrap .container.main-content,
body.page-template-tpl-home #ajax-content-wrap .main-content {
  background-color: transparent !important;
  background-image: none !important;
}
@supports selector(:has(*)) {
  body:has(.sp-hero) #ajax-content-wrap > .container-wrap,
  body:has(.sp-hero) #ajax-content-wrap .container-wrap {
    background-color: #000 !important;
    background-image: none !important;
  }
  body:has(.sp-hero) #ajax-content-wrap .container.main-content,
  body:has(.sp-hero) #ajax-content-wrap .main-content {
    background-color: transparent !important;
    background-image: none !important;
  }
}

.sp-hero {
  padding: 0;
  background: #0a0a0a;
}
.sp-hero__card {
  position: relative;
  isolation: isolate;
  /* Square bottom edge avoids subpixel gaps / “chips” where the intro shows through rounded corners */
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  /* At least one full viewport fold; svh reduces mobile toolbar jump vs dvh-only */
  min-height: 100svh;
  min-height: 100dvh;
  max-height: none;
  background: #0a0a0a;
}

@media (max-width: 900px) {
  .sp-hero__card {
    /* Extend the fold into the notch / status-bar inset so imagery meets the physical top edge. */
    margin-top: calc(-1 * env(safe-area-inset-top, 0px));
    min-height: calc(100svh + env(safe-area-inset-top, 0px));
    min-height: calc(100dvh + env(safe-area-inset-top, 0px));
  }
}
/* Readability scrim: stronger top band hides bright sky in hero photos + nav zone */
.sp-hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.55) calc(var(--nc-header-h) + env(safe-area-inset-top, 0px) + 0.5rem),
      rgba(0, 0, 0, 0.38) 38%,
      rgba(0, 0, 0, 0.52) 100%
    ),
    radial-gradient(ellipse 95% 75% at 50% 42%, rgba(15, 12, 10, 0.5) 0%, rgba(15, 12, 10, 0.2) 58%, transparent 78%);
}
.sp-hero__bg {
  position: absolute;
  /* Bleed past card edges slightly to avoid 1px bright seams when Salient resizes */
  inset: -3px 0;
  z-index: 0;
}

@media (max-width: 900px) {
  .sp-hero__bg {
    top: calc(-3px - env(safe-area-inset-top, 0px));
  }
}
.sp-hero__picture {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.sp-hero__poster,
.sp-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Stock hero photos have bright sky at the very top; anchor lower so the fold reads darker */
  object-position: center 38%;
  display: block;
}
@media (max-width: 900px) {
  .sp-hero__poster,
  .sp-hero__video {
    object-position: center 30%;
  }
}
.sp-hero__video {
  pointer-events: none;
}
.sp-hero__video::-webkit-media-controls,
.sp-hero__video::-webkit-media-controls-start-playback-button,
.sp-hero__video::-webkit-media-controls-play-button,
.sp-hero__video::-webkit-media-controls-panel,
.sp-hero__video::-webkit-media-controls-enclosure,
.sp-hero__video::-webkit-media-controls-overlay-play-button,
.sp-hero__video::-webkit-media-controls-overlay-enclosure {
  display: none !important;
  -webkit-appearance: none;
}
.sp-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  min-height: 100svh;
  min-height: 100dvh;
  max-height: none;
  padding: 0 clamp(1rem, 4vw, 4.5rem) clamp(1.25rem, 4vh, 2.5rem);
  padding-top: calc(var(--nc-header-h) + env(safe-area-inset-top, 0px) + 0.75rem);
  color: var(--white);
  text-align: center;
}
.sp-hero__content {
  max-width: 40rem;
  width: 100%;
  padding-top: 0;
  flex: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.sp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 100%;
  font-size: clamp(0.68rem, 2.4vw, 0.875rem);
  margin-bottom: 1.25rem;
  opacity: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.sp-h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  font-family: var(--font-sans);
  color: #fff;
  max-width: 100%;
  white-space: nowrap;
}
.sp-hero .sp-h1 {
  /* Optical centering tweak for uneven word lengths. */
  transform: translateX(-0.045em);
}
@media (max-width: 900px) {
  .sp-hero__content {
    padding-inline: clamp(0.35rem, 4vw, 1.2rem);
  }
  .sp-hero .sp-h1 {
    transform: none;
  }
  .sp-h1 {
    font-size: clamp(1.56rem, 7.1vw, 2.48rem);
    line-height: 1.14;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
    word-break: normal;
    max-width: min(100%, 20ch);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .sp-h1 {
    font-size: clamp(1.42rem, 6.4vw, 1.98rem);
    max-width: min(100%, 18ch);
  }
}
.sp-h1__line {
  display: block;
  font-weight: 700;
}
.sp-h1__accent {
  display: block;
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
  font-size: 1.08em;
  margin-top: 0.15em;
}
.sp-hero__lede {
  margin: 0 0 2rem;
  font-size: clamp(0.94rem, 1.8vw, 1.0625rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 100%;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.sp-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.sp-hero__rating {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.sp-hero__rating-text {
  margin: 0;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.35;
}
.sp-hero__rating-text strong {
  color: #fff;
  font-weight: 700;
}
.sp-hero__rating-text .sp-hero__rating-muted {
  color: #fff;
  font-weight: 500;
}
@media (min-width: 1000px) {
  /* Tighten CTA + rating toward hero copy without changing layout structure. */
  .sp-hero__lede {
    margin-bottom: 0.9rem;
  }
  .sp-hero__rating {
    margin-top: 0.5rem;
  }
}
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s;
}
.sp-btn--primary-dark {
  background: var(--white);
  color: var(--zinc-900);
}
.sp-btn--primary-dark:hover { transform: translateY(-1px); }
.sp-btn--ios {
  font-weight: 600;
  letter-spacing: 0;
}
.sp-btn__apple {
  font-size: 1.05rem;
  line-height: 1;
}
.sp-btn--hero-wide {
  min-width: clamp(17rem, 32vw, 24rem);
  justify-content: center;
}
.sp-btn--glass {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  color: var(--white);
  border-color: transparent;
}
.sp-btn--glass:hover { background: rgba(255, 255, 255, 0.16); }
.sp-btn--block { width: 100%; }
.sp-btn--inline { margin-top: 1.5rem; }

.sp-hero__notes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: min(46rem, 100%);
  padding-right: 0;
  font-size: 0.9375rem;
  text-align: center;
  flex-shrink: 0;
}
.sp-hero__note {
  text-align: center;
  min-width: 0;
  flex: 1 1 9.5rem;
  max-width: 100%;
  padding-right: 1.5rem;
}
.sp-hero__note div:first-child { font-weight: 600; color: #fff; }
.sp-muted { color: var(--zinc-500); }
.sp-hero .sp-muted { color: rgba(255, 255, 255, 0.65); }
.sp-hero__rule {
  width: 1px;
  align-self: stretch;
  min-height: 2.5rem;
  margin-right: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
}
@media (min-width: 1000px) {
  /* Lift notes cluster slightly above the fold for readability. */
  .sp-hero__notes {
    transform: translateY(-1.4rem);
  }
  .sp-hero__note div:first-child,
  .sp-hero .sp-muted {
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  }
}
@media (max-width: 640px) {
  .sp-hero__rule { display: none; }
  .sp-hero__notes {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .sp-hero__note {
    min-width: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .sp-hero__notes {
    display: none;
  }
}

/* —— Intro —— */
.sp-container {
  width: 100%;
  max-width: 84rem;
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}
.sp-intro {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, var(--white), var(--zinc-50) 85%, transparent);
  text-align: center;
}
.sp-intro__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.sp-intro__faces {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-face {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  margin-left: -0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.sp-face:first-child { margin-left: 0; }
.sp-intro__headline {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  max-width: 28rem;
  line-height: 1.4;
}
.sp-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 2.5rem;
  opacity: 0.85;
}
.sp-logos img { height: 1.5rem; width: auto; max-width: 7rem; object-fit: contain; }

.sp-feature__header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.25rem;
}
.sp-feature__header h2,
.sp-feature__header h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 400;
}
.sp-sub {
  margin: 0;
  color: var(--zinc-500);
  font-size: 1.125rem;
}
.sp-nb {
  white-space: normal;
}
@media (min-width: 900px) {
  .sp-nb {
    white-space: nowrap;
  }
}

/* —— Value compare —— */
.sp-value {
  padding: 5rem 0;
  background: var(--white);
}
.sp-value__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) {
  .sp-value__grid { grid-template-columns: 1fr; }
}
.sp-value h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 400;
}
.sp-orange { color: var(--orange); }
.sp-value__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--zinc-200);
}
.sp-value__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--zinc-200);
  font-size: 0.95rem;
}
.sp-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--zinc-500);
}

/* —— Doctors —— */
.sp-docs {
  padding: 5rem 0;
  background: var(--zinc-50);
}
.sp-center {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 44rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.sp-docs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .sp-docs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .sp-docs__grid { grid-template-columns: 1fr; }
}
.sp-doc {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.sp-doc__photo {
  height: 12rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  background: var(--zinc-200) center/cover no-repeat;
  background-image: var(--img, none);
}
.sp-doc__photo--alt {
  background-image: linear-gradient(135deg, #e4e4e7, #a1a1aa);
}
.sp-doc__photo--alt2 {
  background-image: linear-gradient(135deg, #d4d4d8, #71717a);
}
.sp-doc__photo--alt3 {
  background-image: linear-gradient(135deg, #f4f4f5, #d4d4d8);
}
.sp-doc h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.sp-role {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: var(--orange);
}
.sp-doc .sp-muted { font-size: 0.875rem; margin-bottom: 0.75rem; }
.sp-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zinc-900);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Stories —— */
.sp-stories {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid var(--zinc-200);
}
.sp-stories__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}
.sp-stories__head h2 {
  margin: 0;
  max-width: 24rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.sp-trust {
  font-size: 0.875rem;
  color: var(--zinc-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sp-stars { letter-spacing: 0.05em; color: #0a5; }
.sp-stories__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}
.sp-story {
  flex: 0 0 min(28rem, 85vw);
  scroll-snap-align: start;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--zinc-50);
  border: 1px solid var(--zinc-200);
}
.sp-story__quote {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  line-height: 1.45;
}
.sp-story__name { font-weight: 600; margin: 0 0 0.35rem; }
.sp-stories__nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}
.sp-stories__nav button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--zinc-300);
  background: var(--white);
  font-size: 1.25rem;
  line-height: 1;
}

/* —— Press —— */
.sp-press {
  padding: 4rem 0;
  background: var(--zinc-50);
}
.sp-press__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 800px) {
  .sp-press__row { grid-template-columns: 1fr; }
}
.sp-press__card {
  display: block;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: box-shadow 0.25s;
}
.sp-press__card:hover { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06); }
.sp-press__card p {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--zinc-900);
}

/* —— Pricing —— */
.sp-price {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--zinc-200);
}
.sp-price__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) {
  .sp-price__layout { grid-template-columns: 1fr; }
}
.sp-price h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.sp-price__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.sp-price__bullets li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--zinc-700);
}
.sp-price__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--orange);
}
.sp-price__card {
  border: 1px solid var(--zinc-200);
  border-radius: 1rem;
  padding: 2rem;
  background: var(--zinc-50);
}
.sp-price__amount { display: flex; align-items: baseline; gap: 0.35rem; }
.sp-price__num {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sp-price__per { color: var(--zinc-500); font-size: 1.125rem; }
.sp-pill {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(252, 95, 43, 0.12);
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 600;
}
.sp-price__fine { margin: 1rem 0 1.25rem; font-size: 0.875rem; }
.sp-price__disclaimer {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--zinc-500);
}

/* —— Stats —— */
.sp-stats {
  padding: 5rem 0;
  background: var(--zinc-900);
  color: var(--white);
  text-align: center;
}
.sp-stats__h {
  margin: 0 0 0.5rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.sp-stats__accent { color: rgba(255, 255, 255, 0.95); }
.sp-stats .sp-btn { margin-top: 0.5rem; }
.sp-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3.5rem auto 2rem;
  max-width: 56rem;
  text-align: left;
}
@media (max-width: 700px) {
  .sp-stats__grid { grid-template-columns: 1fr; text-align: center; }
}
.sp-stats__big {
  display: block;
  font-size: clamp(3rem, 10vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.sp-stats .sp-muted { color: rgba(255, 255, 255, 0.55); }
.sp-stats__note {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 0.8125rem;
}

/* —— Day reality rail (above feature stack) —— */
.sp-day-reality {
  background: #000;
  color: #fafafa;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem) 0;
}
.sp-day-reality__inner {
  width: min(100%, 86rem);
  margin: 0 auto;
}
.sp-day-reality__title {
  margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #fafafa;
  text-align: center;
}
.sp-day-reality__title em {
  display: block;
  font-style: italic;
  font-weight: 500;
}
.sp-day-reality__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.9rem;
  overflow: hidden;
  background: #000;
}
.sp-day-reality__card {
  position: relative;
  padding: clamp(1rem, 2vw, 1.3rem);
}
.sp-day-reality__card + .sp-day-reality__card {
  border-left: 0;
}
.sp-day-reality__card + .sp-day-reality__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  width: clamp(1.55rem, 2.6vw, 2.2rem);
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 7px rgba(255, 255, 255, 0.22);
  pointer-events: none;
}
.sp-day-reality__card + .sp-day-reality__card::after {
  content: "";
  position: absolute;
  left: -0.42rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid rgba(255, 255, 255, 0.75);
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 7px rgba(255, 255, 255, 0.22);
  pointer-events: none;
}
.sp-day-reality__time {
  margin: 0 0 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  text-align: center;
}
.sp-day-reality__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 1.9vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: #fafafa;
  text-align: center;
}
.sp-day-reality__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1.05rem;
  margin: clamp(1.8rem, 4.5vw, 3rem) auto 0;
  text-align: center;
}
.sp-day-reality__scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.55rem;
  color: #fafafa;
  text-decoration: none;
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.sp-day-reality__scroll-btn:hover,
.sp-day-reality__scroll-btn:focus-visible {
  opacity: 1;
  transform: translateY(2px);
}
.sp-day-reality__scroll-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 4px;
}
.sp-day-reality__scroll-arrow {
  display: inline-block;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1;
  animation: sp-day-scroll-bounce 1.05s ease-in-out infinite;
}
.sp-day-reality__scroll-text {
  margin: 0;
  max-width: min(42rem, 100%);
  padding: 0 0.5rem;
  font-size: clamp(0.92rem, 1.45vw, 1.08rem);
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.93);
  text-wrap: balance;
}
@keyframes sp-day-scroll-bounce {
  0% {
    transform: translateY(-4px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(-4px);
    opacity: 0.7;
  }
}
@media (max-width: 980px) {
  .sp-day-reality__grid {
    grid-template-columns: 1fr;
  }
  .sp-day-reality__card + .sp-day-reality__card {
    border-left: 0;
    border-top: 0;
  }
  .sp-day-reality__card + .sp-day-reality__card::before {
    content: "";
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
    width: 2px;
    height: 1.05rem;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.22);
  }
  .sp-day-reality__card + .sp-day-reality__card::after {
    content: "";
    left: 50%;
    top: -0.16rem;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.75);
    border-right: 2px solid rgba(255, 255, 255, 0.75);
    transform: translateX(-50%) rotate(135deg);
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.22);
  }
  .sp-day-reality__scroll-text {
    letter-spacing: 0.06em;
    font-size: clamp(0.84rem, 2.5vw, 1rem);
  }
}

/* —— Feature stack (black sections; intro matches How it works header) —— */
.sp-feature-stack {
  padding: clamp(3.25rem, 7vw, 5.75rem) 0;
  background: #000;
}
.sp-feature {
  width: 100%;
  max-width: 86rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "feature-head"
    "feature-body";
  align-items: start;
  gap: clamp(1.5rem, 3.5vw, 2.25rem);
  background: #000;
}
.sp-feature[id] {
  scroll-margin-top: calc(var(--nc-header-h) + 1rem);
}
.sp-feature:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sp-feature:last-child {
  padding-bottom: 0;
}
.sp-feature__header {
  grid-area: feature-head;
  width: 100%;
  justify-self: center;
}
/* AI feature: one grid cell wraps phone + benchmarks so stats sit under the frame (not row 2 of a tall copy column) */
.sp-feature.sp-feature--ai {
  grid-template-areas:
    "feature-head"
    "feature-body";
}
.sp-feature--ai .sp-feature__media-col,
.sp-feature--confidence .sp-feature__media-col {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 1.15rem);
  width: 100%;
  min-width: 0;
}
.sp-feature--confidence.sp-feature--alt .sp-feature__media-col {
  grid-column: 2;
  justify-self: end;
}
/* Nested .sp-feature__media gets order:1 on small screens; keep image above benchmarks inside the column */
.sp-feature--ai .sp-feature__media-col > .sp-feature__media,
.sp-feature--confidence .sp-feature__media-col > .sp-feature__media {
  order: 0;
}
.sp-feature--ai .sp-feature__media-col > .sp-feature__benchmarks,
.sp-feature--confidence .sp-feature__media-col > .sp-feature__benchmarks {
  order: 1;
}
.sp-feature--ai .sp-feature__benchmarks,
.sp-feature--confidence .sp-feature__benchmarks {
  width: min(100%, clamp(18.5rem, 58vw, 36rem));
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0;
  margin-top: 0;
}
/* Nitro Technical Proof: styles removed with button; restore with markup in content-home.php (see PHP comment). */
.sp-feature--ai .sp-feature__stack {
  grid-column: 2;
  grid-row: 1;
  /* Keep copy centered beside the image card itself (not dragged down by benchmark block). */
  transform: translateY(clamp(-4.6rem, -6.8vw, -2.6rem));
}
.sp-feature--confidence .sp-feature__stack {
  grid-row: 1;
  transform: translateY(clamp(-4.6rem, -6.8vw, -2.6rem));
}
@media (max-width: 999px) {
  .sp-feature--ai .sp-feature__stack,
  .sp-feature--confidence .sp-feature__stack {
    transform: none;
  }
}
.sp-feature--ai .sp-ai-bench__intro,
.sp-feature--confidence .sp-ai-bench__intro {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto clamp(1.35rem, 3vw, 1.85rem);
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}
.sp-feature--ai .sp-ai-bench__heading,
.sp-feature--confidence .sp-ai-bench__heading {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fafafa;
}
.sp-feature--ai .sp-ai-bench__lede,
.sp-feature--confidence .sp-ai-bench__lede {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #a1a1aa;
}
.sp-feature--ai .sp-ai-bench,
.sp-feature--confidence .sp-ai-bench {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 46rem;
  margin: 0 auto;
}
.sp-feature--ai .sp-ai-bench__stat,
.sp-feature--confidence .sp-ai-bench__stat {
  flex: 1 1 auto;
  text-align: center;
  padding: 0 clamp(1rem, 2.8vw, 2rem);
  min-width: min(100%, 9.5rem);
}
.sp-feature--ai .sp-ai-bench__num,
.sp-feature--confidence .sp-ai-bench__num {
  display: block;
  font-size: clamp(1.4rem, 3.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fafafa;
  font-variant-numeric: tabular-nums;
}
.sp-feature--ai .sp-ai-bench__cap,
.sp-feature--confidence .sp-ai-bench__cap {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #a1a1aa;
  max-width: 11rem;
  margin-left: auto;
  margin-right: auto;
}
.sp-feature--confidence .sp-ai-bench__pre {
  display: block;
  margin-bottom: 0.36rem;
  font-size: 0.77rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #c4c4c8;
}
.sp-feature--ai .sp-ai-bench__rule,
.sp-feature--confidence .sp-ai-bench__rule {
  width: 1px;
  align-self: stretch;
  min-height: 2.85rem;
  margin: 0.15rem 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0.14) 80%,
    transparent 100%
  );
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .sp-feature--ai .sp-ai-bench__rule,
  .sp-feature--confidence .sp-ai-bench__rule {
    display: none;
  }
  .sp-feature--ai .sp-ai-bench,
  .sp-feature--confidence .sp-ai-bench {
    flex-direction: column;
    gap: 1.1rem;
    align-items: center;
  }
  .sp-feature--ai .sp-ai-bench__stat,
  .sp-feature--confidence .sp-ai-bench__stat {
    min-width: 0;
    padding: 0 0.5rem;
  }
}
/* Row: photo column + column of (copy then smaller creative). Odd: image | stack. Even (.sp-feature--alt): stack | image */
.sp-feature__body {
  grid-area: feature-body;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(1.35rem, 3.5vw, 2.75rem);
  align-items: stretch;
  width: 100%;
}
/* Portrait frame ≈ iPhone 14 logical (390×844) for marketing screenshots */
.sp-feature__media {
  grid-column: 1;
  grid-row: 1;
  width: min(100%, clamp(18.5rem, 58vw, 36rem));
  max-width: 100%;
  aspect-ratio: 390 / 844;
  max-height: min(82vh, 56rem);
  justify-self: start;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c0c0e;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 50px rgba(0, 0, 0, 0.45);
  align-self: start;
}
.sp-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
}
.sp-card-stack__card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.sp-feature__media-wrap {
  grid-column: 1;
  grid-row: 1;
  width: min(100%, clamp(18.5rem, 58vw, 36rem));
  max-width: 100%;
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sp-feature__media-wrap > .sp-feature__media {
  width: 100%;
}
.sp-feature--alt .sp-feature__media-wrap {
  grid-column: 2;
  justify-self: end;
}
.sp-card-stack {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform-origin: center center;
  transition: transform 0.12s ease-out;
}
.sp-card-stack:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 4px;
}
.sp-card-stack__card {
  position: absolute;
  inset: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  pointer-events: none;
  z-index: calc(10 - var(--sp-depth, 0));
  opacity: calc(1 - (var(--sp-depth, 0) * 0.12));
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0c0c0e;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 50px rgba(0, 0, 0, 0.45);
  transform:
    translate3d(calc(var(--sp-depth, 0) * 12px), calc(var(--sp-depth, 0) * 11px), 0)
    scale(calc(1 - (var(--sp-depth, 0) * 0.025)));
  transition: transform 0.12s ease-out;
}
.sp-card-stack__card.is-top {
  pointer-events: auto;
}
.sp-card-stack.is-pressed {
  transform: translateY(1px) scale(0.996);
}
.sp-card-stack__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: clamp(0.85rem, 1.8vw, 1.1rem) auto clamp(0.4rem, 1.2vw, 0.7rem);
}
.sp-card-stack__dot {
  appearance: none;
  -webkit-appearance: none;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  transition: transform 0.2s ease, background 0.22s ease, border-color 0.22s ease;
}
.sp-card-stack__dot:hover,
.sp-card-stack__dot:focus-visible {
  border-color: rgba(255, 255, 255, 0.75);
  transform: scale(1.12);
}
.sp-card-stack__dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}
.sp-card-stack__dot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.18);
}
.sp-feature__stack {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.65rem);
  min-width: 0;
}
.sp-feature--alt .sp-feature__media {
  grid-column: 2;
  justify-self: end;
}
.sp-feature--alt .sp-feature__stack {
  grid-column: 1;
}
.sp-feature__copy {
  width: 100%;
  max-width: 38rem;
  min-width: 0;
  text-align: left;
}
.sp-feature__creative-shell {
  width: 100%;
  max-width: min(100%, 30rem);
  align-self: flex-start;
}
.sp-feature__header h2,
.sp-feature__header h1 {
  color: #fafafa;
}
.sp-feature__header .sp-sub {
  color: #a1a1aa;
}
/* Copy-column title (h3 for outline under section h2) */
.sp-feature__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.75vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: #fafafa;
}
.sp-feature__copy p {
  margin: 0;
  color: #c4c4c8;
  line-height: 2;
  font-size: 1.02rem;
}
.sp-feature__bullets {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.sp-feature__bullets li {
  position: relative;
  list-style: none !important;
  padding-left: 1.15rem;
  color: #a1a1aa;
  line-height: 1.5;
  font-size: 0.95rem;
}
.sp-feature__bullets li::marker {
  content: "" !important;
}
.sp-feature__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #76d79a, #3fab69);
  box-shadow: 0 0 8px rgba(118, 215, 154, 0.55);
  opacity: 1;
}
.sp-feature__chat-example {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.sp-feature__chat-turn {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  max-width: min(100%, 34rem);
}
.sp-feature__chat-turn--user {
  align-self: flex-end;
  align-items: flex-end;
  text-align: left;
}
.sp-feature__chat-turn--ai {
  align-self: flex-start;
  align-items: flex-start;
  text-align: left;
}
.sp-feature__chat-bubble {
  display: inline-block;
  width: fit-content;
  max-width: min(100%, 32rem);
  padding: 0.55rem 0.75rem;
  border-radius: 1.05rem;
  background: #3f3f46;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.45;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 10px 26px rgba(0, 0, 0, 0.35);
}
.sp-feature__chat-label {
  display: inline-block;
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}
.sp-feature__chat-assistant {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.55;
}
.sp-feature__store {
  margin-top: 0;
  padding-top: 0.35rem;
  align-self: stretch;
  width: 100%;
  max-width: min(100%, 38rem);
}
.sp-feature__appstore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 36rem);
  margin: 0;
  padding: 0.65rem clamp(1.15rem, 3.2vw, 1.75rem);
  line-height: 1.2;
  border: 0;
  background: #fff;
  color: #000;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 1px 2px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  text-decoration: none;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease,
    box-shadow 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}
.sp-feature__appstore:hover {
  transform: translateY(-2px);
  background: #f4f4f5;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 10px 28px rgba(0, 0, 0, 0.14);
}
.sp-feature__appstore:active {
  transform: translateY(0);
  background: #e4e4e7;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 1px 2px rgba(0, 0, 0, 0.12);
}
.sp-feature__appstore:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}
.sp-feature__appstore-inner {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.55rem, 1.8vw, 0.85rem);
  min-width: 0;
}
.sp-feature__appstore-icon {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  color: currentColor;
  opacity: 1;
  display: block !important;
  visibility: visible !important;
}
.sp-feature__appstore:hover .sp-feature__appstore-icon,
.sp-feature__appstore:active .sp-feature__appstore-icon,
.sp-feature__appstore:focus-visible .sp-feature__appstore-icon {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
.sp-feature__appstore .sp-feature__appstore-icon path,
.sp-feature__appstore:hover .sp-feature__appstore-icon path,
.sp-feature__appstore:active .sp-feature__appstore-icon path,
.sp-feature__appstore:focus-visible .sp-feature__appstore-icon path {
  fill: currentColor !important;
  opacity: 1 !important;
}
.sp-feature__appstore:not(.sp-feature__verify-btn) .sp-feature__appstore-icon,
.sp-feature__appstore:not(.sp-feature__verify-btn):hover .sp-feature__appstore-icon,
.sp-feature__appstore:not(.sp-feature__verify-btn):active .sp-feature__appstore-icon,
.sp-feature__appstore:not(.sp-feature__verify-btn):focus-visible .sp-feature__appstore-icon {
  color: #000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
.sp-feature__appstore:not(.sp-feature__verify-btn) .sp-feature__appstore-icon path,
.sp-feature__appstore:not(.sp-feature__verify-btn):hover .sp-feature__appstore-icon path,
.sp-feature__appstore:not(.sp-feature__verify-btn):active .sp-feature__appstore-icon path,
.sp-feature__appstore:not(.sp-feature__verify-btn):focus-visible .sp-feature__appstore-icon path {
  fill: #000 !important;
  opacity: 1 !important;
}
.sp-feature__appstore-text {
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 2.4vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  overflow: hidden;
}
.sp-feature__appstore-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}
.sp-feature__appstore-label {
  display: inline-flex;
  align-items: baseline;
}
.sp-feature__appstore-sep {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 500;
}
.sp-feature__appstore-pre {
  color: rgba(0, 0, 0, 0.78);
  font-weight: 500;
  margin-right: 0.24em;
}
.sp-feature__appstore-name {
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #000;
}
/* Hero CTA matches standard static button behavior. */
@media (max-width: 640px) {
  .sp-feature-stack .sp-feature__appstore {
    width: 100%;
    max-width: 100%;
  }
  .sp-feature-stack .sp-feature__appstore-inner {
    width: 100%;
    justify-content: center;
  }
  .sp-feature-stack .sp-feature__appstore-text {
    white-space: normal;
    flex-wrap: wrap;
    overflow: visible;
    justify-content: center;
  }
  .sp-feature-stack .sp-feature__appstore-track {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.15rem;
    column-gap: 0.35rem;
  }
  .sp-feature-stack .sp-feature__appstore-label {
    display: inline;
    white-space: normal;
  }
}
.sp-feature__creative {
  width: 100%;
  min-width: 0;
}

/* Feature stack: vertical rhythm (section title → lede → body copy → creative → store) */
.sp-feature-stack .sp-feature {
  gap: clamp(2rem, 4.5vw, 3rem);
  padding: clamp(2.5rem, 5.5vw, 3.85rem) clamp(1rem, 4vw, 4.5rem);
}
.sp-feature-stack .sp-feature__header {
  margin-bottom: clamp(2.75rem, 5.5vw, 4rem);
  max-width: 46rem;
}
@media (min-width: 901px) {
  .sp-feature-stack .sp-feature__header {
    margin-bottom: clamp(1.15rem, 2.4vw, 2rem);
  }
}
.sp-feature-stack .sp-feature__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 0.18rem 0.62rem;
  margin: 0 0 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.58rem, 1.35vw, 0.675rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.sp-feature--ai .sp-feature__badge {
  background: rgba(30, 58, 138, 0.45);
  border-color: rgba(59, 130, 246, 0.25);
  color: #93c5fd;
}
.sp-feature--analytics .sp-feature__badge {
  background: rgba(67, 56, 202, 0.42);
  border-color: rgba(129, 140, 248, 0.28);
  color: #c7d2fe;
}
.sp-feature--calculator .sp-feature__badge {
  background: rgba(88, 28, 135, 0.4);
  border-color: rgba(196, 181, 253, 0.26);
  color: #ddd6fe;
}
.sp-feature--routines .sp-feature__badge {
  background: rgba(30, 64, 175, 0.4);
  border-color: rgba(125, 211, 252, 0.28);
  color: #bae6fd;
}
.sp-feature--confidence .sp-feature__badge {
  background: rgba(22, 101, 52, 0.36);
  border-color: rgba(74, 222, 128, 0.34);
  color: #bbf7d0;
}
.sp-feature-stack .sp-feature__header h1,
.sp-feature-stack .sp-feature__header h2 {
  margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
  line-height: 1.12;
  max-width: 100%;
  white-space: nowrap;
}
.sp-feature-stack .sp-feature__header .sp-sub {
  margin: 0 auto;
  max-width: min(40rem, 100%);
  line-height: 1.68;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
  font-size: clamp(0.95rem, 1.55vw, 1.125rem);
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (max-width: 640px) {
  .sp-feature-stack .sp-feature__header .sp-sub {
    font-size: clamp(0.78rem, 3.1vw, 0.95rem);
    letter-spacing: -0.01em;
  }
}
.sp-feature-stack .sp-feature__body {
  gap: clamp(1.85rem, 4vw, 3.25rem);
  align-items: center;
}
.sp-feature-stack .sp-feature__stack {
  gap: clamp(1.5rem, 3.5vw, 2.65rem);
  justify-content: center;
}
.sp-feature-stack .sp-feature__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(1.05rem, 2.4vw, 1.45rem);
  justify-content: center;
}
.sp-feature-stack .sp-feature__title {
  margin: 0;
  line-height: 1.22;
}
.sp-feature-stack .sp-feature__copy p {
  margin: 0;
  line-height: 2;
}
.sp-feature-stack .sp-feature__bullets {
  margin: 0;
  gap: clamp(0.7rem, 1.8vw, 1.05rem);
}
.sp-feature-stack .sp-feature__bullets li {
  padding: 0.28rem 0 0.28rem 1.35rem;
  line-height: 1.58;
}
.sp-feature-stack .sp-feature__bullets li::before {
  top: 0.66rem;
}
.sp-nitro-flow {
  margin-top: 0.35rem;
  padding: clamp(0.9rem, 2.1vw, 1.2rem) clamp(0.85rem, 1.9vw, 1.15rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background:
    radial-gradient(95% 120% at 15% 0%, rgba(255, 255, 255, 0.05), transparent 48%),
    #0a0a0c;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.45rem, 1.3vw, 0.95rem);
}
.sp-nitro-flow__step {
  text-align: center;
}
.sp-nitro-flow__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.52rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.24rem;
}
.sp-nitro-flow__step--active .sp-nitro-flow__icon {
  border-color: rgba(16, 185, 129, 0.85);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.16) inset;
}
.sp-nitro-flow__step h4 {
  margin: 0;
  font-size: clamp(0.92rem, 1.55vw, 1.1rem);
  line-height: 1.2;
  color: #fafafa;
}
.sp-nitro-flow__step p {
  margin: 0.5rem 0 0;
  font-size: clamp(0.82rem, 1.25vw, 0.94rem);
  line-height: 1.45;
  color: #71717a;
}
.sp-nitro-flow__hash {
  margin: 0.52rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.65rem;
  padding: 0.16rem 0.58rem;
  border-radius: 0.42rem;
  border: 1px solid rgba(16, 185, 129, 0.45);
  background: rgba(16, 185, 129, 0.14);
  color: #34d399;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}
.sp-nitro-flow__connector {
  text-align: center;
  min-width: 3.15rem;
}
.sp-nitro-flow__arrow {
  display: block;
  color: #a1a1aa;
  font-size: 1.35rem;
  line-height: 1;
}
.sp-nitro-flow__label {
  display: block;
  margin-top: 0.3rem;
  color: #52525b;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .sp-nitro-flow {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .sp-nitro-flow__connector {
    min-width: 0;
  }
  .sp-nitro-flow__arrow {
    transform: rotate(90deg);
  }
}
.sp-feature-stack .sp-feature__creative-shell {
  margin-top: 0.35rem;
}
.sp-feature-stack .sp-feature__store {
  margin-top: 0.35rem;
  padding-top: clamp(0.65rem, 2vw, 1.1rem);
  max-width: min(100%, 38rem);
}
.sp-feature--confidence .sp-feature__store {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}
.sp-feature--confidence .sp-feature__store > .sp-feature__appstore:not(.sp-feature__verify-btn) {
  background: #fff !important;
  color: #000 !important;
}
.sp-feature--confidence .sp-feature__store > .sp-feature__appstore:not(.sp-feature__verify-btn):hover,
.sp-feature--confidence .sp-feature__store > .sp-feature__appstore:not(.sp-feature__verify-btn):active,
.sp-feature--confidence .sp-feature__store > .sp-feature__appstore:not(.sp-feature__verify-btn):focus-visible {
  background: #f4f4f5 !important;
  color: #000 !important;
}
.sp-feature--confidence .sp-feature__store > .sp-feature__appstore:not(.sp-feature__verify-btn) .sp-feature__appstore-icon,
.sp-feature--confidence .sp-feature__store > .sp-feature__appstore:not(.sp-feature__verify-btn):hover .sp-feature__appstore-icon,
.sp-feature--confidence .sp-feature__store > .sp-feature__appstore:not(.sp-feature__verify-btn):active .sp-feature__appstore-icon,
.sp-feature--confidence .sp-feature__store > .sp-feature__appstore:not(.sp-feature__verify-btn):focus-visible .sp-feature__appstore-icon {
  color: #000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
.sp-feature--confidence .sp-feature__store > .sp-feature__appstore:not(.sp-feature__verify-btn) .sp-feature__appstore-icon path,
.sp-feature--confidence .sp-feature__store > .sp-feature__appstore:not(.sp-feature__verify-btn):hover .sp-feature__appstore-icon path,
.sp-feature--confidence .sp-feature__store > .sp-feature__appstore:not(.sp-feature__verify-btn):active .sp-feature__appstore-icon path,
.sp-feature--confidence .sp-feature__store > .sp-feature__appstore:not(.sp-feature__verify-btn):focus-visible .sp-feature__appstore-icon path {
  fill: #000 !important;
  opacity: 1 !important;
}
/* Reserved when Nitro “Technical Proof” link is re-enabled (.sp-feature__verify-btn). */
.sp-feature__verify-btn {
  cursor: default;
  pointer-events: none;
}
.sp-feature__appstore--ghost {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}
.sp-feature__appstore--ghost:hover,
.sp-feature__appstore--ghost:active {
  transform: none;
  background: transparent;
  box-shadow: none;
}
.sp-feature__appstore--ghost .sp-feature__appstore-pre {
  color: rgba(255, 255, 255, 0.9);
}
.sp-feature__appstore--ghost .sp-feature__appstore-name {
  color: #fff;
}
.sp-feature-stack .sp-feature__appstore {
  max-width: min(100%, 36rem);
}
.sp-feature-stack .sp-feature:last-child {
  padding-bottom: clamp(2.5rem, 5.5vw, 3.85rem);
}
.sp-feature.sp-feature--confidence {
  position: relative;
  padding-bottom: clamp(2.5rem, 5.5vw, 3.85rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sp-feature.sp-feature--confidence::after {
  content: none;
}

.sp-graphic {
  border-radius: 1.25rem;
  border: 1px solid var(--web2-border);
  background: var(--web2-card);
  color: #e4e4e7;
  padding: clamp(1rem, 2.2vw, 1.45rem);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 56px rgba(0, 0, 0, 0.45);
}
.sp-graphic__head {
  margin-bottom: 0.85rem;
}
.sp-graphic__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
}
.sp-graphic__head strong {
  display: block;
  font-size: 1.02rem;
  color: #fafafa;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.sp-multi-slider {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.65rem;
}
.sp-multi-slider__trackWrap {
  overflow: hidden;
  border-radius: 0.85rem;
}
.sp-multi-slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.sp-multi-slide {
  width: 100%;
  min-width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  background: #121216;
  box-shadow: none;
}
.sp-multi-slide h4 {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  color: #fafafa;
  font-weight: 600;
}
.sp-multi-slide p {
  margin: 0;
  color: #a1a1aa;
  line-height: 1.55;
  font-size: 0.94rem;
}
.sp-multi-slide ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.sp-multi-slide li {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.65rem;
  padding: 0.6rem 0.7rem;
  background: #18181c;
}
.sp-multi-slide li span {
  display: block;
  color: #71717a;
  font-size: 0.74rem;
  font-weight: 500;
}
.sp-multi-slide li strong {
  color: #e4e4e7;
  font-size: 0.9rem;
  font-weight: 600;
}
.sp-multi-slider__controls {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
}
.sp-multi-slider__controls > button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #18181c;
  color: #e4e4e7;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  font-size: 1.05rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.sp-multi-slider__controls > button:hover {
  background: #222228;
  color: #fff;
  border-color: rgba(34, 197, 94, 0.35);
  transform: scale(1.04);
}
.sp-multi-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.sp-multi-slider__dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #3f3f46;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.sp-multi-slider__dots button:hover {
  background: #52525b;
}
.sp-multi-slider__dots button.is-active {
  background: var(--web2-accent);
  transform: scale(1.15);
}
.sp-graphic--routine {
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(34, 197, 94, 0.14) 0%, transparent 50%),
    linear-gradient(165deg, #0c0c0e 0%, #0a0a0a 100%);
}
.sp-routine-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0.55rem;
}
.sp-routine-step {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  background: #121216;
  padding: 0.7rem 0.75rem;
  box-shadow: none;
}
.sp-routine-step span {
  display: block;
  font-size: 0.72rem;
  color: #a1a1aa;
  font-weight: 500;
}
.sp-routine-step strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #f4f4f5;
  font-weight: 600;
}
.sp-routine-arrow {
  display: grid;
  place-items: center;
  color: #52525b;
  font-weight: 500;
  font-size: 1.1rem;
}
.sp-routine-progress {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
.sp-routine-progress > div {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 0.55rem 0.65rem;
  background: rgba(255, 255, 255, 0.04);
}
.sp-routine-progress span {
  display: block;
  font-size: 0.68rem;
  color: #71717a;
  font-weight: 500;
}
.sp-routine-progress strong {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.82rem;
  color: #d4d4d8;
}
.sp-graphic--calculator {
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 45%),
    linear-gradient(165deg, #0c0c0e 0%, #0a0a0a 100%);
}
.sp-calc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.sp-calc-tile {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.8rem;
  background: #121216;
  padding: 0.65rem 0.72rem;
  box-shadow: none;
}
.sp-calc-tile span {
  display: block;
  font-size: 0.72rem;
  color: #a1a1aa;
  font-weight: 500;
}
.sp-calc-tile strong {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.95rem;
  color: #f4f4f5;
}
.sp-calc-transfer {
  margin-top: 0.85rem;
  border: 1px dashed rgba(34, 197, 94, 0.35);
  border-radius: 0.8rem;
  padding: 0.65rem 0.75rem;
  background: rgba(34, 197, 94, 0.08);
}
.sp-calc-transfer span {
  display: block;
  color: #c4c4c8;
  font-size: 0.78rem;
  font-weight: 500;
}
.sp-calc-transfer__line {
  height: 2px;
  margin: 0.55rem 0;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.55), rgba(59, 130, 246, 0.25), transparent);
}
.sp-calc-transfer strong {
  font-size: 0.88rem;
  color: #4ade80;
  font-weight: 600;
}
.sp-graphic--ai {
  background:
    radial-gradient(85% 65% at 0% 0%, rgba(34, 197, 94, 0.08) 0%, transparent 40%),
    radial-gradient(70% 55% at 100% 0%, rgba(167, 139, 250, 0.12) 0%, transparent 45%),
    linear-gradient(165deg, #0c0c0e 0%, #0a0a0a 100%);
}
@media (max-width: 900px) {
  .sp-feature__header {
    margin-bottom: clamp(0.7rem, 2.2vw, 1.05rem);
  }
  .sp-feature-stack .sp-feature__header {
    margin-bottom: clamp(0.7rem, 2.2vw, 1.05rem);
  }
  .sp-feature__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .sp-feature-stack .sp-feature__body {
    gap: clamp(0.95rem, 3.2vw, 1.35rem);
  }
  .sp-feature__media-wrap {
    width: min(100%, clamp(17rem, 88vw, 30rem));
    max-width: 100%;
    justify-self: center;
    margin: 0 auto;
  }
  .sp-feature__media,
  .sp-feature--alt .sp-feature__media {
    grid-column: unset;
    grid-row: unset;
    width: min(100%, clamp(17rem, 88vw, 30rem));
    max-width: 100%;
    aspect-ratio: 4 / 5;
    max-height: none;
    justify-self: center;
  }
  /* Keep mobile feature imagery fully visible; avoid crop on narrow screens. */
  .sp-feature-stack .sp-feature__media img,
  .sp-feature-stack .sp-card-stack__card img,
  .sp-feature-stack .sp-feature__media-wrap img,
  .sp-feature-stack .sp-feature__media-col img {
    object-fit: contain !important;
    object-position: center center !important;
    background: #0c0c0e;
  }
  .sp-feature__stack,
  .sp-feature--alt .sp-feature__stack {
    grid-column: unset;
    grid-row: unset;
    width: 100%;
  }
  /* Default: image then copy+creative (matches desktop image-left) */
  .sp-feature__media {
    order: 1;
  }
  .sp-feature__stack {
    order: 2;
  }
  /* Alt desktop is text-left: on narrow screens show stack before photo */
  .sp-feature--alt .sp-feature__stack {
    order: 1;
  }
  /* Nitro mobile: header stays above body; image → copy → App Store → HE benchmarks → Technical Proof */
  .sp-feature--confidence.sp-feature--alt .sp-feature__stack {
    display: contents;
  }
  .sp-feature--confidence .sp-feature__media-col {
    display: contents;
    width: auto;
  }
  .sp-feature--confidence .sp-feature__media-col > .sp-feature__media {
    order: 1;
    align-self: center;
  }
  .sp-feature--confidence .sp-feature__media-col > .sp-card-stack__nav {
    order: 2;
    margin-top: 0.65rem;
    margin-bottom: 0.35rem;
  }
  .sp-feature--confidence .sp-feature__copy {
    order: 3;
    width: 100%;
    max-width: min(100%, 38rem);
    margin-left: auto;
    margin-right: auto;
  }
  .sp-feature--confidence .sp-feature__store {
    order: 4;
    width: 100%;
    max-width: min(100%, 38rem);
    margin-left: auto;
    margin-right: auto;
  }
  .sp-feature--confidence .sp-feature__media-col > .sp-feature__benchmarks {
    order: 5;
    width: 100%;
    max-width: min(100%, 38rem);
    margin-top: 0.75rem;
    margin-left: auto;
    margin-right: auto;
  }
  .sp-feature--alt .sp-feature__media {
    order: 2;
  }
  .sp-feature--ai .sp-feature__body {
    gap: clamp(0.55rem, 2.2vw, 0.95rem);
  }
  /* Keep card-stack dots below image on mobile (all sections). */
  .sp-feature__media-wrap > .sp-feature__media {
    order: 1 !important;
  }
  .sp-feature__media-wrap > .sp-card-stack__nav {
    order: 2;
  }
  .sp-feature__media-wrap > .sp-feature__benchmarks {
    order: 3;
  }
  .sp-feature__creative-shell {
    max-width: 100%;
  }

  /* AI section mobile flow:
     image -> dots -> copy+button -> benchmarks */
  .sp-feature--ai .sp-feature__media-col {
    display: contents;
  }
  .sp-feature--ai .sp-feature__media-col > .sp-feature__media {
    order: 1;
    align-self: center;
    margin-top: -0.4rem;
  }
  .sp-feature--ai .sp-feature__media-col > .sp-card-stack__nav {
    order: 2;
    margin-top: 0.65rem;
    margin-bottom: 0.35rem;
  }
  .sp-feature--ai .sp-feature__stack {
    order: 3;
    transform: none;
  }
  .sp-feature--ai .sp-feature__media-col > .sp-feature__benchmarks {
    order: 4;
    width: 100%;
    max-width: min(100%, 38rem);
    margin-top: 0.75rem;
  }
  .sp-feature--ai .sp-ai-bench,
  .sp-feature--confidence .sp-ai-bench {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    width: 100%;
  }
  .sp-feature--ai .sp-ai-bench__rule,
  .sp-feature--confidence .sp-ai-bench__rule {
    display: none;
  }
  .sp-feature--ai .sp-ai-bench__stat,
  .sp-feature--confidence .sp-ai-bench__stat {
    min-width: 0;
    padding: 0;
  }
  .sp-feature--ai .sp-ai-bench__cap,
  .sp-feature--confidence .sp-ai-bench__cap {
    max-width: 100%;
  }
  .sp-feature--confidence .sp-ai-bench__stat:first-child .sp-ai-bench__cap {
    white-space: nowrap;
    font-size: clamp(0.68rem, 2.55vw, 0.79rem);
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
}
@media (max-width: 700px) {
  .sp-routine-flow {
    grid-template-columns: 1fr;
  }
  .sp-routine-arrow { transform: rotate(90deg); }
  .sp-routine-progress,
  .sp-calc-grid {
    grid-template-columns: 1fr;
  }
  .sp-v2-assistant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* —— Feature creatives (aligned to web2 reference) —— */
.sp-v2-nutrition-card,
.sp-v2-routines-card,
.sp-v2-calc-card,
.sp-v2-assistants-card {
  background: var(--web2-card);
  border: 1px solid var(--web2-border);
  border-radius: 1.25rem;
  overflow: hidden;
  color: #e4e4e7;
  text-align: left;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.sp-v2-nutrition-card {
  padding: 1.25rem 1.35rem;
}
.sp-v2-nutrition-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.sp-v2-nchart-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fafafa;
}
.sp-v2-nchart-avg {
  font-size: 0.78rem;
  color: #71717a;
  font-family: var(--font-mono);
  white-space: nowrap;
}
.sp-v2-nutrition-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.45rem;
  height: 8.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--web2-border);
}
.sp-v2-nchart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
  height: 100%;
  justify-content: flex-end;
}
.sp-v2-nchart-bar {
  width: 100%;
  max-width: 2rem;
  height: var(--fill, 70%);
  min-height: 22%;
  background: linear-gradient(to top, var(--web2-accent), rgba(34, 197, 94, 0.38));
  border-radius: 6px 6px 2px 2px;
  position: relative;
}
.sp-v2-nchart-val {
  position: absolute;
  top: -1.15rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-family: var(--font-mono);
  color: #71717a;
  white-space: nowrap;
}
.sp-v2-nchart-label {
  font-size: 0.68rem;
  color: #71717a;
  font-weight: 500;
}
.sp-v2-nutrition-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sp-v2-naction-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--web2-border);
}
.sp-v2-naction-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}
.sp-v2-naction-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fafafa;
  margin-bottom: 0.12rem;
}
.sp-v2-naction-desc {
  font-size: 0.7rem;
  color: #71717a;
  line-height: 1.35;
}

.sp-v2-routines-card {
  padding: 0.45rem;
}
.sp-v2-routine-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.75rem;
  border-radius: 0.85rem;
  transition: background 0.2s ease;
}
.sp-v2-routine-item:hover {
  background: rgba(255, 255, 255, 0.02);
}
.sp-v2-routine-icon {
  font-size: 1.4rem;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.65rem;
  flex-shrink: 0;
}
.sp-v2-routine-info {
  flex: 1;
  min-width: 0;
}
.sp-v2-routine-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fafafa;
  margin-bottom: 0.12rem;
}
.sp-v2-routine-detail {
  font-size: 0.72rem;
  color: #71717a;
  line-height: 1.35;
}
.sp-v2-routine-toggle {
  width: 2.65rem;
  height: 1.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.sp-v2-routine-toggle--on {
  background: var(--web2-accent);
}
.sp-v2-routine-toggle-dot {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sp-v2-routine-toggle--on .sp-v2-routine-toggle-dot {
  transform: translateX(1.2rem);
}

.sp-v2-calc-card {
  border-radius: 1.25rem;
}
.sp-v2-calc-display {
  padding: 1.25rem 1.35rem 1.4rem;
}
.sp-v2-calc-query {
  font-size: 0.88rem;
  color: #a1a1aa;
  margin-bottom: 1rem;
  font-style: italic;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  border: 1px solid var(--web2-border);
  line-height: 1.45;
}
.sp-v2-calc-divider {
  height: 1px;
  background: var(--web2-border);
  margin: 0.85rem 0;
}
.sp-v2-calc-result-main {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #fafafa;
  margin-bottom: 1rem;
  line-height: 1.05;
}
.sp-v2-calc-per {
  font-size: 0.85rem;
  color: #71717a;
  font-weight: 500;
  letter-spacing: 0;
}
.sp-v2-calc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.sp-v2-calc-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #a1a1aa;
  padding: 0.35rem 0;
}
.sp-v2-calc-row--highlight {
  color: #fafafa;
  font-weight: 600;
  border-top: 1px solid var(--web2-border);
  padding-top: 0.55rem;
  margin-top: 0.2rem;
}

.sp-v2-assistants-card {
  padding: 1rem 1.1rem 1.15rem;
}
.sp-v2-assistant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.sp-v2-assistant-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 0.5rem;
  border-radius: 0.85rem;
  border: 1px solid var(--web2-border);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.sp-v2-assistant-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}
.sp-v2-assistant-item--create {
  border-style: dashed;
  background: transparent;
}
.sp-v2-assistant-item--create:hover {
  background: rgba(255, 255, 255, 0.02);
}
.sp-v2-assistant-avatar {
  font-size: 1.75rem;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-v2-assistant-avatar--plus {
  font-size: 1rem;
  color: #71717a;
}
.sp-v2-assistant-item--create .sp-v2-assistant-avatar--plus {
  background: transparent;
}
.sp-v2-assistant-name {
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  color: #f4f4f5;
  line-height: 1.25;
}
.sp-v2-assistant-type {
  font-size: 0.62rem;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.sp-v2-assistant-item--custom .sp-v2-assistant-type {
  color: #4ade80;
}

.sp-feature__creative-shell .sp-v2-nutrition-card,
.sp-feature__creative-shell .sp-v2-routines-card,
.sp-feature__creative-shell .sp-v2-calc-card,
.sp-feature__creative-shell .sp-v2-assistants-card {
  font-size: clamp(0.86rem, 1.9vw, 0.98rem);
}

/* —— FAQ (black band, matches feature stack) —— */
.sp-faq {
  padding: clamp(0.55rem, 1.4vw, 1rem) 0 2.4rem;
  background: #000;
}
.sp-faq__inner {
  width: 100%;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
}
.sp-faq__head {
  text-align: center;
  margin: 0 0 2rem;
}
.sp-faq__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.45);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.25);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.sp-faq__head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fafafa;
}
.sp-faq__lede {
  margin: 0.85rem auto 0;
  color: #a1a1aa;
  font-size: 1.05rem;
  line-height: 1.5;
}
.sp-faq__item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sp-faq__list > .sp-faq__item:first-of-type {
  border-top: 0;
}
.sp-faq__batch .sp-faq__item:first-of-type {
  border-top: 0;
}
.sp-faq__see-more {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem 0 1.15rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #93c5fd;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: center;
}
.sp-faq__see-more:hover,
.sp-faq__see-more:focus-visible {
  color: #bfdbfe;
}
.sp-faq__see-more[hidden] {
  display: none !important;
}
.sp-faq__more-region {
  display: block;
}
.sp-faq__batch[hidden] {
  display: none !important;
}
.sp-faq__more-region .sp-faq__batch:first-of-type > .sp-faq__item:first-of-type {
  border-top: 0;
}
.sp-faq__q {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  border: none;
  background: none;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  min-width: 0;
}
.sp-faq__q-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.sp-faq__q::after {
  content: "+";
  font-weight: 400;
  color: #71717a;
  font-size: 1.25rem;
  flex: 0 0 auto;
  line-height: 1.2;
  margin-top: 0.12rem;
}
.sp-faq__q[aria-expanded="true"]::after { content: "−"; }
.sp-faq__a {
  padding-bottom: 1.25rem;
  color: #c4c4c8;
  line-height: 1.6;
}
.sp-faq__a p {
  margin: 0;
}
.sp-faq__a p + p {
  margin-top: 0.85rem;
}
.sp-faq__a[hidden] { display: none; }

/* —— Post-FAQ CTA —— */
.sp-post-faq-cta {
  background: #000;
  margin-top: 0;
  padding: clamp(1.55rem, 3vw, 2.3rem) 0 clamp(1.45rem, 3.8vw, 2.45rem);
}
.sp-post-faq-cta__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  box-sizing: border-box;
  padding: clamp(1.9rem, 4vw, 2.85rem) clamp(1rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background-color: #08130f;
  background-image:
    linear-gradient(130deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.22)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.74) 100%),
    url("../img/nucurate-hero-green-blur-bg-3840.png");
  background-size: 100% 100%, 100% 100%, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-clip: padding-box;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 24px 46px rgba(0, 0, 0, 0.38);
  text-align: center;
}
.sp-post-faq-cta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.66rem;
  padding: 0.24rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.sp-post-faq-cta h2 {
  margin: 0 auto 0.62rem;
  max-width: 48rem;
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #fafafa;
}
.sp-post-faq-cta__actions {
  margin-top: 1.08rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
}
.sp-post-faq-cta__divider {
  width: calc(100% - clamp(2rem, 8vw, 9rem));
  max-width: 86rem;
  height: 1px;
  margin: clamp(1.9rem, 4vw, 2.7rem) auto 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 16%,
    rgba(255, 255, 255, 0.2) 84%,
    rgba(255, 255, 255, 0) 100%
  );
}
@media (max-width: 900px) {
  .sp-post-faq-cta {
    padding-left: clamp(0.9rem, 4.5vw, 1.4rem);
    padding-right: clamp(0.9rem, 4.5vw, 1.4rem);
  }
  .sp-post-faq-cta__inner {
    width: 100%;
    border-radius: 0.95rem;
  }
}

/* —— Lab —— */
.sp-lab {
  padding: 0 0 4rem;
  background: var(--white);
}
.sp-lab__box {
  border: 1px solid var(--zinc-200);
  border-radius: 1rem;
  padding: 2rem;
  background: var(--zinc-50);
}
.sp-lab__box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 600;
}
.sp-lab__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.sp-lab__form input {
  flex: 1;
  min-width: 12rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--zinc-300);
  font: inherit;
}

/* —— Nucurate-style pre-footer + footer —— */
.nc-hide-mobile {
  display: block;
}
.nc-show-mobile {
  display: none;
}
@media (max-width: 999px) {
  .nc-hide-mobile {
    display: none !important;
  }
  .nc-show-mobile {
    display: block !important;
  }
}

.nc-prefooter {
  background: #000;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--nc-font);
  padding-top: clamp(1.45rem, 3.2vw, 2.05rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.nc-prefooter__container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 899px) {
  .nc-prefooter__container {
    grid-template-columns: 1fr;
  }
}
.nc-prefooter__logo img {
  max-width: min(16rem, 55vw);
  height: auto;
}
.nc-prefooter__rights {
  margin: 1rem 0 1.65rem;
  max-width: 24rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.55;
}
/* About / Docs / Contact — nucurate.com style: thin rule → arrow on hover */
.nc-prefooter__arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.7rem 0 0.7rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.95rem, 1.55vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nc-prefooter__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.72rem;
  height: 1px;
  background: currentColor;
  opacity: 0.88;
  transform: translateY(-50%);
  transform-origin: left center;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.nc-prefooter__arrow::after {
  content: "→";
  position: absolute;
  left: -0.05rem;
  top: 50%;
  font-size: 1em;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transform: translate(-4px, -50%) scaleX(1);
  transform-origin: left center;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.nc-prefooter__arrow:hover,
.nc-prefooter__arrow:focus-visible {
  color: #fff;
}
.nc-prefooter__arrow:hover::before,
.nc-prefooter__arrow:focus-visible::before {
  opacity: 0;
  transform: translateY(-50%) scaleX(0.25);
}
.nc-prefooter__arrow:hover::after,
.nc-prefooter__arrow:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%) scaleX(1.38);
}
.nc-prefooter__arrow:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.42);
  outline-offset: 4px;
}
.nc-prefooter__arrow-text {
  flex: 0 0 auto;
}
@media (prefers-reduced-motion: reduce) {
  .nc-prefooter__arrow::before,
  .nc-prefooter__arrow::after {
    transition-duration: 0.01ms;
  }
}
.nc-prefooter__copy {
  margin: 0 0 1.25rem;
  font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}
.nc-prefooter__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fafafa;
}
.nc-prefooter__t1 {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 1rem;
  border-radius: 624.9375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.nc-prefooter__t2 {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  font-size: 0.95rem;
}
.nc-prefooter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.nc-prefooter__input {
  flex: 1;
  min-width: 12rem;
  height: 3rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 0.9375rem;
}
.nc-prefooter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.nc-prefooter__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.45);
}
.nc-prefooter__submit {
  height: 3rem;
  padding: 0 1.35rem;
  border: none;
  border-radius: 0.35rem;
  background: #fff;
  color: #111;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
}
.nc-prefooter__hint {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  min-height: 1.25rem;
}
.nc-prefooter__legal {
  margin: 0.85rem 0 0;
  max-width: 42rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}
.nc-prefooter__legal a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nc-prefooter__legal a:hover {
  color: #fff;
}
.nc-prefooter__ai-label {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}
.nc-prefooter__ai-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nc-prefooter__ai-icon {
  width: 3rem;
  height: 3rem;
  padding: 0.65rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  transition: opacity 0.2s;
}
.nc-prefooter__ai-icon:hover { opacity: 0.75; }
.nc-prefooter__ai-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nc-footer {
  background: #000;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--nc-font);
}
.nc-footer__widgets {
  border-top: none;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.nc-footer__container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
}
.nc-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 999px) {
  .nc-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .nc-footer__grid {
    grid-template-columns: 1fr;
  }
}
.nc-footer__h4 {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
}
.nc-footer__h4--spaced {
  margin-top: 1.75rem;
}
.nc-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nc-footer__list li {
  margin-bottom: 0.65rem;
}
.nc-footer__list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.4;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nc-footer__list a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.nc-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 0 2.5rem;
}
.nc-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nc-footer__bar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
}
.nc-footer__legit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.nc-footer__legit-txt {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 10rem;
  line-height: 1.35;
}
.nc-footer__legit-img {
  height: 3.25rem;
  width: auto;
  opacity: 0.85;
  filter: grayscale(1);
}
.nc-footer__policies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}
.nc-footer__policies a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.8125rem;
}
.nc-footer__policies a:hover {
  color: #fff;
  text-decoration: underline;
}
.nc-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.85rem;
}
.nc-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: opacity 0.2s;
}
.nc-footer__social a:hover {
  opacity: 0.85;
}
.nc-social-icon {
  width: 22px;
  height: 22px;
  display: block;
  overflow: visible;
}
.nc-social-link {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
}
@media (max-width: 700px) {
  .nc-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   Superpower AI chat showcase (premium dark card on light page)
   Premium dark card on light page — AI conversation showcase
   ============================================================ */
.sp-ai {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}
.sp-ai::before {
  content: "";
  position: absolute;
  inset: -10% -10% 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(55% 55% at 50% 20%, rgba(252, 95, 43, 0.10) 0%, transparent 65%);
}
.sp-ai__container {
  max-width: 82rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.sp-ai__header {
  text-align: center;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: 44rem;
}
.sp-ai__eyebrow {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(252, 95, 43, 0.4);
  background: rgba(252, 95, 43, 0.1);
  color: #ff8c5e;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sp-ai__h2 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 400;
  color: var(--zinc-900);
}
.sp-ai__em {
  display: block;
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
  color: var(--zinc-700);
}
.sp-ai__lede {
  margin: 0;
  color: var(--zinc-600);
  font-size: 1.0625rem;
  line-height: 1.55;
}

/* Device chrome --------------------------------------------- */
.sp-ai__device {
  position: relative;
  border-radius: 1.5rem;
  padding: 0.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01) 40%, rgba(0, 0, 0, 0.2)),
    #0a0a0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 40px 90px -30px rgba(0, 0, 0, 0.75),
    0 6px 24px -12px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  isolation: isolate;
}
.sp-ai__glow {
  position: absolute;
  inset: -30% -20% 40%;
  z-index: -1;
  background: radial-gradient(60% 45% at 50% 30%, rgba(252, 95, 43, 0.28), transparent 65%);
  filter: blur(30px);
}
.sp-ai__edge {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 25%) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
}

.sp-ai__chrome {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}
.sp-ai__chrome-dots {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}
.sp-ai__chrome-dots span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
}
.sp-ai__chrome-dots span:nth-child(1) { background: #fc5f2b; box-shadow: 0 0 8px rgba(252, 95, 43, 0.6); }
.sp-ai__chrome-dots span:nth-child(2) { background: #ffb648; }
.sp-ai__chrome-dots span:nth-child(3) { background: #3dd598; }

.sp-ai__chrome-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  justify-content: center;
}
.sp-ai__chrome-who { line-height: 1.1; }
.sp-ai__bot-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f4f4f5;
  letter-spacing: -0.01em;
}
.sp-ai__bot-status {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
}
.sp-ai__status-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #3dd598;
  box-shadow: 0 0 0 3px rgba(61, 213, 152, 0.18);
}
.sp-ai__chrome-meta {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/* AI orb avatar --------------------------------------------- */
.sp-ai__bot-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.sp-ai__bot-avatar--lg {
  width: 2.4rem;
  height: 2.4rem;
  align-self: flex-start;
  margin-top: 0.25rem;
}
.sp-ai__bot-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(252, 95, 43, 0.95), rgba(252, 95, 43, 0) 55%, rgba(252, 95, 43, 0.95));
  animation: spAiSpin 6s linear infinite;
  filter: blur(0.4px);
}
.sp-ai__bot-core {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background:
    radial-gradient(60% 60% at 35% 30%, #ffffff 0%, #ffc49a 25%, #fc8858 55%, #fc5f2b 85%);
  box-shadow:
    0 0 14px rgba(252, 95, 43, 0.45),
    inset 0 0 10px rgba(255, 255, 255, 0.35);
}
@keyframes spAiSpin {
  to { transform: rotate(1turn); }
}

/* Messages -------------------------------------------------- */
.sp-ai__messages {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 3vw, 2rem);
}
.sp-ai__row {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
}
.sp-ai__row--user { justify-content: flex-end; }
.sp-ai__row--bot { justify-content: flex-start; align-items: flex-start; }

.sp-ai__bubble {
  position: relative;
  max-width: 78%;
  border-radius: 1.1rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f4f4f5;
}
.sp-ai__bubble p { margin: 0; }

.sp-ai__bubble--user {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-right-radius: 0.35rem;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.65);
}
.sp-ai__bubble--bot {
  background:
    linear-gradient(180deg, rgba(252, 95, 43, 0.09), rgba(252, 95, 43, 0.02) 40%, rgba(20, 20, 24, 0.6)),
    #111116;
  border: 1px solid rgba(252, 95, 43, 0.24);
  border-bottom-left-radius: 0.35rem;
  padding: 1rem 1.1rem 0.9rem;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 1px rgba(252, 95, 43, 0.05) inset,
    0 18px 40px -20px rgba(252, 95, 43, 0.35),
    0 24px 60px -24px rgba(0, 0, 0, 0.85);
}

.sp-ai__user-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #30303a, #141418);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  flex-shrink: 0;
}

.sp-ai__time {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
  text-align: right;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.sp-ai__time--bot { text-align: left; }

/* Bot bubble content ---------------------------------------- */
.sp-ai__bubble-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}
.sp-ai__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(252, 95, 43, 0.18);
  color: #ff9566;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(252, 95, 43, 0.3);
}
.sp-ai__chip--soft {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.08);
}
.sp-ai__lead {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.85rem !important;
}
.sp-ai__list {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sp-ai__list li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.sp-ai__list li strong {
  display: block;
  color: #f4f4f5;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  letter-spacing: -0.005em;
}
.sp-ai__list li span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}
.sp-ai__check {
  color: #fc5f2b;
  margin-top: 0.22rem;
}

.sp-ai__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.sp-ai__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: #ffffff;
  color: #111;
  border: 1px solid #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.sp-ai__pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}
.sp-ai__pill--ghost {
  background: transparent;
  color: #f4f4f5;
  border-color: rgba(255, 255, 255, 0.18);
}
.sp-ai__pill--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.sp-ai__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}
.sp-ai__src-label {
  color: rgba(255, 255, 255, 0.42);
  margin-right: 0.25rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.65rem;
}
.sp-ai__src {
  padding: 0.18rem 0.55rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Composer bar ---------------------------------------------- */
.sp-ai__composer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.6rem 0.75rem 1rem;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}
.sp-ai__composer-placeholder {
  flex: 1;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.38);
  user-select: none;
}
.sp-ai__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  color: #111;
  background: linear-gradient(135deg, #ffffff, #d7d7dd);
  cursor: default;
  box-shadow:
    0 6px 18px rgba(252, 95, 43, 0.28),
    inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

@media (max-width: 680px) {
  .sp-ai__bubble { max-width: 90%; font-size: 0.9rem; }
  .sp-ai__chrome-title .sp-ai__chrome-who { display: none; }
  .sp-ai__chrome-meta { display: none; }
  .sp-ai__list li { padding: 0.5rem 0.6rem; }
  .sp-ai__user-avatar { width: 1.75rem; height: 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sp-ai__bot-ring { animation: none; }
}

/* ---------- System dark mode (light marketing sections + chrome) ---------- */
@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }

  body {
    background: #09090b;
    color: #f4f4f5;
  }

  .nc-skip:focus {
    background: #27272a;
    color: #fafafa;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
  }

  .nc-ocm {
    background: #16161a;
    color: #f4f4f5;
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
  }
  .nc-ocm__title {
    color: #fafafa;
  }
  .nc-ocm__menu a {
    color: #f4f4f5;
  }
  .nc-ocm__menu--sub a {
    color: rgba(244, 244, 245, 0.75);
  }
  .nc-ocm__label {
    color: rgba(244, 244, 245, 0.45);
  }
  .nc-ocm__muted {
    color: rgba(244, 244, 245, 0.55);
  }
  .nc-ocm__quick-cta {
    background: #fafafa;
    color: #09090b;
  }

  .sp-intro {
    background: linear-gradient(180deg, #0c0c0e 0%, #09090b 55%, transparent);
  }
  .sp-intro__headline {
    color: #d4d4d8;
  }
  .sp-face {
    border-color: #27272a;
  }
  .sp-logos img {
    filter: brightness(0) invert(1);
    opacity: 0.88;
  }

  .sp-sub {
    color: #a1a1aa;
  }

  .sp-value {
    background: #0c0c0e;
  }
  .sp-value h2 {
    color: #fafafa;
  }
  .sp-value__list {
    border-top-color: rgba(255, 255, 255, 0.1);
  }
  .sp-value__list li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    color: #e4e4e7;
  }
  .sp-tag {
    color: #a1a1aa;
  }

  .sp-docs {
    background: #09090b;
  }
  .sp-center {
    color: #f4f4f5;
  }
  .sp-doc {
    background: #141416;
    border-color: rgba(255, 255, 255, 0.08);
  }
  .sp-doc h3 {
    color: #fafafa;
  }
  .sp-doc .sp-muted {
    color: #a1a1aa;
  }
  .sp-link {
    color: #93c5fd;
  }

  .sp-stories {
    background: #0c0c0e;
    border-top-color: rgba(255, 255, 255, 0.08);
  }
  .sp-stories__head h2 {
    color: #fafafa;
  }
  .sp-trust {
    color: #c4c4c8;
  }
  .sp-story {
    background: #141416;
    border-color: rgba(255, 255, 255, 0.08);
  }
  .sp-story__quote {
    color: #e4e4e7;
  }
  .sp-stories__nav button {
    background: #1f1f24;
    border-color: rgba(255, 255, 255, 0.12);
    color: #f4f4f5;
  }

  .sp-press {
    background: #09090b;
  }
  .sp-press__card {
    background: #141416;
    border-color: rgba(255, 255, 255, 0.08);
  }
  .sp-press__card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  }
  .sp-press__card p {
    color: #f4f4f5;
  }

  .sp-price {
    background: #0c0c0e;
    border-top-color: rgba(255, 255, 255, 0.08);
  }
  .sp-price h2 {
    color: #fafafa;
  }
  .sp-price__bullets li {
    color: #c4c4c8;
  }
  .sp-price__card {
    background: #141416;
    border-color: rgba(255, 255, 255, 0.1);
  }
  .sp-price__num {
    color: #fafafa;
  }
  .sp-price__per {
    color: #a1a1aa;
  }
  .sp-price__fine {
    color: #a1a1aa;
  }
  .sp-price__disclaimer {
    color: #71717a;
  }

  .sp-feature-stack {
    background: #000;
  }
  .sp-feature:not(:last-child) {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }
  .sp-feature__header h2,
  .sp-feature__header h1 {
    color: #fafafa;
  }
  .sp-feature__title {
    color: #fafafa;
  }
  .sp-feature__header .sp-sub {
    color: #a1a1aa;
  }
  .sp-feature__copy p {
    color: #c4c4c8;
  }
  .sp-feature__bullets li {
    color: #a1a1aa;
  }
  .sp-feature__appstore:focus-visible {
    outline-color: #000;
  }

  .sp-lab {
    background: #09090b;
  }
  .sp-lab__box {
    background: #141416;
    border-color: rgba(255, 255, 255, 0.1);
  }
  .sp-lab__box h3 {
    color: #fafafa;
  }
  .sp-lab__form input {
    background: #18181b;
    border-color: rgba(255, 255, 255, 0.12);
    color: #f4f4f5;
  }

  .sp-ai__h2 {
    color: #fafafa;
  }
  .sp-ai__em {
    color: #d4d4d8;
  }
  .sp-ai__lede {
    color: #a1a1aa;
  }
}

/* Force dark treatment for the "Eating well is easy" rail even if cached/legacy
   rules or parent stylesheets try to set a light background. */
body .sp-day-reality {
  background: #000 !important;
  color: #fafafa !important;
}
body .sp-day-reality .sp-day-reality__title,
body .sp-day-reality .sp-day-reality__text {
  color: #fafafa !important;
}
body .sp-day-reality .sp-day-reality__scroll-btn {
  color: #fafafa !important;
}
body .sp-day-reality .sp-day-reality__scroll-text {
  color: rgba(255, 255, 255, 0.88) !important;
}
body .sp-day-reality .sp-day-reality__grid {
  background: #000 !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
body .sp-day-reality .sp-day-reality__card + .sp-day-reality__card {
  border-left-color: rgba(255, 255, 255, 0.2) !important;
}
@media (max-width: 980px) {
  body .sp-day-reality .sp-day-reality__card + .sp-day-reality__card {
    border-top-color: rgba(255, 255, 255, 0.2) !important;
  }
}

/* ============================================================
   Nucurate header / OCM / search — v2 (matches header.php markup)
   These rules appear LAST so they win over earlier (mismatched)
   selectors that targeted Salient defaults.
   ============================================================ */

/* Header bar layout */
.nc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.25s ease, backdrop-filter 0.25s ease,
    -webkit-backdrop-filter 0.25s ease;
  font-family: var(--nc-font);
}
.nc-header.is-scrolled {
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
}
.nc-header__container {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.nc-header__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nc-header-h);
  padding: 0 clamp(1rem, 4vw, 3rem);
}

/* Centered brand (absolutely positioned over the row) */
.nc-header__brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  z-index: 1;
}
.nc-header__logo {
  display: block;
  height: auto;
  width: clamp(110px, 14vw, 160px);
  max-width: none;
}

/* Inline desktop nav */
.nc-header__nav {
  position: relative;
  z-index: 2;
  margin: 0;
}
.nc-header__nav-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.nc-header__nav-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nc-header__nav-list a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.25rem 0;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.nc-header__nav-list a:hover,
.nc-header__nav-list a:focus-visible {
  opacity: 0.78;
  color: #fff;
}

/* Right-side actions */
.nc-header__actions {
  position: relative;
  z-index: 2;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nc-header__actions ul.buttons,
.nc-header__actions ul.buttons > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nc-header__icon-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nc-header__icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}
.nc-header__icon-btn:active {
  transform: scale(0.96);
}
.nc-header__icon-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}
.nc-header__icon-btn svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* Search overlay */
.nc-search[hidden] {
  display: none !important;
}
.nc-search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem clamp(1rem, 4vw, 3rem) 1.25rem;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: ncFadeIn 0.18s ease both;
}
.nc-search__form {
  display: flex;
  gap: 0.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
.nc-search__input {
  flex: 1;
  min-width: 0;
  height: 3rem;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.5rem;
  color: #fff;
  font: inherit;
  font-size: 1rem;
}
.nc-search__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.nc-search__input:focus {
  outline: 0;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}
.nc-search__submit {
  height: 3rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 0.5rem;
  background: #fff;
  color: #111;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  white-space: nowrap;
}
.nc-search__submit:hover {
  background: #f4f4f5;
}

/* —— OCM panel internals (the .nc-ocm + .nc-ocm-bg containers themselves
 *    are defined earlier in this file with their open/close transitions). —— */
.nc-ocm__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 2rem) 1.5rem;
  min-height: 100%;
}
.nc-ocm__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nc-ocm__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nc-ocm__brand img {
  display: block;
  height: 2rem;
  width: auto;
  max-width: 10rem;
}
.nc-ocm__close {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nc-ocm__close:hover {
  background: rgba(255, 255, 255, 0.12);
}
.nc-ocm__close:active {
  transform: scale(0.96);
}
.nc-ocm__close svg {
  display: block;
  width: 22px;
  height: 22px;
}
.nc-ocm__nav {
  margin: 0;
}
.nc-ocm__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nc-ocm__list > li {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nc-ocm__list > li:last-child {
  border-bottom: 0;
}
.nc-ocm__list a,
.nc-ocm__link {
  display: block;
  padding: 0.95rem 0;
  color: #fff !important;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.015em;
  transition: padding 0.25s ease, opacity 0.2s ease;
}
.nc-ocm__list a:hover,
.nc-ocm__list a:focus-visible,
.nc-ocm__link:hover,
.nc-ocm__link:focus-visible {
  padding-left: 0.35rem;
  opacity: 0.85;
}
.nc-ocm__foot {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nc-ocm__legal {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}
.nc-ocm__legal a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
.nc-ocm__legal a:hover {
  color: #fff;
  text-decoration: underline;
}
.nc-ocm__rights {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Push non-home pages below the fixed header */
.nc-main {
  display: block;
  min-height: 60vh;
}
body:not(.home):not(.front-page-template):not(.page-template-tpl-home) .nc-main {
  padding-top: var(--nc-header-h);
}

/* Responsive: hide inline desktop nav below 900px so the hamburger
   becomes the primary navigation on phones / small tablets. */
@media (max-width: 899px) {
  .nc-header__nav {
    display: none !important;
  }
  .nc-header__row {
    padding: 0 1rem;
  }
  .nc-header__logo {
    width: clamp(96px, 28vw, 140px);
  }
  .nc-search__submit {
    padding: 0 0.95rem;
    font-size: 0.875rem;
  }
  .nc-ocm {
    width: min(94vw, 320px);
  }
}

/* Reduced motion overrides for the rest of the chrome (panel + scrim
   are already covered earlier). */
@media (prefers-reduced-motion: reduce) {
  .nc-header,
  .nc-search,
  .nc-header__icon-btn {
    transition: none !important;
    animation: none !important;
  }
}


/* Disable any Salient/child back-to-top controls globally. */
#to-top,
a.nc-footer__top {
  display: none !important;
}







