:root {
    --ink: #07113c;
    --ink-muted: #4c5575;
    --cyan: #10bfd4;
    --cyan-dark: #0797ad;
    --line: #e4e9f2;
    --panel: #ffffff;
    --soft: #f7fbfd;
    --shadow: 0 12px 24px rgba(7, 17, 60, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    line-height: 1.45;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 253, 0.86)),
        repeating-linear-gradient(90deg, rgba(7, 17, 60, 0.02) 0 1px, transparent 1px 96px);
}

a {
    color: inherit;
}

svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.site-header,
main,
.site-footer {
    width: min(1240px, calc(100% - 64px));
    margin-inline: auto;
}

.site-header {
    height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    border-bottom: 1px solid rgba(7, 17, 60, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
}

.brand-text {
    font-size: 32px;
    line-height: 1;
}

.brand-accent {
    color: var(--cyan);
}

.brand-mark {
    width: 32px;
    height: 32px;
    margin-inline: 1px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.9), transparent 22%),
        repeating-linear-gradient(25deg, rgba(255, 255, 255, 0.72) 0 1px, transparent 1px 5px),
        linear-gradient(135deg, #d7fbff, var(--cyan));
    box-shadow: inset -5px -5px 12px rgba(7, 17, 60, 0.1);
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 34px;
}

.site-nav a,
.site-footer nav a {
    color: var(--ink-muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.site-nav a:hover,
.site-footer nav a:hover {
    color: var(--cyan-dark);
}

.header-actions,
.hero-actions,
.final-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.button {
    display: inline-flex;
    min-height: 40px;
    min-width: 118px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px 20px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.1;
    white-space: nowrap;
    transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

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

.button-primary {
    color: #ffffff;
    background: var(--cyan);
    border-color: var(--cyan);
}

.button-primary:hover {
    background: var(--cyan-dark);
    border-color: var(--cyan-dark);
}

.button-secondary {
    color: var(--ink);
    background: #ffffff;
    border-color: #9aa4bf;
}

.button-secondary:hover {
    border-color: var(--cyan);
}

.button-secondary.dark {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
}

main {
    padding-block: 14px 12px;
}

.hero {
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(460px, 610px);
    gap: 48px;
    align-items: center;
    padding: 24px 32px 20px;
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-size: 56px;
    line-height: 1.03;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 520px;
    margin: 0 0 16px;
    color: var(--ink-muted);
    font-size: 17px;
}

.hero-actions {
    margin-block: 20px 26px;
}

.member-note {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.line-icon {
    width: 24px;
    height: 24px;
    color: var(--cyan);
    flex: 0 0 auto;
}

.hero-visual {
    position: relative;
    min-height: 470px;
}

.golf-ball {
    position: absolute;
    left: 0;
    top: 90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 20px 20px, var(--cyan) 0 5px, transparent 6px) 0 0 / 28px 28px,
        radial-gradient(circle, rgba(16, 191, 212, 0.22), rgba(16, 191, 212, 0.08) 55%, transparent 65%);
    mask-image: radial-gradient(circle, #000 63%, transparent 64%);
    opacity: 0.82;
}

.phone {
    position: absolute;
    left: 150px;
    top: 12px;
    z-index: 2;
    width: 235px;
    height: 420px;
    padding: 13px 11px;
    border-radius: 34px;
    background: #070b13;
    box-shadow: 0 24px 40px rgba(7, 17, 60, 0.25);
}

.phone-speaker {
    position: absolute;
    top: 13px;
    left: 50%;
    width: 76px;
    height: 20px;
    transform: translateX(-50%);
    border-radius: 0 0 14px 14px;
    background: #070b13;
    z-index: 4;
}

.phone-screen {
    height: 100%;
    overflow: hidden;
    border-radius: 26px;
    padding: 20px 14px 14px;
    background: linear-gradient(180deg, #f9fcff, #eef6fb);
}

.phone-status,
.profile-row small,
.booking-card small,
.activity-row small {
    color: #68738f;
    font-size: 9px;
    font-weight: 700;
}

.phone-status {
    margin-bottom: 14px;
}

.profile-row,
.activity-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-row strong,
.profile-row small,
.activity-row strong,
.activity-row small {
    display: block;
}

.avatar,
.notification,
.activity-icon {
    border-radius: 50%;
    background: linear-gradient(135deg, #d7fbff, var(--cyan));
    flex: 0 0 auto;
}

.avatar {
    width: 32px;
    height: 32px;
}

.notification {
    width: 24px;
    height: 24px;
    margin-left: auto;
    background: #eef2f7;
}

.member-card {
    margin-top: 16px;
    padding: 14px;
    min-height: 72px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #152348, #06122e);
    box-shadow: 0 12px 20px rgba(7, 17, 60, 0.16);
}

.member-card span,
.member-card strong,
.member-card small {
    display: block;
}

.member-card span {
    font-size: 10px;
    font-weight: 800;
}

.member-card strong {
    margin-top: 10px;
    font-size: 12px;
    text-align: right;
}

.member-card small {
    font-size: 8px;
    text-align: right;
    opacity: 0.82;
}

.booking-card {
    position: relative;
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(7, 17, 60, 0.08);
}

.booking-card strong,
.booking-card span {
    display: block;
    font-size: 10px;
}

.booking-card em {
    position: absolute;
    right: 10px;
    top: 36px;
    padding: 4px 6px;
    border-radius: 5px;
    color: #118356;
    background: #dff9ed;
    font-style: normal;
    font-size: 8px;
    font-weight: 800;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 12px;
}

.quick-actions span {
    min-height: 42px;
    display: flex;
    align-items: end;
    justify-content: center;
    border-radius: 8px;
    padding: 6px 3px;
    color: var(--ink-muted);
    background: #ffffff;
    font-size: 8px;
    font-weight: 700;
}

.activity-row {
    margin-top: 12px;
    padding: 10px;
    border-radius: 12px;
    background: #ffffff;
}

.activity-icon {
    width: 28px;
    height: 28px;
}

.activity-row em {
    margin-left: auto;
    color: #0f9f70;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.sport-card {
    position: absolute;
    right: 0;
    width: 255px;
    height: 125px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transform: rotate(4deg);
}

.sport-card span {
    position: absolute;
    left: 16px;
    bottom: 14px;
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.sport-card::before,
.sport-card::after {
    content: "";
    position: absolute;
}

.sport-golf {
    top: 0;
    background: linear-gradient(135deg, #f7c77a, #497d38 70%);
}

.sport-golf::before {
    width: 88px;
    height: 8px;
    right: 26px;
    bottom: 38px;
    border-radius: 999px;
    background: #4b3725;
    transform: rotate(-35deg);
}

.sport-golf::after {
    width: 24px;
    height: 24px;
    right: 60px;
    bottom: 28px;
    border-radius: 50%;
    background: #f3f8ff;
}

.sport-padel {
    top: 137px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.2), transparent 45%),
        linear-gradient(135deg, #0e5c9d, #0ab1d0);
}

.sport-padel::before {
    width: 118px;
    height: 54px;
    right: 22px;
    bottom: 30px;
    border: 7px solid #0a102d;
    border-radius: 45%;
    transform: rotate(18deg);
}

.sport-padel::after {
    width: 24px;
    height: 24px;
    right: 108px;
    bottom: 42px;
    border-radius: 50%;
    background: #d7ee33;
}

.sport-squash {
    top: 274px;
    background: linear-gradient(135deg, #f7f1df, #e28a63);
}

.sport-squash::before {
    width: 80px;
    height: 12px;
    right: 48px;
    bottom: 48px;
    border-radius: 999px;
    background: #19214a;
    transform: rotate(-18deg);
}

.sport-squash::after {
    width: 42px;
    height: 86px;
    left: 54px;
    bottom: 4px;
    border-radius: 22px 22px 8px 8px;
    background: #151a25;
}

.quick-start,
.sport-strip,
.benefits,
.how-it-works,
.more-than-bookings,
.club-cta {
    margin-top: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 16px rgba(7, 17, 60, 0.04);
}

.quick-start {
    padding: 6px 22px 12px;
}

.quick-start h2,
.benefits h2 {
    margin: 0 0 8px;
    text-align: center;
    font-size: 24px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.path-card {
    min-height: 160px;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 20px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(7, 17, 60, 0.05);
}

.path-card h3,
.path-card p {
    margin: 0;
}

.path-card h3 {
    font-size: 18px;
}

.path-card p {
    min-height: 58px;
    color: var(--ink-muted);
    font-size: 14px;
}

.path-card .button {
    min-width: 148px;
    margin-top: 14px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 15px;
    color: #ffffff;
    background: var(--cyan);
}

.sport-strip {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
    align-items: center;
    padding: 18px 34px;
}

.strip-intro {
    padding-right: 28px;
    border-right: 1px solid var(--line);
}

.strip-intro h2,
.strip-intro p,
.benefit-grid h3,
.benefit-grid p,
.how-it-works h2,
.how-it-works ol,
.more-than-bookings h2,
.more-than-bookings p,
.club-cta h2,
.club-cta p,
.final-cta h2,
.final-cta p,
.site-footer p {
    margin: 0;
}

.strip-intro h2 {
    font-size: 24px;
}

.strip-intro p,
.benefit-grid p,
.more-than-bookings p,
.club-cta p,
.site-footer p {
    color: var(--ink-muted);
}

.sport-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(90px, 1fr));
    gap: 22px;
}

.sport-list article {
    min-height: 96px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--cyan);
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(7, 17, 60, 0.04);
}

.sport-list svg {
    width: 40px;
    height: 40px;
}

.sport-list span {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.benefits {
    padding: 14px 12px 18px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.benefit-grid article {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 16px;
    align-items: center;
    padding: 12px;
}

.benefit-grid h3 {
    font-size: 15px;
    line-height: 1.25;
}

.benefit-grid p {
    margin-top: 5px;
    font-size: 13px;
}

.soft-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    padding: 18px;
    color: var(--cyan);
    background: #f1f5f9;
}

.how-it-works {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    padding: 18px 34px;
}

.how-it-works h2 {
    font-size: 24px;
}

.how-it-works ol {
    counter-reset: steps;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    padding: 0;
}

.how-it-works li {
    counter-increment: steps;
    position: relative;
    min-height: 72px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    padding-inline: 18px;
    border-left: 1px solid var(--line);
}

.how-it-works li::before {
    content: counter(steps);
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--cyan);
    font-size: 20px;
    font-weight: 900;
}

.how-it-works strong,
.how-it-works span {
    display: block;
}

.how-it-works strong {
    font-size: 14px;
}

.how-it-works span {
    color: var(--ink-muted);
    font-size: 13px;
}

.more-than-bookings {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 22px;
    align-items: center;
    padding: 14px 32px;
}

.more-than-bookings h2 {
    font-size: 22px;
}

.more-than-bookings p {
    font-size: 13px;
}

.pill-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.pill-row span {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px 12px;
    color: var(--ink);
    background: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.club-cta {
    display: grid;
    grid-template-columns: 360px 1fr auto;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    padding-right: 54px;
}

.club-image {
    min-height: 96px;
    background:
        radial-gradient(circle at 20% 55%, rgba(255, 255, 255, 0.92) 0 18px, transparent 19px),
        linear-gradient(170deg, transparent 0 52%, rgba(50, 89, 45, 0.95) 53% 100%),
        linear-gradient(135deg, #f3a75f, #233f32 48%, #102745);
}

.club-cta h2 {
    font-size: 23px;
}

.club-cta .button {
    min-width: 250px;
}

.final-cta {
    position: relative;
    min-height: 78px;
    display: grid;
    grid-template-columns: 190px 1fr auto;
    gap: 26px;
    align-items: center;
    margin: 8px 4px 0;
    padding: 12px 54px 12px 160px;
    overflow: hidden;
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(90deg, #06113f, #07113c);
}

.final-cta h2 {
    font-size: 27px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.82);
}

.cta-ball {
    position: absolute;
    left: 24px;
    top: -24px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 18px 18px, var(--cyan) 0 4px, transparent 5px) 0 0 / 18px 18px,
        radial-gradient(circle, rgba(16, 191, 212, 0.22), rgba(16, 191, 212, 0.04) 70%);
    mask-image: radial-gradient(circle, #000 64%, transparent 65%);
}

.site-footer {
    min-height: 34px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 28px;
    align-items: center;
    padding-bottom: 8px;
}

.footer-brand .brand-text {
    font-size: 24px;
}

.footer-brand .brand-mark {
    width: 24px;
    height: 24px;
}

.site-footer p {
    max-width: 240px;
    font-size: 10px;
    line-height: 1.25;
}

.site-footer nav,
.social-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.social-links {
    gap: 12px;
}

.social-links a {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .site-header,
    main,
    .site-footer {
        width: min(100% - 32px, 920px);
    }

    .site-header {
        height: auto;
        grid-template-columns: 1fr auto;
        padding-block: 18px;
    }

    .site-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-inline: 10px;
    }

    .hero-visual {
        min-height: 430px;
        max-width: 640px;
        width: 100%;
        margin-inline: auto;
    }

    .quick-grid,
    .benefit-grid,
    .how-it-works ol {
        grid-template-columns: 1fr;
    }

    .sport-strip,
    .how-it-works,
    .more-than-bookings,
    .club-cta,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .strip-intro {
        padding-right: 0;
        border-right: 0;
    }

    .sport-list,
    .pill-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .how-it-works li {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-block: 14px;
    }

    .club-cta {
        padding: 0 24px 24px;
    }

    .club-image {
        margin-inline: -24px;
    }

    .final-cta {
        grid-template-columns: 1fr;
        padding: 100px 28px 28px;
    }

    .site-footer nav {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 680px) {
    .site-header,
    main,
    .site-footer {
        width: min(100% - 24px, 520px);
    }

    .site-header {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .brand-text {
        font-size: 27px;
    }

    .brand-mark {
        width: 27px;
        height: 27px;
    }

    .header-actions,
    .hero-actions,
    .final-actions {
        width: 100%;
        align-items: stretch;
    }

    .button {
        width: 100%;
        min-width: 0;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .hero-visual {
        min-height: 630px;
    }

    .golf-ball {
        left: 12px;
        top: 10px;
        width: 160px;
        height: 160px;
    }

    .phone {
        left: 50%;
        top: 18px;
        transform: translateX(-50%);
    }

    .sport-card {
        left: 50%;
        right: auto;
        width: min(100%, 300px);
        transform: translateX(-50%) rotate(0);
    }

    .sport-golf {
        top: 448px;
    }

    .sport-padel,
    .sport-squash {
        display: none;
    }

    .quick-start,
    .sport-strip,
    .benefits,
    .how-it-works,
    .more-than-bookings {
        padding: 18px;
    }

    .path-card,
    .benefit-grid article {
        grid-template-columns: 1fr;
    }

    .path-card p {
        min-height: auto;
    }

    .sport-list,
    .pill-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .club-cta .button {
        min-width: 0;
    }
}
