.home-page {
    --landing-bottom-nav-height: 64px;
    --app-color-card: #f5f5f8;
    --app-color-accent: #0f766e;
    --app-color-success: #0f766e;
    --app-line-card: rgba(0, 0, 0, 0);
    --app-line-subtle: rgba(0, 0, 0, 0.16);
    --app-line-control: rgba(0, 0, 0, 0.42);
    --app-content-gap: clamp(16px, 5.089cqi, 22px);
    --app-page-bottom: clamp(40px, 12.214cqi, 56px);
    --app-radius-surface: 16px;
    --app-radius-control: 12px;
    --app-radius-data: 6px;
    --app-radius-pill: 999px;
    --app-radius-circle: 50%;
    --app-corner-shape: squircle;
    --impact-scale-0: #eb7b49;
    --impact-scale-1: #eea07e;
    --impact-scale-2: #f1c4b2;
    --impact-scale-3: #c7dcdc;
    --impact-scale-4: #99c2c1;
    --impact-scale-5: #549c97;
    --impact-scale-6: #0f766e;
    --recovery-level-1: #e13333;
    --recovery-level-2: #eb7b49;
    --recovery-level-3: #f4d35e;
    --recovery-level-4: #8edfc4;
    --recovery-level-5: #0f766e;
}
.home-page .app-type-page-title {
    font: 700 18px/22px var(--app-font-family);
    text-transform: uppercase;
}
.home-page .app-type-card-title {
    font: 700 15px/15px var(--app-font-family);
    text-transform: uppercase;
}
.home-page .app-type-data { font: 400 14px/16px var(--app-font-family); }
.home-page .app-type-metric { font: 700 18px/22px var(--app-font-family); }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}
.landing-panel[hidden] { display: none; }
.landing-panel { width: 100%; min-width: 0; }
.landing-panel--welcome {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: calc(
        var(--app-logical-height, 100svh)
        - max(var(--app-page-top), env(safe-area-inset-top))
        - var(--landing-bottom-nav-height)
        - env(safe-area-inset-bottom)
        - 14px
    );
}
.landing-panel--product {
    display: grid;
    align-content: start;
    padding-block: 0 calc(var(--app-page-bottom) - 14px);
}
#landing-panel-home { gap: 32px; }
#landing-panel-journal,
#landing-panel-modules { gap: var(--app-content-gap); }
.landing-demo-title,
.landing-demo-section-title,
.landing-journey-title,
.landing-streak-card > h3,
.landing-readiness-card > h3,
.landing-nutrition-card > h3,
.landing-journal-section > h2,
.landing-module-group-title,
.landing-module-card h3,
.landing-journey-label,
.landing-journey-dates,
.landing-readiness-label {
    margin: 0;
}
.landing-demo-section {
    display: grid;
    min-width: 0;
    gap: 12px;
}
#landing-panel-home .landing-demo-section:first-child .landing-demo-section-title {
    margin-block-end: 4px;
}
#landing-panel-home .landing-demo-section:last-child { gap: 16px; }
.landing-demo-section-title,
.landing-module-group-title {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}
.landing-demo-section-icon {
    display: grid;
    flex: 0 0 20px;
    place-items: center;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: var(--app-radius-circle);
    background: #e13333;
    color: #fff;
}
.landing-demo-section-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}
.landing-assessment-cta {
    position: relative;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) 8px;
    align-content: center;
    align-items: center;
    column-gap: 10px;
    box-sizing: border-box;
    min-width: 0;
    height: 38px;
    min-height: 38px;
    border: 1px solid var(--app-line-card);
    border-radius: var(--app-radius-surface);
    padding: 4px 8px;
    background: var(--app-color-card);
    color: #000;
    corner-shape: var(--app-corner-shape);
    text-align: left;
    text-decoration: none;
    touch-action: manipulation;
}
.landing-assessment-cta::after {
    position: absolute;
    inset: -6px 0;
    content: "";
}
.landing-assessment-cta__icon {
    display: block;
    width: 22px;
    height: 22px;
    color: #707070;
}
.landing-assessment-cta__icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}
.landing-assessment-cta__chevron {
    justify-self: end;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
}
.landing-demo-dashboard {
    display: grid;
    gap: 16px;
    min-width: 0;
}
.landing-journey-card {
    container-type: inline-size;
    display: grid;
    grid-template-rows: 80px 54px auto;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--app-line-subtle);
    border-radius: var(--app-radius-control);
    background: #fff;
    corner-shape: var(--app-corner-shape);
}
.landing-journey-top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto minmax(0, 1fr);
    align-items: center;
    gap: 4px 0;
    min-width: 0;
    padding: 8px clamp(12px, 3cqi, 24px) 7px;
}
.landing-journey-title { grid-column: 1 / -1; }
.landing-journey-metric { min-width: 0; }
.landing-journey-label {
    color: #5f5f5f;
    white-space: nowrap;
}
.landing-journey-value {
    display: flex;
    align-items: baseline;
    gap: clamp(4px, 1.4cqi, 8px);
    min-width: 0;
    margin: 0;
    white-space: nowrap;
}
.landing-journey-progress {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
    min-width: 0;
    padding: 2px clamp(12px, 3cqi, 24px);
}
.landing-journey-progress-metric {
    display: grid;
    justify-items: start;
    gap: 2px;
    min-width: 0;
}
.landing-journey-gain {
    white-space: nowrap;
}
.landing-journey-gain.is-realized { color: var(--app-color-accent); }
.landing-journey-gain.is-remaining {
    box-sizing: border-box;
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    border-radius: var(--app-radius-pill);
    padding: 3px 8px;
    background: #2563eb;
    color: #fff;
    overflow-wrap: anywhere;
}
.landing-journey-history {
    display: grid;
    align-content: end;
    min-width: 0;
    padding: 8px clamp(12px, 3cqi, 24px) 7px;
}
.landing-journey-chart-frame {
    position: relative;
    min-width: 0;
    aspect-ratio: 20 / 3;
}
.landing-journey-chart {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.landing-journey-guide { stroke: rgba(0, 0, 0, 0.1); stroke-width: 1; vector-effect: non-scaling-stroke; }
.landing-journey-area { fill: #73777d; fill-opacity: 0.12; }
.landing-journey-whisker,
.landing-journey-whisker-cap {
    stroke: #73777d;
    stroke-width: 1;
    stroke-linecap: round;
    opacity: 0.45;
    vector-effect: non-scaling-stroke;
}
.landing-journey-line,
.landing-journey-potential-link {
    fill: none;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}
.landing-journey-line {
    stroke: #000;
    stroke-width: 2.2;
    stroke-linejoin: round;
}
.landing-journey-potential-link {
    stroke: #2563eb;
    stroke-width: 2;
    stroke-dasharray: 5 5;
}
.landing-journey-point { fill: #000; }
.landing-journey-potential-point { fill: #2563eb; }
.landing-journey-axis {
    position: absolute;
    left: 0;
    width: 4.15%;
    color: #5f5f5f;
    text-align: right;
}
.landing-journey-axis.is-max { top: 0; }
.landing-journey-axis.is-min { bottom: 0; }
.landing-journey-dates {
    position: relative;
    min-height: 1em;
    color: #5f5f5f;
}
.landing-journey-dates > span {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    white-space: nowrap;
}
.landing-streak-card {
    display: grid;
    gap: 10px;
    min-width: 0;
    border: 1px solid var(--app-line-card);
    border-radius: var(--app-radius-surface);
    padding: 10px;
    background: var(--app-color-card);
    corner-shape: var(--app-corner-shape);
}
.landing-streak-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-width: 0;
}
.landing-streak-column {
    display: grid;
    grid-template-rows: 34px 28px 22px;
    justify-items: center;
    align-items: start;
    gap: 4px;
    min-width: 0;
    min-height: 96px;
    padding: 4px 2px 6px;
    text-align: center;
}
.landing-streak-icon {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.landing-streak-caption {
    display: grid;
    min-width: 0;
    min-height: 28px;
}
.landing-readiness-card {
    display: grid;
    gap: 12px;
    min-width: 0;
    margin: 0;
    border: 1px solid var(--app-line-card);
    border-radius: var(--app-radius-surface);
    padding: 10px;
    background: var(--app-color-card);
    corner-shape: var(--app-corner-shape);
}
.landing-readiness-scale {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    min-width: 0;
    padding: 3px 3px 11px;
}
.landing-readiness-segment {
    position: relative;
    height: 12px;
    min-width: 0;
    border: 1px solid var(--app-line-control);
    border-radius: var(--app-radius-data);
    background: var(--recovery-segment-color);
    opacity: 0.1;
}
.landing-readiness-segment.is-1 { --recovery-segment-color: var(--recovery-level-1); }
.landing-readiness-segment.is-2 { --recovery-segment-color: var(--recovery-level-2); }
.landing-readiness-segment.is-3 { --recovery-segment-color: var(--recovery-level-3); }
.landing-readiness-segment.is-4 { --recovery-segment-color: var(--recovery-level-4); }
.landing-readiness-segment.is-5 { --recovery-segment-color: var(--recovery-level-5); }
.landing-readiness-segment.is-current {
    z-index: 1;
    opacity: 1;
}
.landing-readiness-segment.is-current::after {
    position: absolute;
    top: calc(100% + 7px);
    left: 50%;
    width: 0;
    height: 0;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #000;
    border-left: 6px solid transparent;
    content: "";
    transform: translateX(-50%);
}
.landing-readiness-label {
    min-height: 2lh;
    text-align: center;
}
.landing-nutrition-card {
    display: grid;
    gap: 8px;
    width: 100%;
    min-width: 0;
    border: 1px solid var(--app-line-card);
    border-radius: var(--app-radius-surface);
    padding: 10px;
    background: var(--app-color-card);
    corner-shape: var(--app-corner-shape);
}
.landing-nutrition-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
    min-width: 0;
}
.landing-nutrition-item {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.landing-nutrition-item.is-calories { grid-column: 1 / -1; }
.landing-nutrition-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 4px;
    min-width: 0;
}
.landing-nutrition-copy strong {
    min-width: 0;
    font-variant-numeric: tabular-nums;
    text-align: right;
    overflow-wrap: anywhere;
}
.landing-nutrition-track {
    width: 100%;
    height: 12px;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--app-line-control);
    border-radius: var(--app-radius-pill);
    background: #f1eeec;
}
.landing-nutrition-fill {
    display: block;
    max-width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #9d9793;
}
.landing-nutrition-track.is-goal .landing-nutrition-fill { background: #0f766e; }
.landing-nutrition-track.is-over .landing-nutrition-fill { background: #e13333; }
.landing-journal-content,
.landing-modules-content {
    display: grid;
    min-width: 0;
    gap: var(--app-content-gap);
}
.landing-journal-content { gap: 12px; }
.landing-journal-dates {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 6px;
    overflow-x: auto;
    padding: 2px 0 6px;
    scrollbar-width: none;
    scroll-snap-type: inline proximity;
}
.landing-journal-dates::-webkit-scrollbar { display: none; }
.landing-journal-date {
    display: grid;
    width: 52px;
    min-width: 52px;
    min-height: 58px;
    place-content: center;
    gap: 2px;
    border: 1px solid var(--app-line-card);
    border-radius: var(--app-radius-control);
    padding: 4px;
    background: var(--app-color-card);
    color: #000;
    text-align: center;
    scroll-snap-align: center;
}
.landing-journal-date > :first-child { text-transform: uppercase; }
.landing-journal-date.is-selected {
    border-color: #000;
    background: #000;
    color: #fff;
}
.landing-journal-card,
.landing-journal-form,
.landing-journal-section {
    display: grid;
    min-width: 0;
}
.landing-journal-form {
    gap: 32px;
}
.landing-journal-section {
    gap: 16px;
}
.landing-journal-times {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-width: 0;
}
.landing-journal-time {
    display: grid;
    gap: 5px;
    min-width: 0;
}
.landing-journal-time-value {
    width: 100%;
    height: 30px;
    min-height: 30px;
    border: 1px solid #777;
    border-radius: var(--app-radius-control);
    padding: 4px 8px;
    background: #fff;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}
.landing-rating-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.landing-rating-scale {
    display: grid;
    grid-template-columns: repeat(5, 30px);
    gap: 4px;
}
.landing-face {
    display: grid;
    box-sizing: border-box;
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    place-items: center;
    border: 1px solid #000;
    border-radius: var(--app-radius-data);
    background: #fff;
    color: #000;
}
.landing-face.is-selected { background: #000; color: #fff; }
.landing-face svg {
    display: block;
    width: 22px;
    height: 22px;
}
.landing-binary-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px 30px;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.landing-binary-choice {
    display: grid;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    min-height: 30px;
    place-items: center;
    border: 1px solid #000;
    border-radius: var(--app-radius-data);
    background: #fff;
    color: #000;
}
.landing-binary-choice svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.landing-binary-choice.is-selected { background: #000; color: #fff; }
.landing-binary-choice.is-yes.is-selected {
    border-color: var(--app-color-success);
    background: var(--app-color-success);
}
.landing-journal-review {
    min-width: 0;
}
.landing-journal-review > p { margin: 0; }
.landing-journal-review-caption, .landing-journal-summary-value { color: #625d5a; }
.landing-journal-summary-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.landing-journal-summary-copy { display: grid; gap: 2px; min-width: 0; }
.landing-journal-summary-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.landing-journal-summary-link {
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}
.landing-modules-content {
    gap: var(--app-content-gap);
}
.landing-module-group + .landing-module-group {
    margin-block-start: calc(36px - var(--app-content-gap));
}
.landing-module-group,
.landing-module-cards {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    min-width: 0;
}
.landing-module-group-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    fill: none;
    margin-top: 1px;
    stroke: #707070;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.landing-module-card {
    --current-impact-color: var(--impact-scale-6);
    display: grid;
    position: relative;
    box-sizing: border-box;
    min-width: 0;
    min-height: 95px;
    border: 1px solid var(--app-line-card);
    border-radius: var(--app-radius-surface);
    padding: 10px;
    background: var(--app-color-card);
    corner-shape: var(--app-corner-shape);
}
.landing-module-card-content {
    display: grid;
    gap: 8px;
    min-width: 0;
}
.landing-module-card-content.has-comparison {
    grid-template-columns: minmax(0, 1fr) 94px;
    grid-template-rows: auto minmax(0, 1fr);
    column-gap: 8px;
}
.landing-module-card-content.has-comparison > .landing-module-card-heading {
    grid-column: 1;
    grid-row: 1;
}
.landing-module-card-content.has-comparison > .landing-impact-scale {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
}
.landing-module-card-content.has-comparison > .landing-impact-comparison {
    grid-column: 2;
    grid-row: 1 / span 2;
}
.landing-module-card-heading {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.has-comparison .landing-module-card-heading {
    grid-template-columns: minmax(0, 1fr);
    padding-inline-end: 40px;
}
.landing-module-card h3 {
    min-width: 0;
    overflow-wrap: anywhere;
}
.landing-module-complete {
    display: inline-grid;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: var(--app-radius-circle);
    background: var(--app-color-accent);
    color: #fff;
    font-size: 12px;
    line-height: 14px;
}
.landing-impact-scale {
    display: grid;
    gap: 4px;
    min-width: 0;
    margin-top: 4px;
}
.landing-impact-items {
    display: grid;
    grid-template-columns: repeat(var(--landing-band-count), minmax(0, 1fr));
    grid-template-rows: auto 6px auto;
    gap: 4px;
    min-width: 0;
    padding: 14px 3px 0;
}
.landing-impact-band {
    position: relative;
    display: grid;
    grid-row: 1 / span 3;
    grid-template-rows: subgrid;
    gap: 4px;
    min-width: 0;
    text-align: center;
}
.landing-impact-label {
    grid-row: 3;
    align-self: start;
    min-width: 0;
    max-width: none;
    overflow: visible;
    white-space: nowrap;
}
.landing-impact-band:not(:first-child):not(:last-child) .landing-impact-label {
    visibility: hidden;
}
.landing-impact-band.is-current:not(:first-child):not(:last-child) .landing-impact-label {
    position: absolute;
    z-index: 2;
    grid-row: auto;
    top: -20px;
    left: 50%;
    margin: 0;
    color: #000;
    text-align: center;
    transform: translateX(-50%);
    visibility: visible;
}
.landing-impact-band:first-child .landing-impact-label { justify-self: start; }
.landing-impact-band:last-child .landing-impact-label { justify-self: end; }
.landing-impact-band-value { display: none; }
.landing-impact-pill,
.landing-gradient-pill {
    display: block;
    height: 6px;
    min-width: 0;
    border: 0;
    border-radius: var(--app-radius-data);
    background: var(--impact-color);
}
.landing-impact-pill { position: relative; grid-row: 2; }
.landing-impact-band.is-current .landing-impact-pill::after {
    position: absolute;
    bottom: calc(100% - 2px);
    left: 50%;
    width: 12px;
    height: 10px;
    background: center / 12px 10px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M1.6 1H10.4Q11.4 1 10.9 1.85L6.65 8.75Q6 9.5 5.35 8.75L1.1 1.85Q.6 1 1.6 1Z' fill='%23000' stroke='%23fff' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E");
    content: "";
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.65));
    transform: translateX(-50%);
}
.landing-impact-pill[data-impact-color-step="0"] { --impact-color: var(--impact-scale-0); }
.landing-impact-pill[data-impact-color-step="1"] { --impact-color: var(--impact-scale-1); }
.landing-impact-pill[data-impact-color-step="2"] { --impact-color: var(--impact-scale-2); }
.landing-impact-pill[data-impact-color-step="3"] { --impact-color: var(--impact-scale-3); }
.landing-impact-pill[data-impact-color-step="4"] { --impact-color: var(--impact-scale-4); }
.landing-impact-pill[data-impact-color-step="5"] { --impact-color: var(--impact-scale-5); }
.landing-impact-pill[data-impact-color-step="6"] { --impact-color: var(--impact-scale-6); }
.landing-gradient-track {
    position: relative;
    width: 100%;
    height: 6px;
    margin: 18px 0;
}
.landing-gradient-segments {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    height: 6px;
}
.landing-gradient-segment {
    position: relative;
    min-width: 0;
}
.landing-gradient-segment:nth-child(1) .landing-gradient-pill { --impact-color: var(--impact-scale-0); }
.landing-gradient-segment:nth-child(n + 2):nth-child(-n + 3) .landing-gradient-pill { --impact-color: var(--impact-scale-1); }
.landing-gradient-segment:nth-child(n + 4):nth-child(-n + 5) .landing-gradient-pill { --impact-color: var(--impact-scale-2); }
.landing-gradient-segment:nth-child(n + 6):nth-child(-n + 7) .landing-gradient-pill { --impact-color: var(--impact-scale-3); }
.landing-gradient-segment:nth-child(n + 8):nth-child(-n + 9) .landing-gradient-pill { --impact-color: var(--impact-scale-4); }
.landing-gradient-segment:nth-child(n + 10):nth-child(-n + 11) .landing-gradient-pill { --impact-color: var(--impact-scale-5); }
.landing-gradient-segment:nth-child(12) .landing-gradient-pill { --impact-color: var(--impact-scale-6); }
.landing-gradient-marker {
    position: absolute;
    z-index: 2;
    bottom: calc(100% - 2px);
    width: 12px;
    height: 10px;
    background: center / 12px 10px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M1.6 1H10.4Q11.4 1 10.9 1.85L6.65 8.75Q6 9.5 5.35 8.75L1.1 1.85Q.6 1 1.6 1Z' fill='%23000' stroke='%23fff' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E");
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.65));
    transform: translateX(-50%);
}
.landing-gradient-marker-value,
.landing-gradient-boundary {
    position: absolute;
    top: calc(100% + 4px);
    color: #000;
    font-weight: 600;
    white-space: nowrap;
}
.landing-gradient-marker-value { top: -16px; left: 50%; transform: translateX(-50%); }
.landing-gradient-segment:first-child .landing-gradient-boundary { left: 0; }
.landing-gradient-segment:last-child .landing-gradient-boundary { right: 0; }
.landing-impact-comparison {
    position: relative;
    align-self: start;
    display: grid;
    grid-template-columns: 40px 46px;
    column-gap: 8px;
    align-items: end;
    width: 94px;
    min-width: 94px;
    padding-top: 23px;
    text-align: right;
}
.landing-impact-state {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 0;
}
.landing-impact-state-label {
    width: 100%;
    color: #625d5a;
    text-align: right;
    white-space: nowrap;
}
.landing-impact-metric {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    color: var(--impact-scale-6);
}
.landing-impact-state[data-impact-sign="negative"] .landing-impact-metric {
    color: var(--impact-scale-0);
}
.landing-impact-transfer {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 23px;
    left: 20px;
    height: 12px;
    border-top: 1px solid #2563eb;
    border-right: 1px solid #2563eb;
    border-left: 1px solid #2563eb;
    border-start-start-radius: var(--app-radius-data);
    border-start-end-radius: var(--app-radius-data);
}
.landing-impact-transfer::after {
    position: absolute;
    right: -3px;
    bottom: -4px;
    width: 0;
    height: 0;
    border-top: 4px solid #2563eb;
    border-right: 2.5px solid transparent;
    border-left: 2.5px solid transparent;
    content: "";
}
.landing-module-potential {
    position: absolute;
    top: 0;
    left: 50%;
    box-sizing: border-box;
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    border-radius: var(--app-radius-pill);
    padding: 1px 4px;
    background: #2563eb;
    color: #fff;
    overflow-wrap: anywhere;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}
.landing-module-disclosure {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
}
.landing-bottom-nav {
    position: fixed;
    z-index: 100;
    right: auto;
    bottom: 0;
    left: calc(var(--app-frame-left, 0px) / var(--app-scale, 1));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: var(--app-logical-width, 100cqi);
    height: calc(var(--landing-bottom-nav-height) + env(safe-area-inset-bottom));
    min-height: calc(var(--landing-bottom-nav-height) + env(safe-area-inset-bottom));
    padding: 0 0 env(safe-area-inset-bottom);
    background: #fff;
    /* Keep translucent mobile browser chrome from sampling page content below the nav. */
    box-shadow: 0 100vh 0 100vh #fff;
}
.landing-bottom-nav::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--app-line-subtle);
    content: "";
    pointer-events: none;
}
.landing-bottom-nav__item {
    appearance: none;
    display: grid;
    place-items: center;
    grid-template-rows: 30px 14px;
    align-content: start;
    gap: 2px;
    min-width: 0;
    min-height: var(--landing-bottom-nav-height);
    border: 0;
    border-radius: 0;
    padding: 8px 4px 10px;
    background: transparent;
    color: #707070;
    font: inherit;
    cursor: pointer;
    touch-action: manipulation;
}
.landing-bottom-nav__icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: var(--app-radius-circle);
}
.landing-bottom-nav__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}
.landing-bottom-nav__label {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.landing-bottom-nav__item.is-active { color: #000; }
.landing-bottom-nav__item.is-active .landing-bottom-nav__icon {
    background: #000;
    color: #fff;
}
.landing-bottom-nav__item:focus-visible,
.landing-assessment-cta:focus-visible {
    outline: 3px solid #000;
    outline-offset: -3px;
}
@media (hover: hover) {
    .landing-bottom-nav__item:hover { color: #000; }
    .landing-assessment-cta:hover { background: #ebebef; }
}
@container home-frame (max-width: 359px) {
    .landing-rating-row { grid-template-columns: minmax(0, 1fr); }
    .landing-rating-scale { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .landing-face { width: 100%; }
    .landing-impact-label { font-size: 10px; letter-spacing: -0.9px; }
}
