:root {
    --landing-ink: #071426;
    --landing-ink-soft: #0d2039;
    --landing-blue: #2563eb;
    --landing-cyan: #1464d4;
    --landing-lime: #76e1ff;
    --landing-cloud: #f4f7fb;
    --landing-line: #dbe4ee;
    --landing-muted: #5d6b7c;
}

html {
    scroll-behavior: smooth;
}

.landing-layout {
    min-height: 100vh;
}

.landing-skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;
    transform: translateY(-150%);
    border-radius: 999px;
    background: #fff;
    color: var(--landing-ink);
    padding: 0.75rem 1rem;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    transition: transform 160ms ease;
}

.landing-skip-link:focus {
    transform: translateY(0);
}

.hr-landing {
    overflow: clip;
    background: #fff;
    color: var(--landing-ink);
    font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.hr-landing a {
    color: inherit;
}

.hr-landing button,
.hr-landing input {
    font: inherit;
}

.landing-shell {
    width: min(100% - 2.5rem, 84rem);
    margin-inline: auto;
}

.landing-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.landing-nav {
    display: flex;
    min-height: 5.5rem;
    align-items: center;
    gap: 2rem;
}

.landing-brand {
    display: inline-flex;
    width: 10.8rem;
    height: 3.4rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.8rem;
    background: #fff;
    padding: 0.45rem 0.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.landing-brand img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.landing-nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 2.2rem);
}

.landing-nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 160ms ease;
}

.landing-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -0.45rem;
    height: 2px;
    background: var(--landing-cyan);
    transition: right 160ms ease;
}

.landing-nav-links a:hover,
.landing-nav-links a:focus-visible {
    color: #fff;
}

.landing-nav-links a:hover::after,
.landing-nav-links a:focus-visible::after {
    right: 0;
}

.landing-button {
    display: inline-flex;
    min-height: 3.35rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.85rem 1.35rem;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.landing-button span {
    font-size: 1.1rem;
    transition: transform 160ms ease;
}

.landing-button:hover,
.landing-button:focus-visible {
    transform: translateY(-2px);
}

.landing-button:hover span,
.landing-button:focus-visible span {
    transform: translate(2px, -1px);
}

.landing-button-small {
    min-height: 2.8rem;
    padding: 0.7rem 1.1rem;
    font-size: 0.8rem;
}

.landing-button-light {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    backdrop-filter: blur(12px);
}

.landing-button-light:hover,
.landing-button-light:focus-visible {
    border-color: #fff;
    background: #fff;
    color: var(--landing-ink) !important;
}

.landing-button-primary {
    border-color: var(--landing-lime);
    background: var(--landing-lime);
    color: var(--landing-ink) !important;
    box-shadow: 0 18px 44px rgba(0, 174, 255, 0.18);
}

.landing-button-primary:hover,
.landing-button-primary:focus-visible {
    border-color: #7baff9;
    background: #7baff9;
    box-shadow: 0 20px 50px rgba(0, 174, 255, 0.25);
}

.landing-button-dark {
    border-color: var(--landing-ink);
    background: var(--landing-ink);
    color: #fff !important;
}

.landing-button-outline {
    border-color: #aab8c8;
    background: transparent;
    color: var(--landing-ink) !important;
}

.landing-button-outline:hover,
.landing-button-outline:focus-visible {
    border-color: var(--landing-ink);
    background: var(--landing-ink);
    color: #fff !important;
}

.landing-text-link,
.landing-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 750;
    text-underline-offset: 0.32rem;
    text-decoration-thickness: 1px;
}

.landing-text-link span,
.landing-inline-link span {
    transition: transform 160ms ease;
}

.landing-text-link:hover span,
.landing-inline-link:hover span {
    transform: translateX(4px);
}

.landing-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(7, 20, 38, 0.1), rgba(7, 20, 38, 0.35)),
        var(--landing-ink);
    color: #fff;
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.11;
    background-image:
        linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
    pointer-events: none;
}

.landing-hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.landing-hero-glow-one {
    width: 38rem;
    height: 38rem;
    top: 2rem;
    right: -10rem;
    background: radial-gradient(circle, rgba(20, 184, 212, 0.2), transparent 68%);
}

.landing-hero-glow-two {
    width: 28rem;
    height: 28rem;
    left: -14rem;
    bottom: 2rem;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.22), transparent 70%);
}

.landing-hero-grid {
    position: relative;
    display: grid;
    min-height: 52rem;
    grid-template-columns: minmax(0, 0.86fr) minmax(34rem, 1.14fr);
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5.5rem);
    padding-top: 8.5rem;
    padding-bottom: 5.5rem;
}

.landing-hero-copy {
    position: relative;
    z-index: 2;
}

.landing-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1.25rem;
    color: #35516d;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.landing-eyebrow > span {
    width: 1.75rem;
    height: 2px;
    background: var(--landing-cyan);
}

.landing-eyebrow-bright {
    color: rgba(255, 255, 255, 0.7);
}

.landing-hero h1,
.landing-section h2,
.landing-final-cta h2 {
    margin: 0;
    font-weight: 750;
    letter-spacing: -0.055em;
    line-height: 0.97;
}

.landing-hero h1 {
    max-width: 47rem;
    color: #fff;
    font-size: clamp(3.6rem, 6.2vw, 6.25rem);
}

.landing-hero h1 em,
.landing-final-cta h2 em {
    color: var(--landing-cyan);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.landing-hero-lede {
    max-width: 42rem;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.75;
}

.landing-hero-lede sup {
    color: var(--landing-lime);
    font-size: 0.62em;
}

.landing-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.1rem;
}

.landing-hero-actions .landing-text-link {
    color: #fff;
    font-size: 0.88rem;
}

.landing-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2.25rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 650;
}

.landing-hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.landing-hero-proof b {
    display: inline-flex;
    width: 1.15rem;
    height: 1.15rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 174, 255, 0.45);
    border-radius: 999px;
    color: var(--landing-lime);
    font-size: 0.62rem;
}

.landing-dashboard-shot {
    position: relative;
    z-index: 2;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.55rem;
    background: linear-gradient(150deg, rgba(19, 42, 70, 0.92), rgba(8, 26, 48, 0.98));
    padding: 0.85rem;
    box-shadow: 0 48px 120px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.landing-dashboard-shot::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(20, 184, 212, 0.38), transparent 35%, transparent 70%, rgba(37, 99, 235, 0.24));
    filter: blur(14px);
}

.landing-dashboard-shot-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.15rem 0.35rem 0.75rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.landing-dashboard-shot-bar > div {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.landing-dashboard-shot-bar strong {
    color: rgba(255, 255, 255, 0.82);
}

.landing-dashboard-shot-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 1rem;
    background: #eef4f9;
}

.landing-dashboard-shot-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}

.landing-dashboard-shot figcaption {
    padding: 0.75rem 0.35rem 0.1rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.68rem;
    line-height: 1.5;
}

.landing-product-preview {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.7rem;
    background: linear-gradient(150deg, rgba(19, 42, 70, 0.92), rgba(8, 26, 48, 0.98));
    padding: 1.1rem;
    box-shadow: 0 48px 120px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}

.landing-product-preview::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(20, 184, 212, 0.36), transparent 35%, transparent 70%, rgba(37, 99, 235, 0.22));
    filter: blur(12px);
}

.landing-preview-topbar,
.landing-preview-card-head,
.landing-preview-insight,
.landing-pricing-card-top,
.landing-team-selector > span,
.landing-team-selector > small {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-preview-topbar {
    padding: 0.2rem 0.35rem 1rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.64rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.landing-preview-topbar > div {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.8);
}

.landing-live-dot {
    position: relative;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--landing-lime);
    box-shadow: 0 0 0 5px rgba(0, 174, 255, 0.08), 0 0 24px rgba(0, 174, 255, 0.5);
}

.landing-preview-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.landing-preview-metrics article,
.landing-preview-chart-card,
.landing-preview-insight {
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.landing-preview-metrics article {
    min-height: 7rem;
    border-radius: 1rem;
    padding: 1rem;
}

.landing-preview-metrics article > span,
.landing-preview-card-head span,
.landing-preview-insight div > span {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.61rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-preview-metrics strong {
    display: block;
    margin-top: 0.65rem;
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
}

.landing-preview-metrics strong small {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.75rem;
}

.landing-preview-metrics em {
    display: block;
    margin-top: 0.62rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.6rem;
    font-style: normal;
}

.landing-preview-metrics em.positive {
    color: var(--landing-lime);
}

.landing-preview-chart-card {
    margin-top: 0.65rem;
    border-radius: 1.15rem;
    padding: 1rem;
}

.landing-preview-card-head strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.landing-preview-legend {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.6rem;
}

.landing-preview-legend i {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--landing-cyan);
    box-shadow: 0 0 14px rgba(20, 184, 212, 0.65);
}

.landing-preview-chart {
    position: relative;
    display: flex;
    height: 11.5rem;
    align-items: end;
    gap: 0.4rem;
    margin-top: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background-image: linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 100% 25%;
}

.landing-preview-chart > span {
    display: block;
    flex: 1;
    min-width: 0.35rem;
    border-radius: 0.3rem 0.3rem 0 0;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.62));
}

.landing-preview-chart > span.warm {
    background: linear-gradient(to top, rgba(37, 99, 235, 0.28), rgba(20, 184, 212, 0.78));
}

.landing-preview-chart > span.hot {
    background: linear-gradient(to top, rgba(20, 184, 212, 0.35), rgba(0, 174, 255, 0.92));
    box-shadow: 0 0 22px rgba(0, 174, 255, 0.08);
}

.landing-preview-axis {
    display: flex;
    justify-content: space-between;
    padding-top: 0.55rem;
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.52rem;
}

.landing-preview-insight {
    margin-top: 0.65rem;
    border-radius: 1rem;
    padding: 0.85rem;
}

.landing-insight-icon {
    display: inline-flex;
    width: 2.1rem;
    height: 2.1rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(20, 184, 212, 0.13);
    color: var(--landing-cyan);
}

.landing-preview-insight > div {
    flex: 1;
}

.landing-preview-insight div strong {
    display: block;
    margin-top: 0.22rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.72rem;
}

.landing-insight-pill {
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(0, 174, 255, 0.1);
    color: var(--landing-lime);
    padding: 0.38rem 0.62rem;
    font-size: 0.54rem;
    font-weight: 800;
    text-transform: uppercase;
}

.landing-audience-strip {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.65rem 0;
    color: rgba(255, 255, 255, 0.75);
}

.landing-audience-strip > span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-audience-strip strong {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    text-align: center;
}

.landing-section {
    padding: clamp(5rem, 9vw, 8.5rem) 0;
    scroll-margin-top: 2rem;
}

.landing-section h2 {
    max-width: 48rem;
    font-size: clamp(2.5rem, 4.9vw, 4.65rem);
}

.landing-intro-section {
    background: #fff;
}

.landing-intro-grid,
.landing-responsible-grid,
.landing-faq-grid,
.landing-final-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
}

.landing-intro-copy {
    padding-top: 2.25rem;
}

.landing-intro-copy p,
.landing-section-heading > p,
.landing-heading-centered > p,
.landing-responsible-copy > p,
.landing-faq-grid > div:first-child > p {
    margin: 0;
    color: var(--landing-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.landing-intro-copy .landing-inline-link {
    margin-top: 1.6rem;
    color: #1260d7;
    font-size: 0.88rem;
}

.landing-wellness-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}

.landing-wellness-copy,
.landing-wellness-stats {
    width: 100%;
    min-width: 0;
}

.landing-wellness-copy h2 {
    max-width: 50rem;
}

.landing-wellness-copy > p {
    max-width: 48rem;
    margin: 1.7rem 0 0;
    color: var(--landing-muted);
    font-size: 1rem;
    line-height: 1.82;
}

.landing-wellness-copy > small {
    display: block;
    margin-top: 1.2rem;
    color: #8a98a8;
    font-size: 0.64rem;
    line-height: 1.5;
}

.landing-wellness-stats {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1rem;
}

.landing-wellness-stats > article {
    min-height: 14rem;
    border: 1px solid var(--landing-line);
    border-radius: 1.4rem;
    background: var(--landing-cloud);
    padding: 1.5rem;
}

.landing-wellness-stats > article:first-child {
    border-color: #b6cbe9;
    background: linear-gradient(145deg, #effcff, #f6fbff);
}

.landing-wellness-stats > article strong {
    display: block;
    max-width: 100%;
    color: var(--landing-ink);
    font-size: clamp(3rem, 4vw, 4rem);
    letter-spacing: -0.08em;
    line-height: 1;
    white-space: nowrap;
}

.landing-wellness-stats > article:first-child strong {
    color: #0748a2;
}

.landing-wellness-stats > article span {
    display: block;
    margin-top: 1.3rem;
    color: var(--landing-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.landing-wellness-note {
    display: flex;
    grid-column: 1 / -1;
    align-items: flex-start;
    gap: 0.9rem;
    border-radius: 1.2rem;
    background: var(--landing-ink);
    padding: 1.2rem 1.3rem;
    color: #fff;
}

.landing-wellness-note > span {
    display: inline-flex;
    width: 1.75rem;
    height: 1.75rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--landing-lime);
    color: var(--landing-ink);
    font-size: 0.72rem;
    font-weight: 900;
}

.landing-wellness-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.75rem;
    line-height: 1.6;
}

.landing-wellness-note strong {
    color: #fff;
}

.landing-features-section {
    background: var(--landing-cloud);
}

.landing-section-heading {
    margin-bottom: 3.5rem;
}

.landing-section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.6fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: end;
}

.landing-section-heading-split > p {
    padding-bottom: 0.2rem;
}

.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.landing-feature-card {
    position: relative;
    display: flex;
    min-height: 20rem;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid var(--landing-line);
    border-radius: 1.4rem;
    background: #fff;
    padding: 1.45rem;
    box-shadow: 0 18px 50px rgba(7, 20, 38, 0.035);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.landing-feature-card:hover {
    transform: translateY(-4px);
    border-color: #b5c5d7;
    box-shadow: 0 28px 70px rgba(7, 20, 38, 0.08);
}

.landing-feature-card-compact {
    min-height: 20rem;
}

.landing-feature-card-wide {
    grid-column: span 2;
}

.landing-feature-dark {
    border-color: var(--landing-ink);
    background: var(--landing-ink);
    color: #fff;
}

.landing-feature-accent {
    border-color: #3270c6;
    background: var(--landing-lime);
}

.landing-feature-number {
    color: #7890a8;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.landing-feature-dark .landing-feature-number {
    color: rgba(255,255,255,0.38);
}

.landing-feature-glyph {
    display: inline-flex;
    width: 4.5rem;
    height: 4.5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8e3ed;
    border-radius: 1.25rem;
    background: #f6f9fc;
    color: #156ee8;
    font-family: Georgia, serif;
    font-size: 2rem;
}

.landing-feature-dark .landing-feature-glyph {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    color: var(--landing-cyan);
}

.landing-feature-accent .landing-feature-glyph {
    border-color: rgba(7, 20, 38, 0.16);
    background: rgba(255, 255, 255, 0.42);
    color: var(--landing-ink);
}

.landing-feature-glyph-text {
    font-family: inherit;
    font-weight: 800;
}

.landing-feature-glyph-alert {
    border-color: #ffd4da;
    background: #fff2f4;
    color: #d8173b;
    font-family: inherit;
    font-weight: 900;
}

.landing-feature-card h3 {
    margin: 0;
    color: var(--landing-ink);
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}

.landing-feature-dark h3 {
    color: #fff;
}

.landing-feature-card p {
    max-width: 31rem;
    margin: 0.75rem 0 0;
    color: var(--landing-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.landing-feature-dark p {
    color: rgba(255,255,255,0.55);
}

.landing-feature-accent p {
    color: rgba(7,20,38,0.7);
}

.landing-feature-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.landing-feature-points li {
    border: 1px solid #d8e3ed;
    border-radius: 999px;
    background: #f7fafd;
    color: #50647a;
    padding: 0.38rem 0.58rem;
    font-size: 0.61rem;
    font-weight: 750;
    line-height: 1.2;
}

.landing-feature-dark .landing-feature-points li {
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.68);
}

.landing-feature-accent .landing-feature-points li {
    border-color: rgba(7, 20, 38, 0.15);
    background: rgba(255, 255, 255, 0.38);
    color: rgba(7, 20, 38, 0.75);
}

.landing-mini-timeline {
    display: flex;
    height: 8rem;
    max-width: 30rem;
    align-items: end;
    gap: 0.55rem;
    margin: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 100% 25%;
}

.landing-mini-timeline span {
    flex: 1;
    max-width: 2.2rem;
    border-radius: 0.35rem 0.35rem 0 0;
    background: linear-gradient(to top, rgba(37,99,235,0.4), var(--landing-cyan));
}

.landing-mini-timeline span:nth-child(6),
.landing-mini-timeline span:nth-child(8) {
    background: linear-gradient(to top, var(--landing-cyan), var(--landing-lime));
}

.landing-feature-command {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin: 1rem 0;
}

.landing-feature-command > span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(7,20,38,0.22);
    border-radius: 999px;
    background: rgba(255,255,255,0.36);
    padding: 0.65rem 0.85rem;
    color: var(--landing-ink);
    font-size: 0.72rem;
    font-weight: 850;
}

.landing-feature-command i {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #1260d7;
}

.landing-feature-command b {
    color: rgba(7,20,38,0.42);
}

.landing-how-section {
    position: relative;
    background: var(--landing-ink);
    color: #fff;
}

.landing-how-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background: radial-gradient(circle at 50% 20%, rgba(20,184,212,0.35), transparent 34rem);
    pointer-events: none;
}

.landing-how-section .landing-shell {
    position: relative;
}

.landing-heading-centered {
    max-width: 54rem;
    margin-inline: auto;
    text-align: center;
}

.landing-heading-centered .landing-eyebrow {
    justify-content: center;
}

.landing-heading-centered h2 {
    max-width: none;
}

.landing-heading-centered > p {
    max-width: 38rem;
    margin: 1.5rem auto 0;
}

.landing-how-section .landing-heading-centered > p {
    color: rgba(255,255,255,0.55);
}

.landing-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.13);
}

.landing-steps article {
    position: relative;
    min-height: 23rem;
    border-right: 1px solid rgba(255,255,255,0.13);
    padding: 2rem;
}

.landing-steps article:first-child {
    border-left: 1px solid rgba(255,255,255,0.13);
}

.landing-steps article > span {
    color: rgba(255,255,255,0.34);
    font-size: 0.65rem;
    font-weight: 800;
}

.landing-step-icon {
    display: flex;
    width: 4.4rem;
    height: 4.4rem;
    align-items: center;
    justify-content: center;
    margin: 4rem 0 2.4rem;
    border: 1px solid rgba(20,184,212,0.32);
    border-radius: 999px;
    background: rgba(20,184,212,0.08);
    color: var(--landing-cyan);
    font-size: 1.8rem;
}

.landing-steps h3 {
    margin: 0;
    font-size: 1.12rem;
}

.landing-steps p {
    margin: 0.85rem 0 0;
    color: rgba(255,255,255,0.52);
    font-size: 0.84rem;
    line-height: 1.7;
}

.landing-responsible-section {
    background: #fff;
}

.landing-responsible-copy > p {
    max-width: 38rem;
    margin-top: 1.8rem;
}

.landing-responsible-copy .landing-button {
    margin-top: 2rem;
}

.landing-principles {
    border-top: 1px solid var(--landing-line);
}

.landing-principles article {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    border-bottom: 1px solid var(--landing-line);
    padding: 1.5rem 0;
}

.landing-principles article > span {
    color: #1260d7;
    font-size: 0.62rem;
    font-weight: 850;
}

.landing-principles strong {
    display: block;
    font-size: 1rem;
}

.landing-principles p {
    margin: 0.35rem 0 0;
    color: var(--landing-muted);
    font-size: 0.82rem;
}

.landing-pricing-section {
    background: var(--landing-cloud);
}

.landing-pricing-controls {
    display: grid;
    grid-template-columns: auto minmax(18rem, 1fr) auto;
    align-items: center;
    gap: 2rem;
    margin: 0 auto 2rem;
    border: 1px solid var(--landing-line);
    border-radius: 1.25rem;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 18px 50px rgba(7,20,38,0.045);
}

.landing-billing-toggle {
    display: flex;
    border-radius: 999px;
    background: #edf2f7;
    padding: 0.3rem;
}

.landing-billing-option {
    min-height: 2.65rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #627183;
    padding: 0.55rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
}

.landing-billing-option span {
    color: #134182;
    font-size: 0.57rem;
}

.landing-billing-option.active {
    background: var(--landing-ink);
    color: #fff;
    box-shadow: 0 8px 20px rgba(7,20,38,0.16);
}

.landing-billing-option.active span {
    color: var(--landing-lime);
}

.landing-team-selector {
    display: block;
}

.landing-team-selector > span {
    margin-bottom: 0.65rem;
    color: #718196;
    font-size: 0.68rem;
}

.landing-team-selector > span strong {
    color: var(--landing-ink);
}

.landing-team-selector > span b {
    color: #1260d7;
}

.landing-team-selector input {
    width: 100%;
    height: 0.4rem;
    border-radius: 999px;
    appearance: none;
    background: linear-gradient(90deg, var(--landing-blue), var(--landing-cyan));
    accent-color: var(--landing-blue);
}

.landing-team-selector input::-webkit-slider-thumb {
    width: 1.2rem;
    height: 1.2rem;
    appearance: none;
    border: 3px solid #fff;
    border-radius: 999px;
    background: var(--landing-blue);
    box-shadow: 0 2px 8px rgba(7,20,38,0.3);
}

.landing-team-selector input::-moz-range-thumb {
    width: 0.9rem;
    height: 0.9rem;
    border: 3px solid #fff;
    border-radius: 999px;
    background: var(--landing-blue);
    box-shadow: 0 2px 8px rgba(7,20,38,0.3);
}

.landing-team-selector > small {
    margin-top: 0.45rem;
    color: #91a0b0;
    font-size: 0.55rem;
}

.landing-plan-fit {
    min-width: 8.5rem;
    border-left: 1px solid var(--landing-line);
    padding-left: 1.5rem;
}

.landing-plan-fit span,
.landing-plan-fit strong {
    display: block;
}

.landing-plan-fit span {
    color: #7b899a;
    font-size: 0.58rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-plan-fit strong {
    margin-top: 0.25rem;
    font-size: 1rem;
}

.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.landing-pricing-card {
    position: relative;
    display: flex;
    min-height: 36rem;
    flex-direction: column;
    border: 1px solid var(--landing-line);
    border-radius: 1.4rem;
    background: #fff;
    padding: 1.7rem;
    box-shadow: 0 18px 50px rgba(7,20,38,0.04);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.landing-pricing-card.recommended {
    border-color: var(--landing-blue);
    box-shadow: 0 28px 70px rgba(37,99,235,0.13);
    transform: translateY(-0.55rem);
}

.landing-plan-label {
    color: #738397;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-pricing-card h3 {
    margin: 0.45rem 0 0;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.landing-recommended-badge {
    border-radius: 999px;
    background: #e8f1ff;
    color: #165fd2;
    padding: 0.45rem 0.65rem;
    font-size: 0.58rem;
    font-weight: 850;
    text-transform: uppercase;
}

.landing-price {
    display: flex;
    align-items: end;
    gap: 0.75rem;
    margin-top: 2rem;
}

.landing-price strong {
    font-size: clamp(2.7rem, 4vw, 3.75rem);
    letter-spacing: -0.06em;
    line-height: 0.9;
}

.landing-price span {
    color: #738397;
    font-size: 0.68rem;
    line-height: 1.25;
}

.landing-price-custom strong {
    font-size: 2.65rem;
}

.landing-price-estimate {
    min-height: 3.2rem;
    margin: 1.25rem 0 0;
    color: #57687b;
    font-size: 0.72rem;
    line-height: 1.5;
}

.landing-price-estimate small {
    display: block;
    color: #133b73;
    font-weight: 750;
}

.landing-pricing-card ul {
    display: grid;
    gap: 0.85rem;
    margin: 1.5rem 0 2rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--landing-line);
    list-style: none;
}

.landing-pricing-card li {
    display: flex;
    align-items: start;
    gap: 0.65rem;
    color: #4f6073;
    font-size: 0.78rem;
    line-height: 1.45;
}

.landing-pricing-card li span {
    display: inline-flex;
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    margin-top: 0.05rem;
    border-radius: 999px;
    background: #d3e2f8;
    color: #133e7b;
    font-size: 0.58rem;
    font-weight: 900;
}

.landing-plan-button {
    width: 100%;
    margin-top: auto;
}

.landing-pricing-note {
    margin: 1.3rem auto 0;
    color: #758497;
    font-size: 0.66rem;
    line-height: 1.5;
    text-align: center;
}

.landing-pricing-note strong {
    color: #586a7d;
}

.landing-reviews-section {
    background: #fff;
}

.landing-client-story {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
    border: 1px solid var(--landing-ink);
    border-radius: 1.7rem;
    background: var(--landing-ink);
    box-shadow: 0 32px 90px rgba(7, 20, 38, 0.14);
}

.landing-client-quote {
    position: relative;
    display: flex;
    min-height: 31rem;
    flex-direction: column;
    padding: clamp(2rem, 5vw, 4.5rem);
}

.landing-quote-mark {
    position: absolute;
    top: 1rem;
    right: 2.5rem;
    color: rgba(20, 184, 212, 0.16);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13rem;
    line-height: 1;
}

.landing-client-quote blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 2.7vw, 2.45rem);
    line-height: 1.42;
}

.landing-client-quote footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 2.5rem;
}

.landing-client-quote footer > span {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--landing-lime);
    color: var(--landing-ink);
    font-size: 0.75rem;
    font-weight: 900;
}

.landing-client-quote footer strong,
.landing-client-quote footer small {
    display: block;
}

.landing-client-quote footer strong {
    color: #fff;
    font-size: 0.88rem;
}

.landing-client-quote footer small {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.68rem;
}

.landing-client-outcomes {
    display: grid;
    align-content: center;
    gap: 0.8rem;
    background: #f4f8fb;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.landing-client-outcomes article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    border: 1px solid var(--landing-line);
    border-radius: 1.15rem;
    background: #fff;
    padding: 1.2rem;
}

.landing-client-outcomes article > span {
    color: #0748a2;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.landing-client-outcomes strong {
    color: var(--landing-ink);
    font-size: 0.88rem;
}

.landing-client-outcomes p {
    margin: 0.45rem 0 0;
    color: var(--landing-muted);
    font-size: 0.74rem;
    line-height: 1.55;
}

.landing-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.landing-review-grid article {
    display: flex;
    min-height: 23rem;
    flex-direction: column;
    border: 1px solid var(--landing-line);
    border-radius: 1.4rem;
    background: #fff;
    padding: 1.6rem;
}

.landing-review-grid article.landing-review-featured {
    border-color: var(--landing-ink);
    background: var(--landing-ink);
    color: #fff;
}

.landing-stars {
    color: #f3b51b;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
}

.landing-review-grid blockquote {
    margin: 2.2rem 0 2rem;
    color: #21354a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.55;
}

.landing-review-featured blockquote {
    color: rgba(255,255,255,0.88);
}

.landing-review-grid footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.landing-review-grid footer > span {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e8f1ff;
    color: #165fd2;
    font-size: 0.7rem;
    font-weight: 900;
}

.landing-review-featured footer > span {
    background: rgba(20,184,212,0.14);
    color: var(--landing-cyan);
}

.landing-review-grid footer strong,
.landing-review-grid footer small {
    display: block;
}

.landing-review-grid footer strong {
    font-size: 0.78rem;
}

.landing-review-grid footer small {
    margin-top: 0.2rem;
    color: #8391a2;
    font-size: 0.6rem;
}

.landing-review-featured footer small {
    color: rgba(255,255,255,0.42);
}

.landing-faq-section {
    background: var(--landing-cloud);
}

.landing-faq-grid > div:first-child > p {
    max-width: 29rem;
    margin-top: 1.4rem;
}

.landing-faq-list {
    border-top: 1px solid #cbd7e2;
}

.landing-faq-list details {
    border-bottom: 1px solid #cbd7e2;
    padding: 1.35rem 0;
}

.landing-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--landing-ink);
    font-size: 0.93rem;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

.landing-faq-list summary::-webkit-details-marker {
    display: none;
}

.landing-faq-list summary span {
    display: inline-flex;
    width: 1.8rem;
    height: 1.8rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid #aebdcb;
    border-radius: 999px;
    transition: transform 160ms ease, background-color 160ms ease;
}

.landing-faq-list details[open] summary span {
    background: var(--landing-ink);
    color: #fff;
    transform: rotate(45deg);
}

.landing-faq-list details p {
    max-width: 36rem;
    margin: 1rem 3rem 0 0;
    color: var(--landing-muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

.landing-final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #071426 0%, #0b2745 100%);
    color: #fff;
    padding: clamp(5rem, 9vw, 8rem) 0;
}

.landing-final-orbit {
    position: absolute;
    border: 1px solid rgba(20,184,212,0.18);
    border-radius: 999px;
    pointer-events: none;
}

.landing-final-orbit-one {
    width: 34rem;
    height: 34rem;
    right: -14rem;
    top: -18rem;
    box-shadow: 0 0 0 4rem rgba(20,184,212,0.025), 0 0 0 8rem rgba(20,184,212,0.02);
}

.landing-final-orbit-two {
    width: 18rem;
    height: 18rem;
    left: -9rem;
    bottom: -10rem;
    box-shadow: 0 0 0 3rem rgba(37,99,235,0.035);
}

.landing-final-grid {
    position: relative;
    align-items: end;
}

.landing-final-cta h2 {
    font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.landing-final-grid > div:last-child > p {
    max-width: 30rem;
    margin: 0 0 1.7rem;
    color: rgba(255,255,255,0.62);
    font-size: 1rem;
    line-height: 1.75;
}

.landing-final-actions {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.landing-final-actions .landing-text-link {
    color: #fff;
    font-size: 0.82rem;
}

.landing-footer {
    background: #040d19;
    color: #fff;
    padding: 4rem 0 1.3rem;
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.65fr 0.75fr 0.75fr 1.1fr;
    gap: 3rem;
}

.landing-header-solid {
    background: #07182b;
}

.landing-legal-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 8%, rgba(10, 191, 227, 0.12), transparent 26rem),
        #f4f8fc;
}

.landing-legal-main {
    padding: 8.5rem 1.25rem 5rem;
}

.landing-legal-card {
    width: min(860px, 100%);
    margin: 0 auto;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 1.75rem;
    background: #fff;
    padding: clamp(1.5rem, 5vw, 4.5rem);
    box-shadow: 0 28px 70px rgba(15, 35, 58, 0.1);
    color: #42536a;
    font-size: 0.95rem;
    line-height: 1.8;
}

.landing-legal-card h1 {
    margin: 0.8rem 0 0;
    color: #07182b;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.landing-legal-card h2 {
    margin: 2.25rem 0 0.45rem;
    color: #07182b;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.landing-legal-card p,
.landing-legal-card ul {
    margin: 0.8rem 0 0;
}

.landing-legal-card ul {
    padding-left: 1.25rem;
}

.landing-legal-card li + li {
    margin-top: 0.4rem;
}

.landing-legal-card a:not(.landing-button) {
    color: #007fa3;
    font-weight: 700;
}

.landing-legal-updated {
    color: #718096;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.landing-legal-document {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(10, 191, 227, 0.24);
    border-radius: 1.25rem;
    background: #effbfe;
    padding: 1.4rem;
}

.landing-legal-document h2,
.landing-legal-document p {
    margin: 0;
}

.landing-legal-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (max-width: 680px) {
    .landing-legal-document {
        align-items: stretch;
        flex-direction: column;
    }
}

.landing-footer-grid > div:first-child img {
    width: 10.5rem;
    height: 3.4rem;
    border-radius: 0.7rem;
    background: #fff;
    padding: 0.4rem 0.55rem;
    object-fit: contain;
}

.landing-footer-grid > div:first-child p,
.landing-footer-note p {
    max-width: 18rem;
    margin: 1rem 0 0;
    color: rgba(255,255,255,0.42);
    font-size: 0.72rem;
    line-height: 1.65;
}

.landing-footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.75rem;
}

.landing-footer-grid strong {
    margin-bottom: 0.2rem;
    color: rgba(255,255,255,0.42);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.landing-footer-grid a {
    color: rgba(255,255,255,0.73);
    font-size: 0.72rem;
    text-decoration: none;
}

.landing-footer-grid a:hover,
.landing-footer-grid a:focus-visible {
    color: var(--landing-cyan);
}

.landing-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.09);
    padding-top: 1.3rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.58rem;
    letter-spacing: 0.04em;
}

@media (max-width: 1200px) {
    .landing-hero-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        padding-top: 10rem;
    }

    .landing-hero-copy {
        max-width: 52rem;
    }

    .landing-product-preview,
    .landing-dashboard-shot {
        max-width: 68rem;
        margin-inline: auto;
        transform: none;
    }

    .landing-pricing-controls {
        grid-template-columns: auto 1fr;
    }

    .landing-wellness-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 3rem;
    }

    .landing-wellness-copy,
    .landing-wellness-stats {
        max-width: 52rem;
        margin-inline: auto;
    }

    .landing-plan-fit {
        grid-column: 1 / -1;
        border-top: 1px solid var(--landing-line);
        border-left: 0;
        padding-top: 0.8rem;
        padding-left: 0;
        text-align: center;
    }

    .landing-footer-grid {
        grid-template-columns: 1.3fr 0.7fr 0.9fr;
    }

    .landing-footer-note {
        grid-column: 1 / -1;
        border-top: 1px solid rgba(255,255,255,0.09);
        padding-top: 1.3rem;
    }
}

@media (max-width: 860px) {
    .landing-nav-links {
        display: none;
    }

    .landing-nav {
        justify-content: space-between;
    }

    .landing-hero-grid,
    .landing-intro-grid,
    .landing-wellness-grid,
    .landing-responsible-grid,
    .landing-faq-grid,
    .landing-final-grid,
    .landing-section-heading-split,
    .landing-client-story {
        grid-template-columns: 1fr;
    }

    .landing-hero-grid {
        padding-bottom: 4rem;
    }

    .landing-audience-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-audience-strip > span {
        grid-column: 1 / -1;
        text-align: center;
    }

    .landing-audience-strip strong {
        min-height: 2.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .landing-intro-copy {
        padding-top: 0;
    }

    .landing-client-quote {
        min-height: 25rem;
    }

    .landing-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-feature-card-wide {
        grid-column: span 2;
    }

    .landing-steps {
        grid-template-columns: 1fr;
    }

    .landing-steps article,
    .landing-steps article:first-child {
        min-height: 0;
        border-right: 1px solid rgba(255,255,255,0.13);
        border-bottom: 1px solid rgba(255,255,255,0.13);
        border-left: 1px solid rgba(255,255,255,0.13);
    }

    .landing-step-icon {
        margin: 2rem 0;
    }

    .landing-pricing-grid,
    .landing-review-grid {
        grid-template-columns: 1fr;
    }

    .landing-pricing-card {
        min-height: 0;
    }

    .landing-pricing-card.recommended {
        transform: none;
    }

    .landing-review-grid article {
        min-height: 19rem;
    }

    .landing-final-grid > div:last-child > p {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .landing-shell {
        width: min(100% - 1.5rem, 84rem);
    }

    .landing-header {
        border-bottom-color: rgba(255,255,255,0.08);
    }

    .landing-nav {
        min-height: 4.6rem;
        gap: 0.75rem;
    }

    .landing-brand {
        width: 8.5rem;
        height: 2.8rem;
    }

    .landing-button-small {
        min-height: 2.5rem;
        padding: 0.65rem 0.8rem;
        font-size: 0.7rem;
    }

    .landing-hero-grid {
        padding-top: 7.8rem;
    }

    .landing-hero h1 {
        font-size: clamp(3rem, 16vw, 4.2rem);
    }

    .landing-hero-actions,
    .landing-final-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .landing-hero-actions .landing-text-link,
    .landing-final-actions .landing-text-link {
        justify-content: center;
    }

    .landing-hero-proof {
        display: grid;
    }

    .landing-product-preview,
    .landing-dashboard-shot {
        margin-inline: -0.35rem;
        padding: 0.7rem;
        border-radius: 1.25rem;
    }

    .landing-dashboard-shot-bar {
        padding-inline: 0.15rem;
        font-size: 0.56rem;
    }

    .landing-dashboard-shot figcaption {
        font-size: 0.62rem;
    }

    .landing-preview-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-preview-metrics article:last-child {
        display: none;
    }

    .landing-preview-metrics article {
        min-height: 6.2rem;
        padding: 0.8rem;
    }

    .landing-preview-chart {
        height: 8.5rem;
        gap: 0.22rem;
    }

    .landing-preview-insight {
        align-items: flex-start;
    }

    .landing-insight-pill {
        display: none;
    }

    .landing-audience-strip {
        padding-bottom: 1.4rem;
    }

    .landing-section {
        padding: 4.5rem 0;
    }

    .landing-section h2 {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .landing-section-heading {
        margin-bottom: 2.5rem;
    }

    .landing-wellness-stats {
        grid-template-columns: 1fr;
    }

    .landing-wellness-stats > article {
        min-height: 11rem;
    }

    .landing-wellness-note {
        grid-column: auto;
    }

    .landing-feature-grid {
        grid-template-columns: 1fr;
    }

    .landing-feature-card,
    .landing-feature-card-wide {
        min-height: 18rem;
        grid-column: span 1;
    }

    .landing-feature-card-compact {
        min-height: 18rem;
    }

    .landing-client-quote {
        min-height: 27rem;
        padding: 1.6rem;
    }

    .landing-quote-mark {
        right: 1rem;
        font-size: 9rem;
    }

    .landing-client-outcomes {
        padding: 1rem;
    }

    .landing-feature-command {
        gap: 0.45rem;
    }

    .landing-feature-command > span {
        padding: 0.55rem 0.65rem;
    }

    .landing-pricing-controls {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .landing-billing-toggle {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .landing-plan-fit {
        grid-column: auto;
    }

    .landing-pricing-card {
        padding: 1.35rem;
    }

    .landing-price strong {
        font-size: 3rem;
    }

    .landing-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .landing-footer-grid > div:first-child,
    .landing-footer-note {
        grid-column: 1 / -1;
    }

    .landing-footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hr-landing *,
    .hr-landing *::before,
    .hr-landing *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.shop-page {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 7% 8%, rgba(20, 184, 212, 0.11), transparent 24rem),
        radial-gradient(circle at 92% 12%, rgba(0, 174, 255, 0.13), transparent 26rem),
        var(--landing-cloud);
    color: var(--landing-ink);
    font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.shop-page a {
    color: inherit;
}

.shop-page button,
.shop-page input {
    font: inherit;
}

.shop-header {
    display: flex;
    min-height: 6rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(136, 153, 174, 0.24);
}

.shop-header .landing-brand {
    box-shadow: 0 12px 30px rgba(20, 40, 66, 0.1);
}

.shop-back-link,
.shop-secure-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #4c5c70;
    font-size: 0.83rem;
    font-weight: 800;
    text-decoration: none;
}

.shop-back-link:hover,
.shop-back-link:focus-visible {
    color: var(--landing-blue);
}

.shop-main {
    padding-block: 2.6rem 5rem;
}

.shop-progress {
    display: grid;
    width: min(100%, 46rem);
    margin: 0 auto 2rem;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
}

.shop-progress span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #8491a2;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
}

.shop-progress span b {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border: 1px solid #c8d3df;
    border-radius: 50%;
    background: #fff;
    color: #708095;
    font-size: 0.72rem;
}

.shop-progress span.active,
.shop-progress span.complete {
    color: var(--landing-ink);
}

.shop-progress span.active b {
    border-color: var(--landing-ink);
    background: var(--landing-ink);
    color: #fff;
}

.shop-progress span.complete b {
    border-color: #0c4eab;
    background: #e6effb;
    color: #08387c;
}

.shop-progress i {
    height: 1px;
    background: #cad5e0;
}

.shop-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(19rem, 0.85fr);
    align-items: start;
    gap: 1.5rem;
}

.shop-payment-grid {
    width: min(100%, 65rem);
    margin-inline: auto;
}

.shop-panel {
    border: 1px solid rgba(169, 185, 202, 0.52);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 24px 70px rgba(23, 44, 72, 0.09);
    backdrop-filter: blur(12px);
}

.shop-form-panel,
.shop-summary {
    padding: clamp(1.5rem, 3.5vw, 2.65rem);
}

.shop-form-panel h1,
.shop-message-panel h1 {
    max-width: 15ch;
    margin: 0.55rem 0 0;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.shop-lede,
.shop-message-panel > p:not(.landing-eyebrow) {
    max-width: 43rem;
    margin: 1rem 0 0;
    color: var(--landing-muted);
    line-height: 1.65;
}

.shop-account-choice,
.shop-signed-in {
    display: flex;
    margin-top: 1.7rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid #d7e1eb;
    border-radius: 1rem;
    background: #f8fafc;
    padding: 1rem;
}

.shop-account-choice > div,
.shop-signed-in {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.shop-account-choice strong,
.shop-signed-in strong {
    display: block;
    font-size: 0.9rem;
}

.shop-account-choice p,
.shop-signed-in p {
    margin: 0.2rem 0 0;
    color: #647286;
    font-size: 0.79rem;
}

.shop-choice-icon {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 0.8rem;
    background: #e8f2ff;
    color: var(--landing-blue);
}

.shop-signed-in {
    justify-content: flex-start;
    border-color: #a7c1e6;
    background: #eff4fc;
}

.shop-signed-in .shop-choice-icon {
    background: #d7e5f8;
    color: #08387c;
}

.shop-divider {
    display: flex;
    margin: 1.4rem 0;
    align-items: center;
    gap: 0.8rem;
    color: #8290a2;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.shop-divider::before,
.shop-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #dbe3ec;
}

.shop-form {
    display: grid;
    margin-top: 1.6rem;
    gap: 1.1rem;
}

.shop-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.shop-field {
    display: grid;
    gap: 0.4rem;
}

.shop-field label {
    color: #263a54;
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.055em;
}

.shop-field small {
    color: #738196;
    font-size: 0.75rem;
    line-height: 1.45;
}

.shop-input {
    width: 100%;
    min-height: 3.2rem;
    border: 1px solid #c7d3df;
    border-radius: 0.85rem;
    background: #fff;
    color: var(--landing-ink);
    padding: 0.75rem 0.9rem;
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.shop-input:focus {
    border-color: var(--landing-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.shop-input:disabled {
    background: #eef2f7;
    color: #5f6d7e;
}

.shop-field .validation-message,
.shop-validation-summary {
    color: #c12643;
    font-size: 0.77rem;
    font-weight: 700;
}

.shop-validation-summary ul {
    margin: 0;
    padding-left: 1.15rem;
}

.shop-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-radius: 0.9rem;
    background: #f7f9fc;
    padding: 0.9rem 1rem;
    color: #566579;
    font-size: 0.79rem;
    line-height: 1.55;
}

.shop-checkbox input {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.13rem;
    flex: 0 0 auto;
    accent-color: var(--landing-blue);
}

.shop-security-note {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 0.55rem;
    color: #5b6c80;
    font-size: 0.78rem;
}

.shop-submit {
    width: 100%;
    cursor: pointer;
}

.landing-button:disabled {
    cursor: wait;
    opacity: 0.62;
    transform: none;
}

.shop-summary {
    position: sticky;
    top: 1.5rem;
    background: var(--landing-ink);
    color: #fff;
}

.shop-summary .landing-plan-label {
    color: var(--landing-lime);
}

.shop-summary h2 {
    margin: 0.65rem 0 0;
    font-size: 2rem;
    letter-spacing: -0.035em;
}

.shop-price {
    display: flex;
    margin-top: 1.3rem;
    align-items: flex-end;
    gap: 0.65rem;
}

.shop-price strong {
    font-size: clamp(2.5rem, 5vw, 3.7rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
}

.shop-price span {
    max-width: 6rem;
    color: #aebccd;
    font-size: 0.76rem;
    line-height: 1.25;
}

.shop-summary dl {
    display: grid;
    margin: 1.7rem 0 0;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.shop-summary dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    padding: 0.8rem 0;
}

.shop-summary dt {
    color: #9faec1;
    font-size: 0.78rem;
}

.shop-summary dd {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 800;
    text-align: right;
}

.shop-total {
    display: flex;
    margin-top: 1.4rem;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.4rem 1rem;
}

.shop-total span {
    color: #aebccd;
    font-size: 0.78rem;
    font-weight: 750;
}

.shop-total strong {
    color: var(--landing-lime);
    font-size: 1.65rem;
}

.shop-total small {
    width: 100%;
    color: #8797aa;
    font-size: 0.68rem;
    text-align: right;
}

.shop-summary ul {
    display: grid;
    margin: 1.5rem 0 0;
    gap: 0.65rem;
    padding: 0;
    list-style: none;
}

.shop-summary li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: #c3cfdd;
    font-size: 0.76rem;
    line-height: 1.45;
}

.shop-summary li span {
    color: var(--landing-lime);
}

.shop-safe-note {
    display: flex;
    margin-top: 1.5rem;
    gap: 0.75rem;
    border: 1px solid rgba(0, 174, 255, 0.2);
    border-radius: 0.9rem;
    background: rgba(0, 174, 255, 0.06);
    padding: 0.85rem;
}

.shop-safe-note > span {
    color: var(--landing-lime);
}

.shop-safe-note p,
.shop-order-email {
    margin: 0;
    color: #aebccd;
    font-size: 0.72rem;
    line-height: 1.5;
}

.shop-safe-note strong {
    color: #fff;
}

.shop-order-email {
    margin-top: 1.4rem;
}

.shop-order-email strong {
    color: #fff;
}

.shop-alert {
    margin: 0;
    border: 1px solid;
    border-radius: 0.85rem;
    padding: 0.85rem 1rem;
    font-size: 0.8rem;
    line-height: 1.55;
}

.shop-alert-error {
    border-color: #f3b5c1;
    background: #fff1f4;
    color: #9e1732;
}

.shop-alert-success {
    border-color: #9de3ca;
    background: #eafbf4;
    color: #076847;
}

.shop-alert-warning {
    border-color: #f4d38f;
    background: #fff8e7;
    color: #81500b;
}

.shop-payment-placeholder {
    display: flex;
    margin-top: 1.7rem;
    align-items: center;
    gap: 1rem;
    border: 1px solid #bed0e5;
    border-radius: 1rem;
    background: #eef6ff;
    padding: 1.1rem;
}

.shop-payment-placeholder > span {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 0.85rem;
    background: #1469b8;
    color: #fff;
    font-weight: 900;
}

.shop-payment-placeholder strong {
    font-size: 0.9rem;
}

.shop-payment-placeholder p {
    margin: 0.25rem 0 0;
    color: #5d6d82;
    font-size: 0.77rem;
    line-height: 1.5;
}

.shop-payment-footnote {
    margin: 1rem 0 0;
    color: #7b899b;
    font-size: 0.71rem;
    line-height: 1.5;
}

.shop-message-panel {
    width: min(100%, 47rem);
    margin: 2rem auto;
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
}

.shop-message-panel h1,
.shop-message-panel > p {
    margin-inline: auto;
}

.shop-message-panel .landing-button {
    margin-top: 1.5rem;
}

.shop-status-icon {
    display: grid;
    width: 4.2rem;
    height: 4.2rem;
    margin: 0 auto 1.3rem;
    place-items: center;
    border-radius: 50%;
    font-size: 1.65rem;
    font-weight: 900;
}

.shop-status-warning {
    background: #fff2d4;
    color: #a05e00;
}

.shop-status-success {
    background: #dcf9ee;
    color: #07835c;
}

.shop-success-panel h1 {
    max-width: 20ch;
}

.shop-success-panel .shop-alert {
    margin-top: 1.5rem;
}

.shop-success-actions {
    display: flex;
    margin-top: 1.6rem;
    justify-content: center;
    gap: 0.8rem;
}

.shop-temporary-password {
    display: grid;
    margin-top: 1rem;
    justify-items: center;
    gap: 0.45rem;
    border: 1px dashed #d09c3c;
    border-radius: 0.85rem;
    background: #fffaf0;
    padding: 1rem;
}

.shop-temporary-password span,
.shop-temporary-password small {
    color: #72511b;
    font-size: 0.73rem;
}

.shop-temporary-password code {
    color: var(--landing-ink);
    font-size: 1rem;
    font-weight: 800;
}

.shop-loading {
    width: min(100%, 34rem);
    margin: 4rem auto;
    padding: 2rem;
    color: #66758a;
    font-weight: 750;
    text-align: center;
}

@media (max-width: 850px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 620px) {
    .shop-main {
        padding-block: 1.5rem 3rem;
    }

    .shop-header {
        min-height: 5rem;
    }

    .shop-header .landing-brand {
        width: 8.6rem;
        height: 2.9rem;
    }

    .shop-progress {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.35rem;
    }

    .shop-progress i {
        display: none;
    }

    .shop-progress span {
        justify-content: center;
        font-size: 0;
    }

    .shop-progress span b {
        font-size: 0.72rem;
    }

    .shop-account-choice {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-field-grid {
        grid-template-columns: 1fr;
    }

    .shop-form-panel,
    .shop-summary {
        padding: 1.35rem;
        border-radius: 1.2rem;
    }

    .shop-success-actions {
        align-items: stretch;
        flex-direction: column;
    }
}
