@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroGlowShift {
    0% {
        background-position: 0% 30%;
    }
    50% {
        background-position: 100% 70%;
    }
    100% {
        background-position: 0% 30%;
    }
}

.js-enabled .scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 400ms ease-out, transform 400ms ease-out;
}
.js-enabled .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}



:root {
    --bg: #081317;
    --bg-2: #0C171D;
    --panel: #10212B;
    --surface: #122630;
    --surface-muted: #0E1C24;
    --surface-alt: #16303B;
    --surface-strong: #193743;
    --border: rgba(73, 132, 151, 0.28);
    --divider: rgba(92, 146, 165, 0.18);

    --accent: #1EA8AD;
    --accent-low: rgba(30, 168, 173, 0.18);
    --accent-border: rgba(30, 168, 173, 0.38);
    --accent-glow: rgba(30, 168, 173, 0.18);
    --sage: #94D1BC;
    --sage-low: rgba(148, 209, 188, 0.15);
    --yellow: #D3B356;
    --yellow-low: rgba(211, 179, 86, 0.16);
    --orange: #F06B27;
    --orange-low: rgba(240, 107, 39, 0.14);
    --terra: #E04D36;

    --text: #F3F7F7;
    --text-soft: rgba(228, 238, 239, 0.78);
    --text-muted: rgba(165, 194, 203, 0.72);
    --text-faint: rgba(102, 132, 141, 0.82);

    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.34);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.18);

    --radius-sm: 18px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 999px;

    --container: 1180px;
    --section-space: 120px;
    --section-space-mobile: 82px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(30, 168, 173, 0.05), transparent 34%),
        radial-gradient(circle at 85% 10%, rgba(30, 168, 173, 0.04), transparent 30%),
        linear-gradient(180deg, #04090c 0%, #071015 28%, #071015 100%);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 180ms ease;
}

button,
.btn {
    font: inherit;
}

.page-glow {
    position: fixed;
    inset: auto;
    width: 34rem;
    height: 34rem;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
}

.page-glow-left {
    top: 8rem;
    left: -14rem;
    background: rgba(30, 168, 173, 0.07);
}

.page-glow-right {
    right: -12rem;
    top: 32rem;
    background: rgba(30, 168, 173, 0.05);
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--section-space) 0;
}

.section-surface {
    background:
        linear-gradient(180deg, rgba(12, 23, 29, 0.92) 0%, rgba(10, 20, 25, 0.98) 100%);
}

.section-screen {
    padding-top: 72px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: 'DM Mono', monospace;
    font-size: 0.76rem;
    line-height: 1.3;
    letter-spacing: 0.22em;
    color: var(--accent);
    text-transform: uppercase;
}

.kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 100%);
}

.hero-title,
.section-heading,
.download-title,
.logo-text {
    font-family: 'Anton', Impact, sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 12ch;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 22px;
}

.hero-subtitle,
.section-text,
.feature-panel p,
.step-card p,
.signal-card p,
.download-note {
    color: var(--text-soft);
    font-size: 1.1rem;
}

.section-heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 18px;
}

.center-heading {
    text-align: center;
}

.text-accent {
    color: var(--accent);
}

.section-title-block {
    margin-bottom: 52px;
}

.glass-panel {
    position: relative;
    background:
        linear-gradient(180deg, rgba(24, 52, 64, 0.98) 0%, rgba(11, 24, 32, 0.96) 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    pointer-events: none;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(6, 16, 20, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.store-ribbon {
    position: relative;
    z-index: 25;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(90deg, rgba(10, 20, 25, 0.98) 0%, rgba(16, 42, 52, 0.98) 50%, rgba(10, 20, 25, 0.98) 100%);
}

.store-ribbon-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.store-ribbon-copy {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-soft);
    flex-wrap: wrap;
}

.store-ribbon-copy p {
    font-size: 0.96rem;
}

.store-ribbon-label {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.7rem;
    border-radius: var(--radius-pill);
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: var(--accent);
    background: var(--accent-low);
    border: 1px solid var(--accent-border);
    text-transform: uppercase;
}

.store-ribbon-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0.72rem 1rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.94rem;
    white-space: nowrap;
}

.store-button-live {
    color: #071015;
    background: linear-gradient(180deg, #30C1C4 0%, var(--accent) 100%);
    box-shadow: 0 16px 34px rgba(30, 168, 173, 0.22);
}

.store-button-live:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(30, 168, 173, 0.28);
}

.store-button-disabled {
    color: var(--text-faint);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.store-button-note {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ribbon-close {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.ribbon-close:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.16);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 84px;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.logo-text {
    font-size: 1.9rem;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    padding: 0.78rem 1.2rem;
    border-radius: var(--radius-pill);
    background: var(--accent-low);
    border: 1px solid var(--accent-border);
    color: var(--accent);
}

.hero {
    position: relative;
    padding: 72px 0 98px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(30, 168, 173, 0.04), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 168, 173, 0.03), transparent 50%);
    background-size: 200% 200%;
    animation: heroGlowShift 12s ease-in-out infinite;
}

.hero-grid,
.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 56px;
    align-items: center;
}

.hero-copy {
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 34px 0 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0.95rem 1.65rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn-primary {
    background: linear-gradient(180deg, #30C1C4 0%, var(--accent) 100%);
    color: #071015;
    box-shadow: 0 18px 40px rgba(30, 168, 173, 0.28);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

@media (hover: hover) {
    .btn:hover {
        transform: translateY(-2px);
    }
    .btn-primary:hover {
        box-shadow: 0 24px 48px rgba(30, 168, 173, 0.34);
    }
    .btn-secondary:hover {
        border-color: var(--accent-border);
        background: rgba(30, 168, 173, 0.08);
    }
}

.hero-status {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 18px;
    margin-bottom: 8px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-ready { background: #4ADE80; box-shadow: 0 0 10px rgba(74, 222, 128, 0.4); }
.dot-fatigue { background: var(--orange); box-shadow: 0 0 10px rgba(240, 107, 39, 0.4); }
.dot-next { background: #60A5FA; box-shadow: 0 0 10px rgba(96, 165, 250, 0.4); }

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.metric-chip,
.pill,
.trust-chip {
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.metric-chip {
    min-width: 175px;
    padding: 14px 16px;
}

.metric-label {
    display: block;
    margin-bottom: 4px;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: var(--text-faint);
    text-transform: uppercase;
}

.metric-value {
    color: var(--text);
    font-weight: 600;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.stats-trust-bar {
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    background: rgba(12, 23, 29, 0.4);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    margin-bottom: 40px;
}

.stats-trust-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stats-trust-item {
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: var(--text-soft);
    text-transform: uppercase;
    font-weight: 500;
}

.stats-trust-separator {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.2rem;
    opacity: 0.6;
}

.hero-device {
    width: min(100%, 440px);
    padding: 16px;
    border-radius: 40px;
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible !important;
}

.shot-badge {
    position: absolute;
    z-index: 2;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-pill);
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(8, 19, 23, 0.74);
    border: 1px solid rgba(148, 209, 188, 0.2);
    color: var(--sage);
    backdrop-filter: blur(10px);
}

.shot-badge-top {
    top: 18px;
    right: 18px;
}

.visual-panel {
    border-radius: 34px;
    padding: 18px;
}

.tall-panel {
    min-height: 520px;
}

.feature-shot,
.feature-shot-wide {
    margin-top: 26px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(9, 18, 23, 0.94), rgba(8, 19, 23, 0.98));
}

.feature-shot {
    min-height: 420px;
}

.feature-shot-wide {
    min-height: 320px;
}

.app-shot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.shot-hero {
    width: 100%;
    max-width: 440px;
    height: auto;
    display: block;
    opacity: 0;
    animation: heroReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    will-change: transform, opacity;
}

.shot-subzone {
    min-height: 480px;
    object-position: center 60%;
    border-radius: 24px;
}

.shot-metrics {
    min-height: 480px;
    object-position: center 58%;
    border-radius: 24px;
}

.shot-insights {
    min-height: 420px;
    object-position: center 60%;
}

.shot-suggestions {
    min-height: 420px;
    object-position: center 60%;
}

.shot-logging {
    min-height: 320px;
    object-position: center 53%;
}

.signal-strip {
    padding-top: 0;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.signal-card,
.step-card,
.feature-panel {
    border-radius: 28px;
}

.signal-card {
    padding: 38px 28px;
    background: rgba(18, 38, 48, 0.4);
    border: 1px solid rgba(79, 140, 159, 0.15);
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.signal-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--accent);
    background: var(--accent-low);
    border-radius: 14px;
    margin-bottom: 8px;
}

.signal-icon svg {
    width: 24px;
    height: 24px;
}

.signal-title {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    color: var(--text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.signal-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.story-copy {
    max-width: 560px;
}

.bullet-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.bullet-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text-soft);
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px var(--accent-low);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.pill {
    padding: 0.72rem 1rem;
    color: var(--sage);
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
}

.reverse-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.reverse-grid .story-copy {
    order: 2;
    justify-self: end;
}

.reverse-grid .story-visual {
    order: 1;
}

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

.feature-panel {
    padding: 26px;
}

.feature-panel h3 {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 1.7rem;
    line-height: 1.05;
}

.feature-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(30, 168, 173, 0.18), rgba(17, 120, 146, 0.12));
    border: 1px solid rgba(30, 168, 173, 0.25);
    color: var(--accent);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.flow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 60px auto 0;
    gap: 0;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 180px;
    opacity: 0.15;
    transform: translateY(10px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-step.active {
    opacity: 1;
    transform: translateY(0);
}

.flow-number {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.flow-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(30, 168, 173, 0.05);
    border: 1px solid rgba(30, 168, 173, 0.12);
    color: var(--accent);
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.flow-step.active .flow-icon {
    background: var(--accent-low);
    border-color: var(--accent-border);
    transform: scale(1.05);
}

.flow-icon svg {
    width: 28px;
    height: 28px;
}

.flow-label {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-soft);
    white-space: nowrap;
}

.flow-connector {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--divider), transparent);
    opacity: 0.3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 -20px;
    margin-bottom: 42px; /* Align with icons roughly */
}

.flow-connector.active {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--accent-border), var(--divider));
}

.download-section-wrap {
    padding-top: 40px;
}

.download-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 38px;
    border-radius: 32px;
}

.download-copy {
    max-width: 640px;
}

.download-title {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 0.93;
    margin-bottom: 16px;
}

.download-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.download-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer {
    padding: 26px 0 44px;
}

.footer-inner {
    display: grid;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.footer-motto {
    color: var(--text-soft);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-contact {
    margin-top: 4px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-link:hover {
    color: var(--accent);
}

.footer-copyright {
    color: var(--text-faint);
    font-size: 0.92rem;
}

.legal-page {
    background:
        radial-gradient(circle at top left, rgba(17, 120, 146, 0.12), transparent 30%),
        linear-gradient(180deg, #061014 0%, #081317 100%);
}

.legal-main {
    padding: 64px 0 96px;
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 34px 32px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(18, 38, 48, 0.96), rgba(10, 20, 25, 0.98));
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    color: var(--text-soft);
}





.legal-content h2 {
    margin-top: 36px;
    margin-bottom: 12px;
    font-size: 1.35rem;
    color: var(--text);
}

.legal-content p,
.legal-content li {
    color: var(--text-soft);
    font-size: 1.02rem;
}

.legal-content p {
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.25rem;
    margin-bottom: 12px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-meta {
    margin-bottom: 28px;
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .hero-grid,
    .story-grid,
    .reverse-grid,
    .feature-grid,
    .signal-grid,
    .step-grid,
    .download-panel,
    .pricing-hero,
    .pricing-grid,
    .comparison-grid,
    .feature-mini-grid {
        grid-template-columns: 1fr;
    }

    .download-panel {
        align-items: flex-start;
    }

    .reverse-grid .story-copy,
    .reverse-grid .story-visual {
        order: initial;
    }

    .reverse-grid .story-copy {
        justify-self: stretch;
    }

    .hero-device {
        max-width: 620px;
        transform: none;
    }
}

@media (max-width: 760px) {
    .stats-trust-inner {
        gap: 12px;
    }
    .stats-trust-separator {
        display: none;
    }

    .store-ribbon-inner,
    .store-ribbon-copy,
    .store-ribbon-actions {
        align-items: flex-start;
    }

    .store-ribbon-inner {
        flex-direction: column;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .store-ribbon-actions {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 46px;
        gap: 10px;
    }

    .store-button {
        width: 100%;
        justify-content: center;
    }

    .store-button-live,
    .store-button-disabled {
        grid-column: 1 / 2;
    }

    .ribbon-close {
        width: 46px;
        flex: 0 0 46px;
        height: 100%;
        min-height: 102px;
        grid-column: 2 / 3;
        grid-row: 1 / span 2;
        border-radius: 20px;
    }

    .section {
        padding: var(--section-space-mobile) 0;
    }

    .nav-container {
        min-height: 74px;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .nav-links {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero {
        padding-top: 44px;
        padding-bottom: 68px;
    }

    .hero-actions,
    .hero-metrics,
    .pill-row {
        gap: 12px;
    }

    .btn {
        width: 100%;
    }

    .hero-device,
    .visual-panel,
    .download-panel,
    .feature-panel,
    .step-card,
    .legal-content {
        padding: 20px;
    }

    .tall-panel {
        min-height: 420px;
    }

    .feature-shot {
        min-height: 360px;
    }

    .feature-shot-wide {
        min-height: 250px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-main {
        padding-top: 36px;
        padding-bottom: 64px;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 80px auto 60px;
}

.early-access-card {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 168, 173, 0.15), rgba(148, 209, 188, 0.05));
    border: 1px solid var(--accent-border);
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.early-access-title {
    display: inline-block;
    font-family: 'Anton', Impact, sans-serif;
    color: var(--bg);
    background: var(--accent);
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(30, 168, 173, 0.4);
}

.early-access-price {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
}

.price-strike {
    text-decoration: line-through;
    opacity: 0.4;
    margin-right: 15px;
    font-size: 2.2rem;
    color: var(--text-muted);
}

.price-free {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-card {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 32px;
    position: relative;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
    .pricing-card:not(.featured):hover {
        transform: translateY(-8px) scale(1.02);
        border-color: var(--accent);
        box-shadow: 0 20px 40px rgba(30, 168, 173, 0.2);
    }
}

.pricing-card.featured {
    border-color: rgba(211, 179, 86, 0.38);
    background: linear-gradient(180deg, rgba(211, 179, 86, 0.08) 0%, rgba(11, 24, 32, 0.96) 100%);
    box-shadow: 0 0 40px rgba(211, 179, 86, 0.1);
}

@media (hover: hover) {
    .pricing-card.featured:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: var(--yellow);
        box-shadow: 0 20px 50px rgba(211, 179, 86, 0.22);
    }
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--bg);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.price-sub {
    font-size: 1rem;
    color: var(--text-muted);
}

.feature-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--divider);
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-soft);
}

.mini-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

.comparison-section {
    max-width: 800px;
    margin: 100px auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.comp-column h4 {
    margin-bottom: 24px;
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.comp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.comp-item svg {
    flex-shrink: 0;
}

.comp-valen .comp-item {
    color: var(--text);
}

.comp-others .comp-item {
    color: var(--text-faint);
}

.trust-section {
    text-align: center;
    margin-bottom: 100px;
}

.trust-points {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 1rem;
}

.cta-section {
    text-align: center;
    padding-bottom: 140px;
}

/* Pro Features Accordion */
.pro-features-section {
    max-width: 800px;
    margin: 80px auto;
}

.pro-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.pro-feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-feature-item.active {
    background: linear-gradient(135deg, rgba(30, 168, 173, 0.08), rgba(20, 40, 50, 0.4));
    border-color: rgba(30, 168, 173, 0.3);
}

.pro-feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.pro-feature-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
}

.pro-feature-header .chevron {
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-feature-item.active .chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.pro-feature-content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-feature-item.active .pro-feature-content-wrapper {
    grid-template-rows: 1fr;
}

.pro-feature-content {
    overflow: hidden;
    padding: 0 24px 0 64px;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.6;
}

.pro-feature-item.active .pro-feature-content {
    padding-bottom: 24px;
}

/* Why Valen Section */
.why-valen-section {
    margin: 100px auto;
    max-width: 1100px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(30, 168, 173, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(30, 168, 173, 0.2);
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

/* Infographics inside Pro Features */
.reveal-item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pro-feature-item.active .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.pro-feature-item.active p.reveal-item {
    transition-delay: 0.1s;
}

.pro-feature-item.active .info-graphic.reveal-item {
    transition-delay: 0.25s;
}

.info-graphic {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-label {
    width: 100px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.progress-track {
    flex-grow: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
}

.info-value {
    width: 60px;
    text-align: right;
    font-size: 0.85rem;
    font-weight: 600;
}

.flex-graphic {
    display: flex;
    gap: 16px;
}

.sugg-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 8px;
}

.main-sugg {
    border: 1px solid var(--accent);
    background: linear-gradient(135deg, rgba(30, 168, 173, 0.1), rgba(0,0,0,0));
}

.sugg-badge {
    display: inline-block;
    padding: 4px 8px;
    background: var(--accent);
    color: var(--bg);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sugg-card h4 {
    margin: 0 0 4px 0;
    color: var(--text);
    font-size: 1rem;
}

.sugg-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.insight-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.insight-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Anton', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.insight-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}

.bar {
    width: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.active-bar {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(30, 168, 173, 0.4);
}

.bar-col span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.heatmap-graphic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
}

.muscle-node {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.muscle-node small {
    display: block;
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.8;
}

.muscle-node.alert {
    color: #ef4444;
}

.muscle-link {
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    top: -10px;
    z-index: 1;
}

.offline-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px 20px;
}

.offline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.offline-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
}

.offline-arrow span {
    font-size: 0.75rem;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .why-card {
        padding: 30px 20px;
    }
}

@media (max-width: 760px) {
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-points {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .early-access-price {
        font-size: 2.8rem;
    }

    .comparison-grid {
        gap: 40px;
    }
    
    .pro-feature-content {
        padding: 0 16px 0 16px;
    }
    
    .pro-feature-item.active .pro-feature-content {
        padding-bottom: 20px;
    }

    /* Mobile Infographics Rules */
    .info-graphic {
        padding: 16px;
    }

    .flex-graphic {
        flex-direction: column;
        gap: 12px;
    }

    .insight-grid {
        flex-direction: column;
        gap: 20px;
    }

    .heatmap-graphic {
        flex-direction: column;
        gap: 8px;
    }

    .muscle-link {
        width: 2px;
        height: 20px;
        top: 0;
    }

    .offline-graphic {
        flex-direction: column;
        gap: 16px;
    }

    .info-row {
        flex-wrap: wrap;
    }

    .info-label {
        width: 100%;
        margin-bottom: 4px;
    }

    .progress-track {
        width: calc(100% - 70px);
        flex-grow: 0;
    }

    .info-value {
        width: 60px;
    }
}

/* ==========================================
   HOMEPAGE INTERACTIVE MAP SECTION
   ========================================== */
#interactive-map {
    background: linear-gradient(180deg, rgba(8, 19, 23, 0.98) 0%, rgba(6, 16, 20, 0.99) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.map-card {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 50px 40px 40px;
    background: #0d1f24 !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.map-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    justify-items: center;
    align-items: center;
    position: relative;
}

.silhouette-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    position: relative;
}

.view-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: var(--text-faint);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.body-wrapper {
    position: relative;
    width: 170px;
    height: 417px;
}

.body-silhouette {
    width: 100%;
    height: 100%;
    display: block;
}

/* Premium Anatomical SVG Fills & Interactions */
[data-zone] {
    cursor: pointer;
    transition: fill 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s ease, opacity 0.4s ease;
}

[data-zone]:hover {
    filter: brightness(1.25) saturate(1.1);
}

.zone-ready {
    fill: rgba(17, 120, 146, 0.75);
    stroke: #117892 !important;
    stroke-width: 1.3px;
}

.zone-recovering {
    fill: rgba(240, 180, 50, 0.65);
    stroke: #f0b432 !important;
    stroke-width: 1.3px;
}

.zone-fatigued {
    fill: rgba(224, 85, 85, 0.75);
    stroke: #e05555 !important;
    stroke-width: 1.3px;
}

.zone-resting {
    fill: rgba(255, 255, 255, 0.06);
    stroke: rgba(255, 255, 255, 0.12) !important;
    stroke-width: 1.3px;
}

/* Stagger Animation */
.body-silhouette [data-zone] {
    opacity: 0;
}

.body-silhouette.loaded [data-zone] {
    animation: zoneFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes zoneFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96) translate(0, 4px);
    }
    to {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
}

/* Group 1: Torso / Core / Back (stagger delays) */
.body-silhouette.loaded [data-zone="chest"],
.body-silhouette.loaded [data-zone="core"],
.body-silhouette.loaded [data-zone="back"] {
    animation-delay: 100ms;
}

/* Group 2: Shoulders / Arms */
.body-silhouette.loaded [data-zone="shoulders"],
.body-silhouette.loaded [data-zone="arms"] {
    animation-delay: 200ms;
}

/* Group 3: Legs */
.body-silhouette.loaded [data-zone="legs"] {
    animation-delay: 300ms;
}

/* Custom Floating App-style Tooltip Chip */
.custom-tooltip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(7, 16, 21, 0.96);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #F3F7F7;
    pointer-events: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    z-index: 100;
    opacity: 0;
    transform: translate(-50%, -120%) scale(0.85);
    transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.custom-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(7, 16, 21, 0.96) transparent transparent transparent;
}

.custom-tooltip.visible {
    opacity: 1;
    transform: translate(-50%, -125%) scale(1);
}

.custom-tooltip .tooltip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

/* Tooltip status modifier styles */
.custom-tooltip.ready {
    border-color: #117892;
}
.custom-tooltip.ready .tooltip-dot {
    background: #117892;
    box-shadow: 0 0 8px #117892;
}

.custom-tooltip.recovering {
    border-color: #f0b432;
}
.custom-tooltip.recovering .tooltip-dot {
    background: #f0b432;
    box-shadow: 0 0 8px #f0b432;
}

.custom-tooltip.fatigued {
    border-color: #e05555;
}
.custom-tooltip.fatigued .tooltip-dot {
    background: #e05555;
    box-shadow: 0 0 8px #e05555;
}

.custom-tooltip.resting {
    border-color: rgba(255, 255, 255, 0.12);
}
.custom-tooltip.resting .tooltip-dot {
    background: rgba(255, 255, 255, 0.3);
}

.custom-tooltip .tooltip-status-label {
    opacity: 0.6;
    font-weight: 500;
    margin-left: 4px;
}

/* Hotspots */
.hotspot-zone {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    outline: none;
}

.hotspot-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: transform 200ms ease;
}

.hotspot-zone:hover .hotspot-dot,
.hotspot-zone:focus .hotspot-dot {
    transform: scale(1.25);
}

/* Hotspot pulse color codes */
.hotspot-zone.ready .hotspot-dot {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(30, 168, 173, 0.2), 0 0 12px var(--accent);
    animation: pulse-ready 2s infinite;
}

.hotspot-zone.moderate .hotspot-dot {
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(240, 107, 39, 0.2), 0 0 12px var(--orange);
    animation: pulse-moderate 2s infinite;
}

.hotspot-zone.fatigued .hotspot-dot {
    background: var(--terra);
    box-shadow: 0 0 0 4px rgba(224, 77, 54, 0.2), 0 0 12px var(--terra);
    animation: pulse-fatigued 2s infinite;
}

.hotspot-zone.recovering .hotspot-dot {
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(211, 179, 86, 0.2), 0 0 12px var(--yellow);
    animation: pulse-recovering 2s infinite;
}

@keyframes pulse-ready {
    0% { box-shadow: 0 0 0 0 rgba(30, 168, 173, 0.5), 0 0 8px var(--accent); }
    70% { box-shadow: 0 0 0 8px rgba(30, 168, 173, 0), 0 0 12px var(--accent); }
    100% { box-shadow: 0 0 0 0 rgba(30, 168, 173, 0), 0 0 8px var(--accent); }
}
@keyframes pulse-moderate {
    0% { box-shadow: 0 0 0 0 rgba(240, 107, 39, 0.5), 0 0 8px var(--orange); }
    70% { box-shadow: 0 0 0 8px rgba(240, 107, 39, 0), 0 0 12px var(--orange); }
    100% { box-shadow: 0 0 0 0 rgba(240, 107, 39, 0), 0 0 8px var(--orange); }
}
@keyframes pulse-fatigued {
    0% { box-shadow: 0 0 0 0 rgba(224, 77, 54, 0.5), 0 0 8px var(--terra); }
    70% { box-shadow: 0 0 0 8px rgba(224, 77, 54, 0), 0 0 12px var(--terra); }
    100% { box-shadow: 0 0 0 0 rgba(224, 77, 54, 0), 0 0 8px var(--terra); }
}
@keyframes pulse-recovering {
    0% { box-shadow: 0 0 0 0 rgba(211, 179, 86, 0.5), 0 0 8px var(--yellow); }
    70% { box-shadow: 0 0 0 8px rgba(211, 179, 86, 0), 0 0 12px var(--yellow); }
    100% { box-shadow: 0 0 0 0 rgba(211, 179, 86, 0), 0 0 8px var(--yellow); }
}

/* Tooltip Labels (always visible inline on mobile, responsive text on desktop hover) */
.hotspot-pill {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 19, 23, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-soft);
    white-space: nowrap;
    pointer-events: none;
    box-shadow: var(--shadow-sm);
    transition: background 200ms ease, border-color 200ms ease;
}

.hotspot-zone:hover .hotspot-pill,
.hotspot-zone:focus .hotspot-pill {
    background: rgba(12, 27, 33, 0.95);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--text);
}

/* Detailed descriptive tooltip overlay card */
.detailed-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 14px);
    transform: translateX(-50%) translateY(10px);
    width: 210px;
    background: #0d1f24;
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    z-index: 50;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.detailed-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: var(--border) transparent transparent transparent;
}

.detailed-tooltip h4 {
    margin: 0 0 4px 0;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 700;
}

.detailed-tooltip p {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.status-badge {
    display: inline-block;
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.status-badge.ready { background: rgba(30, 168, 173, 0.12); color: var(--accent); border: 1px solid rgba(30, 168, 173, 0.25); }
.status-badge.moderate { background: rgba(240, 107, 39, 0.12); color: var(--orange); border: 1px solid rgba(240, 107, 39, 0.25); }
.status-badge.fatigued { background: rgba(224, 77, 54, 0.12); color: var(--terra); border: 1px solid rgba(224, 77, 54, 0.25); }
.status-badge.recovering { background: rgba(211, 179, 86, 0.12); color: var(--yellow); border: 1px solid rgba(211, 179, 86, 0.25); }

/* Trigger detail tooltips only on desktop hover or mobile focus-within state */
@media (hover: hover) {
    .hotspot-zone:hover .detailed-tooltip {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
}

.hotspot-zone:focus-within .detailed-tooltip,
.hotspot-zone:active .detailed-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Map Bottom Stats Summary Bar */
.map-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--divider);
    flex-wrap: wrap;
}

.stat-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-soft);
}

.stat-pill-item .pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.stat-pill-item.ready { border-color: rgba(30, 168, 173, 0.25); background: rgba(30, 168, 173, 0.03); color: var(--accent); }
.stat-pill-item.ready .pill-dot { background: var(--accent); box-shadow: 0 0 6px var(--accent); }

.stat-pill-item.moderate { border-color: rgba(240, 107, 39, 0.25); background: rgba(240, 107, 39, 0.03); color: var(--orange); }
.stat-pill-item.moderate .pill-dot { background: var(--orange); box-shadow: 0 0 6px var(--orange); }

.stat-pill-item.fatigued { border-color: rgba(224, 77, 54, 0.25); background: rgba(224, 77, 54, 0.03); color: var(--terra); }
.stat-pill-item.fatigued .pill-dot { background: var(--terra); box-shadow: 0 0 6px var(--terra); }


/* ==========================================
   RESPONSIVE NAVIGATION & CLAMP UPGRADES
   ========================================== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 30;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: transform 200ms ease, opacity 200ms ease;
    will-change: transform, opacity;
}

.hero {
    will-change: background-position;
}


/* ==========================================
   MOBILE MEDIA QUERY OVERRIDES (< 768px)
   ========================================== */
@media (max-width: 768px) {
    /* Touch Target & General Optimization */
    button, a, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }

    body {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    p, span, li {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    .kicker, .view-label, .flow-number, .metric-label, .status-label, .card-badge, .store-button-note, .hotspot-pill {
        font-size: 14px !important;
    }

    /* Navbar Hamburger dropdown */
    .nav-toggle {
        display: flex;
    }

    .nav-container {
        min-height: 74px;
        justify-content: space-between !important;
        align-items: center !important;
        padding-top: 14px;
        padding-bottom: 14px;
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(8, 19, 23, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px;
        gap: 16px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 250ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms ease;
        pointer-events: none;
        z-index: 29;
    }

    .navbar.is-active .nav-links {
        max-height: 350px;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar.is-active .nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar.is-active .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .navbar.is-active .nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links a {
        display: flex;
        align-items: center;
        min-height: 48px;
        font-size: 1.1rem;
        padding: 0 10px;
        color: var(--text-soft);
    }

    .nav-links .nav-cta {
        display: flex;
        justify-content: center;
        width: 100%;
        min-height: 52px;
        margin-top: 8px;
        border-radius: var(--radius-pill);
        background: linear-gradient(180deg, #30C1C4 0%, var(--accent) 100%) !important;
        color: #071015 !important;
        font-weight: 700;
        box-shadow: 0 8px 24px rgba(30, 168, 173, 0.25);
    }

    /* Hero Responsive */
    .hero-title {
        font-size: clamp(2rem, 6vh, 4rem) !important;
        line-height: 1.05 !important;
        max-width: 100% !important;
        text-align: left;
    }

    .hero-subtitle {
        text-align: left;
        font-size: 16px !important;
    }

    .shot-hero {
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .hero-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .hero-actions .btn {
        width: 100% !important;
    }

    /* Feature grids & screenshot layouts */
    .story-grid {
        display: flex;
        flex-direction: column !important;
        gap: 32px !important;
    }

    .story-visual {
        order: -1 !important; /* Stack image above text */
        width: 100% !important;
    }

    .story-copy {
        width: 100% !important;
        text-align: left !important;
    }

    .story-copy .section-heading {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: clamp(2rem, 6vw, 3.2rem) !important;
    }

    .bullet-list {
        padding-left: 12px !important;
    }

    /* Interactive Map Responsive Overlay rules */
    .map-card {
        padding: 30px 16px 24px !important;
        border-radius: var(--radius-md) !important;
    }

    .map-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .silhouette-container {
        max-width: 100% !important;
        padding: 20px 10px !important;
    }

    .body-wrapper {
        width: 140px !important;
        height: 344px !important;
    }

    /* Adjust hotspot positions slightly for smaller outline scale */
    .hotspot-pill {
        display: block !important;
        left: 20px !important;
        font-size: 0.65rem !important;
        padding: 2px 6px !important;
    }

    .detailed-tooltip {
        width: 180px !important;
        padding: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .detailed-tooltip p {
        font-size: 0.7rem !important;
    }

    /* Pricing Overrides */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        padding: 0 16px !important;
        gap: 20px !important;
    }

    .pricing-card {
        padding: 30px 20px !important;
    }

    .comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 0 16px !important;
    }

    .comp-column {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 24px 20px !important;
    }

    .comp-column.comp-pro {
        border-color: var(--accent-border);
        background: linear-gradient(180deg, rgba(30, 168, 173, 0.04) 0%, rgba(255,255,255,0.02) 100%);
    }

    /* Footer & Legal padding overrides */
    .footer-inner {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .footer-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .footer-nav a,
    .contact-link {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 4px 8px;
        width: auto;
    }

    .footer-dev-note {
        padding: 0 !important;
        text-align: left;
    }
}

/* ==========================================
   DAY ONE ONBOARDING CARDS SECTION
   ========================================== */
.day-one-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(8, 19, 23, 0.98) 0%, rgba(6, 16, 20, 0.99) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 5;
}

.day-one-badge {
    background: rgba(30, 168, 173, 0.12);
    border: 1px solid rgba(30, 168, 173, 0.25);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 auto;
}

.day-one-header {
    text-align: center;
    margin-bottom: 40px;
}

.day-one-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.day-one-card {
    padding: 34px 28px;
    border-radius: var(--radius-lg);
    background: rgba(28, 51, 71, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.day-one-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: var(--shadow-lg);
}

.day-one-card.featured-card {
    border-color: rgba(30, 168, 173, 0.25) !important;
    background: linear-gradient(180deg, rgba(28, 51, 71, 0.28) 0%, rgba(30, 168, 173, 0.06) 100%) !important;
    box-shadow: 0 10px 30px rgba(30, 168, 173, 0.06);
}

.day-one-card.featured-card:hover {
    border-color: rgba(30, 168, 173, 0.45) !important;
    box-shadow: 0 15px 40px rgba(30, 168, 173, 0.12);
}

.day-one-card-step {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-faint);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.day-one-card-step.step-accent {
    color: var(--accent);
    font-weight: 700;
}

.day-one-card-title {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
}

.day-one-card-desc {
    margin: 0 0 24px 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
    flex-grow: 1;
}

/* Onboarding Visual Boxes */
.day-one-visual-box {
    height: 136px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Choice Box mock */
.choice-box {
    gap: 8px;
}

.choice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    font-size: 0.74rem;
    color: var(--text-muted);
}

.choice-item.active {
    background: rgba(30, 168, 173, 0.08);
    border-color: rgba(30, 168, 173, 0.25);
    color: var(--accent);
    font-weight: 700;
}

.choice-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

/* Processing box mock */
.processing-box {
    justify-content: space-between;
}

.processing-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.progress-bar-glow {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}

.progress-fill-glow {
    height: 100%;
    background: linear-gradient(90deg, #1ea8ad, #30c1c4);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(48, 193, 196, 0.8);
}

.processing-spark {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.spark-node {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.spark-node.active {
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
    animation: sparkPulse 1.5s infinite alternate;
}

.spark-node:nth-child(2).active { animation-delay: 0.2s; }
.spark-node:nth-child(3).active { animation-delay: 0.4s; }
.spark-node:nth-child(4).active { animation-delay: 0.6s; }
.spark-node:nth-child(5).active { animation-delay: 0.8s; }

@keyframes sparkPulse {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Heatmap box mock */
.heatmap-box {
    align-items: center;
}

.mini-heatmap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.muscle-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.muscle-group.ready-g {
    background: rgba(17, 120, 146, 0.08);
    border-color: rgba(17, 120, 146, 0.3);
    color: #1ea8ad;
}

.muscle-group.alert-g {
    background: rgba(224, 85, 85, 0.08);
    border-color: rgba(224, 85, 85, 0.3);
    color: #e05555;
}

.muscle-group.recovery-g {
    background: rgba(240, 180, 50, 0.08);
    border-color: rgba(240, 180, 50, 0.3);
    color: #f0b432;
}

@media (max-width: 900px) {
    .day-one-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================
   SRA SCIENCE SECTION
   ========================================== */
#sra-science {
    background: linear-gradient(180deg, rgba(6, 16, 20, 0.99) 0%, rgba(8, 19, 23, 0.98) 100%);
    border-top: 1px solid var(--border);
}

.sra-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.sra-copy {
    display: flex;
    flex-direction: column;
}

.sra-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.sra-feat {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.sra-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.9;
    background: rgba(30, 168, 173, 0.08);
    border: 1px solid rgba(30, 168, 173, 0.15);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sra-feat h4 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

.sra-feat p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.sra-panel {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: rgba(28, 51, 71, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: var(--shadow-xl);
}

.sra-curve-svg {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.sra-marker text {
    font-family: 'Outfit', 'Inter', sans-serif;
    letter-spacing: 0.05em;
    font-size: 10px;
}

@media (max-width: 900px) {
    .sra-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sra-visual {
        order: -1;
    }
}

/* ==========================================
   FAQ DISCLOSURE ACCORDION SECTION
   ========================================== */
#faq {
    background: linear-gradient(180deg, rgba(8, 19, 23, 0.98) 0%, rgba(7, 16, 21, 0.95) 100%);
    border-top: 1px solid var(--border);
    padding-top: 80px;
    padding-bottom: 80px;
}

.faq-container-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.faq-disclosure {
    background: rgba(28, 51, 71, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.faq-disclosure:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(28, 51, 71, 0.3);
}

.faq-disclosure[open] {
    border-color: rgba(30, 168, 173, 0.3);
    background: rgba(28, 51, 71, 0.35);
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-soft);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

/* Hide default disclosure triangle in Safari & Chrome */
.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-faint);
    flex-shrink: 0;
}

.faq-disclosure[open] .faq-summary {
    color: var(--text);
}

.faq-disclosure[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-content {
    padding: 0 24px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.faq-content p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .faq-summary {
        padding: 16px 20px;
        font-size: 0.98rem;
    }
    
    .faq-content {
        padding: 0 20px 18px;
    }
    
    .faq-content p {
        font-size: 0.88rem !important;
    }
}



