/* =============================================================
   LifePulse — site stylesheet
   Brand tokens + site chrome (nav, hero, sections, components)
   ============================================================= */

/* --- Stem typeface ----------------------------------------------------- */
@font-face { font-family: "Stem"; font-style: normal; font-weight: 100;
  src: url("../fonts/Stem-Hairline.otf") format("opentype"); font-display: swap; }
@font-face { font-family: "Stem"; font-style: normal; font-weight: 200;
  src: url("../fonts/Stem-Thin.otf") format("opentype"); font-display: swap; }
@font-face { font-family: "Stem"; font-style: normal; font-weight: 250;
  src: url("../fonts/Stem-ExtraLight.otf") format("opentype"); font-display: swap; }
@font-face { font-family: "Stem"; font-style: italic; font-weight: 250;
  src: url("../fonts/Stem-ExtraLightItalic.otf") format("opentype"); font-display: swap; }
@font-face { font-family: "Stem"; font-style: normal; font-weight: 300;
  src: url("../fonts/Stem-Light.otf") format("opentype"); font-display: swap; }
@font-face { font-family: "Stem"; font-style: italic; font-weight: 300;
  src: url("../fonts/Stem-LightItalic.otf") format("opentype"); font-display: swap; }
@font-face { font-family: "Stem"; font-style: normal; font-weight: 400;
  src: url("../fonts/Stem-Regular.otf") format("opentype"); font-display: swap; }
@font-face { font-family: "Stem"; font-style: italic; font-weight: 400;
  src: url("../fonts/Stem-Italic.otf") format("opentype"); font-display: swap; }
@font-face { font-family: "Stem"; font-style: normal; font-weight: 500;
  src: url("../fonts/Stem-Medium.otf") format("opentype"); font-display: swap; }
@font-face { font-family: "Stem"; font-style: italic; font-weight: 500;
  src: url("../fonts/Stem-MediumItalic.otf") format("opentype"); font-display: swap; }
@font-face { font-family: "Stem"; font-style: normal; font-weight: 700;
  src: url("../fonts/Stem-Bold.otf") format("opentype"); font-display: swap; }
@font-face { font-family: "Stem"; font-style: italic; font-weight: 700;
  src: url("../fonts/Stem-BoldItalic.otf") format("opentype"); font-display: swap; }

:root {
  /* brand */
  --lp-primary: #2D3F4F;
  --lp-primary-700: #243343;
  --lp-primary-800: #1B2630;
  --lp-primary-900: #131C24;
  --lp-primary-300: #6B7C8C;
  --lp-primary-200: #A7B3BD;
  --lp-primary-100: #D5DBE0;
  --lp-primary-050: #ECEFF2;

  --lp-secondary: #E63946;
  --lp-secondary-700: #C42936;
  --lp-secondary-800: #A11D29;
  --lp-secondary-300: #F47683;
  --lp-secondary-200: #F8A7B0;
  --lp-secondary-100: #FCD6DA;
  --lp-secondary-050: #FDEAEC;

  --lp-bg: #F7F8FA;
  --lp-bg-1: #FFFFFF;
  --lp-bg-2: #F7F8FA;
  --lp-bg-3: #ECEFF2;
  --lp-bg-dark: #2D3F4F;
  --lp-bg-darker: #1B2630;

  --lp-fg-1: #1B2630;
  --lp-fg-2: #4A5763;
  --lp-fg-3: #7C8893;
  --lp-fg-4: #A7B3BD;
  --lp-fg-on-dark: #FFFFFF;
  --lp-fg-on-dark-2: #C5CDD5;

  --lp-border: #E3E7EB;
  --lp-border-strong: #C7CFD6;
  --lp-divider: #ECEFF2;

  --lp-success: #2BB673;
  --lp-warning: #F4A52A;
  --lp-danger: #E63946;
  --lp-info: #3A86FF;

  --lp-font-sans: "Stem", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --lp-font-mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;

  --lp-shadow-1: 0 1px 2px rgba(27,38,48,0.06), 0 1px 1px rgba(27,38,48,0.04);
  --lp-shadow-2: 0 4px 12px rgba(27,38,48,0.08), 0 1px 2px rgba(27,38,48,0.04);
  --lp-shadow-3: 0 10px 24px rgba(27,38,48,0.10), 0 2px 6px rgba(27,38,48,0.05);
  --lp-shadow-4: 0 20px 48px rgba(27,38,48,0.14), 0 4px 12px rgba(27,38,48,0.06);
  --lp-shadow-red: 0 8px 24px rgba(230,57,70,0.28);
  --lp-shadow-navy: 0 8px 24px rgba(45,63,79,0.28);
  --lp-ring-focus: 0 0 0 3px rgba(230,57,70,0.30);

  --lp-radius-sm: 8px;
  --lp-radius-md: 12px;
  --lp-radius-lg: 16px;
  --lp-radius-xl: 24px;
  --lp-radius-2xl: 32px;
  --lp-radius-pill: 999px;

  --lp-ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --lp-container: 1240px;
  --lp-gutter: 24px;
}

/* --- base reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { font-family: var(--lp-font-sans); color: var(--lp-fg-1); background: var(--lp-bg); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body { margin: 0; line-height: 1.5; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
::selection { background: var(--lp-secondary); color: #fff; }

/* --- layout primitives --- */
.lp-wrap { max-width: var(--lp-container); margin: 0 auto; padding: 0 var(--lp-gutter); }
.lp-wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 var(--lp-gutter); }

.lp-section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.lp-section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.lp-section--dark { background: var(--lp-bg-dark); color: var(--lp-fg-on-dark); }
.lp-section--darker { background: var(--lp-bg-darker); color: var(--lp-fg-on-dark); }
.lp-section--alt { background: var(--lp-bg-3); }
.lp-section--soft { background: #F2F4F7; }
.lp-section--red { background: var(--lp-secondary); color: #fff; }

/* eyebrow / overline */
.lp-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lp-secondary); }
.lp-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--lp-secondary); }
.lp-eyebrow--on-dark { color: #FF6B76; }
.lp-eyebrow--center { justify-content: center; }

/* type display sizes — fluid */
.lp-display { font-weight: 700; font-size: clamp(40px, 6.5vw, 84px); line-height: 1.02; letter-spacing: -0.025em; }
.lp-display-2 { font-weight: 700; font-size: clamp(32px, 5vw, 64px); line-height: 1.04; letter-spacing: -0.022em; }
.lp-h1 { font-weight: 700; font-size: clamp(32px, 4.5vw, 56px); line-height: 1.06; letter-spacing: -0.02em; }
.lp-h2 { font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; letter-spacing: -0.018em; }
.lp-h3 { font-weight: 600; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.18; letter-spacing: -0.012em; }
.lp-h4 { font-weight: 600; font-size: 20px; line-height: 1.25; }
.lp-lead { font-weight: 400; font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; color: var(--lp-fg-2); }
.lp-body { font-size: 16px; line-height: 1.6; color: var(--lp-fg-2); }
.lp-caption { font-size: 13px; line-height: 1.5; color: var(--lp-fg-3); }

.lp-mono { font-family: var(--lp-font-mono); letter-spacing: 0; }

.lp-text-red { color: var(--lp-secondary); }
.lp-text-navy { color: var(--lp-primary); }
.lp-text-muted { color: var(--lp-fg-3); }
.lp-text-balance { text-wrap: balance; }
.lp-text-pretty { text-wrap: pretty; }

/* on dark */
.lp-section--dark .lp-body, .lp-section--darker .lp-body { color: var(--lp-fg-on-dark-2); }
.lp-section--dark .lp-lead, .lp-section--darker .lp-lead { color: var(--lp-fg-on-dark-2); }
.lp-section--dark .lp-text-muted, .lp-section--darker .lp-text-muted { color: #8C96A1; }

/* --- buttons --- */
.lp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; font-weight: 500; font-size: 15px; border-radius: var(--lp-radius-pill); transition: all 220ms var(--lp-ease-out); white-space: nowrap; line-height: 1; }
.lp-btn--primary { background: var(--lp-secondary); color: #fff; box-shadow: var(--lp-shadow-red); }
.lp-btn--primary:hover { background: var(--lp-secondary-700); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(230,57,70,0.36); }
.lp-btn--dark { background: var(--lp-primary); color: #fff; }
.lp-btn--dark:hover { background: var(--lp-primary-800); transform: translateY(-1px); }
.lp-btn--ghost { background: transparent; color: var(--lp-fg-1); border: 1px solid var(--lp-border-strong); }
.lp-btn--ghost:hover { border-color: var(--lp-primary); background: var(--lp-bg-3); }
.lp-btn--ghost-on-dark { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.32); }
.lp-btn--ghost-on-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.lp-btn--link { padding: 0; background: none; color: var(--lp-secondary); font-weight: 500; }
.lp-btn--link:hover { color: var(--lp-secondary-700); gap: 12px; }
.lp-btn--lg { padding: 18px 28px; font-size: 16px; }
.lp-btn .lp-arrow { transition: transform 220ms var(--lp-ease-out); }
.lp-btn:hover .lp-arrow { transform: translateX(2px); }

/* --- nav --- */
.lp-nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.86); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid var(--lp-border); }
.lp-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: var(--lp-container); margin: 0 auto; padding: 0 var(--lp-gutter); }
.lp-nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.lp-nav__brand-mark { width: 32px; height: 32px; }
.lp-nav__brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.lp-nav__brand-word { display: inline-flex; }
.lp-nav__brand-word .l { color: var(--lp-primary); }
.lp-nav__brand-word .r { color: var(--lp-secondary); }
.lp-nav__links { display: flex; align-items: center; gap: 4px; }
.lp-nav__link { padding: 10px 14px; font-size: 14.5px; font-weight: 500; color: var(--lp-fg-2); border-radius: var(--lp-radius-sm); transition: color 180ms; }
.lp-nav__link:hover, .lp-nav__link.is-active { color: var(--lp-fg-1); }
.lp-nav__link.is-active { color: var(--lp-secondary); }
.lp-nav__cta { display: flex; align-items: center; gap: 10px; }
.lp-nav__toggle { display: none; padding: 8px; }
@media (max-width: 900px) {
  .lp-nav__links, .lp-nav__cta .lp-nav__link-cta { display: none; }
  .lp-nav__toggle { display: inline-flex; }
}

/* --- footer --- */
.lp-footer { background: var(--lp-bg-darker); color: var(--lp-fg-on-dark-2); padding: 80px 0 32px; }
.lp-footer__top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 48px; margin-bottom: 56px; }
.lp-footer__brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 24px; color: #fff; margin-bottom: 16px; }
.lp-footer__brand img { width: 40px; height: 40px; }
.lp-footer__brand .l { color: #fff; }
.lp-footer__brand .r { color: var(--lp-secondary-300); }
.lp-footer__tag { font-size: 15px; line-height: 1.55; color: var(--lp-fg-on-dark-2); max-width: 320px; }
.lp-footer__col h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 600; }
.lp-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lp-footer__col a { color: #A7B3BD; font-size: 14.5px; transition: color 180ms; }
.lp-footer__col a:hover { color: #fff; }
.lp-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; color: #7C8893; }
.lp-footer__social { display: flex; gap: 12px; }
.lp-footer__social a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; transition: all 180ms; }
.lp-footer__social a:hover { background: var(--lp-secondary); border-color: var(--lp-secondary); color: #fff; }
@media (max-width: 900px) {
  .lp-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lp-footer__brand-col { grid-column: 1 / -1; }
}

/* --- hero / ECG --- */
.lp-hero { position: relative; padding: clamp(80px, 12vw, 160px) 0 clamp(72px, 9vw, 120px); background: var(--lp-bg-darker); color: #fff; overflow: hidden; }
.lp-hero__ecg { position: absolute; inset: 0; pointer-events: none; opacity: 0.55; }
.lp-hero__ecg canvas { width: 100%; height: 100%; display: block; }
.lp-hero__inner { position: relative; max-width: var(--lp-container); margin: 0 auto; padding: 0 var(--lp-gutter); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.lp-hero__content { max-width: 640px; }
.lp-hero__eyebrow { color: #FF6B76; }
.lp-hero__title { font-weight: 700; font-size: clamp(40px, 6vw, 76px); line-height: 1.02; letter-spacing: -0.025em; margin: 24px 0 24px; color: #fff; }
.lp-hero__title em { font-style: normal; color: var(--lp-secondary-300); }
.lp-hero__sub { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: var(--lp-fg-on-dark-2); margin-bottom: 36px; max-width: 540px; }
.lp-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.lp-hero__side { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; }
@media (max-width: 960px) {
  .lp-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-hero__side { min-height: 320px; }
}

/* hero stats inline */
.lp-hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
.lp-hero__stat { display: flex; flex-direction: column; gap: 4px; }
.lp-hero__stat-num { font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.lp-hero__stat-num em { font-style: normal; color: var(--lp-secondary-300); }
.lp-hero__stat-label { font-size: 12.5px; color: #8C96A1; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }

/* --- section header --- */
.lp-section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.lp-section-head--start { text-align: left; margin-left: 0; }
.lp-section-head__title { font-weight: 700; font-size: clamp(32px, 4vw, 52px); line-height: 1.06; letter-spacing: -0.02em; margin: 16px 0 20px; }
.lp-section-head__sub { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55; color: var(--lp-fg-2); }
.lp-section--dark .lp-section-head__sub, .lp-section--darker .lp-section-head__sub { color: var(--lp-fg-on-dark-2); }

/* --- cards --- */
.lp-card { background: var(--lp-bg-1); border: 1px solid var(--lp-border); border-radius: var(--lp-radius-lg); padding: 32px; transition: all 280ms var(--lp-ease-out); position: relative; }
.lp-card:hover { transform: translateY(-2px); box-shadow: var(--lp-shadow-3); border-color: var(--lp-border-strong); }
.lp-card__icon { width: 56px; height: 56px; border-radius: var(--lp-radius-md); background: var(--lp-secondary-050); display: inline-flex; align-items: center; justify-content: center; color: var(--lp-secondary); margin-bottom: 20px; }
.lp-card__icon svg { width: 28px; height: 28px; }
.lp-card__title { font-weight: 600; font-size: 20px; line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 10px; }
.lp-card__body { font-size: 15.5px; line-height: 1.55; color: var(--lp-fg-2); }
.lp-card__num { font-family: var(--lp-font-mono); font-size: 12px; color: var(--lp-fg-3); letter-spacing: 0.08em; margin-bottom: 12px; }

.lp-card--dark { background: var(--lp-primary-800); border-color: rgba(255,255,255,0.06); color: #fff; }
.lp-card--dark .lp-card__title { color: #fff; }
.lp-card--dark .lp-card__body { color: var(--lp-fg-on-dark-2); }
.lp-card--dark .lp-card__icon { background: rgba(230,57,70,0.16); }
.lp-card--dark:hover { border-color: rgba(255,255,255,0.16); }

.lp-card--accent { background: var(--lp-secondary); color: #fff; border: none; }
.lp-card--accent .lp-card__title { color: #fff; }
.lp-card--accent .lp-card__body { color: rgba(255,255,255,0.86); }
.lp-card--accent .lp-card__icon { background: rgba(255,255,255,0.18); color: #fff; }

/* --- card grids --- */
.lp-grid { display: grid; gap: 20px; }
.lp-grid-2 { grid-template-columns: repeat(2, 1fr); }
.lp-grid-3 { grid-template-columns: repeat(3, 1fr); }
.lp-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .lp-grid-3, .lp-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lp-grid-2, .lp-grid-3, .lp-grid-4 { grid-template-columns: 1fr; }
}

/* --- stat blocks --- */
.lp-stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--lp-border); border-radius: var(--lp-radius-xl); background: #fff; overflow: hidden; }
.lp-stats-strip__cell { padding: 36px 32px; border-right: 1px solid var(--lp-border); }
.lp-stats-strip__cell:last-child { border-right: none; }
.lp-stat-num { font-weight: 700; font-size: clamp(36px, 4vw, 52px); line-height: 1; letter-spacing: -0.025em; color: var(--lp-primary); display: flex; align-items: baseline; gap: 4px; }
.lp-stat-num em { font-style: normal; color: var(--lp-secondary); }
.lp-stat-num__unit { font-size: 0.55em; font-weight: 600; color: var(--lp-fg-3); margin-left: 4px; }
.lp-stat-label { font-size: 14px; color: var(--lp-fg-2); margin-top: 8px; line-height: 1.4; max-width: 200px; }
.lp-stats-strip--dark { background: var(--lp-primary-800); border-color: rgba(255,255,255,0.08); }
.lp-stats-strip--dark .lp-stats-strip__cell { border-color: rgba(255,255,255,0.08); }
.lp-stats-strip--dark .lp-stat-num { color: #fff; }
.lp-stats-strip--dark .lp-stat-num em { color: var(--lp-secondary-300); }
.lp-stats-strip--dark .lp-stat-label { color: #A7B3BD; }
@media (max-width: 900px) {
  .lp-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .lp-stats-strip__cell { border-right: none; border-bottom: 1px solid var(--lp-border); }
  .lp-stats-strip__cell:nth-child(odd) { border-right: 1px solid var(--lp-border); }
  .lp-stats-strip__cell:nth-last-child(-n+2) { border-bottom: none; }
  .lp-stats-strip--dark .lp-stats-strip__cell { border-color: rgba(255,255,255,0.08); }
}

/* --- press logos --- */
.lp-press { padding: 56px 0; background: var(--lp-bg-1); border-bottom: 1px solid var(--lp-border); }
.lp-press__label { text-align: center; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lp-fg-3); font-weight: 600; margin-bottom: 32px; }
.lp-press__row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(36px, 6vw, 72px); align-items: center; }
.lp-press__item { display: inline-flex; align-items: center; gap: 12px; color: var(--lp-fg-2); opacity: 0.78; transition: opacity 220ms; }
.lp-press__item:hover { opacity: 1; }
.lp-press__item-mark { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; }
.lp-press__item-name { font-weight: 600; font-size: 16px; letter-spacing: -0.005em; }

/* --- split / cta-1 successor --- */
.lp-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); align-items: center; }
.lp-split--reverse { direction: rtl; }
.lp-split--reverse > * { direction: ltr; }
@media (max-width: 900px) { .lp-split { grid-template-columns: 1fr; gap: 40px; } .lp-split--reverse { direction: ltr; } }

/* shield-image frame */
.lp-shield-frame { position: relative; aspect-ratio: 4 / 5; max-width: 520px; margin: 0 auto; }
.lp-shield-frame__bg { position: absolute; inset: 0; background: var(--lp-primary-800); border-radius: 32% / 26%; transform: rotate(-2deg); }
.lp-shield-frame__bg::after { content: ""; position: absolute; inset: 16px; background-image: url("../img/bg-light-heart.svg"); background-size: 64%; background-position: center; background-repeat: no-repeat; opacity: 0.16; }
.lp-shield-frame__img { position: absolute; inset: 8px; border-radius: 28% / 24%; overflow: hidden; box-shadow: var(--lp-shadow-3); }
.lp-shield-frame__img img { width: 100%; height: 100%; object-fit: cover; }

/* image-card simple */
.lp-image-card { border-radius: var(--lp-radius-2xl); overflow: hidden; box-shadow: var(--lp-shadow-3); background: var(--lp-bg-3); aspect-ratio: 4 / 3; }
.lp-image-card img { width: 100%; height: 100%; object-fit: cover; }

/* --- pulse mark / shield-heart small badge --- */
.lp-mark { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; background: var(--lp-secondary); border-radius: 48% 48% 48% 48% / 40% 40% 60% 60%; color: #fff; box-shadow: var(--lp-shadow-red); }
.lp-mark--lg { width: 96px; height: 96px; }
.lp-mark svg { width: 50%; height: 50%; }

/* --- timeline / roadmap --- */
.lp-roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: rm; }
.lp-roadmap__step { position: relative; padding: 28px 24px; border-radius: var(--lp-radius-lg); background: #fff; border: 1px solid var(--lp-border); counter-increment: rm; }
.lp-roadmap__step::before { content: counter(rm, decimal-leading-zero); display: block; font-family: var(--lp-font-mono); font-size: 12px; color: var(--lp-secondary); letter-spacing: 0.08em; margin-bottom: 14px; }
.lp-roadmap__step-title { font-weight: 600; font-size: 18px; line-height: 1.25; margin-bottom: 8px; }
.lp-roadmap__step-body { font-size: 14.5px; line-height: 1.5; color: var(--lp-fg-2); }
@media (max-width: 900px) { .lp-roadmap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .lp-roadmap { grid-template-columns: 1fr; } }

/* --- founder quote --- */
.lp-founders { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.lp-founder { background: #fff; border: 1px solid var(--lp-border); border-radius: var(--lp-radius-xl); padding: 40px; display: flex; flex-direction: column; gap: 24px; position: relative; overflow: hidden; }
.lp-founder__quote { font-size: 19px; line-height: 1.55; color: var(--lp-fg-1); font-weight: 400; letter-spacing: -0.005em; flex: 1; }
.lp-founder__quote::before { content: ""; display: block; width: 32px; height: 4px; background: var(--lp-secondary); border-radius: 2px; margin-bottom: 24px; }
.lp-founder__person { display: flex; align-items: center; gap: 16px; }
.lp-founder__avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--lp-bg-3); overflow: hidden; flex-shrink: 0; }
.lp-founder__avatar img { width: 100%; height: 100%; object-fit: cover; }
.lp-founder__name { font-weight: 600; font-size: 16px; line-height: 1.3; }
.lp-founder__role { font-size: 13px; color: var(--lp-fg-3); margin-top: 2px; }
@media (max-width: 900px) { .lp-founders { grid-template-columns: 1fr; } }

/* --- data room teaser --- */
.lp-dataroom { background: linear-gradient(135deg, #1B2630 0%, #2D3F4F 60%, #3a4f63 100%); color: #fff; border-radius: var(--lp-radius-2xl); padding: clamp(40px, 5vw, 64px); position: relative; overflow: hidden; }
.lp-dataroom::before { content: ""; position: absolute; right: -120px; top: -120px; width: 480px; height: 480px; background: radial-gradient(closest-side, rgba(230,57,70,0.32), transparent 70%); pointer-events: none; }
.lp-dataroom__inner { position: relative; display: grid; grid-template-columns: 1fr 0.8fr; gap: 48px; align-items: center; }
.lp-dataroom__title { font-size: clamp(28px, 3vw, 40px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 18px; }
.lp-dataroom__sub { font-size: 17px; line-height: 1.55; color: var(--lp-fg-on-dark-2); margin-bottom: 28px; }
.lp-dataroom__docs { display: flex; flex-direction: column; gap: 12px; }
.lp-dataroom__doc { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--lp-radius-md); backdrop-filter: blur(8px); transition: all 220ms; }
.lp-dataroom__doc:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.2); transform: translateX(4px); }
.lp-dataroom__doc-icon { width: 36px; height: 36px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: rgba(230,57,70,0.2); border-radius: 8px; color: var(--lp-secondary-300); }
.lp-dataroom__doc-title { font-weight: 500; font-size: 15px; color: #fff; }
.lp-dataroom__doc-meta { font-size: 12px; color: #8C96A1; margin-top: 2px; font-family: var(--lp-font-mono); letter-spacing: 0.04em; }
.lp-dataroom__doc-arrow { margin-left: auto; color: #fff; opacity: 0.5; transition: all 220ms; }
.lp-dataroom__doc:hover .lp-dataroom__doc-arrow { opacity: 1; transform: translateX(2px); }
@media (max-width: 900px) { .lp-dataroom__inner { grid-template-columns: 1fr; gap: 32px; } }

/* --- newsletter --- */
.lp-newsletter { background: var(--lp-primary-800); color: #fff; border-radius: var(--lp-radius-2xl); padding: clamp(40px, 5vw, 64px); text-align: center; position: relative; overflow: hidden; }
.lp-newsletter::before { content: ""; position: absolute; inset: 0; background-image: url("../img/bg-light-heart.svg"); background-position: -80px center; background-repeat: no-repeat; background-size: 380px; opacity: 0.06; }
.lp-newsletter > * { position: relative; }
.lp-newsletter__title { font-size: clamp(28px, 3vw, 38px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px; max-width: 640px; margin-inline: auto; }
.lp-newsletter__sub { font-size: 17px; color: var(--lp-fg-on-dark-2); margin-bottom: 32px; max-width: 540px; margin-inline: auto; }
.lp-newsletter__form { display: flex; gap: 8px; max-width: 480px; margin-inline: auto; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--lp-radius-pill); padding: 6px; backdrop-filter: blur(8px); }
.lp-newsletter__input { flex: 1; background: transparent; border: none; outline: none; padding: 12px 20px; color: #fff; font-size: 15px; font-family: inherit; }
.lp-newsletter__input::placeholder { color: rgba(255,255,255,0.5); }
.lp-newsletter__form:focus-within { border-color: rgba(255,255,255,0.4); }

/* --- pill / badge --- */
.lp-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; border-radius: var(--lp-radius-pill); background: var(--lp-secondary-050); color: var(--lp-secondary-800); }
.lp-badge--live::before { content: ""; width: 6px; height: 6px; background: var(--lp-secondary); border-radius: 50%; box-shadow: 0 0 0 0 rgba(230,57,70,0.5); animation: lp-pulse 1.8s var(--lp-ease-out) infinite; }
.lp-badge--on-dark { background: rgba(230,57,70,0.18); color: #FF8E97; }
@keyframes lp-pulse { 0% { box-shadow: 0 0 0 0 rgba(230,57,70,0.5); } 70% { box-shadow: 0 0 0 8px rgba(230,57,70,0); } 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); } }

/* --- icon-only mini badge --- */
.lp-check { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: var(--lp-secondary); color: #fff; border-radius: 50%; flex-shrink: 0; }
.lp-check svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 3; }

/* --- pill nav --- */
.lp-piltabs { display: inline-flex; padding: 4px; background: var(--lp-bg-3); border-radius: var(--lp-radius-pill); }
.lp-piltabs button { padding: 10px 22px; border-radius: var(--lp-radius-pill); font-weight: 500; font-size: 14.5px; color: var(--lp-fg-2); transition: all 200ms; }
.lp-piltabs button.is-active { background: #fff; color: var(--lp-fg-1); box-shadow: var(--lp-shadow-1); }

/* --- hero variant: editorial --- */
.lp-hero--editorial { background: var(--lp-bg-1); color: var(--lp-fg-1); padding: clamp(96px, 12vw, 160px) 0 clamp(72px, 9vw, 120px); position: relative; overflow: hidden; }
.lp-hero--editorial .lp-hero__title { color: var(--lp-fg-1); }
.lp-hero--editorial .lp-hero__title em { color: var(--lp-secondary); }
.lp-hero--editorial .lp-hero__sub { color: var(--lp-fg-2); }
.lp-hero--editorial .lp-hero__shield { position: absolute; right: -120px; top: 50%; transform: translateY(-50%); width: 60%; opacity: 0.08; pointer-events: none; }
.lp-hero--editorial .lp-hero__shield img { width: 100%; height: auto; }
.lp-hero--editorial .lp-hero__stats { border-top-color: var(--lp-border); }
.lp-hero--editorial .lp-hero__stat-num { color: var(--lp-fg-1); }
.lp-hero--editorial .lp-hero__stat-num em { color: var(--lp-secondary); }
.lp-hero--editorial .lp-hero__stat-label { color: var(--lp-fg-3); }

/* --- hero variant: product split --- */
.lp-hero--product { background: var(--lp-bg-darker); }
.lp-hero--product .lp-hero__product { width: 100%; max-width: 580px; border-radius: var(--lp-radius-xl); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.08); transform: perspective(1200px) rotateY(-6deg) rotateX(2deg); transition: transform 600ms var(--lp-ease-out); }
.lp-hero--product .lp-hero__product:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(0deg); }
.lp-hero--product .lp-hero__product img { width: 100%; display: block; }

/* --- list of checks --- */
.lp-checklist { display: flex; flex-direction: column; gap: 16px; margin: 0; padding: 0; list-style: none; }
.lp-checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--lp-fg-2); }
.lp-section--dark .lp-checklist li, .lp-section--darker .lp-checklist li { color: var(--lp-fg-on-dark-2); }
.lp-checklist li strong { color: inherit; font-weight: 600; }

/* --- page banner (sub-page hero) --- */
.lp-banner { position: relative; padding: clamp(96px, 11vw, 160px) 0 clamp(56px, 7vw, 96px); background: var(--lp-bg-darker); color: #fff; overflow: hidden; }
.lp-banner__ecg { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }
.lp-banner__inner { position: relative; max-width: 920px; margin: 0 auto; padding: 0 var(--lp-gutter); text-align: center; }
.lp-banner__title { font-weight: 700; font-size: clamp(40px, 5.6vw, 72px); line-height: 1.04; letter-spacing: -0.025em; margin: 18px 0 20px; }
.lp-banner__title em { font-style: normal; color: var(--lp-secondary-300); }
.lp-banner__sub { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--lp-fg-on-dark-2); max-width: 720px; margin: 0 auto; }
.lp-banner__crumbs { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lp-fg-3); margin-bottom: 16px; }
.lp-banner__crumbs a:hover { color: #fff; }

/* --- callout big number --- */
.lp-bignum { display: grid; grid-template-columns: 1fr 1.4fr; align-items: center; gap: 64px; }
.lp-bignum__figure { font-weight: 700; font-size: clamp(72px, 11vw, 160px); line-height: 0.9; letter-spacing: -0.04em; color: var(--lp-secondary); font-family: var(--lp-font-sans); }
.lp-bignum__caption { font-size: 17px; line-height: 1.55; color: var(--lp-fg-2); }
@media (max-width: 800px) { .lp-bignum { grid-template-columns: 1fr; gap: 24px; } }

/* --- block accent (red side strip card) --- */
.lp-blockq { padding: 32px 40px; background: #fff; border: 1px solid var(--lp-border); border-left: 4px solid var(--lp-secondary); border-radius: 0 var(--lp-radius-md) var(--lp-radius-md) 0; font-size: 18px; line-height: 1.55; color: var(--lp-fg-1); font-style: italic; }

/* --- utility --- */
.lp-mt-1 { margin-top: 8px; } .lp-mt-2 { margin-top: 16px; } .lp-mt-3 { margin-top: 24px; } .lp-mt-4 { margin-top: 32px; } .lp-mt-6 { margin-top: 48px; } .lp-mt-8 { margin-top: 64px; }
.lp-flex { display: flex; } .lp-flex-col { flex-direction: column; } .lp-gap-2 { gap: 16px; } .lp-gap-3 { gap: 24px; } .lp-gap-4 { gap: 32px; } .lp-items-center { align-items: center; } .lp-justify-between { justify-content: space-between; }

/* --- helpers for content --- */
.lp-prose p + p { margin-top: 16px; }
.lp-prose strong { font-weight: 600; color: var(--lp-fg-1); }
.lp-section--dark .lp-prose strong, .lp-section--darker .lp-prose strong { color: #fff; }
