/* Nucurate marketing page — typography aligned to local web2 reference (Inter + 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: "Inter", -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%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
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;
}
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;
}

/* —— 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; }

#ajax-content-wrap {
  position: relative;
  padding-top: var(--nc-header-h);
}

/* —— Hero (full width, flush under fixed header) —— */
#ajax-content-wrap > .sp-hero:first-child {
  margin-top: calc(-1 * var(--nc-header-h));
}
.sp-hero {
  padding: 0;
  background: #3a342e;
}
.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; no max-height cap on tall screens */
  min-height: 100dvh;
  max-height: none;
  background: #3a342e;
}
/* Readability scrim: video stays visible, copy stays legible; top band matches nav zone while header is transparent */
.sp-hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.52) calc(var(--nc-header-h) + 0.75rem),
      rgba(0, 0, 0, 0.38) 42%,
      rgba(0, 0, 0, 0.64) 100%
    ),
    radial-gradient(ellipse 95% 75% at 50% 38%, rgba(15, 12, 10, 0.6) 0%, rgba(15, 12, 10, 0.24) 62%, transparent 78%);
}
.sp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sp-hero__poster,
.sp-hero__video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.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: 100dvh;
  max-height: none;
  padding: 0 clamp(1rem, 4vw, 4.5rem) clamp(1.25rem, 4vh, 2.5rem);
  padding-top: calc(var(--nc-header-h) + 0.75rem);
  color: var(--white);
  text-align: center;
}
.sp-hero__content {
  max-width: 40rem;
  width: 100%;
  padding-top: 0;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.sp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  opacity: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  font-weight: 600;
}

.sp-h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
  font-family: var(--font-sans);
  color: #fff;
  white-space: nowrap;
}
.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: none;
  white-space: nowrap;
}
.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;
}
.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: auto;
  padding-right: 0;
  font-size: 0.9375rem;
  text-align: center;
  flex-shrink: 0;
}
.sp-hero__note {
  text-align: center;
  min-width: 11.5rem;
  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 (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: 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;
}

/* —— 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: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 {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 0.9rem);
  width: 100%;
  min-width: 0;
}
/* 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 {
  order: 0;
}
.sp-feature--ai .sp-feature__media-col > .sp-feature__benchmarks {
  order: 1;
}
.sp-feature--ai .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;
}
.sp-feature--ai .sp-feature__stack {
  grid-column: 2;
  grid-row: 1;
}
.sp-feature--ai .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 {
  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 {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #a1a1aa;
}
.sp-feature--ai .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 {
  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 {
  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 {
  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--ai .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 {
    display: none;
  }
  .sp-feature--ai .sp-ai-bench {
    flex-direction: column;
    gap: 1.1rem;
    align-items: center;
  }
  .sp-feature--ai .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-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: 1.7;
  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;
  padding-left: 1.15rem;
  color: #a1a1aa;
  line-height: 1.5;
  font-size: 0.95rem;
}
.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, #4a8f62, #2f6b45);
  opacity: 0.85;
}
.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;
}
.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;
}
.sp-feature__appstore-pre {
  color: rgba(0, 0, 0, 0.78);
  font-weight: 500;
}
.sp-feature__appstore-name {
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #000;
}
@media (max-width: 380px) {
  .sp-feature__appstore-text {
    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;
}
.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;
}
.sp-feature-stack .sp-feature__header .sp-sub {
  margin: 0 auto;
  max-width: 40rem;
  line-height: 1.68;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
  white-space: nowrap;
  font-size: clamp(0.95rem, 1.55vw, 1.125rem);
}

@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);
}
.sp-feature-stack .sp-feature__stack {
  gap: clamp(1.5rem, 3.5vw, 2.65rem);
}
.sp-feature-stack .sp-feature__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(1.05rem, 2.4vw, 1.45rem);
}
.sp-feature-stack .sp-feature__title {
  margin: 0;
  line-height: 1.22;
}
.sp-feature-stack .sp-feature__copy p {
  margin: 0;
  line-height: 1.75;
}
.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-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-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-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__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .sp-feature-stack .sp-feature__body {
    gap: clamp(1.85rem, 5vw, 2.65rem);
  }
  .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%;
    max-height: min(76vh, 52rem);
    justify-self: center;
  }
  .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;
  }
  .sp-feature--alt .sp-feature__media {
    order: 2;
  }
  .sp-feature__creative-shell {
    max-width: 100%;
  }
}
@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: 4rem 0 5rem;
  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__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.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: center;
  gap: 1rem;
  cursor: pointer;
}
.sp-faq__q::after {
  content: "+";
  font-weight: 400;
  color: #71717a;
  font-size: 1.25rem;
}
.sp-faq__q[aria-expanded="true"]::after { content: "−"; }
.sp-faq__a {
  padding-bottom: 1.25rem;
  color: #c4c4c8;
  line-height: 1.6;
}
.sp-faq__a[hidden] { display: none; }

/* —— 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;
  }
}

/* ============================================================
   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;
  }
}

