@font-face {
    font-family: InterLocal;
    src: url('../assets/inter-400.woff2')
}

@font-face {
    font-family: InterLocal;
    src: url('../assets/inter-700.woff2');
    font-weight: 700
}

@font-face {
    font-family: ManropeLocal;
    src: url('../assets/manrope-700.woff2');
    font-weight: 700
}

:root {
    --ink: #171716;
    --paper: #f8f8f6;
    --mist: #e9e9e5;
    --line: #dcdcd8;
    --ease: cubic-bezier(.22, 1, .36, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: InterLocal, Arial, sans-serif
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit
}

.shell {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin-inline: auto
}

.file-notice {
    position: fixed;
    z-index: 100;
    bottom: 16px;
    left: 16px;
    max-width: 340px;
    margin: 0;
    padding: 12px 15px;
    border-radius: 10px;
    background: #171716;
    color: #fff;
    font-size: 13px;
    line-height: 1.4
}

.display {
    font-weight: 400;
    letter-spacing: -.075em
}

.reveal {
    opacity: .001;
    transform: translateY(22px);
    transition: opacity .65s var(--ease), transform .65s var(--ease)
}

.reveal.in-view {
    opacity: 1;
    transform: none
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 690px;
    overflow: hidden;
    color: #fff
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2
}

.hero-bg {
    background: center/cover no-repeat;
    opacity: 1;
    transform: scale(1);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.hero-bg.out {
    opacity: .001;
    transform: scale(1.012)
}

.hero-overlay {
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .34), rgba(0, 0, 0, .1))
}

.header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 10;
    height: 76px;
    color: #fff;
    animation: header-in .5s .06s var(--ease) both
}

.header-row {
    display: flex;
    align-items: center;
    height: 100%
}

.brand-logo {
    display: block;
    width: 128px;
    filter: brightness(0) invert(1)
}

.brand-logo img {
    display: block;
    width: 100%;
    height: auto
}

.nav {
    display: none;
    margin-left: 40px;
    gap: 32px;
    align-items: center
}

.nav a {
    position: relative;
    padding: 8px 0;
    color: rgba(255, 255, 255, .9);
    font-size: 14px
}

.nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .34s var(--ease)
}

.nav a:hover::after,
.nav a:focus-visible::after {
    transform: scaleX(1)
}

.header-cta {
    display: none;
    margin-left: auto;
    border-radius: 999px;
    background: #fff;
    padding: 12px 20px;
    color: #000;
    font-size: 13px;
    font-weight: 500
}

.menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    margin-left: auto;
    place-items: center;
    border: 0;
    background: none;
    color: #fff
}

.menu-toggle span,
.menu-toggle span::before {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform .3s var(--ease)
}

.menu-toggle span::before {
    transform: translateY(6px)
}

.menu-toggle.open span {
    transform: translateY(3px) rotate(45deg)
}

.menu-toggle.open span::before {
    transform: rotate(-90deg)
}

.mobile-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #000;
    transition: max-height .34s var(--ease)
}

.mobile-nav.open {
    max-height: 460px
}

.mobile-nav-inner {
    display: grid;
    gap: 20px;
    padding-block: 32px
}

.mobile-nav a {
    font-size: 30px;
    letter-spacing: -.06em
}

.hero-copy {
    padding-top: 158px
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .85);
    font-size: 13px
}

.eyebrow::before {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .8);
    content: ""
}

.hero h1 {
    margin: 32px 0 0;
    font-size: 54px;
    line-height: 1.38;
    white-space: nowrap
}

.rolling {
    position: relative;
    display: inline-grid;
    height: 1.24em;
    overflow: hidden;
    vertical-align: 0em;
}

.rolling.fixed {
    width: 1.89em
}

.rolling span {
    grid-area: 1/1;
    white-space: nowrap
}

.rolling .enter {
    animation: roll-in .56s var(--ease) both
}

.rolling .leave {
    animation: roll-out .56s var(--ease) both
}

.hero-description {
    max-width: 345px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    line-height: 1.7
}

.hero-description .rolling {
    margin-left: 8px;
    color: #fff
}

.action {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border-radius: 999px;
    padding: 12px 20px;
    background: #fff;
    color: #000;

    font-size: 14px;
    font-weight: 500;
    transition: transform .2s var(--ease)
}

.action:active {
    transform: scale(.98)
}

.action-text {
    position: relative;
    top: 0;
    margin-top: 0.2em;
    line-height: 1
}

.action-arrow {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 13px;
    transition: transform .44s var(--ease)
}

.action:hover .action-arrow,
.action:focus-visible .action-arrow {
    transform: rotate(45deg)
}

.hero-action {
    margin-top: 32px
}

.hero-review {
    position: absolute;
    right: 0;
    bottom: 32px;
    left: 0
}

.review-card {
    border-left: 1px solid rgba(255, 255, 255, .6);
    padding-left: 16px
}

.stars {
    margin: 0;
    letter-spacing: .12em;
    font-size: 22px
}

.review-copy {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: 12px
}

.section {
    padding: 96px 0
}

.intro-grid {
    display: grid;
    gap: 40px;
    align-items: center
}

.intro-copy h2 {
    max-width: 690px;
    margin: 0;
    font-size: 32px;
    line-height: 1.24;
    letter-spacing: -.06em
}

.muted {
    color: rgba(0, 0, 0, .45)
}

.intro-image {
    width: 100%;
    aspect-ratio: 1.67;
    object-fit: cover;
    border-radius: 18px
}

.metrics {
    display: grid;
    gap: 28px;
    margin-top: 80px
}

.metric {
    border-top: 1px solid var(--line);
    padding-top: 28px;
}

.metric strong {
    display: block;
    font-size: 51px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.075em;
    text-align: center;
}

.metric p {
    margin: 12px 0 0;
    font-size: 14px;
    text-align: center;
}

.mist {
    background: var(--mist)
}

.section-label {
    margin: 0;
    color: rgba(0, 0, 0, .55);
    font-size: 13px
}

.section-title {
    margin: 20px 0 0;
    font-size: 47px
}

.plans {
    display: grid;
    gap: 20px;
    margin-top: 40px
}

.plan {
    display: flex;
    min-height: 545px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .15);
    background: #fff
}

.plan.dark {
    border-color: #000;
    background: #000;
    color: #fff
}

.plan img {
    width: 100%;
    height: 218px;
    object-fit: cover;
    transition: transform .7s var(--ease)
}

.plan:hover img {
    transform: scale(1.03)
}

.plan-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px
}

.plan h3 {
    margin: 0;
    font-size: 29px;
    font-weight: 400;
    letter-spacing: -.06em
}

.features {
    display: grid;
    gap: 12px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    line-height: 1.5;
    opacity: .75
}

.features li::before {
    margin-right: 8px;
    content: '✓'
}

.plan .action {
    margin-top: auto;
    align-self: flex-start;
    padding: 10px 16px;
    font-size: 13px
}

.reviews {
    text-align: center
}

.testimonial {
    max-width: 760px;
    margin: auto
}

.quote {
    margin: 0;
    font-size: 25px;
    line-height: 1.34;
    letter-spacing: -.055em
}

.testimonial-meta {
    margin: 24px 0 0;
    color: rgba(0, 0, 0, .55);
    font-size: 14px
}

.avatars {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px
}

.avatar {
    width: 48px;
    height: 48px;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    background: none;
    filter: grayscale(1);
    cursor: pointer;
    transition: .3s
}

.avatar.active {
    border-color: #000;
    filter: none
}

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

.stories {
    display: grid;
    gap: 80px;
    padding: 32px 0
}

.story {
    display: grid;
    gap: 32px;
    align-items: center
}

.story-index {
    color: rgba(0, 0, 0, .45);
    font-size: 12px
}

.story p {
    max-width: 500px;
    margin: 20px 0 0;
    font-size: 28px;
    line-height: 1.27;
    letter-spacing: -.055em
}

.story img {
    width: 100%;
    height: 340px;
    object-fit: cover
}

.story:nth-child(2) img {
    filter: grayscale(1)
}

.faq-list {
    margin-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, .2)
}

.faq {
    border-bottom: 1px solid rgba(0, 0, 0, .2)
}

.faq button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 20px 0;
    border: 0;
    background: none;
    color: inherit;
    text-align: left;
    font-size: 16px;
    cursor: pointer
}

.faq-icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 50%;
    font-size: 24px;
    transition: transform .28s var(--ease)
}

.faq.open .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s var(--ease)
}

.faq.open .faq-answer {
    grid-template-rows: 1fr
}

.faq-answer>div {
    overflow: hidden
}

.faq-answer p {
    max-width: 760px;
    margin: 0;
    padding-bottom: 28px;
    color: rgba(0, 0, 0, .6);
    font-size: 14px;
    line-height: 1.7
}

.contact {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #171716;
    color: #fff
}

.contact::before,
.contact::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: ""
}

.contact::before {
    background: url('../assets/athlete-09.png') center/cover;
    opacity: .35
}

.contact::after {
    background: rgba(0, 0, 0, .45)
}

.contact h2 {
    max-width: 750px;
    margin: 20px 0 0;
    font-size: 49px;
    line-height: 1.05
}

.contact-copy {
    max-width: 460px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
    line-height: 1.7
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px
}

.outline-action {
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 999px;
    padding: 12px 20px;
    font-size: 14px;
    transition: .25s
}

.outline-action:hover {
    background: #fff;
    color: #000
}

.footer {
    padding: 48px 0;
    background: #171716;
    color: #fff
}

.footer-grid {
    display: grid;
    gap: 40px
}

.footer-brand {
    margin: 0;
    font-size: 26px;
    letter-spacing: -.07em
}

.footer-copy {
    max-width: 360px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    line-height: 1.7
}

.footer-label {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .45);
    font-size: 12px
}

.footer-links a {
    display: block;
    margin-bottom: 8px;
    font-size: 14px
}

.copyright {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .4);
    font-size: 11px
}

@keyframes header-in {
    from {
        opacity: .001;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes roll-in {
    from {
        opacity: .001;
        transform: translateY(110%)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes roll-out {
    from {
        opacity: 1;
        transform: none
    }

    to {
        opacity: .001;
        transform: translateY(-110%)
    }
}

@media(min-width:810px) {
    .shell {
        width: calc(100% - 80px)
    }

    .hero {
        min-height: 760px
    }

    .header {
        height: 88px
    }

    .header-row {
        height: 88px
    }

    .brand-logo {
        width: 150px
    }

    .nav,
    .header-cta {
        display: flex
    }

    .menu-toggle {
        display: none
    }

    .hero-copy {
        padding-top: 185px
    }

    .hero h1 {
        font-size: 78px
    }

    .hero-description {
        max-width: 500px;
        font-size: 16px
    }

    .hero-review {
        bottom: 56px
    }

    .review-card {
        padding-left: 24px
    }

    .section {
        padding: 144px 0
    }

    .intro-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
        gap: 48px
    }

    .intro-copy h2 {
        font-size: 39px
    }

    .metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-top: 96px
    }

    .metric {
        padding-top: 32px
    }

    .metric strong {
        font-size: 59px
    }

    .plans {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-top: 56px
    }

    .plan {
        min-height: 610px
    }

    .plan img {
        height: 300px
    }

    .quote {
        font-size: 34px
    }

    .stories {
        gap: 128px;
        padding: 80px 0
    }

    .story {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 112px
    }

    .story:nth-child(even)>:first-child {
        order: 2
    }

    .story p {
        font-size: 37px
    }

    .story img {
        height: 475px
    }

    .faq-list {
        margin-top: 64px
    }

    .faq button {
        padding: 24px 0;
        font-size: 19px
    }

    .contact h2 {
        font-size: 72px
    }

    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr
    }
}

@media(min-width:1200px) {
    .shell {
        width: calc(100% - 144px)
    }

    .hero {
        min-height: 790px
    }

    .hero h1 {
        font-size: 90px
    }

    .intro-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(390px, .9fr);
        gap: 96px
    }

    .intro-copy h2 {
        font-size: 43px
    }

    .metrics {
        grid-template-columns: repeat(4, 1fr);
        gap: 76px;
        margin-top: 112px
    }

    .metric strong {
        font-size: 64px
    }

    .plans {
        gap: 40px
    }

    .plan {
        min-height: 650px
    }

    .plan img {
        height: 328px
    }
}