/** Shopify CDN: Minification failed

Line 1610:50 Unexpected "/"

**/
/* kora-cro.css — tokens + styles ported from kora-cro.vercel.app */
/* tokens.css — design tokens extracted from Figma + brand-pack
 * Source: file 6yNF5TI3VD9Mtnv7hab9Rv, node 8010:3853
 * Verified vs business/clients/kora/brand-pack.json
 */

 :root {
  /* ── Colors ─────────────────────────────────────────────── */
  --kora-dark-green: #1E4955;      /* Figma "Dark Green" — primary brand */
  --kora-gray: #486168;             /* Figma "Gray" — supporting text */
  --kora-bg-2: #F0F0F2;             /* Figma "Bg 2" — neutral card bg */
  --kora-white: #FFFFFF;
  --kora-text: #121212;             /* near-black for body copy */
  --kora-muted: #6a6a6a;
  --kora-banner-yellow: #F5F69B;    /* top announcement bar */
  --kora-banner-dark: #121A1E;      /* dark slim bar */
  --kora-soft-mint: #E8F2EE;        /* card bg cream-mint */
  --kora-soft-blue: #DDE9EC;        /* card bg light blue */
  --kora-peach: #FBE7D2;            /* card bg peach */

  /* Section gradients (verified from screenshots) */
  --kora-grad-teal: linear-gradient(135deg, #1E4955 0%, #2D6470 45%, #3E7A6C 100%);
  --kora-grad-teal-radial: radial-gradient(120% 90% at 50% 30%, #2D6470 0%, #1E4955 60%, #1A3D49 100%);
  --kora-grad-mint: linear-gradient(180deg, #B6E5C9 0%, #C9EFDC 60%, #E2F5E8 100%);
  --kora-grad-card-teal: linear-gradient(135deg, #2A6B7A 0%, #46A189 100%);
  --kora-grad-card-deep: url(/cdn/shop/files/Frame_2147238807_227c0d98-5857-4941-aa2c-20016a81bc8a.png?v=1781845789);

  /* ── Typography ─────────────────────────────────────────── */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Urbanist", "Inter", sans-serif;

  /* Heading scale (from Figma) */
  --fs-h1: 56px;  --lh-h1: 62px;    /* Urbanist Medium */
  --fs-h2: 40px;  --lh-h2: 48px;    /* Urbanist Medium */
  --fs-h3: 32px;  --lh-h3: 42px;    /* Urbanist Medium */
  --fs-h4: 28px;  --lh-h4: 38px;    /* Urbanist Medium */
  --fs-h5: 24px;  --lh-h5: 32px;    /* Urbanist SemiBold */
  --fs-h6: 20px;  --lh-h6: 28px;    /* Urbanist SemiBold */

  /* Body scale (from Figma) */
  --fs-b1: 20px;  --lh-b1: 28px;
  --fs-b2: 18px;  --lh-b2: 28px;
  --fs-b3: 16px;  --lh-b3: 26px;
  --fs-b4: 14px;  --lh-b4: 22px;
  --fs-b6: 12px;  --lh-b6: 20px;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi: 600;
  --fw-bold: 700;

  /* ── Spacing ─────────────────────────────────────────────── */
  --gutter-x: 48px;                 /* desktop horizontal page padding */
  --content-max: 1290px;            /* aligns nav inner with content */
  --section-pad-y: 96px;            /* default vertical section padding */

  /* ── Radius / shadow ─────────────────────────────────────── */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --sh-card: 0 1px 3px rgba(18, 26, 30, 0.04), 0 8px 24px rgba(18, 26, 30, 0.06);
  --sh-card-hover: 0 4px 8px rgba(18, 26, 30, 0.05), 0 16px 40px rgba(18, 26, 30, 0.10);
  --sh-btn: 0 1px 2px rgba(18, 26, 30, 0.08), 0 4px 12px rgba(18, 26, 30, 0.12);
  --sh-btn-hover: 0 2px 4px rgba(18, 26, 30, 0.10), 0 8px 20px rgba(18, 26, 30, 0.18);
}


/* styles.css — kora MD homepage (Figma 6yNF5TI3VD9Mtnv7hab9Rv / 8010:3853)
 * Order: reset → buttons → sticky shell → sections (top-down) → responsive → motion → reduced-motion
 */

/* ─── Reset & global ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; overflow-x: clip;
  font-family: var(--font-body);
  font-size: var(--fs-b3); line-height: var(--lh-b3);
  color: var(--kora-text);
  background: var(--kora-white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: var(--fw-medium); color: var(--kora-text); }
ol, ul { list-style: none; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 18px; line-height: 28px;
  font-weight: var(--fw-regular);
  padding: 14px 24px;
  border-radius: var(--r-pill);
  text-align: center;
  transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .18s cubic-bezier(.22,1,.36,1), background .18s ease;
}
.btn--dark {
  background: #141b1d; color: #fff;
  box-shadow: inset 0 3px 11.5px rgba(255,255,255,0.28), var(--sh-btn);
}
.btn--dark:hover { transform: translateY(-2px); box-shadow: inset 0 3px 11.5px rgba(255,255,255,0.28), var(--sh-btn-hover); }
.btn--dark:active { transform: translateY(2px); }
.btn--ghost {
  background: #fff; color: #141b1d;
  border: 1px solid var(--kora-dark-green);
}
.btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--sh-btn); }
.btn--small { font-size: 14px; line-height: 20px; padding: 10px 16px; }
.btn--full { width: 100%; }

/* Pill button with right-aligned circular arrow (used in feature/product cards) */
.btn--pill-light {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 16px; line-height: 26px;
  color: var(--kora-white);
  background: #FFFFFF8F;
  border: 1px solid #FFFFFF8F;
  padding: 7px 8px 7px 18px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .18s, background .2s;
  min-width: 225px;
}
.btn--pill-light:hover { transform: translateY(-2px); background: rgba(255,255,255,1); box-shadow: var(--sh-btn-hover); }
.btn--pill-light:active { transform: translateY(1px); }
.btn__arrow {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--kora-dark-green); color: #fff;
  border-radius: 50%;
  font-size: 20px; line-height: 1;
  box-shadow: inset 0 4px 6.1px rgba(255,255,255,0.27);
  transition: transform .2s cubic-bezier(.22,1,.36,1);
}
.btn--pill-light:hover .btn__arrow { transform: translateX(2px); }

/* ─── Sticky shell ────────────────────────────────────────── */
.sticky-shell {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.topbar {
  background: #F8FFA1;
  padding: 14px 80px;
  font-size: 14px; line-height: 22px;
  color: var(--kora-dark-green);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
}
.topbar__item { white-space: nowrap; }
.topbar__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--kora-dark-green); flex: 0 0 8px;
}

.slimbar {
  background: #141b1d;
  color: #fff;
  text-align: center;
  font-size: 14px; line-height: 22px;
  padding: 14px 80px;
  letter-spacing: 0.02em;
}

.nav__toggle-input { position: absolute; left: -9999px; }

.nav {
  background: #fff;
  padding: 0;
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(calc(100% - 48px), 1290px);
  margin: 0 auto;
  padding: 20px 0;
}
.nav__burger {
  display: none;
  width: 28px; height: 22px;
  flex-direction: column; justify-content: space-between;
  cursor: pointer;
}
.nav__burger span {
  height: 2px; background: var(--kora-dark-green); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav__logo {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: 28px; line-height: 1;
  color: var(--kora-dark-green);
  letter-spacing: -0.02em;
}
.nav__logo-md { font-size: 12px; vertical-align: super; }

.nav__menu {
  display: flex; align-items: center; justify-content: center;
  gap: 32px;
  list-style: none;
}
.nav__menu a {
  font-size: 16px; line-height: 26px;
  color: #141b1d;
  position: relative;
  padding: 4px 0;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--kora-dark-green);
  transition: right .25s cubic-bezier(.22,1,.36,1);
}
.nav__menu a:hover::after { right: 0; }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__signin {
  font-size: 18px; line-height: 28px; color: var(--kora-gray);
  padding: 8px 12px;
}
.nav__signin:hover { color: var(--kora-dark-green); }
.nav__cta .btn.btn--small {
    padding: 14px 24px;
    font-size: 18px;
    line-height: 28px;
}
/* ─── Section 1 / Hero ────────────────────────────────────── */
.hero { padding: 56px 0 80px; background: #fff; }
.hero__inner {
  width: min(calc(100% - 48px), 1295px);
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 32px; align-items: center;
}
.hero__title {
  font-family: var(--font-display); font-weight: var(--fw-semi);
  font-size: 56px; line-height: 62px;
  color: #171b1c;
  text-align: center;
  max-width: 816px;
}
.hero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.hero__trust {
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
  font-size: 14px; line-height: 22px;
  color: var(--kora-dark-green);
}
.hero__trust li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px;
  line-height: 22px;
}
.hero__trust li::before {
  content: ""; width: 20px; height: 20px;
  background: var(--kora-dark-green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M18.3337 9.99984C18.3337 5.39746 14.6027 1.6665 10.0003 1.6665C5.39795 1.6665 1.66699 5.39746 1.66699 9.99984C1.66699 14.6022 5.39795 18.3332 10.0003 18.3332C14.6027 18.3332 18.3337 14.6022 18.3337 9.99984M6.66699 10.6248C6.66699 10.6248 8.00033 11.3853 8.66699 12.4998C8.66699 12.4998 10.667 8.12484 13.3337 6.6665'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M18.3337 9.99984C18.3337 5.39746 14.6027 1.6665 10.0003 1.6665C5.39795 1.6665 1.66699 5.39746 1.66699 9.99984C1.66699 14.6022 5.39795 18.3332 10.0003 18.3332C14.6027 18.3332 18.3337 14.6022 18.3337 9.99984M6.66699 10.6248C6.66699 10.6248 8.00033 11.3853 8.66699 12.4998C8.66699 12.4998 10.667 8.12484 13.3337 6.6665'/></svg>") center/contain no-repeat;
}

.hero__features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  width: 100%; max-width: 1290px;
}
.feature-card {
  position: relative; overflow: hidden;
  border-radius: 30px;
  min-height: 361px;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.feature-card__body {
    position: relative;
    z-index: 2;
    max-width: 240px;
    height: 100%;
}
.feature-card__title {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: 28px; line-height: 38px; margin-bottom: 6px;
}
.feature-card__lead { font-size: 16px; line-height: 26px; margin-bottom: 18px; }
.feature-card__product {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 313px;
    max-height: 295px;
    z-index: 1;
    filter: drop-shadow(0 24px 32px rgba(0,0,0,.18));
}
.feature-card--teal {
    background: var(--kora-grad-card-deep);
    color: #fff;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
/*.feature-card--teal .feature-card__product { transform: translateY(-50%) rotate(-13deg); }*/
/* QC 2026-06-07 (issue-01): global h1-h6 rule paints this heading #121212; force white on the dark teal card */
.feature-card--teal .feature-card__title { color: #fff; }
/* QC 2026-06-07 (issue-02): keep hero card CTAs on one line ("EXPLORE SERMORELIN" was wrapping) */
.feature-card .btn--pill-light { white-space: nowrap; font-size: 14px; gap: 10px; letter-spacing: 0.02em; }
.feature-card .btn--pill-light:hover{
  color: #215564;
}
/* QC 2026-06-07 (issue-03): tighten the empty space below the Sermorelin vial in the light card */
.feature-card--deep .feature-card__product {
    top: 60%;
    max-width: 391px;
    max-height: 368px;
    right: 0;
}
.feature-card--deep {
  background: linear-gradient(170.89deg, #DCF2F0 6.91%, #8ACDC6 102.37%);
  color: var(--kora-dark-green);
}
.feature-card--deep .feature-card__title,
.feature-card--deep .feature-card__lead{
  color: #215564;
}
.feature-card--deep .feature-card__body .btn{
   background: #FFFFFFCF;
   color: #215564;
}
.feature-card__body .btn {
    position: absolute;
    bottom: 0;
}
.hero__lineup {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 29px;
    width: 100%;
    margin-top: 8px;
}
.mini-card {
  font-size: 14px; line-height: 22px;
  color: var(--kora-dark-green);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 15px;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s;
}
.mini-card-image {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; 
    overflow: hidden;
    background: rgba(243,243,243,0.81);
    border-radius: 20px;
    padding: 16px 12px;
    transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s;
}
.mini-card-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(/cdn/shop/files/Frame_2147238814.svg?v=1781847991);
    z-index: 0;
    pointer-events: none;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
}
.mini-card img { position: relative; z-index: 1; height: 96px; width: auto; }
.mini-card span { position: relative; z-index: 1; }
.mini-card:hover .mini-card-image { transform: translateY(-4px); box-shadow: var(--sh-card-hover); }

/* ─── Section 2 / Treatment options (dark teal + woman + glass columns) ─ */
.struggle {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #276071 0%, #3E7A6C 52%, #9BD9C4 82%, #fff 100%);
  border-radius: 48px 48px 0 0;
  padding: 72px 0 80px;
  color: #fff;
}
.struggle::before {
  content: ""; position: absolute; inset: 0;
  background: var(--kora-bg-struggle) bottom/cover no-repeat;
  opacity:1; pointer-events: none;
}
.struggle__inner {
  position: relative; z-index: 2;
  width: min(calc(100% - 48px), 1280px);
  margin: 0 auto;
}
.struggle__head { text-align: center; margin-bottom: 28px; }
.struggle__title {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: 32px; line-height: 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  max-width: none; margin: 0 auto;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.struggle__num { font-weight: var(--fw-bold); }
.struggle__title-line {
  display: block; width: 56px; height: 1px;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
}
.struggle__sub {
  margin-top: 10px;
  font-size: 18px; line-height: 28px;
  font-weight: var(--fw-regular);
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}
.struggle__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(48px, 280px) minmax(280px, 1fr);
  gap: 28px 0;
  align-items: stretch;
  min-height: 560px;
  padding-bottom: 24px;
}
.treat-col--left {
  grid-column: 1;
}
.treat-col--right {
  grid-column: 3;
}
.struggle__hero {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  transform: translateX(-50%);
  width: min(42%, 520px);
  max-width: 520px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
}
.treat-col {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 28px;
  padding: 28px 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 24px 60px rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.treat-col__title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: var(--fw-semi);
  font-size: 22px; line-height: 28px;
  color: #fff;
  margin: 0 0 6px;
}
.treat-col__mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.treat-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  padding: 16px;
}
.treat-item__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.treat-item__icon svg { display: block; }
.treat-item__icon img { width: 22px; height: 22px; object-fit: contain; }
.treat-item__body h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 18px; line-height: 24px;
  color: #fff;
  margin: 0 0 4px;
}
.treat-item__body p {
  font-size: 14px; line-height: 22px;
  color: rgba(255,255,255,0.92);
  margin: 0;
}
.treat-bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  padding: 10px 10px 10px 22px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.treat-bar__copy {
  display: flex; align-items: center; gap: 12px; min-width: 0;
}
.treat-bar__icon {
  width: 28px; height: 28px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.treat-bar__text,
.treat-bar__text p {
  font-size: 14px; line-height: 22px;
  color: #fff;
  margin: 0;
}
.treat-bar__btn {
  flex-shrink: 0;
  text-transform: none;
  letter-spacing: 0;
  color: #215564;
  background: #fff;
  min-width: 240px;
}
.glass-card {
    position: relative;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)), linear-gradient(180deg, rgba(0, 0, 0, 0.124) 0%, rgba(255, 255, 255, 0.064) 100%);
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 24px;
    color: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 32px 85px rgba(255,255,255,0.18);
    display: flex; flex-direction: column;
}
.oneprotocol .glass-card {
    position: relative;
    color: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid #FFFFFF;
    box-shadow: inset 0px 32px 85.3px rgba(255, 255, 255, 0.25);
}
.glass-card h4 {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}
.glass-card>p {
    font-size: 16px;
    line-height: 26px;
    margin: 8px 0;
    max-width: 550px;
    min-height: 52px;
}
.glass-card__vial {
  align-self: center;
  height: 200px; width: auto; margin: 12px 0;
}
.glass-card__price {
    font-family: var(--font-display);
    font-weight: var(--fw-medium);
    font-size: 32px!important;
    line-height: 42px!important;
    margin: 12px 0!important;
    max-width: 100% !important;
}
.glass-card .btn{
  color: #215564;
}
/* ─── Section 3 / Protocol (white, woman flexing) ────────── */
.protocol { padding: 96px 0 40px; background: #fff; }
.protocol__inner {
    width: min(calc(100% - 48px),1295px);
    margin: 0 auto;
    display: flex;
    gap: 85px;
    align-items: center;
}
.protocol__left {
    min-width: 455px;
    max-width: 455px;
}
.protocol__title {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 40px; line-height: 48px;
  color: #141b1d;
  max-width: 384px; margin-bottom: 24px;
}
.protocol__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.protocol__list li {
  display: grid; grid-template-columns: 24px 1fr; gap: 8px;
  font-size: 16px; line-height: 26px;
  color: var(--kora-dark-green);
}
.protocol__list .check {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}
.protocol__footnote { font-size: 12px; line-height: 20px; color: var(--kora-muted); margin-top: 16px; max-width: 440px; }
.protocol__left .btn{
  border: 1px solid #C6D8DD;
  color:#1E4955;
  margin-bottom:12px;
}
.protocol__left p{
  color: #1E4955;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;

}
.protocol__right {
  position: relative;
  background-color: #C9EFDC;
  background-image: linear-gradient(180deg, #B6E5C9 0%, #C9EFDC 60%, #E2F5E8 100%);
  border-radius: 24px;
  overflow: hidden;
  height: 644px;
  min-height: 644px;
  width: 100%;
  display: flex; align-items: flex-end; justify-content: center;
}
/* NOTE: Figma exported the section's gradient panel under "protocol-woman.png"
 * — the actual foreground portrait lives on a separate child node we did not
 * crawl. Hide the broken raster and rely on the gradient + stat widget. */
.protocol__photo {
    max-width: 90%;
    margin: 0 auto;
}
.stat-widget {
  position: absolute; right: 24px; bottom: 24px;
}
.stat-widget__label {
  font-size: 11px; line-height: 16px;
  color: var(--kora-muted);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.stat-widget__value {
  font-family: var(--font-display); font-weight: var(--fw-semi);
  font-size: 32px; line-height: 1.05;
  color: #141b1d;
  margin: 4px 0 8px;
}
.stat-widget__value span { font-size: 16px; color: var(--kora-muted); font-weight: var(--fw-regular); }
.stat-widget__chart { width: 100%; height: 36px; }

/* ─── Section 4 / Find your protocol ─────────────────────── */
.findprotocol { padding: 40px 0 80px; background: #fff; }
.findprotocol__inner {
  width: min(calc(100% - 48px), 1290px);
  margin: 0 auto;
}
.findprotocol__head {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    justify-content: space-between;
}
.findprotocol__head h2 {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 40px; line-height: 48px; color: #141b1d;
}
.findprotocol__head p {
    font-size: 18px;
    line-height: 28px;
    color: var(--kora-gray);
    max-width: 490px;
    float: right;
}
.findprotocol__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.product-card {
    background: #d6d2d230;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    transition: transform .25s cubic-bezier(.22,1,.36,1),box-shadow .25s;
    background: linear-gradient(170.89deg, #DCF2F0 6.91%, #E4F3F1 102.37%);
    padding: 34px 4px 12px;
    gap: 12px;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--sh-card-hover); }
.product-card__image {
    position: relative;
    background: linear-gradient(166.7deg,#dcf2f0 6.9%,#e4f3f1 102.4%);
    border-radius: 20px;
    padding-left: 12px;
    padding-right: 12px;
}
.product-card__image img {
    max-height: 240px;
    min-height: 240px;
    max-width: 100%;
    width: auto;
    transition: transform .35s cubic-bezier(.22,1,.36,1);
    object-fit: contain;
    margin: 0 auto;
}
.product-card:hover .product-card__image img { transform: scale(1.04); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  color: var(--kora-dark-green);
  font-size: 12px; line-height: 20px;
  padding: 2px 10px;
  border-radius: 40px;
  letter-spacing: 0.06em;
}
.badge__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--kora-dark-green);
}
.product-card__body {
    padding: 0 12px 70px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 100%;
    position: relative;
}
.product-card__body .btn {
    color: #1E4955;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    right: 0;
    left: 0;
    max-width: calc(100% - 15px);
}
.product-card__body h4 {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 28px; line-height: 38px; color: #141b1d;
}
.product-card__body>p {
    font-size: 16px;
    line-height: 26px;
    color: #141B1D;
}
.product-card__price {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: 28px !important;
    line-height: 38px !important;
    color: #141b1d !important;
}


/* ─── Section 5 / One protocol one clinician one flat price ── */
.oneprotocol {
  position: relative; overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #0B4B61 0%, #1E4955 45%, #225865 100%);
}
.oneprotocol::before {
  content: ""; position: absolute; inset: 0;
  background: var(--kora-bg-oneprotocol) center/cover no-repeat;
  opacity: 1; pointer-events: none;
  mix-blend-mode: overlay;
}
/*.oneprotocol::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(11, 75, 97, 0.55);
  pointer-events: none;
}*/
.oneprotocol__inner {
  position: relative; z-index: 2;
  width: min(calc(100% - 48px), 1290px);
  margin: 0 auto;
}
.oneprotocol__title {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 40px; line-height: 48px;
  color: #fff;
  text-align: center;
  max-width: 520px; margin: 0 auto 48px;
}
.oneprotocol__cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.glass-card--lg {
  padding: 40px;
  border-radius: 34px;
  min-height: 434px;
}
.glass-card--lg h3 { font-size: 28px; line-height: 38px; color: #fff; margin-bottom: 4px; }
.glass-card__sub, .glass-card__cap {
    font-size: 14px !important;
    line-height: 22px !important;
    color: #ffffffd9;
    margin-bottom: 24px!important;
    margin-top: 0!important;
}
.inner_box {
    margin: 0 auto;
    max-width: 350px;
    text-align: center;
}
.glass-card .inner_box .btn {
    color: #1E4955;
    font-size: 16px !important;
    text-transform: capitalize;
    padding: 8px 8px 8px 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid #FFFFFF;
}
.glass-card__kicker {
    font-family: var(--font-display);
    font-weight: var(--fw-semi);
    font-size: 24px !important;
    line-height: 32px !important;
    color: #fff;
    text-align: center;
    margin-top: 0px !important;
    margin-bottom: 6px;
}
.glass-card__big {
    font-family: var(--font-display) !important;
    font-weight: var(--fw-medium) !important;
    font-size: 56px !important;
    line-height: 62px !important;
    color: #fff !important;
    margin: 0px 0px 12px !important;
    letter-spacing: 0em !important;
    white-space: nowrap !important;
    text-align: center;
}
.glass-card__foot {
    font-size: 12px !important;
    line-height: 20px !important;
    color: #ffffffbf;
    margin-top: 0px !important;
}
.formfield { margin-bottom: 14px; }
.oneprotocol__cards .formfield label{
  display: none;
}
.formfield label {
  display: block; font-size: 14px; line-height: 22px;
  color: rgba(255,255,255,0.85); margin-bottom: 6px;
}
.formfield input {
  width: 100%;
  background: rgba(255,255,255,0.15);
  border: 1px solid #BCC7CA;
  border-radius: var(--r-pill);
  color: #fff;
  padding: 14px 20px;
  box-shadow: inset 0 4px 6.9px rgba(255,255,255,0.11);
}
.formfield input::placeholder { color: rgba(255,255,255,0.55); }
.formfield input:focus { outline: 2px solid rgba(255,255,255,0.6); outline-offset: 1px; }

.barchart {
    height: 100px;
    margin: 20px 0 -34px;
    display: flex;
    align-items: flex-end;
    gap: 7px;
    background: repeating-linear-gradient(to right,#82C8C7 0 6px,transparent 6px 13px,#82C8C7 13px 19px,transparent 19px 26px,#77E3A0 26px 32px,transparent 32px 39px);
    background-size: 100% 65%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.barchart::after {
  /* Taller bars overlay to create the height variation pattern */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 100%;
  background:
    repeating-linear-gradient(
      to right,
      transparent 0 26px,
      #77E3A0 26px 32px,
      transparent 32px 39px
    );
}

/* ─── Section 6 / Feeling good testimonials + NAD+ ──────── */
.feelgood { padding: 80px 0 40px; background: #fff; }
.feelgood__inner {
  width: min(calc(100% - 48px), 1290px);
  margin: 0 auto;
}
.feelgood__head { text-align: center; margin-bottom: 56px; }
.feelgood__head h2 {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 40px; line-height: 48px; color: #141b1d !important;
  max-width: 540px; margin: 0 auto 16px;
}
.feelgood__head p { font-size: 16px; line-height: 26px; color: #141b1d; }
.feelgood__row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 70px;
}
.testimonial {
  background: #F9FBFA;
  border: 1px solid #F0F0F2;
  border-radius: 22px;
  padding: 4px;
  display: flex; flex-direction: column;
  box-shadow: inset 0 4px 26.7px rgba(226,247,250,0.84);
  transition: transform .25s, box-shadow .25s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--sh-card-hover); }
.testimonial > img {
  border-radius: 20px;
  height: 239px; width: 100%; object-fit: cover; object-position: center;
}
.testimonial__metric, .testimonial__weeks, .testimonial__name, .testimonial blockquote, .testimonial__verify {
  padding: 0 16px;
}
.testimonial__metric {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 32px; line-height: 42px; color: #141b1d;
  padding-top: 12px;
}
.testimonial__metric small { font-family: var(--font-body); font-size: 16px; color: var(--kora-gray); font-weight: var(--fw-regular); }
.testimonial__weeks {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.testimonial__weeks span{
  background: #E0F2F2; color: var(--kora-dark-green);
  font-size: 12px; line-height: 20px;
  padding: 2px 10px; border-radius: 40px;
}
.testimonial__name {
    font-family: var(--font-display);
    font-weight: var(--fw-semi);
    font-size: 24px;
    line-height: 32px;
    color: #141b1d;
    margin-top: 4px;
}
.testimonial blockquote {
  font-style: normal;
  font-size: 16px; line-height: 26px; color: var(--kora-dark-green);
  margin: 12px 0px;
}
.badge--verified {
  background: #E0F2F2; color: var(--kora-dark-green);
  font-size: 14px; line-height: 22px;
  padding: 4px 12px; border-radius: 40px;
  position: static;
  display: inline-flex;
}
.testimonial .badge--verified {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.testimonial__verify { padding-bottom: 16px; }

.feelgood__nad {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.nad-card {
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}
.head_block {
    width: 100%;
    text-align: center;
}
.nad-card__body { align-self: start; }
.nad-card h3 {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 12px;
}
.nad-card .head_block p {
    font-family: var(--font-body);
    font-weight: var(--fw-bold);
    font-size: 16px;
    line-height: 26px;
}
.image_block {
    background: linear-gradient(170.89deg,#f8fcfc 6.91%,#c1e3df 102.37%);
    width: 100%;
    border-radius: 40px;
    padding: 40px;
    text-align: center;
    position: relative;
    min-height: 501px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.image_block .btn {
    color: #1e4955!important;
    text-transform: capitalize!important;
    padding: 8px 18px!important;
    position: relative;
    background: rgba(255, 255, 255, 0.61);
    backdrop-filter: blur(20px);
}
.image_block .btn:hover {
    background: #ffffff;
}
.nad-card img {
    max-height: 360px;
    width: auto;
    max-width: 100%;
    justify-self: center;
    align-self: center;
    margin-bottom: -58px;
    filter: drop-shadow(0 24px 28px rgba(0,0,0,.18));
}
.nad-card--dark {
  background: var(--kora-grad-card-deep);
  color: #fff;
}
.nad-card--dark > p { color: rgba(255,255,255,0.85); }
.nad-card--light {
  background: linear-gradient(170.89deg, #DCF2F0 6.91%, #8ACDC6 102.37%);
  color: var(--kora-dark-green);
}
.nad-card--light img { transform: rotate(-7deg); }

/* ─── Section 7 / Completely online + How Kora works ─────── */
.online { padding: 40px 0; background: #fff; }
.online__inner {
  width: min(calc(100% - 48px), 1290px);
  margin: 0 auto;
}
.online__head { text-align: center; margin-bottom: 40px; }
.online__head h2 {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 40px; line-height: 48px; color: #141b1d;
  max-width: 680px; margin: 0 auto 12px;
}
.online__head p { font-size: 16px; line-height: 26px; color: var(--kora-dark-green); }

.online__features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 64px;
}
.online__feature {
    background: #fff;
    border: 1px solid #DCF2F0;
    border-radius: 24px;
    padding: 0px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 24px;
    transition: transform .25s,box-shadow .25s;
}
.online__feature:hover { transform: translateY(-4px); box-shadow: var(--sh-card-hover); }
.online__feature_image{
  display: block;
  height: 180px; 
  border-radius: 24px;
  background: linear-gradient(170.89deg, #DBF4F2 6.91%, #FBFFFE 102.37%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.online__feature img { 
  width: 70px; 
  height: 70px;
  object-fit: contain;
}
.online__feature p {
    font-family: var(--font-display);
    font-weight: var(--fw-semi);
    font-size: 24px;
    line-height: 32px;
    color: var(--kora-dark-green);
    padding: 20px 20px 0px;
}

.howkora {
  display: grid; grid-template-columns: 1fr 1fr; gap: 45px;
  align-items: start;
}
.howkora__steps h3 {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 40px; line-height: 48px; color: #141b1d; margin-bottom: 32px;
}
.howkora__steps ol { display: flex; flex-direction: column; gap: 20px; counter-reset: step; }
.howkora__steps li {
  position: relative;
  padding: 0 0 20px 60px;
  border-bottom: 1px solid rgba(30,73,84,0.18);
  counter-increment: step;
  color: var(--kora-dark-green);
  font-size: 16px; line-height: 26px;
}
.howkora__steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 5px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(170deg, #DCF2F0 0%, #8ACDC6 100%);
  color: var(--kora-dark-green);
  font-family: var(--font-display); font-weight: var(--fw-semi);
  font-size: 20px;
  display: inline-flex; align-items: center; justify-content: center;
}
.howkora__steps li:last-child { border-bottom: none;padding-bottom:0px; }
.howkora__steps strong {
  display: block;
  font-family: var(--font-display); font-weight: var(--fw-semi);
  font-size: 20px; line-height: 28px; color: #141b1d;
  margin: 6px 0 6px;
}
.howkora__photo {
  width: 100%;
  height: 546px;
  object-fit: cover; object-position: center;
  border-radius: 24px;
  background: #F2F7FB;
  align-self: start;
}

/* ─── Section 8 / What patients report (dark teal) ────────── */
.report {
  padding: 40px 0;
  background: #fff;
}
.report__inner {
  position: relative;
  width: min(calc(100% - 48px), 1290px);
  margin: 0 auto;
  background: linear-gradient(99.74deg, #215564 2.57%, #256C6C 41.03%, #41C6A1 100%);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
}
.report__inner-row{
  display: grid; grid-template-columns: 344px 1fr;
  gap: 40px;
  align-items: start;
}
.report_image {
    max-height: 344px;
    min-width: 344px;
    max-width: 344px;
    overflow: hidden;
    border-radius: 20px;
}
.report__inner-row img.report__vial {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.report__body { display: flex; flex-direction: column; gap: 16px; }
.report h2 {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 40px; line-height: 48px; color: #fff;
}
.report__sub { font-size: 18px; line-height: 28px; color: rgba(255,255,255,0.95); max-width: 570px; }
.report__stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 24px;
}
.stat__big {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 56px; line-height: 62px; color: #fff;
}
.stat p:last-child { font-size: 14px; line-height: 22px; color: rgba(255,255,255,0.95); margin-top: 4px; }

.report__pills {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 120px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 3px solid rgb(255 255 255 / 8%);
    overflow: hidden;
}
.pill {
  height: 48px; padding: 7px 24px; border-radius: 50px;
  background: rgba(255,255,255,0.16);
  border: 1px solid #DCF2F0;
  color: #fff;
  font-size: 16px; line-height: 26px;
  cursor: pointer; transition: background .2s;
}
.pill:hover { background: rgba(255,255,255,0.28); }
.pill.is-active {
  background: #8EF6B6; color: var(--kora-dark-green);
  border-color: transparent;
}
.report__nav {
    margin-left: auto;
    display: flex;
    gap: 12px;
    position: absolute;
    right: 40px;
}
.nav-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: transform .2s;
}
.nav-arrow:hover { transform: scale(1.05); }
.nav-arrow--prev { background: linear-gradient(170deg, #DCF2F0 0%, #8ACDC6 100%); color: var(--kora-dark-green); }
.nav-arrow--next { background: #1E4955; color: #fff; }
.nav-arrow--next svg {
    margin-left: 5px;
}

.report .report__pills{
  display:flex;
  align-items:center;
  gap:16px;
}
.report .report__track{
  display:flex;
  align-items:center;
  gap:12px;
  flex:1 1 auto;
  min-width:0;                 /* lets it shrink so arrows stay visible */
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;        /* Firefox */
  -ms-overflow-style:none;     /* IE/Edge */
}
.report .report__track::-webkit-scrollbar{display:none;} /* Chrome/Safari */
.report .report__track .pill{
  flex:0 0 auto;               /* stop pills from squashing */
  white-space:nowrap;
}
.report .report__nav{
  display:flex;
  gap:8px;
  flex:0 0 auto;               /* arrows never shrink */
}
.report .nav-arrow[disabled]{opacity:.35;cursor:default;}


/* ─── Section 9 / Matters / FAQ / Modern life / Protocols ── */
.matters { padding: 40px 0 80px; background: #fff; }
.matters__inner {
  width: min(calc(100% - 48px), 1290px);
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}
.matters__head {
    text-align: center;
    max-width: 828px;
    margin: 0 auto;
}
.matters__head h2 {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 40px; line-height: 48px; color: #141b1d;
  max-width: 432px; margin:0 auto 16px;
  text-align: center;
}
.matters__head p { font-size: 16px; line-height: 26px; color: var(--kora-dark-green); }

.matters__icons {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.iconpill {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    transition: transform .25s,box-shadow .25s;
    box-shadow: 2px 4px 12px 0px #00000014;
}
.iconpill:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.10); }
.iconpill img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.iconpill span {
  font-size: 14px; line-height: 22px;
  color: var(--kora-dark-green);
  text-align: center;
}

.faq {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 856px;
  margin: 0 auto; width: 100%;
}
.faq details {
    background: #fff;
    border: 1px solid #DCF2F0;
    border-radius: 14px;
    padding: 20px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-display); font-weight: var(--fw-semi);
  font-size: 24px; line-height: 32px; color: var(--kora-dark-green);
  padding: 0px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after {
    content: "+";
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(157.56deg, #215564 14.61%, #256C6C 58.48%, #499882 92.62%);
    color: var(--kora-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 400;
    flex: 0 0 36px;
    transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq p { margin-top: 12px; font-size: 14px; line-height: 22px; color: var(--kora-dark-green); }

.matters__cta {
    text-align: center;
    max-width: 650px;
    margin: 40px auto 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.matters__cta h2 {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 40px; line-height: 48px; color: #141b1d;
}
.matters__cta p { font-size: 16px; line-height: 26px; color: var(--kora-dark-green); }

.protocols-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.protocol-portrait {
  background: linear-gradient(162.84deg, #F4F9F9 57.29%, #8ACDC6 130.06%);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  gap: 16px;
}
.protocol-portrait:hover { transform: translateY(-6px); box-shadow: var(--sh-card-hover); }
.protocol-portrait img {
  width: 100%; height: 283px; object-fit: cover; object-position: center top;
  background: #E1F3F3;
}
.protocol-portrait > div { padding: 10px 20px 20px; display: flex; flex-direction: column; gap: 2px; }
.protocol-portrait .badge {
    position: static;
    background: #ffffff94;
    padding: 2px 10px;
    display: inline-flex;
    width: max-content;
}
.protocol-portrait h4 { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: 28px; line-height: 38px; color: #141b1d; }
.protocol-portrait p { font-size: 16px; line-height: 26px; color: var(--kora-dark-green); }
.protocol-portrait .btn--pill-light {
    background: #ffffff8c;
    color: #1E4955;
    margin-top: 22px;
}

/* ─── Section 10 / Footer ─────────────────────────────────── */
.footer {
    padding: 80px 40px;
    color: #fff;
    background: linear-gradient(157.56deg, #215564 14.61%, #256C6C 58.48%, #499882 92.62%);
}
.footer__inner {
  position: relative;
  background: rgba(30,71,82,0.49);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border-radius: 30px;
  padding:40px 60px;
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 56px;
}
.footer__watermark {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    pointer-events: none;
}
.footer__left {
  display: flex; flex-direction: column;
  position: relative; z-index: 1;
}
.footer__logo {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: 32px;
    color: #fff;
    margin-bottom: 4px;
}
.footer__logo img{
  width: 100%;
  max-width: 125px;
}
.footer__logo sup { font-size: 14px; vertical-align: super; }
.footer__tag { font-size: 14px; line-height: 22px; color: #fff; max-width: 320px; }

.footer__signup {
  display: flex; align-items: center;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 7px 9px 7px 21px;
  max-width: 410px;
  gap: 8px;
  margin-top: 32px;
}
.footer__signup input {
  flex: 1; border: none; outline: none;
  font-size: 16px; line-height: 26px; color: #141b1d;
  background: transparent;
}
.footer__signup input::placeholder { color: rgba(72,97,104,0.73); }
.footer__signup button {
    padding: 11px 19px;
    font-weight: var(--fw-medium);
    background: #215564;
    box-shadow: none;
}

.footer__social { display: flex; gap: 24px; }
.footer__social a {
    width: 25px;
    height: 25px;
    display: block;
    transition: transform .18s cubic-bezier(.22,1,.36,1),box-shadow .18s cubic-bezier(.22,1,.36,1),background .18s ease;
}
.footer__social a:hover{
    transform: translateY(-2px);
    box-shadow: var(--sh-btn-hover);
}
.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative; z-index: 1;
}
.footer__cols h5 {
    font-family: var(--font-display);
    font-weight: var(--fw-semi);
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer__cols a {
  display: block; padding: 3px 0;
  font-size: 14px; line-height: 22px; color: #fff;
}
.footer__cols a:hover { text-decoration: underline; }

.footer__badges {
    grid-column: 1 / -1;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.footer__badges_inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}
.footer__badges_inner img { max-height: 90px; width: auto;object-fit:contain; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .topbar, .slimbar { padding-left: 24px; padding-right: 24px; font-size: 12px; }
  .topbar__inner { gap: 8px; }
  .nav__inner { width: calc(100% - 32px); grid-template-columns: auto 1fr auto; gap: 16px; padding: 16px 0; }
  .nav__burger { display: flex; }
  .nav__menu {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff;
    flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  .nav__menu li { width: 100%; }
  .nav__menu a { display: block; padding: 18px 24px; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav__toggle-input:checked ~ .nav .nav__menu { max-height: 80vh; }
  .nav__cta { gap: 8px; }
  .nav__signin { display: none; }

  .hero { padding-top: 40px; }
  .hero__title { font-size: 40px; line-height: 48px; }
  .hero__features { grid-template-columns: 1fr; }
  .hero__lineup { grid-template-columns: repeat(3, 1fr); }

  .struggle { padding: 64px 0 56px; }
  .struggle__title { font-size: 26px; line-height: 32px; }
  .struggle__title-line { width: 36px; }
  .struggle__stage {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
  /* .struggle__hero {
    position: relative;
    left: auto;
    transform: none;
    width: min(70%, 320px);
    margin: 0 auto 8px;
  } */
  .treat-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
    padding: 16px;
    gap: 14px;
  }
  .treat-bar__btn { width: 100%; min-width: 0; } */

  .protocol__inner { grid-template-columns: 1fr; gap: 32px; }
  .findprotocol__head { grid-template-columns: 1fr; gap: 16px; }
  .findprotocol__cards { grid-template-columns: 1fr 1fr; }
  .oneprotocol__cards { grid-template-columns: 1fr; }
  .feelgood__row { grid-template-columns: 1fr; }
  .feelgood__nad { grid-template-columns: 1fr; }
  .online__features { grid-template-columns: repeat(2, 1fr); }
  .howkora { grid-template-columns: 1fr; }
  .report__inner-row { grid-template-columns: 1fr; }
  .report__vial { width: 100%; height: auto; max-width: 280px; margin: 0 auto; }
  .matters__icons { grid-template-columns: repeat(3, 1fr); }
  .protocols-row { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__watermark { font-size: 180px; }
  .footer__badges { justify-content: center; }
}

@media (max-width: 640px) {
  .topbar { padding: 10px 16px; }
  .topbar__inner { font-size: 11px; }
  .topbar__dot { display: none; }
  .slimbar { font-size: 11px; padding: 10px 16px; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .hero { padding: 24px 0 56px; }
  .hero__title { font-size: 32px; line-height: 38px; }
  .hero__inner { gap: 24px; }
  .hero__lineup { grid-template-columns: 1fr 1fr; }
  .hero__trust { font-size: 12px; gap: 12px; }
  .struggle--treat .struggle__title { font-size: 20px; line-height: 26px; letter-spacing: 0.04em; }
  .struggle__title, .protocol__title, .findprotocol__head h2, .oneprotocol__title,
  .feelgood__head h2, .online__head h2, .report h2, .matters__head h2, .howkora__steps h3,
  .matters__cta h2 { font-size: 30px; line-height: 36px; }
  .glass-card--lg { padding: 24px; }
  .glass-card__big { font-size: 44px; line-height: 50px; }
  .stat__big { font-size: 42px; line-height: 48px; }
  .findprotocol__cards { grid-template-columns: 1fr; }
  .online__features { grid-template-columns: 1fr; }
  .matters__icons { grid-template-columns: 1fr 1fr; }
  .protocols-row { grid-template-columns: 1fr; }
  .nad-card { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .footer__cols { grid-template-columns: 1fr; gap: 24px; }
  .footer__watermark { font-size: 120px; bottom: 0; }
  .footer__badges { flex-direction: column; }
}

/* ─── Motion (reveals + stagger) ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.22,1,.36,1), transform 800ms cubic-bezier(.22,1,.36,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal--scale { transform: translateY(28px) scale(0.97); }
.reveal.is-visible { opacity: 1; transform: none; }
.hero__title.reveal { transition-duration: 1100ms; }

/* ─── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.nav__logo-img{height:30px;width:auto;display:block}

#header-group{position:sticky;top:0;z-index:1000;}
.sticky-shell{position:static;}
