/* Coach landing page — curated copy of reused blocks from landing.html.tpl.
   Do not edit landing.html / landing.html.tpl for this page.
   Coach-only extras live at the bottom of this file. */

/* ════════════════════════════════════════════════════════════
   DESIGN SYSTEM — TOKENS
   Single source of truth. Change here to affect everything.
   ════════════════════════════════════════════════════════════ */
:root {
    /* Brand */
    --lp-primary:         #405C85;
    --lp-primary-dark:    #2d4361;
    --lp-primary-bg:      rgba(64, 92, 133, 0.08);
    --lp-primary-bg-mid:  rgba(64, 92, 133, 0.15);
    --lp-primary-border:  rgba(64, 92, 133, 0.25);

    /* Text */
    --lp-text-head:   #1d1d1f;
    --lp-text-body:   #3a3a3c;
    --lp-text-muted:  #86868b;
    --lp-text-light:  #ffffff;

    /* Backgrounds */
    --lp-bg-page:           #ffffff;
    --lp-bg-alt:            #f5f5f7;
    --lp-bg-dark:           #1a2332;
    --lp-bg-card:           #ffffff;
    --lp-bg-illustrations:  #fdfaf5;

    /* Accents */
    --lp-star: #f5a623;
    --lp-cta: #000000;
    --lp-cta-hover: #1d1d1f;
    --lp-domain-bloodwork: #9a3d4a;
    --lp-domain-bloodwork-bg: rgba(154, 61, 74, 0.16);
    --lp-domain-diet: #3d7a52;
    --lp-domain-diet-bg: rgba(61, 122, 82, 0.16);
    --lp-domain-supplements: #9a7040;
    --lp-domain-supplements-bg: rgba(154, 112, 64, 0.16);
    --lp-domain-sleep: #5a5488;
    --lp-domain-sleep-bg: rgba(90, 84, 136, 0.16);
    --lp-domain-habits: #3a7a82;
    --lp-domain-habits-bg: rgba(58, 122, 130, 0.16);

    /* Typography (mobile-first) */
    --lp-hero:     36px;
    --lp-h1:       24px;
    --lp-h2:       21px;
    --lp-h3:       16px;
    --lp-body-lg:  16px;
    --lp-body:     14px;
    --lp-caption:  12px;
    --lp-label:    10px;

    /* Font stack — mirrors app */
    --lp-font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    --lp-lh: 1.55;
    --lp-track: -0.02em;

    /* Spacing */
    --lp-sv:    64px;   /* section vertical padding */
    --lp-sh:    20px;   /* section horizontal padding */
    --lp-max:   1100px; /* max container width */

    /* Gap scale */
    --lp-g1:  6px;
    --lp-g2:  12px;
    --lp-g3:  20px;
    --lp-g4:  32px;
    --lp-g5:  48px;

    /* Border radius */
    --lp-r-sm:   8px;
    --lp-r-md:   14px;
    --lp-r-lg:   20px;
    --lp-r-xl:   28px;
    --lp-r-pill: 999px;

    /* Shadows */
    --lp-sh-sm: 0 2px 8px  rgba(0,0,0,0.07);
    --lp-sh-md: 0 4px 20px rgba(0,0,0,0.09);
    --lp-sh-lg: 0 12px 40px rgba(0,0,0,0.11);

    /* Dotted line colour */
    --lp-dot: rgba(64, 92, 133, 0.30);

    /* Easing */
    --lp-ease: 0.25s ease;
}

/* Desktop scale overrides */
@media (min-width: 768px) {
    :root {
        --lp-hero:  62px;
        --lp-h1:    42px;
        --lp-h2:    30px;
        --lp-h3:    20px;
        --lp-body-lg: 17px;
        --lp-body:    15px;
        --lp-caption: 13px;
        --lp-sv:  104px;
        --lp-sh:  48px;
    }
}

/* ════════════════════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--lp-font);
    font-size: var(--lp-body);
    line-height: var(--lp-lh);
    color: var(--lp-text-body);
    background: var(--lp-bg-page);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--lp-font); cursor: pointer; border: none; background: none; }

/* ════════════════════════════════════════════════════════════
   TYPOGRAPHY CLASSES
   ════════════════════════════════════════════════════════════ */
.lp-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--lp-primary);
    margin-bottom: 10px;
}
.lp-hero    { font-size: var(--lp-hero); font-weight: 700; letter-spacing: var(--lp-track); color: var(--lp-text-head); line-height: 1.1; }
.lp-h1      { font-size: calc(var(--lp-h2) + 3px);   font-weight: 700; letter-spacing: var(--lp-track); color: var(--lp-text-head); line-height: 1.15; }
.lp-h2      { font-size: var(--lp-h2);   font-weight: 600; letter-spacing: -0.01em;        color: var(--lp-text-head); line-height: 1.2; }
.lp-h3      { font-size: var(--lp-h3);   font-weight: 600;                                 color: var(--lp-text-head); }
.lp-body-lg { font-size: var(--lp-body-lg); line-height: 1.65; }
.lp-muted   { color: var(--lp-text-muted); }
.lp-caption { font-size: var(--lp-caption); color: var(--lp-text-muted); }

/* Dark-section overrides */
.on-dark .lp-eyebrow  { color: rgba(255,255,255,0.55); }
.on-dark .lp-h1,
.on-dark .lp-h2,
.on-dark .lp-h3       { color: #fff; }
.on-dark .lp-body-lg  { color: rgba(255,255,255,0.65); }
.on-dark .lp-muted    { color: rgba(255,255,255,0.45); }
.on-dark .lp-caption  { color: rgba(255,255,255,0.45); }

/* ════════════════════════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════════════════════════ */
.lp-section {
    padding: var(--lp-sv) var(--lp-sh);
    background: var(--lp-bg-page);
}
.lp-section--alt  {
    /* background: var(--lp-bg-alt); */
    background: var(--lp-bg-page);
}
.lp-section--dark {
    /* background: var(--lp-bg-dark); color: rgba(255,255,255,0.8); */
    background: var(--lp-bg-page);
}

.lp-wrap {
    max-width: var(--lp-max);
    margin: 0 auto;
}

.lp-section-head {
    text-align: center;
    margin-bottom: var(--lp-g5);
}
.lp-section-head p {
    margin-top: 10px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ════════════════════════════════════════════════════════════
   COMPONENTS
   ════════════════════════════════════════════════════════════ */

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 21px;
    border-radius: var(--lp-r-md);
    font-size: var(--lp-body);
    font-weight: 600;
    transition: var(--lp-ease);
    white-space: nowrap;
}
.lp-btn-primary  { background: var(--lp-cta); color: var(--lp-text-light); border: 1.5px solid var(--lp-cta); }
.lp-btn-primary:hover  { background: var(--lp-cta-hover); transform: translateY(-1px); }
.full-analysis-btn:hover { background: #e3e3e6; color: var(--lp-primary); transform: translateY(-1px); }
.lp-btn-secondary { background: var(--lp-primary-bg); color: var(--lp-primary); border: 1px solid var(--lp-primary-border); }
.lp-btn-secondary:hover { background: var(--lp-primary-bg-mid); }
.lp-btn-white { background: #fff; color: var(--lp-primary); }
.lp-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.lp-btn-lg { padding: 13px 29px; font-size: var(--lp-body-lg); font-weight: 700; }

/* Card */
.lp-card {
    background: var(--lp-bg-card);
    border-radius: var(--lp-r-lg);
    box-shadow: var(--lp-sh-md);
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.06);
}

/* Tag / chip */
.lp-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--lp-r-pill);
    font-size: var(--lp-caption);
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.12);
    color: var(--lp-text-body);
}
.lp-tag-primary { background: var(--lp-primary-bg); color: var(--lp-primary); border-color: var(--lp-primary-border); }
.lp-tag-good    { background: rgba(22,163,74,0.1);  color: #15803d; border-color: rgba(22,163,74,0.25); }
.lp-tag-avoid   { background: rgba(220,38,38,0.08); color: #dc2626; border-color: rgba(220,38,38,0.22); }

/* Image placeholder — dashed box showing path/instructions */
.img-ph {
    background: #ebebee;
    border: 2px dashed #c3c3cc;
    border-radius: var(--lp-r-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px;
    text-align: center;
    color: #86868b;
    font-size: 11px;
    line-height: 1.5;
    width: 100%;
}
.img-ph b { display: block; font-size: 12px; color: #5a5a60; margin-bottom: 3px; }

/* Video placeholder */
.video-ph {
    background: linear-gradient(135deg, #e8e8ec, #d8d8e0);
    border: 2px dashed #c3c3cc;
    border-radius: var(--lp-r-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    text-align: center;
    color: #86868b;
    font-size: 11px;
    line-height: 1.5;
    width: 100%;
}
.video-ph .play-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(64,92,133,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.video-ph b { font-size: 12px; color: #5a5a60; }

/* Phone frame */
.phone-frame {
    position: relative;
    width: 196px;
    height: 416px;
    background: #111;
    border-radius: 38px;
    border: 3px solid #2a2a2a;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.07), var(--lp-sh-lg);
    overflow: hidden;
    margin: 0 auto;
    flex-shrink: 0;
}
/* Notch */
.phone-frame::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 68px; height: 20px;
    background: #111;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}
.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f5f5f7;
    overflow: hidden;
}
@media (min-width: 768px) {
    .phone-frame { width: 250px; height: 530px; }
}

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   Add data-reveal to any element. JS adds .is-visible on scroll.
   data-reveal-delay="1..6" staggers children.
   ════════════════════════════════════════════════════════════ */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

[data-reveal-delay="1"].is-visible { transition-delay: 0.08s; }
[data-reveal-delay="2"].is-visible { transition-delay: 0.16s; }
[data-reveal-delay="3"].is-visible { transition-delay: 0.24s; }
[data-reveal-delay="4"].is-visible { transition-delay: 0.32s; }
[data-reveal-delay="5"].is-visible { transition-delay: 0.40s; }
[data-reveal-delay="6"].is-visible { transition-delay: 0.48s; }

/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 0 var(--lp-sh);
}
.lp-nav-inner {
    max-width: var(--lp-max);
    margin: 0 auto;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lp-nav-logo {
    display: flex;
    align-items: center;
    color: var(--lp-text-head);
    text-decoration: none;
}
.lp-lockup {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Montserrat', var(--lp-font);
}
.lp-lockup-mark {
    height: 1.08em;
    height: 1.5cap;
    width: auto;
    font-size: 18px;
    border-radius: 3px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    margin-inline-end: -4px;
}
.lp-lockup-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: lowercase;
    line-height: 1;
    color: var(--lp-text-head);
}
.lp-lockup-reg {
    font-size: 0.46em;
    font-weight: 600;
    position: relative;
    top: -1.15em;
    margin-left: 1px;
}
.lp-lockup-dash {
    width: 1px;
    height: 20px;
    background: var(--lp-text-head);
    flex-shrink: 0;
}
.lp-lockup-tag {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 9.5px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-transform: lowercase;
    color: var(--lp-text-head);
}
.lp-lockup--on-dark .lp-lockup-name,
.lp-lockup--on-dark .lp-lockup-tag {
    color: #fff;
}
.lp-lockup--on-dark .lp-lockup-dash {
    background: #fff;
}
@media (max-width: 420px) {
    .lp-nav .lp-lockup-dash,
    .lp-nav .lp-lockup-tag { display: none; }
}
.lp-nav-links { display: none; gap: 26px; }
@media (min-width: 768px) { .lp-nav-links { display: flex; } }
.lp-nav-links a {
    font-size: var(--lp-caption);
    font-weight: 500;
    color: var(--lp-text-muted);
    transition: color var(--lp-ease);
}
.lp-nav-links a:hover { color: var(--lp-text-head); }
.lp-nav-actions { display: flex; align-items: center; gap: 8px; }
.lp-nav-login {
    font-size: var(--lp-caption);
    font-weight: 600;
    color: var(--lp-primary);
    padding: 7px 14px;
    border-radius: var(--lp-r-md);
    border: 1px solid var(--lp-primary-border);
    transition: var(--lp-ease);
}
.lp-nav-login:hover { background: var(--lp-primary-bg); }
.lp-nav-signup {
    font-size: var(--lp-caption);
    font-weight: 500;
    color: #fff;
    background: var(--lp-cta);
    padding: 7px 14px;
    border-radius: var(--lp-r-md);
    transition: var(--lp-ease);
}
.lp-nav-signup:hover { background: var(--lp-cta-hover); }
/* Phone-only hamburger menu — mirrors the desktop nav links */
.lp-nav-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--lp-cta);
}
.lp-nav-burger svg { display: block; }
@media (max-width: 767px) {
    .lp-nav {
        border-bottom: 2px solid rgba(0,0,0,0.18);
    }
    .lp-nav-actions .lp-nav-login { display: none; }
    .lp-nav-burger { display: flex; }
}
.lp-nav-mobile-menu {
    display: none;
    flex-direction: column;
    max-width: var(--lp-max);
    margin: 0 auto;
    padding: 2px 0 14px;
    gap: 2px;
}
.lp-nav-mobile-menu.is-open { display: flex; }
.lp-nav-mobile-menu a {
    padding: 13px 4px;
    font-size: var(--lp-body);
    font-weight: 500;
    color: var(--lp-text-head);
    border-top: 1px solid rgba(0,0,0,0.07);
}
.lp-nav-mobile-menu a:first-child { border-top: none; }
.lp-nav-mobile-menu .lp-nav-login {
    align-self: flex-start;
    margin-top: 10px;
    font-size: var(--lp-caption);
    font-weight: 600;
    color: var(--lp-primary);
    padding: 7px 14px;
    border: 1px solid var(--lp-primary-border);
    border-radius: var(--lp-r-md);
}
@media (min-width: 768px) {
    .lp-nav-mobile-menu { display: none !important; }
}

.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* ════════════════════════════════════════════════════════════
   SECTION 1B — 3D HERO
   Three-phone 3D arrangement with CSS perspective.
   Left / right phones are fixed; center cycles via slideshow.
   ════════════════════════════════════════════════════════════ */
.hero3d {
    padding: 56px var(--lp-sh) 72px;
    background: var(--lp-bg-page);
}
.hero3d-inner {
    max-width: var(--lp-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
}
.hero3d-text { max-width: 560px; }

/* Hand-drawn style underline — a gentle curved "bogen" stroke, as if drawn with a pen. */
.hero-ul {
    position: relative;
    display: inline-block;
}
.hero-ul::after {
    content: '';
    position: absolute;
    left: -3%;
    right: -3%;
    bottom: -0.14em;
    height: 0.32em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 16' preserveAspectRatio='none'%3E%3Cpath d='M0 12 A 3 3 0 0 1 3 9 Q 50 2 97 7.9 A 0.7 0.7 0 0 1 97 9.1 Q 50 4.3 3 15 A 3 3 0 0 1 0 12 Z' fill='%23405C85'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
}
/* Heading: same stroke, thicker than the body version but not fully scaled with the hero font. */
.lp-hero .hero-ul::after {
    height: 0.20em;
    bottom: -0.18em;
}
.hero3d-text h1 { margin-bottom: 14px; }
.hero3d-text p  { font-size: var(--lp-body-lg); margin-bottom: 13px; }
.hero3d-text .hero-cta { justify-content: center; }
.hero3d-cta-below-text { display: none; margin-top: 18px; }
.hero3d-cta-below-text .lp-btn-lg {
    padding: 5.1px 30.6px;
    font-size: calc(var(--lp-body-lg) * 0.85);
}
.hero3d-cta-below-text .lp-btn-primary {
    background: var(--lp-cta);
    color: #fff;
    border-color: var(--lp-cta);
}
.hero3d-cta-below-text .lp-btn-primary:hover {
    background: var(--lp-cta-hover);
    color: #fff;
}

/* Trust badges — small icon + label row under the hero CTA */
.hero-trust-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 14px;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 500;
    color: var(--lp-primary);
    white-space: nowrap;
}
.hero-trust-icon {
    width: 16px;
    height: 16px;
    color: var(--lp-primary);
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .hero-trust-row { gap: 22px; }
    .hero-trust-item {
        gap: 4px;
        font-size: calc(var(--lp-caption) + 1px);
    }
    .hero-trust-icon { width: 24px; height: 24px; }
}

/* Condition chain — one oval line that runs through the centre of every round icon */
.condition-chain {
    display: none;
    position: relative;
    width: 100%;
    max-width: 640px;
    height: 170px;
    margin: 0 0 20px;
}
@media (min-width: 560px) {
    .condition-chain { margin: 0 auto 20px; }
}
/* Just the oval outline — no fill. Sized so its border passes exactly through each
   icon centre. Sits behind the icons via z-index. */
.condition-chain::before {
    content: '';
    position: absolute;
    top: 30%;
    bottom: 30%;
    left: 6%;
    right: 6%;
    border-radius: 50%;
    border: 1px solid rgba(64, 92, 133, 0.28);
    z-index: 0;
}
.condition-chain-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
/* Every position lies on the ellipse (rx 44%, ry 20%, centred), so the oval line
   threads through the middle of all seven icons. 4 on top, 3 on bottom, staggered. */
.condition-chain-item:nth-child(1) { left: 14%;   top: 38.5%; }
.condition-chain-item:nth-child(2) { left: 38%;   top: 30.8%; }
.condition-chain-item:nth-child(3) { left: 62%;   top: 30.8%; }
.condition-chain-item:nth-child(4) { left: 86%;   top: 38.5%; }
.condition-chain-item:nth-child(5) { left: 26%;   top: 66.8%; }
.condition-chain-item:nth-child(6) { left: 50%;   top: 70%; }
.condition-chain-item:nth-child(7) { left: 74%;   top: 66.8%; }
.condition-chain-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(64, 92, 133, 0.12);
    flex-shrink: 0;
    display: block;
}
.condition-chain-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (min-width: 640px) {
    .condition-chain { height: 210px; }
    .condition-chain-icon { width: 70px; height: 70px; }
}

/* 3-phone stage — perspective set here so rotateY on children looks 3D */
.phones3d-stage {
    perspective: 1100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.p3d { flex-shrink: 0; position: relative; }

.p3d--left {
    transform: rotateY(32deg) scale(0.74);
    margin-right: -62px;
    z-index: 1;
}
.p3d--center { z-index: 3; }
.p3d--right {
    transform: rotateY(-32deg) scale(0.74);
    margin-left: -62px;
    z-index: 1;
}

/* Slides for the 3D center phone — same blur crossfade as main hero */
.phone3d-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    filter: blur(6px);
    transition: opacity 1.1s ease, filter 1.1s ease;
}
.phone3d-slide.is-active {
    opacity: 1;
    filter: none;
}

@media (min-width: 768px) {
    .hero3d         { padding: 96px var(--lp-sh) 112px; }
    .hero3d-inner   { flex-direction: row; text-align: left; gap: 56px; }
    .hero3d-text    { flex: 1; }
    .hero3d-text .hero-cta { justify-content: flex-start; }
    .hero3d-cta-below-text { display: flex; }
    .hero3d-cta-bottom { display: none; }
    .condition-chain { justify-content: flex-start; }
    .p3d--left  { transform: rotateY(30deg) scale(0.80); margin-right: -55px; }
    .p3d--right { transform: rotateY(-30deg) scale(0.80); margin-left: -55px; }
}

/* ── Coach hero: centered copy, then workspace + client app ── */
#section-1b-hero3d                 { padding-bottom: 48px; overflow-x: hidden; }
#section-1b-hero3d .hero3d-inner   { gap: 0; }
#section-1b-hero3d .hero3d-cta-bottom { display: none; }
#section-1b-hero3d .hero3d-cta-below-text {
    display: flex;
    justify-content: center;
}
#section-1b-hero3d .hero-trust-row { display: none; }

.hero-pitch {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 16px;
    color: var(--lp-primary);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0;
}
.hero-pitch-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.hero-pitch-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .hero-pitch { gap: 12px 22px; }
    .hero-pitch-item svg { width: 22px; height: 22px; }
}
@media (min-width: 768px) {
    #section-1b-hero3d                 { padding-bottom: 72px; }
    #section-1b-hero3d .hero3d-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }
    #section-1b-hero3d .hero3d-text {
        max-width: 640px;
        margin: 0 auto;
    }
    #section-1b-hero3d .hero3d-text .hero-cta { justify-content: center; }
    #section-1b-hero3d .hero3d-cta-bottom { display: none; }
}

.hero-block-title {
    font-size: calc(var(--lp-h2) + 3px);
    font-weight: 700;
    letter-spacing: var(--lp-track);
    color: var(--lp-text-head);
    line-height: 1.2;
    margin: 0 0 16px;
}
.hero-platform-head {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}
.hero-platform-head .hero-block-title {
    margin: 0;
    text-align: center;
}
.hero-platform-shot {
    position: relative;
    grid-column: 1 / -1;
}
.hero-platform-frame {
    position: relative;
}
.hero-ai-sticker {
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: clamp(3px, 0.8cqi, 6px);
    flex-shrink: 0;
    margin-top: -12px;
    padding: clamp(3px, 0.9cqi, 7px) clamp(6px, 1.8cqi, 14px);
    border-radius: var(--lp-r-pill);
    background: var(--lp-primary-bg);
    color: var(--lp-primary);
    font-size: clamp(8px, 2.2cqi, 12px);
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.hero-ai-sticker svg {
    display: block;
    width: clamp(10px, 2.4cqi, 14px);
    height: clamp(10px, 2.4cqi, 14px);
}
.hero-platform-tags {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px 12px;
    width: 100%;
    margin-top: 36px;
    padding-bottom: 28px;
}
.hero-domain-sticker {
    display: inline-flex;
    align-items: center;
    gap: clamp(4px, 1cqi, 7px);
    flex-shrink: 0;
    padding: clamp(4px, 1.1cqi, 8px) clamp(8px, 2.2cqi, 16px);
    border-radius: var(--lp-r-pill);
    font-size: clamp(10px, 2.64cqi, 14.4px);
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.hero-domain-sticker svg {
    display: block;
    width: clamp(12px, 2.9cqi, 17px);
    height: clamp(12px, 2.9cqi, 17px);
}
.hero-domain-sticker--bloodwork {
    background: var(--lp-domain-bloodwork-bg);
    color: var(--lp-domain-bloodwork);
    transform: translateY(6px);
}
.hero-domain-sticker--diet {
    background: var(--lp-domain-diet-bg);
    color: var(--lp-domain-diet);
    transform: translateY(18px);
}
.hero-domain-sticker--supplements {
    background: var(--lp-domain-supplements-bg);
    color: var(--lp-domain-supplements);
    transform: translateY(2px);
}
.hero-domain-sticker--sleep {
    background: var(--lp-domain-sleep-bg);
    color: var(--lp-domain-sleep);
    transform: translateY(16px);
}
.hero-domain-sticker--habits {
    background: var(--lp-domain-habits-bg);
    color: var(--lp-domain-habits);
    transform: translateY(8px);
}
@media (max-width: 520px) {
    .hero-platform-tags {
        gap: 4px;
        margin-top: 36px;
    }
    .hero-domain-sticker {
        padding: 3px 5px;
        gap: 3px;
        letter-spacing: 0.02em;
    }
    .hero-domain-sticker svg {
        width: 11px;
        height: 11px;
    }
}

.hero-client-app {
    width: 100%;
    max-width: 1080px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}
.hero-client-app-text {
    width: 100%;
    max-width: 420px;
    min-width: 0;
}
.hero-client-app-text .hero-block-title { margin-bottom: 12px; }
.hero-client-app-text p {
    font-size: var(--lp-body-lg);
    color: var(--lp-text-body);
    line-height: 1.6;
    margin: 0;
}
.hero-client-app-labels {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: center;
    justify-items: start;
    margin: 16px 0 0;
    gap: 10px 18px;
}

/* Phones live in a query container so they scale with the visual column.
   Default size is 75% of the original 250×530 cluster. Below that, they
   keep shrinking with the column. Text has a width floor; after that only
   this column shrinks. */
.hero-client-app-visual {
    container-type: inline-size;
    width: 100%;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-client-app .phones3d-stage {
    --phone-w: min(187.5px, calc(100cqi * 250 / 640));
    display: flex;
    margin-top: 0;
}
.hero-client-app .phone-frame {
    width: var(--phone-w);
    height: calc(var(--phone-w) * 530 / 250);
    border-radius: calc(var(--phone-w) * 38 / 250);
    border-width: calc(var(--phone-w) * 3 / 250);
}
.hero-client-app .phone-frame::after {
    width: calc(var(--phone-w) * 68 / 250);
    height: calc(var(--phone-w) * 20 / 250);
    border-radius: 0 0 calc(var(--phone-w) * 14 / 250) calc(var(--phone-w) * 14 / 250);
}
.hero-client-app .p3d--left {
    transform: rotateY(30deg) scale(0.80);
    margin-right: calc(var(--phone-w) * -55 / 250);
}
.hero-client-app .p3d--right {
    transform: rotateY(-30deg) scale(0.80);
    margin-left: calc(var(--phone-w) * -55 / 250);
}
@media (min-width: 768px) {
    .hero-client-app {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 40px;
        margin-top: 64px;
    }
    .hero-client-app-text {
        flex: 1 1 400px;
        min-width: 280px;
        max-width: 400px;
        width: auto;
        text-align: left;
    }
    .hero-client-app-labels {
        justify-content: start;
        gap: 12px 22px;
    }
    .hero-client-app-visual {
        flex: 1 1 480px;
        min-width: 0;
        width: auto;
    }
}

/* HubFit-style workspace tabs + screenshot with bottom fade */
.hero-platform {
    container-type: inline-size;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 1080px;
    margin: 36px auto 0;
    padding-top: 28px;
    scroll-margin-top: 54px;
}
.hero-platform::before,
#section-how::before,
#section-vs::before,
#section-compare::before,
#section-client-app::before,
#section-founder::before,
#section-cta::before {
    content: '';
    display: block;
    height: 1px;
    margin: 0 0 22px;
    background: linear-gradient(to right, transparent, rgba(20, 28, 40, 0.12) 12%, rgba(20, 28, 40, 0.12) 88%, transparent);
}
.hero-platform::before,
.hero-platform-tabs,
.hero-platform-shot,
.hero-platform-stage {
    grid-column: 1 / -1;
}
#section-how,
#section-vs,
#section-compare,
#section-client-app,
#section-founder,
#section-cta {
    padding-top: calc(var(--lp-sv) / 2);
    padding-bottom: calc(var(--lp-sv) / 2);
}
.hero-platform-tabs {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #f3f4f6;
    border: 1px solid rgba(20, 28, 40, 0.10);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
}
.hero-platform-tabsets {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
}
.hero-platform-tabset {
    grid-area: 1 / 1;
    display: flex;
    min-width: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.hero-platform-tabset.is-active {
    opacity: 1;
    pointer-events: auto;
}
.hero-platform-tab {
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35em;
    padding: clamp(8px, 1.8cqi, 13px) clamp(2px, 0.7cqi, 8px);
    font-size: clamp(8px, 2cqi, 13px);
    font-weight: 700;
    color: var(--lp-text-head);
    background: transparent;
    border-right: 1px solid rgba(20, 28, 40, 0.10);
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    transition: background var(--lp-ease), color var(--lp-ease);
}
.hero-platform-tab-icon {
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    display: block;
    stroke-width: 2.2;
}
.hero-platform-tab--phone { display: none; }
.hero-platform-tab span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-platform-tab:last-child { border-right: none; }
.hero-platform-swap {
    flex: 0 0 clamp(28px, 4cqi, 44px);
    width: clamp(28px, 4cqi, 44px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-text-muted);
    border-left: 1px solid rgba(20, 28, 40, 0.10);
    transition: color var(--lp-ease), background var(--lp-ease);
}
.hero-platform-swap svg {
    display: block;
    width: clamp(14px, 1.7cqi, 18px);
    height: clamp(14px, 1.7cqi, 18px);
}
.hero-platform-swap:hover {
    color: var(--lp-text-head);
    background: #e6e8ec;
}
.hero-platform-swap[aria-pressed="true"] { color: var(--lp-text-head); }
.hero-platform-tab:hover { color: var(--lp-primary); }
.hero-platform-tab.is-active {
    background: #e6e8ec;
    color: var(--lp-primary);
    font-weight: 800;
}
.hero-platform-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    background: rgba(20, 28, 40, 0.08);
}
.hero-platform-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--lp-primary);
    transform: scaleX(0);
    transform-origin: left center;
}
.hero-platform-progress-bar.is-running {
    animation: hero-platform-progress 12s linear infinite;
}
.hero-platform-progress-bar.is-paused {
    animation-play-state: paused;
}
@keyframes hero-platform-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-platform-progress { display: none; }
}
@media (max-width: 767px) {
    .hero-platform-tab--desktop { display: none; }
    .hero-platform-tab--phone { display: inline-flex; }
    .hero-platform-tabs,
    .hero-platform-shot {
        width: calc(100% + var(--lp-sh));
        margin-left: calc(var(--lp-sh) / -2);
        margin-right: calc(var(--lp-sh) / -2);
    }
}
.hero-platform-stage {
    position: relative;
    height: auto;
    aspect-ratio: 1024 / 704;
    background: #fff;
    border: 1px solid rgba(20, 28, 40, 0.10);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    box-shadow: var(--lp-sh-lg);
}
.hero-platform-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}
.hero-platform-panel.is-active {
    opacity: 1;
    pointer-events: auto;
}
.hero-platform-panel img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    filter: none;
}
.hero-platform-panel.has-image img { display: block; }
.hero-platform-panel.has-image .hero-platform-placeholder { display: none; }
.hero-platform-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--lp-text-muted);
    font-size: 13px;
    font-weight: 600;
    background: #f7f8fa;
}
.hero-platform-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 56px;
    background: #fff;
    border-right: 1px solid rgba(20, 28, 40, 0.08);
}
.hero-platform-placeholder::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 76px;
    right: 20px;
    height: calc(100% - 28px);
    padding-top: 8px;
    background:
        linear-gradient(#e6e8ec, #e6e8ec) 0 0 / 28% 14px no-repeat,
        linear-gradient(#fff, #fff) 0 32px / 100% 70px no-repeat,
        linear-gradient(#fff, #fff) 0 112px / 100% 70px no-repeat,
        linear-gradient(#fff, #fff) 0 192px / 100% 70px no-repeat,
        linear-gradient(#fff, #fff) 0 272px / 100% 70px no-repeat,
        linear-gradient(#fff, #fff) 0 352px / 100% 70px no-repeat;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(20, 28, 40, 0.04);
}
.hero-platform-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20%;
    pointer-events: none;
    z-index: 4;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, var(--lp-bg-page) 100%);
}
@media (min-width: 768px) {
    .hero-platform { margin-top: 48px; }
}

/* Coaching platform: tighter 2-col gap, matching the tools cards */
#section-coach .cat-grid { gap: 20px; }
@media (min-width: 580px) {
    #section-coach .cat-grid { column-gap: 20px; row-gap: 28px; }
}
@media (min-width: 900px) {
    #section-coach .cat-grid { column-gap: 20px; row-gap: 36px; }
}

/* Client app: a bit more air between the two columns */
@media (min-width: 580px) {
    #section-client-app .cat-grid { column-gap: 64px; }
}
@media (min-width: 900px) {
    #section-client-app .cat-grid { column-gap: 96px; row-gap: 72px; }
}

/* Closing CTA variant — always centred, no side text block */
.hero3d--closing {
    /* background: var(--lp-bg-alt); */
    background: var(--lp-bg-page);
}
.hero3d--closing .hero3d-cta-head {
    max-width: 560px;
    text-align: center;
}
@media (min-width: 768px) {
    .hero3d--closing .hero3d-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ════════════════════════════════════════════════════════════
   SECTION 3 — CATEGORIES (overlapping images + blur)
   ════════════════════════════════════════════════════════════ */
.cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}
@media (min-width: 580px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); column-gap: 48px; row-gap: 64px; } }

.cat-card { display: flex; flex-direction: column; gap: 14px; }
.cat-card[hidden] { display: none; }
/* PC-only cards (Symptoms, Sleep): hidden on phone/tablet, shown once the grid reaches the 2-column PC layout */
.cat-card--pc-only { display: none; }
@media (min-width: 900px) { .cat-card--pc-only { display: flex; } }
.cat-num  { font-size: calc(var(--lp-h3) - 3px); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lp-primary); }
.cat-card h3 { margin-bottom: 4px; }
.cat-card p  { font-size: var(--lp-body); color: var(--lp-text-muted); }
.cat-cta-btn { font-size: calc(var(--lp-body) * 0.9); padding: 9px 19px; }

.cat-img-stack {
    position: relative;
    height: 340px;
}
.cat-img-back {
    position: absolute;
    top: 28px; left: 0;
    width: 50%;
    height: 290px;
    transform: rotate(-4.5deg);
    border-radius: var(--lp-r-md);
    box-shadow: 0 0 0 1.5px rgba(20, 28, 40, 0.22), var(--lp-sh-md);
    overflow: hidden;
    z-index: 1;
}
.cat-img-front {
    position: absolute;
    top: 0; right: 0;
    width: 57%;
    height: 320px;
    border-radius: var(--lp-r-md);
    box-shadow: 0 0 0 1.5px rgba(20, 28, 40, 0.22), var(--lp-sh-lg);
    overflow: hidden;
    z-index: 2;
}
.cat-img-back .img-ph,
.cat-img-front .img-ph { height: 100%; border-radius: 0; border: none; font-size: 10px; }
.cat-img-back img,
.cat-img-front img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

/* Habits card: the challenge-streaks card is a near-square screenshot, not a
   tall phone mockup. Keep the same width footprint as every other
   `.cat-img-front` (57%) so its length stays within the other front images.
   Use the full standard box height (320px) so its bottom lines up with the
   left card, an opaque white fill so the left card's content never shows
   through, and `contain` + top alignment so the near-square screenshot sits
   at the top of the box without being stretched. */
.cat-img-front.cat-img-front--habits {
    width: 57%;
    height: 320px;
    top: 0;
    background: #fff;
}
.cat-img-front.cat-img-front--habits img { object-fit: contain; object-position: top; }
.cat-img-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 130px;
    pointer-events: none;
    z-index: 3;
}
.cat-devices-card {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-bg-card, #f7f7f8);
}
.cat-devices-card .wearables-grid {
    grid-template-columns: repeat(5, 28px);
    grid-template-rows: repeat(4, 28px);
    gap: 5px;
}
.cat-devices-card .w-cell { width: 28px; height: 28px; border-radius: 8px; }
.cat-devices-card .w-lbl { display: none; }

/* ── More features (simple icon + text cards) ── */
.feat-more { margin-top: 56px; }
.feat-more-title {
    font-size: calc(var(--lp-h3) + 3px);
    font-weight: 400;
    color: var(--lp-primary);
    margin-bottom: 20px;
}
.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (min-width: 640px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .feat-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
/* Symptoms/Sleep: only listed here on phone; on PC they have their own card in the grid above */
@media (min-width: 900px) { .feat-card--pc-hide { display: none; } }
.feat-card {
    background: var(--lp-bg-card);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--lp-r-md);
    box-shadow: var(--lp-sh-sm);
    padding: 18px;
}
.feat-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--lp-r-sm);
    background: var(--lp-primary-bg);
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.feat-icon svg { width: 19px; height: 19px; }
.feat-title {
    font-size: var(--lp-body-lg);
    font-weight: 700;
    color: var(--lp-text-head);
    margin-bottom: 5px;
}
.feat-desc {
    font-size: var(--lp-body);
    color: var(--lp-text-muted);
    line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   SECTION VS — OLD WAY vs TRACKWISE ILLUSTRATIONS
   ════════════════════════════════════════════════════════════ */
.lp-section--vs {
    /* background: var(--lp-bg-illustrations); */
    background: var(--lp-bg-page);
}
.vs-illustrations {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 28px;
}
.vs-side {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.vs-side-label {
    font-size: calc(var(--lp-h1) * 0.6);
    font-weight: 700;
    letter-spacing: var(--lp-track);
    line-height: 1.15;
    text-align: center;
    margin: 0 0 var(--lp-g3);
}
.vs-side-label--good {
    color: #3D9972;
}
.vs-side-label--bad {
    color: #C05050;
}
.vs-illustration {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 213 / 100;
    background: var(--lp-bg-illustrations);
    border-radius: var(--lp-r-lg);
    box-shadow: 0 10px 36px rgba(29, 29, 31, 0.10), 0 2px 8px rgba(29, 29, 31, 0.05);
    overflow: hidden;
}
.vs-illustration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.vs-illustrations-divider {
    width: 1px;
    align-self: stretch;
    margin: 18px 0;
    background: rgba(29, 29, 31, 0.12);
}
.vs-points {
    list-style: none;
    margin: 18px 0 0;
    padding: 0 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vs-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--lp-body);
    line-height: 1.45;
    color: var(--lp-text-body);
}
.vs-mark {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
    display: block;
}
.vs-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}
.vs-mark--yes path {
    stroke: #22c55e;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.vs-mark--no circle {
    fill: #C05050;
}
.vs-mark--no path {
    stroke: #fff;
    stroke-width: 2.2;
    stroke-linecap: round;
}
@media (max-width: 767px) {
    .vs-side-label {
        margin-bottom: var(--lp-g2);
    }
    .vs-illustrations {
        gap: 10px;
    }
    .vs-illustration {
        border-radius: var(--lp-r-md);
        box-shadow: 0 6px 20px rgba(29, 29, 31, 0.09), 0 1px 4px rgba(29, 29, 31, 0.04);
    }
    .vs-illustrations-divider {
        margin: 8px 0;
    }
    .vs-points {
        margin-top: 12px;
        padding: 0 2px;
        gap: 8px;
    }
    .vs-points li {
        font-size: 12px;
        gap: 7px;
    }
    .vs-mark {
        width: 18px;
        height: 18px;
    }
}

/* ════════════════════════════════════════════════════════════
   SECTION 6 — INDIVIDUAL PATH
   ════════════════════════════════════════════════════════════ */
.path-wrap {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
}
.path-wrap::before { display: none; }
.path-stop { display: flex; gap: 18px; margin-bottom: 36px; position: relative; }
.path-stop:last-child { margin-bottom: 0; }
.path-stop:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 38px;
    bottom: -36px;
    width: 1px;
    background-image: repeating-linear-gradient(
        to bottom,
        rgba(64, 92, 133, 0.55) 0,
        rgba(64, 92, 133, 0.55) 1.5px,
        transparent 1.5px,
        transparent 4px
    );
    pointer-events: none;
}
.path-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: var(--lp-primary);
    border: 1.5px solid var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--lp-bg-alt);
}
.path-body { flex: 1; padding-top: 6px; }
.path-label { font-size: var(--lp-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lp-primary); margin-bottom: 2px; }
#section-how .path-body h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-primary);
    margin-bottom: 6px;
}
#section-how .path-step-icon {
    width: 21.6px;
    height: 21.6px;
    color: var(--lp-primary);
    flex-shrink: 0;
}
.path-body h3 { margin-bottom: 5px; }
.path-body p  { font-size: var(--lp-body); color: var(--lp-text-muted); margin-bottom: 12px; }
.path-card { border-radius: var(--lp-r-md); overflow: hidden; box-shadow: var(--lp-sh-md); border: 1px solid rgba(0,0,0,0.06); }
.path-card .img-ph { height: 150px; border-radius: 0; border: none; }

#section-cta { text-align: center; }
#section-cta .lp-body-lg {
    margin: 10px auto 28px;
}
@media (min-width: 768px) {
    #section-cta .lp-body-lg {
        max-width: 50%;
    }
}
.lp-founder-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: var(--lp-g5);
    max-width: 720px;
}
.lp-founder-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    background: #e4e2de;
    border: 2px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
}
.lp-founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-founder-identity {
    display: flex;
    align-items: center;
    gap: 16px;
}
.lp-founder-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--lp-text-head);
    letter-spacing: -0.01em;
}
.lp-founder-role {
    font-size: 13px;
    color: var(--lp-text-muted);
    margin-top: 3px;
}
.lp-founder-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: 20px 0;
}
.lp-founder-stats {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.lp-founder-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 14px;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: var(--lp-r-sm);
    background: rgba(255,255,255,0.7);
}
.lp-founder-stat-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-primary);
    letter-spacing: -0.01em;
}
.lp-founder-stat-label {
    font-size: 9px;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.lp-founder-badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 4px;
}
.lp-founder-badge-link {
    display: inline-block;
    line-height: 0;
}
.lp-founder-badge-link img {
    height: 40px;
    width: auto;
    display: block;
    opacity: 0.92;
    transition: opacity var(--lp-ease);
}
.lp-founder-badge-link:hover img { opacity: 1; }
.lp-founder-social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: var(--lp-r-sm);
    border: 1px solid rgba(0,0,0,0.12);
    background: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--lp-text-head);
    transition: border-color var(--lp-ease), background var(--lp-ease);
}
.lp-founder-social-link:hover {
    border-color: var(--lp-primary);
    background: var(--lp-primary-bg);
    color: var(--lp-primary);
}
.lp-founder-social-link svg { flex-shrink: 0; }
.lp-founder-links-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}
.lp-founder-story-block {
    margin-bottom: 28px;
}
.lp-founder-story-block:last-child { margin-bottom: 0; }
.lp-founder-story-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--lp-primary);
    margin-bottom: 10px;
}
.lp-founder-story-heading {
    font-size: var(--lp-h3);
    font-weight: 600;
    color: var(--lp-text-head);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}
.lp-founder-story-text {
    font-size: calc(var(--lp-body-lg) - 3px);
    color: var(--lp-text-body);
    line-height: 1.75;
    font-style: italic;
}
.lp-founder-quote {
    border-left: 3px solid var(--lp-primary);
    padding-left: 16px;
    margin-top: 24px;
}
.lp-founder-quote-text {
    font-size: 15px;
    color: var(--lp-text-body);
    line-height: 1.65;
    font-style: italic;
}
.lp-founder-quote-attr {
    font-size: 12px;
    color: var(--lp-text-muted);
    margin-top: 6px;
}

.wearables-grid {
    display: grid;
    grid-template-columns: repeat(5, 66px);
    grid-template-rows: repeat(4, 66px);
    gap: 11px;
    opacity: 0.82;
}
.w-cell {
    width: 66px;
    height: 66px;
    border-radius: 16px;
}
.w-empty {
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
}
.w-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    overflow: hidden;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13), 0 1px 4px rgba(0,0,0,0.08);
    user-select: none;
}
.w-icon .w-lbl {
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.78;
    line-height: 1;
}
.w-apple    { background: linear-gradient(145deg, #ff375f, #ff6b81); }
.w-garmin   { background: #0b0b0b; }
.w-polar    { background: linear-gradient(145deg, #cf1c2e, #9e0016); }
.w-fitbit   { background: linear-gradient(145deg, #00b0b9, #007ea8); }
.w-whoop    { background: linear-gradient(145deg, #1c1c1e, #2c2c2e); }
.w-oura     { background: linear-gradient(145deg, #2a2a2e, #1a1a1c); }
.w-withings { background: linear-gradient(145deg, #009c3c, #006e28); }
.w-samsung  { background: linear-gradient(145deg, #1428a0, #0d1e8a); }

.lp-footer {
    background: var(--lp-bg-dark);
    padding: 44px var(--lp-sh) 28px;
}
.footer-inner { max-width: var(--lp-max); margin: 0 auto; }
.footer-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}
.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer-links a {
    font-size: var(--lp-caption);
    color: rgba(255,255,255,0.42);
    transition: color var(--lp-ease);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 20px;
    font-size: var(--lp-caption);
    color: rgba(255,255,255,0.28);
}

/* ════════════════════════════════════════════════════════════
   SECTION 9C — COMPARISON MATRIX
   ════════════════════════════════════════════════════════════ */
.cmp-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--lp-r-lg);
    box-shadow: var(--lp-sh-md);
    border: 1px solid #ebebed;
    margin-top: 48px;
    background: #fff;
}
.cmp-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    min-width: 640px;
    font-family: var(--lp-font);
    font-size: var(--lp-body);
}
.cmp-table th {
    padding: 18px 12px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lp-text-muted);
    border-bottom: 1px solid #f0f0f2;
    white-space: nowrap;
}
/* ── sticky feature column ── */
.cmp-th-feature {
    position: sticky;
    left: 0;
    z-index: 4;
    text-align: left;
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    padding: 18px 4px 15px 8px;
    background: #fff;
    white-space: nowrap;
}
.cmp-td-feature {
    position: sticky;
    left: 0;
    z-index: 2;
    text-align: left;
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    padding: 12px 4px 12px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--lp-text-body);
    background: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    user-select: none;
}
.cmp-td-feature:hover { color: var(--lp-primary); }
.cmp-table tbody tr:hover .cmp-td-feature { background-color: #fafbfc; }
/* ── sticky trackwise column (pinned right after feature col) ── */
.cmp-th-trackwise {
    position: sticky;
    left: 100px;
    z-index: 3;
    background: linear-gradient(160deg, #405C85 0%, #2d4361 100%);
    border-radius: var(--lp-r-md) var(--lp-r-md) 0 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    min-width: 88px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 4px 0 10px -2px rgba(0,0,0,0.10);
}
.cmp-td-trackwise {
    position: sticky;
    left: 100px;
    z-index: 1;
    background: #eef1f7;
    box-shadow: 4px 0 10px -2px rgba(0,0,0,0.07);
}
.cmp-table tbody tr:last-child .cmp-td-trackwise {
    border-radius: 0 0 var(--lp-r-md) var(--lp-r-md);
}
.cmp-table tbody tr:hover .cmp-td-trackwise { background-color: rgba(64,92,133,0.09) !important; }
.cmp-th-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.cmp-th-icon { font-size: 15px; line-height: 1; }
.cmp-th-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--lp-text-muted);
}
.cmp-th-trackwise .cmp-th-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
}
.cmp-th-trackwise .cmp-th-icon { opacity: 0.7; }
.cmp-table tbody tr { transition: background var(--lp-ease); }
.cmp-table tbody tr:hover td { background-color: #fafbfc; }
.cmp-table td {
    padding: 12px 12px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #f4f4f6;
}
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-yes, .cmp-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
}
.cmp-yes { background: #22c55e; color: #fff; }
.cmp-no  { background: #fee2e2; color: #ef4444; font-size: 11px; }
.cmp-note {
    margin-top: 18px;
    font-size: var(--lp-caption);
    color: var(--lp-text-muted);
    text-align: center;
    opacity: 0.6;
}
.cmp-footnote {
    margin-top: 10px;
    font-size: var(--lp-caption);
    color: var(--lp-primary);
    text-align: center;
    font-weight: 500;
}
/* Tooltip */
.cmp-tooltip {
    position: absolute;
    z-index: 9999;
    background: var(--lp-bg-dark);
    color: rgba(255,255,255,0.90);
    font-size: 12px;
    line-height: 1.55;
    padding: 10px 14px;
    border-radius: var(--lp-r-md);
    max-width: 240px;
    width: max-content;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.16s ease, transform 0.16s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.cmp-tooltip.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: none;
}
.cmp-tooltip-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.cmp-tooltip-body {
    color: rgba(255,255,255,0.90);
}


/* ── Coach page extras ─────────────────────────────────────────── */
.lp-section-head p { max-width: 640px; }

.cw-window {
    width: 100%;
    max-width: none;
    margin: 4px 0 0;
    align-self: stretch;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(20, 28, 40, 0.16);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(20, 28, 40, 0.12), 0 2px 8px rgba(20, 28, 40, 0.06);
    overflow: hidden;
}
.cw-chrome {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    padding: 9px 12px;
    background: #f3f4f6;
    border-bottom: 1px solid rgba(20, 28, 40, 0.10);
}
.cw-traffic { display: flex; gap: 5px; flex-shrink: 0; }
.cw-tl {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block;
    box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.12);
}
.cw-tl--red { background: #ff5f57; }
.cw-tl--yellow { background: #febc2e; }
.cw-tl--green { background: #28c840; }
.cw-mock-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.cw-row {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 8px;
    border-radius: 9px;
    background: #f7f8fa;
}
.cw-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #e5e7eb;
}
.cw-row-main { flex: 1; min-width: 0; }
.cw-row-title { font-size: 12px; font-weight: 650; color: var(--lp-text-head); }
.cw-row-sub { font-size: 10px; color: var(--lp-text-muted); margin-top: 2px; }
.cw-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.cw-dot--crit { background: #C05050; }
.cw-dot--imp { background: #f5a623; }
.cw-dot--ok { background: #3D9972; }

.cw-dash { display: grid; grid-template-columns: 1fr; gap: 7px; }
.cw-person {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: start;
    margin-bottom: 10px;
}
.cw-person .cw-avatar {
    width: 30px;
    height: 30px;
}
.cw-person-name {
    font-size: 13px;
    font-weight: 650;
    color: var(--lp-text-head);
}
.cw-dash-card {
    background: #f7f8fa;
    border-radius: 10px;
    padding: 9px 10px 10px;
}
.cw-dash-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.cw-dash-icon {
    width: 16.8px;
    height: 16.8px;
    color: var(--lp-primary);
    flex-shrink: 0;
}
.cw-dash-icon svg { width: 16.8px; height: 16.8px; display: block; }
.cw-dash-k {
    font-size: 13.2px;
    line-height: 16.8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lp-primary);
}
.cw-metric + .cw-metric { margin-top: 10px; }
.cw-dash-v { font-size: 12px; font-weight: 700; color: var(--lp-text-head); margin: 0 0 6px; }
.cw-dash-v--low { color: #C05050; }
.cw-dash-v--ok { color: #3D9972; }
.cw-lab { margin-top: 2px; }
.cw-lab + .cw-lab { margin-top: 12px; }
.cw-lab-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}
.cw-lab-name { font-size: 12px; font-weight: 600; color: var(--lp-text-head); }
.cw-lab-val {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--lp-text-head);
    white-space: nowrap;
}
.cw-lab-val b { color: #C05050; font-weight: 700; margin-right: 1px; }
.cw-lab-val--ok b { color: #3D9972; }
.cw-lab-spark { width: 34px; height: 16px; display: block; flex-shrink: 0; overflow: visible; }
.cw-lab-spark-line { stroke: #b0b5bc; stroke-width: 1.4; }
.cw-lab-scale {
    position: relative;
    height: 14px;
    background: none;
}
.cw-lab-scale::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background: #b0b4bc;
    border-radius: 99px;
}
.cw-lab-ok {
    position: absolute;
    left: 18%;
    top: 50%;
    width: 26%;
    height: 10px;
    transform: translateY(-50%);
    border-radius: 99px;
    background: rgba(61, 153, 114, 0.32);
}
.cw-lab-dot {
    position: absolute;
    top: 50%;
    left: 78%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C05050;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 2px #fff;
    z-index: 1;
}
.cw-lab-dot--ok {
    left: 32%;
    background: #3D9972;
}
.cw-bar {
    position: relative;
    height: 5px;
    border-radius: 99px;
    background: rgba(64, 92, 133, 0.12);
    overflow: visible;
}
.cw-bar span {
    display: block;
    height: 100%;
    border-radius: 99px;
    background: rgba(61, 153, 114, 0.42);
}
.cw-bar--ok span { background: rgba(61, 153, 114, 0.42); }
.cw-bar--low span { background: rgba(192, 80, 80, 0.5); }
.cw-bar--warn span { background: #f5a623; }
.cw-bar-tick {
    position: absolute;
    top: -3px;
    bottom: -3px;
    width: 1.5px;
    background: rgba(20, 28, 40, 0.38);
    border-radius: 1px;
    transform: translateX(-50%);
    pointer-events: none;
}

.cw-goal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f7f8fa;
    border-radius: 10px;
    padding: 8px 16px 8px 10px;
    overflow: visible;
}
.cw-spark { width: 88px; height: 36px; flex-shrink: 0; overflow: visible; }
.cw-spark-goal {
    stroke: #3D9972;
    stroke-width: 1.1;
    stroke-dasharray: 2.5 2.2;
    stroke-linecap: round;
    opacity: 0.72;
}
.cw-sec-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lp-text-head);
    padding-left: 2px;
}
.cw-sec-rule {
    width: 80%;
    height: 1px;
    margin: 4px auto;
    background: rgba(20, 28, 40, 0.12);
    border-radius: 99px;
}
.cw-goals-body { gap: 8px; }
.cw-goals-body .cw-row-title { font-size: 14px; }
.cw-goals-body .cw-row-sub { font-size: 12px; }
.cw-goals-body .cw-sec-label { font-size: 13px; }
.cw-goals-body .cw-spark { width: 90px; height: 38px; }
.cw-goals-body .cw-goal { padding: 10px 16px 10px 12px; }
.cw-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.cw-pillar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: #f7f8fa;
    border-radius: 9px;
    padding: 8px 9px 9px;
    font-size: 11px;
    font-weight: 650;
    color: var(--lp-text-head);
}
.cw-goals-body .cw-pillar {
    gap: 10px;
    padding: 10px 11px 11px;
    font-size: 13px;
}
.cw-pillar-head {
    display: flex;
    align-items: center;
    gap: 7px;
}
.cw-pillar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--lp-text-muted);
}
.cw-goals-body .cw-pillar-list {
    font-size: 12px;
    gap: 4px;
}
.cw-pillar-icon {
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cw-pillar-icon svg { width: 13px; height: 13px; display: block; }
.cw-goals-body .cw-pillar-icon svg { width: 15px; height: 15px; }

.cw-lib {
    display: flex;
    flex-direction: column;
}
.cw-lib-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 9px 8px;
}
.cw-lib-item + .cw-lib-item {
    border-top: 1px solid rgba(20, 28, 40, 0.08);
}
.cw-lib-item--on {
    background: #f3f4f6;
    border-radius: 9px;
    border-top: none;
}
.cw-lib-item--on + .cw-lib-item {
    border-top: none;
}
.cw-lib-ico {
    font-size: 15px;
    line-height: 1.25;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.cmp-table tbody tr:hover .cmp-td-trackwise { background-color: #e2ecf7 !important; }
.cmp-th-trackwise {
    background: #d5e0ef !important;
    border-bottom: 1px solid rgba(64,92,133,0.15) !important;
}
.cmp-th-trackwise .cmp-th-label {
    color: #3D9972 !important;
    font-weight: 700;
}
.cmp-th-trackwise .cmp-th-icon { opacity: 1 !important; }

#section-compare .cmp-scroll-wrap--trio {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
#section-compare .cmp-table--trio {
    width: auto;
    min-width: 0;
    table-layout: fixed;
}
#section-compare .cmp-table--trio .cmp-th-feature,
#section-compare .cmp-table--trio .cmp-td-feature {
    width: 112px;
    min-width: 112px;
    max-width: 112px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    font-size: 13px;
}
#section-compare .cmp-table--trio .cmp-td-feature--protocol {
    font-size: 12px;
}
#section-compare .cmp-table--trio .cmp-th-trackwise,
#section-compare .cmp-table--trio .cmp-td-trackwise {
    left: 112px;
    width: 101px;
    min-width: 101px;
    max-width: 101px;
    overflow: hidden;
}
#section-compare .cmp-table--trio .cmp-th-trackwise .cmp-th-label {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
}
#section-compare .cmp-th-without,
#section-compare .cmp-td-without,
#section-compare .cmp-th-platforms,
#section-compare .cmp-td-platforms {
    width: 168px;
    min-width: 168px;
    max-width: 168px;
    text-align: center;
}
#section-compare .cmp-th-without,
#section-compare .cmp-th-platforms {
    background: #fff;
    text-transform: none;
}
#section-compare .cmp-th-without .cmp-th-label,
#section-compare .cmp-th-platforms .cmp-th-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--lp-text-muted);
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}
#section-compare .cmp-th-without .cmp-th-label {
    color: #C05050;
}
#section-compare .cmp-th-without .cmp-th-icon,
#section-compare .cmp-th-platforms .cmp-th-icon {
    opacity: 0.7;
}
#section-compare .cmp-td-without,
#section-compare .cmp-td-platforms {
    background: #fafafa;
}
#section-compare .cmp-table tbody tr:hover .cmp-td-without,
#section-compare .cmp-table tbody tr:hover .cmp-td-platforms {
    background-color: #f4f4f6;
}
#section-compare .cmp-yes,
#section-compare .cmp-no {
    width: 18px;
    height: 18px;
    font-size: 11px;
    border-radius: 5px;
}

#section-1b-hero3d .lp-hero {
    font-size: 34px;
}
@media (min-width: 768px) {
    #section-1b-hero3d .hero3d-inner {
        flex-wrap: nowrap;
        align-items: center;
    }
    #section-1b-hero3d .lp-hero {
        font-size: 44px;
    }
}
