/* Homepage styles. Loaded only for home routes. */

.store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.store-button {
    display: grid;
    min-width: 142px;
    min-height: 52px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--text);
    color: var(--bg);
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(18, 24, 40, 0.12);
}

.store-button span {
    font-size: 0.68rem;
    line-height: 1;
    opacity: 0.72;
}

.store-button strong {
    font-size: 1rem;
    line-height: 1.1;
}

.platform-note {
    margin-top: 12px !important;
    font-size: 0.94rem !important;
}

.hero-product {
    justify-self: start;
    width: min(100%, 330px);
}

.hero-phone {
    width: 100%;
}

.hero-phone-image {
    object-position: center bottom;
}

.hero-phone-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    color: var(--muted);
    font-weight: 800;
}

.hero-phone-top strong {
    color: var(--text);
    font-size: 1.35rem;
}

.hero-chart {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 10px;
    min-height: 210px;
    padding: 18px;
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid var(--border);
}

.hero-chart span {
    display: block;
    border-radius: 999px 999px 12px 12px;
    background: linear-gradient(180deg, var(--accent), var(--success));
}

.hero-chart span:nth-child(1) { height: 45%; }
.hero-chart span:nth-child(2) { height: 72%; }
.hero-chart span:nth-child(3) { height: 54%; }
.hero-chart span:nth-child(4) { height: 86%; }

.hero-insight-card {
    padding: 20px;
    border-radius: 24px;
    background: #11131d;
    color: #fff;
}

.hero-insight-card span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.58);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.hero-insight-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
}

.why-icon,
.feature-icon {
    display: inline-grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 900;
    font-size: 0.82rem;
}

.why-card-top {
    position: absolute;
    top: 20px;
    right: 22px;
    z-index: 0;
    margin: 0;
    pointer-events: none;
}

.why-icon {
    width: 38px;
    height: 38px;
    margin: 0;
    flex: 0 0 auto;
}

.why-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.6;
}

.why-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.why-icon-image-stars {
    filter: grayscale(1) brightness(2.2) contrast(0.9);
    opacity: 0.52;
}

.proof-section {
    width: var(--viewport-width, 100vw);
    margin-left: calc(50% - (var(--viewport-width, 100vw) / 2));
    padding-left: 0;
    padding-right: 0;
}

.proof-marquee {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 16px 14px;
    cursor: grab;
    scrollbar-width: none;
    touch-action: pan-y;
}

.proof-marquee::-webkit-scrollbar {
    display: none;
}

.proof-marquee.is-dragging {
    cursor: grabbing;
}

.proof-track {
    display: flex;
    width: max-content;
    gap: 16px;
    will-change: transform;
    animation: proof-marquee-scroll 46s linear infinite;
}

.proof-marquee:hover .proof-track,
.proof-marquee:focus-within .proof-track {
    animation-play-state: paused;
}

.proof-marquee.is-js-marquee .proof-track {
    animation: none;
}

@keyframes proof-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 8px));
    }
}

.proof-card {
    position: relative;
    flex: 0 0 270px;
    min-height: 420px;
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
    background: var(--surface-2);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.proof-card:nth-child(2n) {
    margin-top: 22px;
}

.proof-card:nth-child(3n) {
    margin-top: 44px;
}

.proof-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px rgba(18, 24, 40, 0.14);
}

.proof-photo {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.66)),
        linear-gradient(135deg, color-mix(in srgb, var(--accent) 22%, var(--surface-2)), color-mix(in srgb, var(--success) 18%, var(--surface-2)));
}

.proof-card:nth-child(2n) .proof-photo {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.66)),
        linear-gradient(135deg, color-mix(in srgb, var(--warning) 22%, var(--surface-2)), color-mix(in srgb, var(--accent) 18%, var(--surface-2)));
}

.proof-card:nth-child(3n) .proof-photo {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.66)),
        linear-gradient(135deg, color-mix(in srgb, var(--purple) 18%, var(--surface-2)), color-mix(in srgb, var(--success) 16%, var(--surface-2)));
}

.proof-photo span {
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #11131d;
    font-weight: 900;
}

.proof-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-card figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 18px;
    background: rgba(17, 19, 29, 0.44);
    color: #fff;
    backdrop-filter: blur(14px);
}

.proof-card strong {
    color: rgba(255, 255, 255, 0.82);
}

.why-grid {
    gap: 18px;
}

.why-grid article {
    position: relative;
    padding: 28px 26px;
    border: 0;
    color: #fff;
    background-color: #11131d;
    background-image: none;
}

.why-grid article h3 {
    color: #fff;
}

.why-grid article p {
    color: rgba(255, 255, 255, 0.76);
}

.why-grid article.why-card {
    background-color: #11131d;
    background-image: linear-gradient(210deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 42%);
}

.why-grid article.why-card-1 {
    background-image: linear-gradient(210deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 42%);
}

.why-grid article.why-card-2 {
    background-image: linear-gradient(210deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 42%);
}

.why-grid article.why-card-3 {
    background-image: linear-gradient(210deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 42%);
}

html[data-theme="dark"] .why-grid article.why-card {
    background-color: #243042;
    background-image: linear-gradient(210deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%);
}

html[data-theme="dark"] .why-grid article,
html[data-theme="dark"] .why-grid article h3 {
    color: #fff;
}

html[data-theme="dark"] .why-grid article p {
    color: rgba(255, 255, 255, 0.76);
}

html[data-theme="dark"] .why-grid article.why-card-1 {
    background-image: linear-gradient(210deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%);
}

html[data-theme="dark"] .why-grid article.why-card-2 {
    background-image: linear-gradient(210deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%);
}

html[data-theme="dark"] .why-grid article.why-card-3 {
    background-image: linear-gradient(210deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%);
}

.proof-card blockquote {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.32;
}

.proof-card strong {
    font-size: 0.9rem;
}

.logging-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    align-items: start;
    gap: 56px;
}

.logging-preview {
    position: sticky;
    top: 104px;
    min-height: 620px;
    display: grid;
    place-items: center;
    border-radius: 42px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.logging-device {
    position: relative;
    width: min(392px, calc(100% - 28px));
    min-height: 0;
    padding: 0;
    transition: transform 220ms ease, opacity 220ms ease;
    transform: rotate(-2.5deg);
}

.logging-device.is-changing {
    transform: rotate(-0.5deg) translateY(6px);
    opacity: 0.88;
}

.logging-image-placeholder {
    background:
        radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.72) 0 9%, transparent 10%),
        radial-gradient(circle at 63% 50%, rgba(13, 172, 114, 0.78) 0 11%, transparent 12%),
        radial-gradient(circle at 48% 63%, rgba(238, 125, 43, 0.78) 0 13%, transparent 14%),
        linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, var(--surface-2)), var(--surface-2));
}

.logging-image-placeholder span {
    display: none;
}

.logging-screen-image {
    opacity: 0;
    transition: opacity 180ms ease;
}

.logging-image-placeholder.has-image .logging-screen-image {
    opacity: 1;
}

.logging-device[data-logging-visual-mode="voice"] .logging-image-placeholder {
    background:
        repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.22) 18px 28px),
        linear-gradient(135deg, color-mix(in srgb, var(--success) 22%, var(--surface-2)), var(--surface-2));
}

.logging-device[data-logging-visual-mode="text"] .logging-image-placeholder {
    background:
        linear-gradient(var(--surface-strong) 0 0) 28px 42px / 62% 18px no-repeat,
        linear-gradient(var(--surface-strong) 0 0) 28px 82px / 78% 18px no-repeat,
        linear-gradient(var(--surface-strong) 0 0) 28px 122px / 52% 18px no-repeat,
        linear-gradient(135deg, color-mix(in srgb, var(--warning) 18%, var(--surface-2)), var(--surface-2));
}

.logging-device[data-logging-visual-mode="barcode"] .logging-image-placeholder {
    background:
        repeating-linear-gradient(90deg, #11131d 0 8px, transparent 8px 18px, #11131d 18px 24px, transparent 24px 34px),
        linear-gradient(135deg, var(--surface-strong), var(--surface-2));
}

.logging-device[data-logging-visual-mode="repeat"] .logging-image-placeholder {
    background:
        radial-gradient(circle at center, transparent 0 34%, color-mix(in srgb, var(--accent) 26%, transparent) 35% 43%, transparent 44%),
        conic-gradient(from 20deg, var(--accent), var(--success), var(--warning), var(--accent));
}

.logging-device[data-logging-has-image="true"] .logging-image-placeholder {
    background: var(--surface-strong);
}

[data-theme="dark"] .logging-device {
    filter: none;
}

.logging-copy .lede {
    max-width: 54ch;
}

.logging-menu {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.logging-dots {
    display: none;
}

.logging-option,
.insight-option {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.logging-option {
    padding: 18px 20px;
    border-radius: 18px;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.logging-option:hover,
.logging-option:focus-visible {
    background: color-mix(in srgb, var(--surface-strong) 72%, transparent);
    border-color: color-mix(in srgb, var(--accent) 24%, var(--border));
    box-shadow: 0 10px 24px rgba(18, 24, 40, 0.06);
    transform: translateX(3px);
}

.logging-option h3 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 1.62rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: -0.04em;
}

.logging-option p {
    margin: 0;
    color: var(--muted);
}

.logging-option.is-active {
    background: var(--surface-strong);
    border-color: color-mix(in srgb, var(--accent) 38%, var(--border));
    box-shadow: 0 14px 32px rgba(18, 24, 40, 0.08);
    transform: translateX(6px);
}

.insight-showcase {
    overflow: visible;
}

.insight-showcase .section-heading {
    max-width: 68ch;
    margin-bottom: 36px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.insight-showcase .section-heading h2 {
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
}

.insight-spotlights {
    display: grid;
    gap: 22px;
}

.insight-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: clamp(24px, 4vw, 40px);
    padding: 0;
}

.insight-spotlight:nth-child(even) .insight-spotlight-copy {
    order: 2;
}

.insight-spotlight:nth-child(even) .insight-spotlight-visual {
    order: 1;
}

.insight-spotlight-copy {
    max-width: 42ch;
    justify-self: end;
    text-align: right;
}

.insight-spotlight:nth-child(even) .insight-spotlight-copy {
    justify-self: start;
    text-align: left;
}

.insight-spotlight h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.insight-subtitle {
    margin: 14px 0 0;
    color: color-mix(in srgb, var(--text) 88%, white);
    font-size: clamp(1rem, 1.7vw, 1.24rem);
    font-weight: 600;
    line-height: 1.28;
}

.insight-description {
    max-width: 38ch;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.insight-spotlight-visual {
    display: grid;
    justify-items: start;
}

.insight-screen {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 4 / 3;
    padding: 54px 18px 18px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.46);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 30px 70px rgba(18, 24, 40, 0.18);
}

.insight-screen.has-image {
    padding: 0;
    background: #f4f6fa;
}

.insight-screen-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-screen.has-image .phone-notch,
.insight-screen.has-image .insight-screen-header,
.insight-screen.has-image .insight-screen-hero,
.insight-screen.has-image .insight-screen-grid,
.insight-screen.has-image .insight-screen-footer,
.insight-screen.has-image::before {
    display: none;
}

.insight-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.52), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 34%);
    pointer-events: none;
}

.insight-screen-header,
.insight-screen-footer {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
}

.insight-screen-header {
    justify-content: space-between;
    margin-bottom: 16px;
}

.insight-screen-header span,
.insight-screen-footer span {
    display: block;
    border-radius: 999px;
}

.insight-screen-header span:first-child {
    width: 34%;
    height: 12px;
    background: rgba(17, 19, 29, 0.14);
}

.insight-screen-header span:last-child {
    width: 18%;
    height: 12px;
    background: rgba(17, 19, 29, 0.08);
}

.insight-screen-hero {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    min-height: 148px;
    margin-bottom: 14px;
}

.insight-screen-hero span,
.insight-screen-grid span {
    display: block;
    border-radius: 22px;
}

.insight-screen-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.insight-screen-grid span {
    min-height: 88px;
}

.insight-screen-footer {
    position: relative;
    z-index: 1;
    margin-top: 14px;
}

.insight-screen-footer span {
    flex: 1;
    height: 46px;
}

.insight-screen-daily {
    background:
        radial-gradient(circle at top left, rgba(0, 143, 255, 0.22), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
}

.insight-screen-daily .insight-screen-hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
}

.insight-screen-daily .insight-screen-hero span {
    border-radius: 24px 24px 14px 14px;
    background: linear-gradient(180deg, rgba(38, 115, 255, 0.18), rgba(38, 115, 255, 0.72));
}

.insight-screen-daily .insight-screen-hero span:nth-child(1) { height: 58%; }
.insight-screen-daily .insight-screen-hero span:nth-child(2) { height: 86%; }
.insight-screen-daily .insight-screen-hero span:nth-child(3) { height: 68%; }

.insight-screen-daily .insight-screen-grid span {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(66, 114, 190, 0.1);
}

.insight-screen-daily .insight-screen-footer span {
    background: linear-gradient(135deg, rgba(31, 145, 255, 0.14), rgba(13, 172, 114, 0.2));
}

.insight-screen-dinner {
    background:
        radial-gradient(circle at top right, rgba(255, 157, 74, 0.28), transparent 34%),
        linear-gradient(180deg, #fff8ef 0%, #fff1df 100%);
}

.insight-screen-dinner .insight-screen-hero {
    grid-template-columns: 1.15fr 0.85fr;
}

.insight-screen-dinner .insight-screen-hero span:first-child {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 120%),
        linear-gradient(135deg, #ffb65c, #ff7f50);
}

.insight-screen-dinner .insight-screen-hero span:nth-child(2),
.insight-screen-dinner .insight-screen-hero span:nth-child(3) {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 127, 80, 0.14);
}

.insight-screen-dinner .insight-screen-grid span:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 162, 93, 0.24), rgba(255, 127, 80, 0.1));
}

.insight-screen-dinner .insight-screen-grid span:nth-child(2) {
    background: rgba(255, 255, 255, 0.84);
}

.insight-screen-dinner .insight-screen-grid span:nth-child(3),
.insight-screen-dinner .insight-screen-grid span:nth-child(4) {
    min-height: 74px;
    background: rgba(255, 255, 255, 0.72);
}

.insight-screen-dinner .insight-screen-footer span {
    background: rgba(255, 255, 255, 0.78);
}

.insight-screen-sleep {
    background:
        radial-gradient(circle at top left, rgba(81, 125, 255, 0.24), transparent 30%),
        linear-gradient(180deg, #1f2644 0%, #15192e 100%);
}

.insight-screen-sleep .insight-screen-header span:first-child,
.insight-screen-sleep .insight-screen-header span:last-child {
    background: rgba(255, 255, 255, 0.16);
}

.insight-screen-sleep .insight-screen-hero {
    grid-template-columns: 1fr;
}

.insight-screen-sleep .insight-screen-hero span {
    background:
        radial-gradient(circle at 72% 32%, rgba(255, 235, 174, 0.88) 0 14%, transparent 15%),
        linear-gradient(180deg, rgba(106, 126, 233, 0.5), rgba(63, 76, 145, 0.8));
}

.insight-screen-sleep .insight-screen-grid span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.insight-screen-sleep .insight-screen-footer span {
    background: rgba(255, 255, 255, 0.1);
}

.insight-screen-weekly {
    background:
        radial-gradient(circle at top right, rgba(13, 172, 114, 0.22), transparent 34%),
        linear-gradient(180deg, #f7fbf8 0%, #edf6ef 100%);
}

.insight-screen-weekly .insight-screen-hero {
    grid-template-columns: 1.2fr 0.8fr;
}

.insight-screen-weekly .insight-screen-hero span:first-child {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 110%),
        linear-gradient(135deg, rgba(13, 172, 114, 0.9), rgba(26, 125, 88, 0.92));
}

.insight-screen-weekly .insight-screen-hero span:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.76)),
        rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(13, 172, 114, 0.12);
}

.insight-screen-weekly .insight-screen-hero span:nth-child(3) {
    background: rgba(255, 255, 255, 0.76);
}

.insight-screen-weekly .insight-screen-grid span {
    background:
        linear-gradient(180deg, rgba(13, 172, 114, 0.08), rgba(255, 255, 255, 0.9)),
        rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(13, 172, 114, 0.1);
}

.insight-screen-weekly .insight-screen-footer span {
    background: linear-gradient(135deg, rgba(13, 172, 114, 0.14), rgba(17, 19, 29, 0.06));
}

.trust-section .trust-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.trust-section .trust-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 18px;
    min-height: 310px;
    padding: clamp(28px, 4vw, 44px);
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent),
        #11131d;
    color: #fff;
    box-shadow: var(--shadow);
}

.trust-section .trust-card > * {
    position: relative;
    z-index: 1;
}

.trust-section .trust-card-science {
    min-height: 390px;
    background:
        radial-gradient(circle at 10% -4%, rgba(45, 128, 83, 0.28), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 36%),
        #07131b;
}

.trust-section .trust-card-science::after {
    content: "";
    position: absolute;
    top: -57px;
    left: 36px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: rgba(35, 120, 76, 0.22);
    filter: blur(46px);
    opacity: 0.78;
    pointer-events: none;
}

.trust-science-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr);
    gap: clamp(22px, 3vw, 42px);
    align-items: start;
}

.trust-science-copy {
    display: grid;
    align-content: start;
    gap: 18px;
}

.trust-science-graph {
    display: grid;
    place-items: center;
    gap: 10px;
}

.trust-science-graph img {
    display: block;
    width: min(112%, 310px);
    height: auto;
    opacity: 0.55;
    filter: sepia(1) hue-rotate(75deg) saturate(1.45) brightness(0.68) contrast(0.9);
    mix-blend-mode: screen;
}

.trust-science-graph span {
    color: rgba(159, 218, 182, 0.84);
    font-family: var(--font-science-mono);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.trust-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(159, 218, 182, 0.9);
    font-family: var(--font-science-mono);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.trust-label-icon {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: rgba(159, 218, 182, 0.95);
}

.trust-label-icon svg {
    width: 100%;
    height: 100%;
}

.trust-section .trust-band > .trust-card-accent {
    padding-top: clamp(20px, 2.4vw, 30px);
    background: linear-gradient(35deg, #011f66 0%, #0f47db 100%);
}

.trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.025em;
    line-height: 1;
}

.trust-tag-icon {
    display: inline-grid;
    place-items: center;
    width: 19px;
    height: 19px;
    line-height: 1;
}

.trust-tag-icon svg {
    width: 100%;
    height: 100%;
}

.trust-tag-icon img {
    display: block;
    width: 100%;
    height: 100%;
    filter: invert(1);
    opacity: 0.86;
}

.trust-section .trust-card > .trust-eu-stars {
    position: absolute;
    right: -112px;
    bottom: -132px;
    z-index: 0;
    width: min(368px, 62%);
    height: auto;
    opacity: 0.07;
    filter: invert(1);
    pointer-events: none;
}

.trust-section .trust-card h2,
.trust-section .trust-card p {
    margin: 0;
}

.trust-section .trust-card h2 {
    font-weight: 500;
}

.trust-section .trust-card-science h2,
.trust-section .trust-card-science p {
    font-family: var(--font-science-serif);
}

.trust-section .trust-card-science h2 {
    max-width: none;
    font-size: clamp(2.25rem, 4.4vw, 3.55rem);
    font-weight: 500;
    letter-spacing: 0;
}

.trust-section .trust-card-science p {

    font-size: 1.09rem;
    letter-spacing: 0.015em;
    text-align: justify;
    text-justify: inter-word;
}

.trust-section .trust-card-accent p {
    max-width: 80%;
}

.trust-section .trust-card p {
    color: rgba(255, 255, 255, 0.8);
}

.trust-section .trust-card .text-link {
    align-self: end;
    padding-top: 14px;
    color: #fff;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.feature-link-muted {
    display: none;
}

.feature-grid article {
    position: relative;
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding: 22px 18px;
    border: 1px solid rgba(14, 20, 38, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(18, 24, 40, 0.05);
}

.feature-card .feature-icon {
    align-self: center;
    justify-self: center;
    width: 94px;
    height: 120px;
    border: 1px solid rgba(14, 20, 38, 0.08);
    border-radius: 20px;
    color: #4b84be;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.2)),
        linear-gradient(135deg, rgba(229, 240, 252, 0.96), rgba(238, 245, 253, 0.92));
}

.feature-card .feature-icon svg {
    width: 68px;
    height: 68px;
    stroke: currentColor;
    stroke-width: 1.08;
}

.feature-card .feature-icon img {
    width: 62px;
    height: 62px;
    display: block;
    object-fit: contain;
}

.feature-card .feature-icon img.feature-icon-image-asset {
    width: 43px;
    height: 43px;
    opacity: 0.72;
    filter: var(--feature-asset-filter);
}

.feature-row-1 {
    --feature-asset-filter: invert(49%) sepia(38%) saturate(761%) hue-rotate(171deg) brightness(88%) contrast(86%);
}

.feature-row-2 {
    --feature-asset-filter: invert(45%) sepia(19%) saturate(1325%) hue-rotate(202deg) brightness(89%) contrast(86%);
}

.feature-row-3 {
    --feature-asset-filter: invert(55%) sepia(16%) saturate(854%) hue-rotate(58deg) brightness(89%) contrast(86%);
}

.feature-card-theme {
    cursor: pointer;
}

.feature-card-theme:focus-visible {
    outline: 3px solid rgba(1, 127, 255, 0.18);
    outline-offset: 4px;
}

.feature-copy {
    display: grid;
    gap: 8px;
    align-content: center;
}

.feature-grid h3 {
    margin-bottom: 2px;
    font-size: 1.18rem;
    line-height: 1.08;
}

.feature-grid p {
    line-height: 1.5;
}

.feature-row-2 .feature-icon {
    color: #6a68b4;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.18)),
        linear-gradient(135deg, rgba(241, 236, 255, 0.96), rgba(244, 240, 255, 0.92));
}

.feature-row-3 .feature-icon {
    color: #6d915d;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.18)),
        linear-gradient(135deg, rgba(239, 247, 234, 0.96), rgba(242, 248, 239, 0.92));
}

html[data-theme="dark"] .feature-grid article {
    border-color: rgba(255, 255, 255, 0.08);
    background: #1c2433;
}

html[data-theme="dark"] .feature-card .feature-icon {
    border-color: rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
        linear-gradient(135deg, rgba(49, 82, 119, 0.22), rgba(34, 48, 66, 0.68));
}

html[data-theme="dark"] .feature-row-2 .feature-icon {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
        linear-gradient(135deg, rgba(98, 87, 156, 0.22), rgba(36, 48, 73, 0.68));
}

html[data-theme="dark"] .feature-row-3 .feature-icon {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
        linear-gradient(135deg, rgba(82, 114, 78, 0.22), rgba(34, 48, 66, 0.68));
}

.feature-actions {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.feature-heading {
    justify-content: center;
    text-align: center;
}

.feature-heading > div {
    max-width: 64ch;
}

.feature-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: color-mix(in srgb, var(--muted) 88%, transparent);
    font-size: 0.92rem;
    font-weight: 500;
}

.feature-more-icon {
    width: 22px;
    height: 22px;
    color: color-mix(in srgb, var(--muted) 88%, transparent);
    flex: 0 0 auto;
}

.feature-more-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.home-pricing {
    position: relative;
}

.pricing-heading {
    justify-content: center;
    text-align: center;
}

.pricing-heading > div {
    max-width: 68ch;
}

.home-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
    margin-inline: auto;
}

.home-price-card {
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 22px;
    min-height: 100%;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid color-mix(in srgb, var(--border) 76%, transparent);
    border-radius: 34px;
    background: var(--surface-strong);
    box-shadow: 0 18px 46px rgba(18, 24, 40, 0.07);
    overflow: hidden;
}

.home-price-card.is-featured {
    border-color: color-mix(in srgb, var(--accent-strong) 34%, var(--border));
    background: color-mix(in srgb, var(--surface-strong) 94%, var(--accent) 6%);
    box-shadow: 0 22px 52px rgba(1, 127, 255, 0.10);
}

.home-price-card > * {
    position: relative;
    z-index: 1;
}

.price-ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid color-mix(in srgb, var(--accent-strong) 18%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent-strong) 12%, white);
    color: color-mix(in srgb, var(--accent-strong) 82%, var(--text));
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.price-ribbon::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 14%, transparent);
}

.price-card-head {
    display: grid;
    gap: 10px;
}

.price-card-head h3,
.price-card-head p,
.price-description,
.price-best-for ul {
    margin: 0;
}

.price-card-head h3 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.price-line {
    width: fit-content;
    display: inline-flex;
    align-items: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(52, 145, 254, 0.11);
    color: var(--accent-strong);
    font-weight: 400;
}

.home-price-card.is-featured .price-line {
    background: var(--accent-strong);
    color: #fff;
}

.price-value {
    line-height: 1;
}

.price-note {
    color: color-mix(in srgb, currentColor 72%, transparent);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1;
}

.price-description {
    max-width: 58ch;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.45;
}

.price-best-for {
    align-self: start;
    display: grid;
    gap: 12px;
    padding-top: 8px;
}

.price-best-for strong {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-best-for ul {
    display: grid;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.price-best-for li {
    position: relative;
    padding-left: 31px;
    color: var(--muted);
    line-height: 1.35;
}

.price-best-for li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, var(--success), var(--accent-strong));
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.72);
}

.home-price-card.is-featured .price-best-for li::before {
    background: linear-gradient(135deg, var(--success), var(--accent));
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.72);
}

.price-card-cta {
    width: 100%;
    margin-top: 6px;
}

html[data-theme="dark"] .home-price-card {
    background: var(--surface-strong);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .home-price-card.is-featured {
    background: color-mix(in srgb, var(--surface-strong) 88%, var(--accent) 12%);
    border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.30);
}

html[data-theme="dark"] .price-ribbon {
    background: rgba(70, 156, 255, 0.14);
    color: #b9d9ff;
}

html[data-theme="dark"] .price-ribbon {
    border-color: rgba(185, 217, 255, 0.18);
}

.testimonial-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    gap: 0;
}

.testimonial-image {
    display: grid;
    align-items: end;
    min-height: 560px;
    padding: 28px;
    border-radius: 34px 0 0 34px;
    background:
        linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.52)),
        linear-gradient(135deg, color-mix(in srgb, var(--accent) 22%, var(--surface-2)), var(--surface-2));
}

.testimonial-image span {
    width: max-content;
    max-width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #11131d;
    font-weight: 900;
}

.testimonial-quote {
    display: grid;
    align-content: center;
    gap: 18px;
    margin: 0;
    padding: clamp(30px, 5vw, 58px);
    border-radius: 0 34px 34px 0;
    background: #11131d;
    color: #fff;
}

.testimonial-quote h2,
.testimonial-quote p,
.testimonial-quote blockquote {
    margin: 0;
}

.testimonial-quote p,
.testimonial-quote figcaption {
    color: rgba(255, 255, 255, 0.68);
}

.testimonial-quote blockquote {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    line-height: 1.12;
}

.timeline-band {
    overflow: hidden;
}

.section.muted.timeline-wave-section {
    position: relative;
    width: var(--viewport-width, 100vw);
    margin-left: calc(50% - (var(--viewport-width, 100vw) / 2));
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
}

.timeline-band-header {
    width: min(var(--nav-container), calc(100% - 32px));
    margin: 0 auto 10px;
}

.timeline-band-header p {
    max-width: 54ch;
}

.timeline-viewport {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px max(20px, calc((100vw - var(--nav-container)) / 2)) 8px;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-y;
    mask-image: linear-gradient(90deg, transparent 0, black 128px, black calc(100% - 128px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 128px, black calc(100% - 128px), transparent 100%);
}

.timeline-viewport::-webkit-scrollbar {
    display: none;
}

.timeline-viewport.is-dragging {
    cursor: grabbing;
}

.timeline-canvas {
    position: relative;
    width: max(100%, var(--timeline-width));
    min-width: var(--timeline-width);
    height: var(--timeline-height);
    overflow: visible;
}

.timeline-popover-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}

.timeline-wave {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.timeline-wave-glow,
.timeline-wave-segment,
.timeline-wave-future {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.timeline-wave-glow {
    stroke: rgba(255, 255, 255, 0.92);
    stroke-width: 10;
    opacity: 0.28;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.28));
}

.timeline-wave-segment {
    stroke-width: 5;
    opacity: 0.96;
}

.timeline-wave-segment.is-accent-a {
    stroke: #017fff;
}

.timeline-wave-segment.is-accent-b {
    stroke: #17a37d;
}

.timeline-wave-segment.is-accent-c {
    stroke: #e08d1a;
}

.timeline-wave-future {
    stroke: color-mix(in srgb, var(--muted) 68%, var(--accent-strong));
    stroke-width: 4;
    stroke-dasharray: 8 10;
    opacity: 0.6;
}

.timeline-node {
    position: absolute;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.timeline-node-badge {
    display: grid;
    place-items: center;
    width: var(--node-size, 28px);
    height: var(--node-size, 28px);
    border: 1px solid #017fff;
    border-radius: 999px;
    background: #017fff;
    box-shadow: 0 14px 30px rgba(18, 24, 40, 0.08);
    font-family: var(--font-display);
    font-size: var(--node-font-size, 0.68rem);
    font-weight: 700;
    color: #fff;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.timeline-node-caption {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.timeline-click-hint {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 4px 8px;
    border: 1px solid color-mix(in srgb, var(--accent-strong) 14%, var(--border));
    border-radius: var(--radius-control);
    background: color-mix(in srgb, var(--surface-strong) 84%, transparent);
    box-shadow: 0 8px 18px rgba(18, 24, 40, 0.06);
    color: color-mix(in srgb, var(--accent-strong) 72%, var(--muted));
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    opacity: 0.78;
    pointer-events: none;
    white-space: nowrap;
}

.timeline-click-hint::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.timeline-node.is-hint-dismissed .timeline-click-hint {
    display: none;
}

.timeline-node.is-crest .timeline-click-hint {
    bottom: 42px;
}

.timeline-node.is-crest .timeline-click-hint::after {
    bottom: -8px;
    transform: translateX(-50%) rotate(135deg);
}

.timeline-node.is-trough .timeline-click-hint {
    top: 42px;
}

.timeline-node.is-trough .timeline-click-hint::after {
    top: -8px;
    transform: translateX(-50%) rotate(-45deg);
}

.timeline-node.is-crest .timeline-node-caption {
    top: 42px;
}

.timeline-node.is-trough .timeline-node-caption {
    bottom: 42px;
}

.timeline-node.is-accent-a .timeline-node-badge {
    border-color: #017fff;
    background: #017fff;
    color: #fff;
}

.timeline-node.is-accent-b .timeline-node-badge {
    border-color: #17a37d;
    background: #17a37d;
    color: #fff;
}

.timeline-node.is-accent-c .timeline-node-badge {
    border-color: #e08d1a;
    background: #e08d1a;
    color: #fff;
}

.timeline-node:hover .timeline-node-badge,
.timeline-node:focus-visible .timeline-node-badge,
.timeline-node.is-active .timeline-node-badge {
    transform: scale(1.08);
    background: #cfe6ff;
    color: #0162c8;
    box-shadow: 0 18px 34px rgba(1, 127, 255, 0.18);
}

.timeline-node.is-accent-b:hover .timeline-node-badge,
.timeline-node.is-accent-b:focus-visible .timeline-node-badge,
.timeline-node.is-accent-b.is-active .timeline-node-badge {
    background: #d6f3ea;
    color: #138462;
    box-shadow: 0 18px 34px rgba(23, 163, 125, 0.18);
}

.timeline-node.is-accent-c:hover .timeline-node-badge,
.timeline-node.is-accent-c:focus-visible .timeline-node-badge,
.timeline-node.is-accent-c.is-active .timeline-node-badge {
    background: #fde6c3;
    color: #b96f10;
    box-shadow: 0 18px 34px rgba(224, 141, 26, 0.18);
}

.timeline-popover {
    position: absolute;
    z-index: 3;
    width: 280px;
    padding: 16px 18px 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: color-mix(in srgb, var(--surface-strong) 94%, white);
    box-shadow: 0 22px 48px rgba(18, 24, 40, 0.12);
    pointer-events: none;
}

.timeline-popover[hidden] {
    display: none;
}

.timeline-popover h3,
.timeline-popover p {
    margin: 0;
}

.timeline-popover h3 {
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
}

.timeline-popover p {
    color: var(--muted);
    line-height: 1.45;
}

.timeline-popover-meta {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


@media (max-width: 860px) {
    .logging-showcase,
    .insight-spotlight,
    .trust-section .trust-band,
    .home-pricing-grid,
    .testimonial-shell {
        grid-template-columns: 1fr;
    }

    .phone-frame,
    .hero-product {
        justify-self: center;
    }

    .hero-product {
        width: min(100%, 264px);
        transform: none;
    }
    .hero-phone {
        border-radius: 26px;
    }

    .trust-science-grid {
        grid-template-columns: 1fr;
    }

    .trust-section .trust-card-science p {
        max-width: none;
        text-align: left;
    }

    .trust-tags {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .trust-tag {
        justify-content: center;
        width: 100%;
        padding-inline: 10px;
        text-align: center;
    }

    .trust-section .trust-card > .trust-eu-stars {
        right: -54px;
        bottom: -72px;
        width: min(368px, 74%);
        opacity: 0.09;
    }

    .trust-science-graph {
        display: none;
    }

    .logging-showcase {
        gap: 34px;
    }

    .logging-copy {
        order: 1;
    }

    .logging-preview {
        order: 2;
        position: static;
        min-height: 390px;
    }

    .logging-device {
        width: min(288px, calc(100% - 40px));
        transform: rotate(0deg);
    }

    .logging-device.is-changing {
        transform: translateY(4px);
    }

    .logging-menu {
        display: flex;
        gap: 12px;
        margin-inline: -16px;
        padding: 0 16px 6px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .logging-menu::-webkit-scrollbar {
        display: none;
    }

    .logging-option {
        flex: 0 0 min(82%, 340px);
        scroll-snap-align: center;
        transform: none;
    }

    .logging-option:hover,
    .logging-option:focus-visible,
    .logging-option.is-active {
        transform: none;
    }

    .logging-dots {
        display: flex;
        justify-content: center;
        gap: 7px;
        margin-top: 14px;
    }

    .logging-dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: color-mix(in srgb, var(--muted) 34%, transparent);
        transition: width 160ms ease, background-color 160ms ease;
    }

    .logging-dot.is-active {
        width: 20px;
        background: var(--accent-strong);
    }

    .testimonial-image {
        min-height: 380px;
        border-radius: 30px 30px 0 0;
    }

    .testimonial-quote {
        border-radius: 0 0 30px 30px;
    }
    .proof-card:nth-child(2n),
    .proof-card:nth-child(3n),
    .feature-grid article:nth-child(3n + 2) {
        margin-top: 0;
    }

    .timeline-band-header {
        width: min(var(--nav-container), calc(100% - 32px));
    }

    .timeline-viewport {
        padding-top: 16px;
        padding-left: 20px;
        padding-right: 20px;
        mask-image: linear-gradient(90deg, transparent 0, black 64px, black calc(100% - 64px), transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0, black 64px, black calc(100% - 64px), transparent 100%);
    }

    .insight-spotlight .insight-spotlight-visual,
    .insight-spotlight:nth-child(even) .insight-spotlight-visual {
        order: 1;
    }

    .insight-spotlight .insight-spotlight-copy,
    .insight-spotlight:nth-child(even) .insight-spotlight-copy {
        order: 2;
        justify-self: start;
        text-align: left;
    }

    .insight-spotlight {
        gap: 28px;
    }

    .insight-spotlight-copy,
    .insight-description {
        max-width: none;
    }

    .insight-spotlight-visual {
        justify-items: start;
    }

    .insight-screen {
        width: 100%;
        max-width: 560px;
    }

    .feature-grid article:nth-child(3),
    .feature-grid article:nth-child(5),
    .feature-grid article:nth-child(7) {
        display: none;
    }
}

@media (max-width: 560px) {
    .store-actions {
        align-items: stretch;
    }

    .proof-card {
        flex-basis: 238px;
        min-height: 380px;
    }
    .store-button {
        flex: 1 1 100%;
    }

    .hero-product {
        width: min(100%, 252px);
    }

    .logging-device {
        min-height: 0;
    }

    .logging-preview {
        min-height: 370px;
        border-radius: 28px;
    }

    .logging-option {
        padding: 15px;
    }

    .insight-spotlight {
        padding: 0;
    }

    .insight-screen {
        padding: 52px 14px 14px;
        border-radius: 28px;
    }

    .insight-screen-grid {
        gap: 10px;
    }

    .insight-screen-grid span {
        min-height: 72px;
    }

    .insight-screen-footer span {
        height: 40px;
    }
    .feature-grid {
        gap: 12px;
    }

    .feature-grid article {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 16px;
        min-height: 0;
        padding: 22px;
    }

    .feature-card .feature-icon {
        width: 78px;
        height: 100px;
        border-radius: 18px;
    }

    .feature-card .feature-icon svg {
        width: 48px;
        height: 48px;
    }

    .feature-grid h3 {
        font-size: 1.08rem;
    }


    .testimonial-image {
        min-height: 320px;
    }
    .timeline-node-badge {
        box-shadow: 0 12px 28px rgba(18, 24, 40, 0.08);
    }

    .timeline-popover {
        padding: 14px 16px 16px;
        border-radius: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .proof-track {
        animation: none;
    }
}
