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

:root {
    --hs-ink: #0f2231;
    --hs-muted: #506172;
    --hs-border: rgba(12, 54, 80, 0.2);
    --hs-panel: rgba(255, 255, 255, 0.84);
    --hs-white: #ffffff;
    --hs-primary: #0f9ea1;
    --hs-primary-strong: #087881;
    --hs-accent: #2a9de6;
    --hs-shadow: 0 24px 64px rgba(6, 33, 55, 0.18);
    --hs-card-shadow: 0 14px 34px rgba(6, 33, 55, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: 'Instrument Sans', 'Segoe UI', sans-serif;
    color: var(--hs-ink);
    line-height: 1.55;
    background:
        radial-gradient(circle at 14% 9%, rgba(15, 158, 161, 0.26) 0%, rgba(15, 158, 161, 0) 40%),
        radial-gradient(circle at 84% 5%, rgba(42, 157, 230, 0.2) 0%, rgba(42, 157, 230, 0) 44%),
        linear-gradient(150deg, #f9fdff 0%, #eef5f8 52%, #f4f9fb 100%);
}

.landing-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 2rem clamp(1rem, 2.2vw, 2.4rem) 1.5rem;
}

.landing-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        120deg,
        rgba(7, 46, 72, 0.03) 0,
        rgba(7, 46, 72, 0.03) 1px,
        transparent 1px,
        transparent 8px
    );
    opacity: 0.5;
}

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

.landing-orb-left {
    width: 18rem;
    height: 18rem;
    top: 3rem;
    left: -7rem;
    background: radial-gradient(circle, rgba(15, 158, 161, 0.26) 0%, rgba(15, 158, 161, 0) 68%);
    animation: float-left 9s ease-in-out infinite;
}

.landing-orb-right {
    width: 22rem;
    height: 22rem;
    right: -8rem;
    top: 20rem;
    background: radial-gradient(circle, rgba(42, 157, 230, 0.22) 0%, rgba(42, 157, 230, 0) 70%);
    animation: float-right 11s ease-in-out infinite;
}

.landing-header,
.landing-main,
.landing-footer {
    position: relative;
    z-index: 2;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.landing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0 1.2rem;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-mark {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, var(--hs-primary) 0%, var(--hs-accent) 100%);
    box-shadow: 0 10px 24px rgba(15, 158, 161, 0.34);
    color: #f4fdff;
}

.brand-mark-icon {
    width: 1.35rem;
    height: 1.35rem;
}

.brand-eyebrow {
    margin: 0;
    font-family: 'Unbounded', 'Trebuchet MS', sans-serif;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-transform: uppercase;
}

.brand-subline {
    margin: 0.1rem 0 0;
    font-size: 0.86rem;
    color: var(--hs-muted);
}

.header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(7, 120, 140, 0.32);
    background: rgba(255, 255, 255, 0.7);
    color: #0d4f68;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.header-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(10, 122, 144, 0.48);
}

.landing-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0.35rem 0 2.1rem;
}

.error-banner {
    background: linear-gradient(90deg, rgba(255, 70, 70, 0.18) 0%, rgba(255, 140, 140, 0.14) 100%);
    border: 1px solid rgba(171, 35, 35, 0.32);
    color: #7f2020;
    border-radius: 0.95rem;
    padding: 0.88rem 1rem;
}

.error-banner strong {
    display: block;
    font-family: 'Unbounded', 'Trebuchet MS', sans-serif;
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.error-banner p {
    margin: 0.3rem 0 0;
    font-size: 0.94rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: 1.1rem;
    align-items: stretch;
}

.hero-copy {
    border-radius: 1.45rem;
    border: 1px solid var(--hs-border);
    background: var(--hs-panel);
    box-shadow: var(--hs-shadow);
    padding: clamp(1.25rem, 3vw, 2.5rem);
    backdrop-filter: blur(8px);
}

.hero-kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.34rem 0.72rem;
    background: rgba(9, 124, 145, 0.12);
    color: #0a6278;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-kicker::before {
    content: '';
    width: 0.44rem;
    height: 0.44rem;
    border-radius: 999px;
    background: linear-gradient(150deg, #0f9ea1, #2a9de6);
    box-shadow: 0 0 0 3px rgba(15, 158, 161, 0.18);
}

.hero-copy h1 {
    margin: 1rem 0 0;
    font-family: 'Unbounded', 'Trebuchet MS', sans-serif;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.015em;
    font-size: clamp(1.75rem, 4.6vw, 3.35rem);
}

.hero-copy h1 span {
    display: block;
    margin-top: 0.38rem;
    color: var(--hs-primary-strong);
}

.hero-lead {
    margin: 1rem 0 0;
    max-width: 47ch;
    color: var(--hs-muted);
    font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.78rem;
    margin-top: 1.6rem;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 0.85rem;
    padding: 0.8rem 1.2rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.action-button:hover {
    transform: translateY(-1px);
}

.action-button:focus-visible {
    outline: 2px solid #0a6e86;
    outline-offset: 2px;
}

.action-primary {
    border: 1px solid rgba(8, 120, 132, 0.45);
    color: #f8feff;
    background: linear-gradient(140deg, var(--hs-primary) 0%, var(--hs-accent) 100%);
    box-shadow: 0 12px 28px rgba(8, 124, 142, 0.32);
}

.action-primary:hover {
    box-shadow: 0 16px 30px rgba(8, 124, 142, 0.38);
}

.action-google {
    border: 1px solid rgba(13, 54, 80, 0.2);
    background: rgba(255, 255, 255, 0.95);
    color: #263a4d;
    box-shadow: 0 10px 24px rgba(5, 37, 58, 0.12);
}

.action-google:hover {
    background: #ffffff;
    box-shadow: 0 14px 26px rgba(5, 37, 58, 0.17);
}

.google-icon {
    width: 1.05rem;
    height: 1.05rem;
    color: #4b5563;
}

.hero-panel {
    border-radius: 1.3rem;
    border: 1px solid var(--hs-border);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.87) 0%, rgba(232, 245, 251, 0.9) 100%);
    box-shadow: var(--hs-card-shadow);
    padding: 1.22rem 1.18rem;
    position: relative;
}

.hero-panel::after {
    content: '';
    position: absolute;
    right: 0.85rem;
    top: 0.75rem;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(15, 158, 161, 0.26) 0%, rgba(15, 158, 161, 0) 70%);
}

.panel-title {
    margin: 0;
    font-family: 'Unbounded', 'Trebuchet MS', sans-serif;
    font-size: 0.79rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    color: #0d6277;
}

.panel-list {
    list-style: none;
    margin: 0.9rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.58rem;
}

.panel-list li {
    display: grid;
    gap: 0.16rem;
    border-radius: 0.84rem;
    border: 1px solid rgba(13, 84, 112, 0.17);
    background: rgba(255, 255, 255, 0.68);
    padding: 0.62rem 0.74rem;
    font-size: 0.92rem;
    color: #27465b;
}

.panel-list span {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0f7088;
}

.panel-note {
    margin: 0.86rem 0 0;
    color: var(--hs-muted);
    font-size: 0.9rem;
}

.category-stage {
    border-radius: 1.34rem;
    border: 1px solid var(--hs-border);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--hs-card-shadow);
    padding: 1.08rem;
}

.section-label {
    margin: 0;
    font-family: 'Unbounded', 'Trebuchet MS', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0a6175;
}

.category-grid {
    margin-top: 0.86rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.72rem;
}

.category-card {
    position: relative;
    border-radius: 1rem;
    border: 1px solid rgba(14, 65, 94, 0.14);
    background: var(--hs-white);
    padding: 0.9rem 0.82rem;
    min-height: 6.5rem;
    box-shadow: 0 8px 22px rgba(8, 34, 57, 0.09);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0.22rem;
    background: rgba(16, 124, 151, 0.2);
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(8, 34, 57, 0.13);
}

.category-card h3 {
    margin: 0;
    font-family: 'Unbounded', 'Trebuchet MS', sans-serif;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.category-card p {
    margin: 0.52rem 0 0;
    color: #365364;
    font-size: 0.88rem;
}

.tone-food {
    background: linear-gradient(160deg, #fff4ea 0%, #fffdf9 100%);
}

.tone-food::before {
    background: #f97316;
}

.tone-hydration {
    background: linear-gradient(160deg, #ebf8ff 0%, #f9fdff 100%);
}

.tone-hydration::before {
    background: #0ea5e9;
}

.tone-exercise {
    background: linear-gradient(160deg, #effdf2 0%, #fbfefc 100%);
}

.tone-exercise::before {
    background: #22c55e;
}

.tone-weight {
    background: linear-gradient(160deg, #f2efff 0%, #fdfcff 100%);
}

.tone-weight::before {
    background: #8b5cf6;
}

.tone-vitals {
    background: linear-gradient(160deg, #fff1f2 0%, #fffbfc 100%);
}

.tone-vitals::before {
    background: #ef4444;
}

.tone-labs {
    background: linear-gradient(160deg, #fff8e6 0%, #fffcf1 100%);
}

.tone-labs::before {
    background: #ca8a04;
}

.tone-mind {
    background: linear-gradient(160deg, #f7efff 0%, #fcf9ff 100%);
}

.tone-mind::before {
    background: #a855f7;
}

.tone-care {
    background: linear-gradient(160deg, #eaf6ff 0%, #f8fcff 100%);
}

.tone-care::before {
    background: #2563eb;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.72rem;
}

.benefit-card {
    border-radius: 1rem;
    border: 1px solid rgba(9, 59, 88, 0.18);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 9px 20px rgba(8, 35, 58, 0.1);
    padding: 0.92rem 0.86rem;
}

.benefit-card h3 {
    margin: 0;
    font-family: 'Unbounded', 'Trebuchet MS', sans-serif;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #0e5d72;
}

.benefit-card p {
    margin: 0.62rem 0 0;
    color: #365264;
    font-size: 0.9rem;
}

.closing-cta {
    border-radius: 1.35rem;
    border: 1px solid rgba(7, 88, 111, 0.24);
    box-shadow: var(--hs-shadow);
    background: linear-gradient(145deg, rgba(229, 248, 252, 0.96) 0%, rgba(242, 250, 255, 0.97) 55%, rgba(236, 247, 252, 0.92) 100%);
    text-align: center;
    padding: clamp(1.3rem, 3vw, 2rem) 1rem;
}

.closing-cta h2 {
    margin: 0;
    font-family: 'Unbounded', 'Trebuchet MS', sans-serif;
    font-size: clamp(1.2rem, 2.8vw, 2rem);
    line-height: 1.2;
}

.closing-cta p {
    margin: 0.55rem auto 1rem;
    color: #3e5a6c;
    max-width: 38ch;
}

.landing-footer {
    border-top: 1px solid rgba(8, 70, 104, 0.18);
    padding-top: 1rem;
}

.landing-footer p {
    margin: 0;
    color: #4e6472;
    text-align: center;
    font-size: 0.86rem;
}

.reveal-up {
    animation: reveal-up 0.7s cubic-bezier(0.22, 0.64, 0.29, 1) both;
}

.delay-1 {
    animation-delay: 0.11s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.28s;
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-left {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(10px, -16px, 0);
    }
}

@keyframes float-right {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-12px, 14px, 0);
    }
}

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

    .hero-panel {
        max-width: 44rem;
    }

    .category-grid,
    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .landing-shell {
        padding-top: 1.2rem;
    }

    .landing-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-link {
        width: 100%;
    }

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

    .action-button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .category-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-panel,
    .category-stage,
    .closing-cta {
        border-radius: 1.1rem;
    }

    .brand-subline {
        font-size: 0.81rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
