/* Second funnel — linear progressive disclosure (about-research-peptides/) */
:root {
  --bg0: #0b0f14;
  --bg1: #121a24;
  --bg2: #1a2431;
  --surface: rgba(255, 255, 255, 0.045);
  --surface2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --text: #e9eef6;
  --muted: #9aa8bc;
  --accent: #5eead4;
  --accent-dim: rgba(94, 234, 212, 0.12);
  --gold: #d4b57a;
  /* Funnel blend: cream hero ↔ teal / blue body */
  --cream-0: #fdfaf6;
  --cream-1: #f5efe6;
  --cream-2: #ebe4d6;
  --cream-mist: #e5f0ed;
  --cream-fog: #dfe9ea;
  --funnel-bridge: #c5d8d4;
  --radius: 18px;
  --radius-lg: 26px;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 64px;
  --flow-pad: clamp(18px, 4vw, 40px);
  /* Main column cap: matches hero “Choose Your Path” panel (`.sf-hero__drops-shell`) */
  --sf-funnel-max: 1080px;
  --funnel-path-heading-size: clamp(1.35rem, 3vw, 1.85rem);
  --funnel-path-button-title: clamp(1.02rem, 2.05vw, 1.2rem);
  --funnel-path-button-desc: clamp(0.875rem, 1.45vw, 0.98rem);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(94, 234, 212, 0.07), transparent 50%),
    radial-gradient(900px 500px at 92% 15%, rgba(91, 140, 255, 0.05), transparent 45%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 45%, var(--bg2) 100%);
  padding-top: var(--header-h);
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #8efce8;
}

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

/* —— Top bar —— */
.sf-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 var(--flow-pad);
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.94) 0%, rgba(11, 18, 22, 0.9) 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(94, 234, 212, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.sf-brand {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.sf-brand span {
  color: var(--accent);
  font-weight: 500;
}

.sf-top__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.sf-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.sf-jump a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.sf-jump a:hover {
  color: var(--text);
  border-color: var(--border);
  background: var(--surface);
}

.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}

.sf-btn:hover {
  background: var(--surface2);
  border-color: rgba(255, 255, 255, 0.18);
}

.sf-btn:active {
  transform: translateY(1px);
}

.sf-btn--primary {
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.22), rgba(91, 140, 255, 0.16));
  border-color: rgba(94, 234, 212, 0.35);
  color: #ecfffa;
}

.sf-btn--primary:hover {
  border-color: rgba(94, 234, 212, 0.55);
}

.sf-btn--ghost {
  background: transparent;
}

.sf-shell {
  /* Aligned with `.sf-hero__drops-shell` / `.sf-hero--splash` via `--sf-funnel-max` */
  max-width: var(--sf-funnel-max);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px) var(--flow-pad) 120px;
  background: linear-gradient(180deg, rgba(232, 242, 239, 0.07) 0%, transparent 28%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* —— Mini training hero (cream) + dark drops panel —— */
.sf-hero--funnel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: transparent;
  min-height: calc(100svh - var(--header-h));
}

.sf-mini-training {
  position: relative;
  flex: 0 0 auto;
  color: #2a2622;
  padding: clamp(12px, 2.8vw, 32px) var(--flow-pad) clamp(14px, 2.5vw, 26px);
  text-align: center;
  background: linear-gradient(180deg, #fdfbf7 0%, #f7f2ea 48%, #efe9df 100%);
  border-bottom: 1px solid rgba(42, 38, 34, 0.06);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5);
}

.sf-mini-training::before {
  display: none;
}

.sf-mini-training__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto;
}

.sf-mini-training__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto clamp(8px, 1.4vw, 14px);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(58, 52, 46, 0.12);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4a4540;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sf-mini-training__badge-dot {
  font-size: 8px;
  color: #6b6560;
  line-height: 1;
}

.sf-mini-training__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.28em 0.45em;
  /* Keep below eyebrow badge — negative margin was collapsing into the pill */
  margin: 0 0 16px;
  line-height: 1.05;
}

.sf-mini-training__title-serif {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.2vw, 3.15rem);
  font-weight: 400;
  color: #1a1816;
  letter-spacing: 0.02em;
}

.sf-mini-training__title-script {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.5rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.sf-hero-funnel__intro {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
  padding: clamp(12px, 2.5vw, 28px) var(--flow-pad);
  box-sizing: border-box;
  text-align: center;
}

.sf-mini-training__body {
  margin: 0 auto;
  max-width: 40rem;
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.65;
  color: #4d4842;
  text-wrap: balance;
}

.sf-mini-training__body strong {
  color: #252220;
  font-weight: 600;
}

.sf-mini-training__figure {
  margin: 0 auto;
  max-width: 56rem;
}

.sf-mini-training__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(58, 52, 46, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.6),
    0 18px 44px rgba(42, 38, 34, 0.08);
}

.sf-hero__inner--drops-only {
  max-width: none;
  width: 100%;
  text-align: left;
}

/* —— Hero —— */
.sf-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.sf-subhero .sf-hero__eyebrow {
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
}

.sf-hero__lead {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(15px, 1.9vw, 17px);
}

.sf-hero--splash {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: clamp(20px, 4vw, 36px);
  align-items: start;
  width: 100%;
  max-width: var(--sf-funnel-max);
  margin: 0 auto clamp(24px, 4vw, 44px);
  padding: clamp(24px, 4vw, 48px) var(--flow-pad) clamp(28px, 5vw, 52px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid var(--border);
  border-top: 0;
  background:
    radial-gradient(ellipse 120% 90% at 50% -30%, rgba(94, 234, 212, 0.14), transparent 50%),
    radial-gradient(520px 400px at 100% 20%, rgba(91, 140, 255, 0.18), transparent 58%),
    radial-gradient(420px 320px at 0% 100%, rgba(212, 181, 122, 0.08), transparent 55%),
    linear-gradient(168deg, rgba(22, 30, 42, 0.95) 0%, rgba(11, 15, 20, 0.55) 100%);
}

@media (min-width: 880px) {
  .sf-hero--splash {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 240px);
    gap: clamp(28px, 4vw, 48px);
  }
}

.sf-hero--splash::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* Funnel index: accordion panel visually bridges cream hero → deep navy */
.sf-hero__drops-shell.sf-hero--splash {
  flex: 0 0 auto;
  /* Tighter top than generic .sf-hero--splash so “Choose Your Path” sits optically centered above path rows */
  padding-top: clamp(14px, 2.4vw, 22px);
  margin: clamp(10px, 2.2vw, 20px) auto clamp(20px, 4vw, 40px);
  max-width: var(--sf-funnel-max);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(94, 234, 212, 0.24);
  border-top: 1px solid rgba(165, 212, 200, 0.38);
  box-shadow:
    0 0 0 1px rgba(253, 250, 243, 0.06),
    0 28px 64px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(236, 244, 241, 0.2) 0%, rgba(236, 244, 241, 0.05) 28%, transparent 50%),
    radial-gradient(ellipse 100% 90% at 50% -10%, rgba(94, 234, 212, 0.17), transparent 54%),
    radial-gradient(800px 440px at 100% 22%, rgba(91, 140, 255, 0.17), transparent 58%),
    radial-gradient(520px 380px at 0% 100%, rgba(212, 181, 122, 0.07), transparent 55%),
    linear-gradient(172deg, rgba(22, 32, 42, 0.98) 0%, rgba(11, 15, 20, 0.94) 100%);
}

@media (min-width: 880px) {
  .sf-hero__drops-shell.sf-hero--splash {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sf-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 38rem;
  text-align: left;
}

@media (min-width: 880px) {
  .sf-hero__inner {
    max-width: none;
  }
}

.sf-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, #f4f7fc 0%, #c8f7ef 38%, #e9eef6 72%, #d4b57a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not (background-clip: text) {
  .sf-hero__title {
    color: var(--text);
    background: none;
  }
}

.sf-hero__what {
  margin: 0 0 20px;
  font-size: clamp(15px, 1.85vw, 17px);
  line-height: 1.6;
  color: rgba(233, 238, 246, 0.88);
}

.sf-hero__drops-intro {
  margin: 0 0 clamp(14px, 2.4vw, 22px);
  padding: clamp(12px, 2vw, 20px) 0 clamp(12px, 2vw, 20px);
  text-align: center;
}

.sf-hero__drops-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--funnel-path-heading-size);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: #e9eef6;
}

.sf-hero__drops {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 6px;
  width: 100%;
}

.sf-hero__details {
  border-radius: var(--radius);
  border: 1px solid rgba(120, 175, 165, 0.22);
  background: rgba(4, 12, 14, 0.38);
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.3s var(--ease);
}

.sf-hero__details:hover {
  border-color: rgba(94, 234, 212, 0.32);
}

.sf-hero__details[open] {
  border-color: rgba(94, 234, 212, 0.42);
  background: rgba(4, 14, 16, 0.42);
}

.sf-hero__details > summary.sf-hero__pillar {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(16px, 2.2vw, 22px) clamp(16px, 2.2vw, 22px);
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background 0.2s var(--ease);
}

.sf-hero__details > summary.sf-hero__pillar::-webkit-details-marker {
  display: none;
}

.sf-hero__details > summary.sf-hero__pillar::marker {
  content: "";
  display: none;
}

.sf-hero__details > summary.sf-hero__pillar:hover {
  background: rgba(94, 234, 212, 0.06);
}

.sf-hero__details > summary.sf-hero__pillar:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.sf-hero__details > summary.sf-hero__pillar:active {
  transform: translateY(1px);
}

.sf-hero__member-form.sf-form {
  max-width: min(100%, 26rem);
  width: 100%;
  margin: 16px auto 0;
  padding: clamp(18px, 2.4vw, 24px) clamp(16px, 2vw, 20px);
  box-sizing: border-box;
  border-radius: var(--radius);
  border: 1px solid rgba(120, 175, 165, 0.22);
  background: rgba(4, 12, 14, 0.28);
  text-align: left;
}

.sf-hero__member-form.sf-form button[type="submit"] {
  justify-self: start;
  width: auto;
  min-width: 10.5rem;
  padding-inline: clamp(20px, 3vw, 28px);
}

.sf-hero__member-form .sf-hero__form-title {
  margin-bottom: 10px;
}

.sf-hero__form-title {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.sf-stripe--in-hero {
  margin: 0;
  margin-bottom: 4px;
  color: var(--text);
}

.sf-hero__dropbody {
  padding: 12px 16px 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sf-hero__dropbody > p {
  margin: 0;
}

.sf-hero__dropbody > p + p {
  margin-top: 10px;
}

.sf-hero__dropactions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  align-items: center;
}

.sf-hero__pillar-num {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: clamp(11px, 1.05vw, 12px);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  opacity: 0.9;
}

.sf-hero__pillar-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sf-hero__pillar-title {
  font-family: var(--font-sans);
  font-size: var(--funnel-path-button-title);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.015em;
}

.sf-hero__pillar-desc {
  font-family: var(--font-sans);
  font-size: var(--funnel-path-button-desc);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.sf-hero__pillar-go {
  flex: 0 0 auto;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 12px;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.85vw, 1.2rem);
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  color: var(--gold);
  opacity: 0.88;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.sf-hero__details:not([open]) > summary.sf-hero__pillar:hover .sf-hero__pillar-go {
  transform: translateX(4px);
  opacity: 1;
}

.sf-hero__details[open] > summary.sf-hero__pillar .sf-hero__pillar-go {
  transform: rotate(90deg);
  opacity: 1;
}

.sf-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sf-hero__cta-primary.sf-btn {
  padding-inline: 22px;
}

.sf-hero__art {
  position: relative;
  z-index: 1;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  justify-self: end;
}

@media (max-width: 879px) {
  .sf-hero__art {
    min-height: 140px;
    margin-top: 0;
  }
}

.sf-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
}

.sf-hero__glow--a {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.45) 0%, transparent 70%);
  top: 10%;
  right: 5%;
}

.sf-hero__glow--b {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(91, 140, 255, 0.4) 0%, transparent 70%);
  bottom: 5%;
  left: 10%;
}

.sf-hero__ring {
  position: relative;
  width: min(200px, 42vw);
  height: min(200px, 42vw);
  border-radius: 50%;
  background: conic-gradient(from 210deg, rgba(94, 234, 212, 0.15), rgba(91, 140, 255, 0.2), rgba(212, 181, 122, 0.12), rgba(94, 234, 212, 0.15));
  animation: sf-hero-spin 22s linear infinite;
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
}

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

@media (prefers-reduced-motion: reduce) {
  .sf-hero__ring {
    animation: none;
  }
}

/* —— Flow / stripes —— */
.sf-flow {
  position: relative;
  padding-left: 0;
}

.sf-flow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(94, 234, 212, 0.5), rgba(91, 140, 255, 0.25), rgba(212, 181, 122, 0.25));
  opacity: 0.65;
}

@media (min-width: 560px) {
  .sf-flow {
    padding-left: 28px;
  }
}

.sf-stripe {
  position: relative;
  margin-bottom: clamp(28px, 5vw, 40px);
  padding: 22px 20px 22px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

@media (min-width: 560px) {
  .sf-stripe {
    padding-left: 24px;
  }
}

.sf-stripe__step {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.sf-stripe h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.sf-stripe__teaser {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 38rem;
}

.sf-pricing-pointer {
  margin-top: 12px;
  font-size: 14px;
  font-style: italic;
}

.sf-pricing-pointer strong {
  font-style: normal;
  font-weight: 700;
}

.sf-dist-aside-h {
  margin: 20px 0 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.sf-stripe__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  align-items: flex-start;
}

.sf-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.sf-card {
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
}

.sf-card h3 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.sf-card p,
.sf-card li {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.sf-card ul {
  margin: 8px 0 0;
  padding-left: 1.1rem;
}

.sf-card li + li {
  margin-top: 6px;
}

.sf-acc {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
  margin-top: 16px;
}

.sf-acc details {
  border-bottom: 1px solid var(--border);
}

.sf-acc details:last-child {
  border-bottom: 0;
}

.sf-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sf-acc summary::-webkit-details-marker {
  display: none;
}

.sf-acc summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 400;
}

.sf-acc details[open] summary::after {
  content: "–";
}

.sf-acc__body {
  padding: 0 16px 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.sf-acc__body p + p {
  margin-top: 10px;
}

.sf-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  align-items: flex-start;
}

/* Learn stripe: references control + dropdown (native <details>) */
.sf-ref-dropdown {
  position: relative;
  flex: 0 0 auto;
  align-self: flex-start;
}

.sf-ref-dropdown__summary {
  list-style: none;
  cursor: pointer;
}

.sf-ref-dropdown__summary::-webkit-details-marker {
  display: none;
}

.sf-ref-dropdown__summary::marker {
  content: "";
}

.sf-ref-dropdown__summary::after {
  content: "▾";
  margin-left: 0.35em;
  font-size: 0.68em;
  opacity: 0.65;
  display: inline-block;
  transform: translateY(-0.06em);
  transition: transform 0.2s var(--ease);
}

.sf-ref-dropdown[open] > .sf-ref-dropdown__summary::after {
  transform: translateY(0.08em) scaleY(-1);
}

.sf-ref-dropdown__panel {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 30;
  box-sizing: border-box;
  width: min(26rem, calc(100vw - 2 * var(--flow-pad)));
  max-height: min(70vh, 520px);
  padding: 14px 16px 16px;
  overflow-y: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(120, 175, 165, 0.28);
  background: rgba(14, 22, 26, 0.97);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 44px rgba(0, 0, 0, 0.45);
  text-align: left;
}

.sf-ref-dropdown__kicker {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.sf-ref-dropdown__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sf-ref-dropdown__item {
  margin: 0;
  padding: 0;
  border: 0;
}

.sf-ref-dropdown__title {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.sf-ref-dropdown__cite {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.sf-ref-dropdown__cite--tight {
  margin-top: 10px;
}

.sf-ref-dropdown__cite em {
  font-style: italic;
}

.sf-ref-dropdown__link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #9ee9dc;
  word-break: break-word;
}

.sf-ref-dropdown__link:hover {
  text-decoration: underline;
  color: #c6f5ec;
}

/* Learn stripe: keep shop + references on one row when space allows */
.sf-cta-row--learn {
  flex-wrap: nowrap;
}

@media (max-width: 520px) {
  .sf-cta-row--learn {
    flex-wrap: wrap;
  }
}

/* Shop stripe: shop + pricing dropdown on one row */
.sf-stripe__actions--shop {
  flex-wrap: nowrap;
}

@media (max-width: 520px) {
  .sf-stripe__actions--shop {
    flex-wrap: wrap;
  }
}

.sf-pricing-dropdown .sf-ref-dropdown__panel {
  width: min(34rem, calc(100vw - 2 * var(--flow-pad)));
  max-height: min(78vh, 640px);
}

.sf-pricing-lead {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.sf-pricing-kicker--spaced {
  margin-top: 16px;
}

.sf-pricing-bands {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.sf-pricing-bands li + li {
  margin-top: 10px;
}

.sf-pricing-bands strong {
  color: var(--text);
  font-weight: 600;
}

.sf-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(248, 113, 113, 0.22);
  background: rgba(248, 113, 113, 0.05);
  font-size: 13px;
  color: #fecaca;
  line-height: 1.5;
}

.sf-note strong {
  color: #fff;
}

.sf-note--restrict {
  border-color: rgba(248, 113, 113, 0.28);
  background: rgba(254, 242, 242, 0.55);
  color: #7f1d1d;
}

.sf-note--restrict strong {
  color: #450a0a;
}

.sf-note--info {
  border-color: rgba(94, 234, 212, 0.25);
  background: rgba(94, 234, 212, 0.06);
  color: #b8f5eb;
}

.sf-page-restrict {
  width: 100%;
  max-width: none;
  margin: 0 0 14px;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* Footer research disclaimer: full row width, no visible frame */
.sf-foot .sf-foot__claim.sf-note--restrict {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  border-width: 0;
  border-color: transparent;
}

.sf-form {
  max-width: 400px;
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.sf-form.sf-form--wide {
  max-width: 520px;
}

.sf-form__check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.45;
}

.sf-form__check input {
  margin-top: 4px;
  flex-shrink: 0;
}

.sf-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.sf-label__optional {
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: normal;
  text-transform: none;
}

.sf-input {
  width: 100%;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
}

.sf-input:focus {
  outline: 2px solid rgba(94, 234, 212, 0.45);
  outline-offset: 2px;
}

.sf-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 200;
  max-width: min(90vw, 420px);
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(26, 36, 49, 0.96);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  text-align: center;
}

.sf-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Bottom email strip — same “Stay in the Loop” copy as hub mini-training */
.sf-email-loop {
  position: relative;
  margin-top: 32px;
  padding: clamp(28px, 5vw, 44px) var(--flow-pad) 4px;
  border-top: 1px solid var(--border);
  max-width: var(--sf-funnel-max);
  margin-left: auto;
  margin-right: auto;
}
.sf-email-loop__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.sf-email-loop__head {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  color: var(--text);
}
.sf-email-loop__sub {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.sf-email-loop__sub:last-of-type {
  margin-bottom: 20px;
}
.sf-email-loop__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.sf-email-loop__form input[type="email"] {
  min-width: 200px;
  flex: 1 1 180px;
  max-width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
}
.sf-email-loop__form input::placeholder {
  color: var(--muted);
}
.sf-email-loop__form .sf-btn {
  flex: 0 0 auto;
}

.sf-foot {
  position: relative;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(94, 234, 212, 0.15);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  box-shadow: inset 0 1px 0 rgba(253, 250, 243, 0.04);
}

/* Fixed bottom shortcuts: revealed after scroll */
.sf-foot__dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px var(--flow-pad) max(12px, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent 0%, rgba(11, 15, 20, 0.82) 42%, rgba(11, 15, 20, 0.94) 100%);
  border-top: 1px solid rgba(94, 234, 212, 0.12);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(110%);
  transition:
    opacity 0.35s var(--ease),
    transform 0.4s var(--ease);
}

.sf-foot__dock.is-revealed {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

html.sf-foot-dock-active body {
  padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px));
}

.sf-foot__dock .sf-foot__bar {
  max-width: none;
  width: 100%;
  margin: 0;
  margin-bottom: 0;
  justify-content: space-between;
  gap: 12px;
}

.sf-foot__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 18px;
}

.sf-foot__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.sf-foot__btn:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.sf-foot__btn--accent {
  border-color: rgba(94, 234, 212, 0.35);
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.14), rgba(91, 140, 255, 0.1));
  color: #ecfffa;
}

.sf-foot__btn--accent:hover {
  border-color: rgba(94, 234, 212, 0.55);
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.22), rgba(91, 140, 255, 0.14));
}

.sf-foot__meta {
  margin: 0;
}

.sf-foot__meta a {
  color: var(--muted);
}

.sf-foot__meta a:hover {
  color: var(--accent);
}

/* kits-pricing subpage */
.sf-subhero {
  text-align: center;
  margin-bottom: 32px;
}

.sf-subhero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  margin: 0 0 10px;
}

.sf-back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

.sf-back:hover {
  color: var(--accent);
}

/* —— Index: full-page cream funnel (same atmosphere as mini-training band) —— */
body.sf-funnel-cream {
  color: #2a2622;
  background: linear-gradient(180deg, #fdfbf7 0%, #f8f3eb 38%, #f1ebe2 72%, #ebe4da 100%);
}

body.sf-funnel-cream a {
  color: #0a6b59;
}

body.sf-funnel-cream a:hover {
  color: #044a3f;
}

/* Cream pages: top bar matches page (readable nav vs dark default) */
body.sf-funnel-cream .sf-top {
  background: linear-gradient(180deg, rgba(253, 251, 247, 0.97) 0%, rgba(248, 243, 235, 0.94) 100%);
  border-bottom: 1px solid rgba(58, 52, 46, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 32px rgba(42, 38, 34, 0.06);
}

body.sf-funnel-cream .sf-brand {
  color: #1a1816;
}

body.sf-funnel-cream .sf-brand span {
  color: #0a7a66;
}

body.sf-funnel-cream .sf-jump a {
  color: #3f3a35;
  border-color: transparent;
}

body.sf-funnel-cream .sf-jump a:hover {
  color: #064d41;
  background: rgba(10, 107, 89, 0.1);
  border-color: rgba(10, 107, 89, 0.22);
}

body.sf-funnel-cream .sf-shell {
  background: transparent;
  border-radius: 0;
}

body.sf-funnel-cream .sf-mini-training {
  background: transparent;
  border-bottom-color: rgba(42, 38, 34, 0.06);
  box-shadow: none;
}

body.sf-funnel-cream .sf-mini-training__figure {
  margin-top: 75px;
}

body.sf-funnel-cream .sf-hero-funnel__intro {
  background: transparent;
}

body.sf-funnel-cream .sf-hero__drops-shell.sf-hero--splash {
  border: 1px solid rgba(58, 52, 46, 0.1);
  border-top: 1px solid rgba(58, 52, 46, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7),
    0 20px 48px rgba(42, 38, 34, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
}

body.sf-funnel-cream .sf-hero__drops-shell.sf-hero--splash::after {
  display: none;
}

body.sf-funnel-cream .sf-hero__details {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(58, 52, 46, 0.11);
  background: linear-gradient(165deg, #efeae2 0%, #e4ddd2 52%, #dcd4c8 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.42) inset,
    0 1px 2px rgba(42, 38, 34, 0.06),
    0 8px 22px rgba(42, 38, 34, 0.08);
  backdrop-filter: none;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.3s var(--ease);
}

body.sf-funnel-cream .sf-hero__details:hover {
  border-color: rgba(58, 52, 46, 0.14);
  background: linear-gradient(165deg, #f3eee6 0%, #e9e2d8 52%, #e0d9cc 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 2px 4px rgba(42, 38, 34, 0.06),
    0 12px 30px rgba(42, 38, 34, 0.1);
}

body.sf-funnel-cream .sf-hero__details[open] {
  border-color: rgba(58, 52, 46, 0.16);
  background: linear-gradient(165deg, #f5f0e8 0%, #ebe4da 52%, #e3dbd0 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 2px 6px rgba(42, 38, 34, 0.07),
    0 16px 38px rgba(42, 38, 34, 0.11);
}

body.sf-funnel-cream .sf-hero__details > summary.sf-hero__pillar {
  color: #1a2220;
}

body.sf-funnel-cream .sf-hero__details > summary.sf-hero__pillar:hover {
  background: rgba(255, 255, 255, 0.2);
}

body.sf-funnel-cream .sf-hero__pillar-title {
  color: #1c1917;
}

body.sf-funnel-cream .sf-hero__pillar-desc {
  color: #6b6560;
}

body.sf-funnel-cream .sf-hero__drops-heading {
  color: #1a1816;
}

body.sf-funnel-cream .sf-hero__pillar-go {
  color: #7a5f28;
  opacity: 1;
}

body.sf-funnel-cream .sf-hero__pillar-num {
  color: #0d6e5c;
  opacity: 1;
}

body.sf-funnel-cream .sf-hero__dropbody {
  color: #4a5350;
  border-top-color: rgba(42, 62, 58, 0.1);
}

body.sf-funnel-cream .sf-stripe--in-hero {
  color: #1a2220;
}

body.sf-funnel-cream .sf-stripe__step {
  color: #0d6e5c;
}

body.sf-funnel-cream .sf-dist-aside-h {
  color: #0d6e5c;
}

body.sf-funnel-cream .sf-stripe h2 {
  color: #141c1a;
}

body.sf-funnel-cream .sf-stripe__teaser {
  color: #4d5654;
}

body.sf-funnel-cream .sf-pricing-pointer strong {
  color: #1a2220;
}

body.sf-funnel-cream .sf-card {
  border-color: rgba(58, 52, 46, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

body.sf-funnel-cream .sf-card h3 {
  color: #1a2422;
}

body.sf-funnel-cream .sf-card p,
body.sf-funnel-cream .sf-card li {
  color: #4d5654;
}

body.sf-funnel-cream .sf-acc {
  border-color: rgba(58, 52, 46, 0.12);
  background: linear-gradient(165deg, #f3eee6 0%, #e9e2d8 52%, #e0d8cc 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 1px 2px rgba(42, 38, 34, 0.05),
    0 10px 28px rgba(42, 38, 34, 0.07);
}

body.sf-funnel-cream .sf-acc details {
  border-bottom-color: rgba(42, 38, 34, 0.08);
  background: transparent;
}

body.sf-funnel-cream .sf-acc summary {
  color: #1a2422;
}

body.sf-funnel-cream .sf-acc summary:hover {
  background: rgba(255, 255, 255, 0.22);
}

body.sf-funnel-cream .sf-acc__body {
  color: #4d5654;
}

body.sf-funnel-cream .sf-acc summary::after {
  color: #0d6e5c;
}

body.sf-funnel-cream .sf-form__check {
  color: #4d5654;
}

body.sf-funnel-cream .sf-label {
  color: #5a6864;
}

body.sf-funnel-cream .sf-hero__form-title {
  color: #0d6e5c;
}

body.sf-funnel-cream .sf-hero__member-form.sf-form {
  border-color: rgba(58, 52, 46, 0.12);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 238, 228, 0.78) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 6px 20px rgba(42, 38, 34, 0.05);
}

body.sf-funnel-cream .sf-ref-dropdown__panel {
  border-color: rgba(58, 52, 46, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 246, 240, 0.99) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85),
    0 14px 40px rgba(42, 38, 34, 0.12);
}

body.sf-funnel-cream .sf-ref-dropdown__kicker {
  color: #0d6e5c;
}

body.sf-funnel-cream .sf-ref-dropdown__title {
  color: #1a2220;
}

body.sf-funnel-cream .sf-ref-dropdown__cite {
  color: #5a6864;
}

body.sf-funnel-cream .sf-ref-dropdown__link {
  color: #0b5c4e;
}

body.sf-funnel-cream .sf-ref-dropdown__link:hover {
  color: #064136;
}

body.sf-funnel-cream .sf-pricing-lead,
body.sf-funnel-cream .sf-pricing-bands {
  color: #5a6864;
}

body.sf-funnel-cream .sf-pricing-bands strong {
  color: #1a2220;
}

body.sf-funnel-cream .sf-input {
  border-color: rgba(58, 52, 46, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: #1a2220;
}

body.sf-funnel-cream .sf-btn {
  border-color: rgba(58, 52, 46, 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: #1a2422;
}

body.sf-funnel-cream .sf-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(58, 52, 46, 0.18);
}

body.sf-funnel-cream .sf-btn--primary {
  color: #0a2f28;
  border-color: rgba(58, 52, 46, 0.14);
}

body.sf-funnel-cream .sf-btn--ghost {
  background: rgba(255, 255, 255, 0.4);
}

body.sf-funnel-cream .sf-note--info {
  color: #1e4a42;
  border-color: rgba(58, 52, 46, 0.12);
  background: rgba(255, 255, 255, 0.65);
}

body.sf-funnel-cream .sf-note--restrict {
  border-color: rgba(58, 52, 46, 0.18);
  background: linear-gradient(165deg, rgba(255, 252, 248, 0.98) 0%, rgba(248, 244, 238, 0.99) 100%);
  color: #3a3530;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 16px rgba(42, 38, 34, 0.06);
}

body.sf-funnel-cream .sf-note--restrict strong {
  color: #1c1917;
  font-weight: 600;
}

body.sf-funnel-cream .sf-foot .sf-foot__claim.sf-note--restrict {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #3a3530;
}

body.sf-funnel-cream .sf-checkout-tip {
  color: #4d5654 !important;
}

body.sf-funnel-cream .sf-email-loop {
  border-top-color: rgba(58, 52, 46, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(248, 243, 235, 0.92) 100%);
  border-radius: var(--radius-lg);
  margin-top: 28px;
  padding-top: clamp(26px, 4.5vw, 40px);
  padding-bottom: clamp(10px, 2vw, 16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 8px 28px rgba(42, 38, 34, 0.06);
}
body.sf-funnel-cream .sf-email-loop__head {
  color: #1a1816;
}
body.sf-funnel-cream .sf-email-loop__sub {
  color: #5a635f;
}
body.sf-funnel-cream .sf-email-loop__form input[type="email"] {
  border-color: rgba(58, 52, 46, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: #1a2422;
}

body.sf-funnel-cream .sf-foot {
  border-top-color: rgba(42, 38, 34, 0.08);
  box-shadow: none;
  color: #5a635f;
}

body.sf-funnel-cream .sf-foot__dock {
  background: linear-gradient(180deg, transparent 0%, rgba(253, 251, 247, 0.88) 38%, rgba(248, 243, 235, 0.97) 100%);
  border-top-color: rgba(58, 52, 46, 0.1);
  box-shadow: 0 -10px 36px rgba(42, 38, 34, 0.07);
}

body.sf-funnel-cream .sf-foot__btn {
  border-color: rgba(58, 52, 46, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: #1a2422;
}

body.sf-funnel-cream .sf-foot__btn:hover {
  border-color: rgba(58, 52, 46, 0.18);
  background: rgba(255, 255, 255, 0.95);
  color: #0a2f28;
}

body.sf-funnel-cream .sf-foot__btn--accent {
  color: #0a2f28;
}

body.sf-funnel-cream .sf-foot__meta a {
  color: #3d6b62;
}

body.sf-funnel-cream .sf-foot__meta a:hover {
  color: #0a6b59;
}

body.sf-funnel-cream .sf-foot__meta code {
  color: #3a4542;
  background: rgba(255, 255, 255, 0.55);
  padding: 2px 6px;
  border-radius: 6px;
}

body.sf-funnel-cream .sf-stripe table th {
  color: #1a2422 !important;
}

body.sf-funnel-cream .sf-stripe table td {
  color: #4d5654 !important;
}

body.sf-funnel-cream .sf-stripe table thead tr,
body.sf-funnel-cream .sf-stripe table tbody tr {
  border-bottom-color: rgba(42, 62, 58, 0.12) !important;
}

/* B2B + any page: main-column stripes (not inside hero dropdowns) */
body.sf-funnel-cream .sf-stripe:not(.sf-stripe--in-hero) {
  border-color: rgba(58, 52, 46, 0.12);
  background: linear-gradient(165deg, #f5f0e8 0%, #ebe4da 52%, #e3dbd0 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.48) inset,
    0 1px 2px rgba(42, 38, 34, 0.05),
    0 10px 28px rgba(42, 38, 34, 0.07);
}

body.sf-funnel-cream .sf-subhero h1 {
  color: #1a1816;
}

/* B2B subpage only uses `.sf-subhero`; match readable width to in-hero stripe teasers */
body.sf-funnel-cream .sf-subhero .sf-hero__eyebrow {
  max-width: min(42rem, 100%);
}

body.sf-funnel-cream .sf-subhero .sf-hero__lead {
  max-width: min(38rem, 100%);
}

body.sf-funnel-cream .sf-hero__eyebrow {
  color: #6a726f;
}

body.sf-funnel-cream .sf-hero__lead {
  color: #4d5654;
}

body.sf-funnel-cream .sf-back {
  color: #0a6b59;
}

body.sf-funnel-cream .sf-back:hover {
  color: #044a3f;
}
