:root {
    --navy: #06152f;
    --navy-soft: #102b50;
    --cyan: #00d6d3;
    --cyan-deep: #00a7b4;
    --orange: #ff7b32;
    --surface: #f4f7fb;
    --white: #ffffff;
    --text: #17263e;
    --muted: #63728a;
    --line: #e2e9f2;
    --radius: 22px;
    --shadow: 0 18px 48px rgba(6, 21, 47, .10);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
}

button,
input,
select {
    font: inherit;
}

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

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

p {
    color: var(--muted);
    line-height: 1.65;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.site-header {
    position: fixed;
    z-index: 50;
    inset: 0 0 auto;
    height: 86px;
    color: var(--white);
    transition: background-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    background: rgba(6, 21, 47, .95);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
    backdrop-filter: blur(10px);
}

.header-row {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0;
}

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

.brand img {
    object-fit: contain;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 31px;
    font-size: 16px;
    font-weight: 500;
}

.navigation > a:not(.button) {
    color: rgba(255, 255, 255, .78);
    transition: color .18s ease;
}

.navigation > a:hover,
.navigation > a.active {
    color: var(--white);
}

.button {
    min-height: 51px;
    padding: 0 26px;
    border: 0;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .17s ease, background-color .17s ease, border-color .17s ease;
}

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

.button-primary {
    color: var(--navy);
    background: var(--cyan);
}

.button-primary:hover {
    background: #23e7df;
}

.button-outline {
    min-height: 47px;
    border: 1px solid rgba(255, 255, 255, .28);
    color: var(--white);
}

.button-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .32);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: transparent;
    padding: 11px;
}

.menu-button span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 5px;
    background: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 16px;
    margin-bottom: 22px;
    border-radius: 100px;
    color: var(--cyan);
    background: rgba(0, 214, 211, .12);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.eyebrow.dark {
    color: var(--cyan-deep);
    background: rgba(0, 190, 192, .1);
}

.hero {
    min-height: 750px;
    padding: 142px 0 120px;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 13%, rgba(0, 214, 211, .2), transparent 29%),
        radial-gradient(circle at 4% 65%, rgba(255, 123, 50, .15), transparent 28%),
        linear-gradient(126deg, #06152f, #092447 53%, #071a34);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(450px, 1fr) 510px;
    gap: 56px;
    align-items: center;
}

.hero-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(52px, 5.4vw, 72px);
    line-height: 1.04;
    letter-spacing: 0;
}

.hero-copy h1 span {
    color: var(--cyan);
}

.hero-copy > p {
    max-width: 580px;
    margin-bottom: 36px;
    color: #bdc9d8;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 38px;
}

.store-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-links img {
    width: auto;
    height: 47px;
}

.hero-media {
    position: relative;
    padding: 20px 0 40px 54px;
}

.hero-photo {
    overflow: hidden;
    height: 548px;
    border-radius: 32px;
    box-shadow: 0 28px 72px rgba(0, 0, 0, .31);
}

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

.app-badge,
.match-card {
    position: absolute;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .96);
    color: var(--text);
    box-shadow: var(--shadow);
}

.app-badge {
    top: 74px;
    left: 0;
    gap: 12px;
    padding: 11px 18px 11px 11px;
    border-radius: 18px;
}

.app-badge img {
    width: 53px;
    height: 53px;
    border-radius: 13px;
}

.app-badge strong,
.app-badge span {
    display: block;
}

.app-badge span {
    font-size: 14px;
    color: var(--muted);
}

.match-card {
    right: -14px;
    bottom: 78px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 9px;
    row-gap: 4px;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 13px;
    color: var(--muted);
}

.match-card strong {
    grid-column: 2;
    font-size: 16px;
    color: var(--text);
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cyan);
}

.finder {
    position: relative;
    z-index: 2;
    margin-top: -58px;
}

.finder-panel {
    position: relative;
    padding: 30px 34px;
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 10px 35px;
    align-items: center;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.finder-panel .eyebrow {
    margin-bottom: 8px;
    min-height: 27px;
    padding: 0;
    background: transparent;
}

.finder-panel h2 {
    margin-bottom: 0;
    font-size: 27px;
    letter-spacing: 0;
}

.search-form {
    display: flex;
    align-items: end;
    gap: 12px;
}

.search-form label {
    flex: 1;
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.search-form label span {
    display: block;
    margin-bottom: 7px;
}

.search-form select {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--text);
    background: #fafcff;
}

.search-form .button {
    flex-shrink: 0;
    min-height: 54px;
}

.finder-note {
    grid-column: 2;
    margin: 3px 0 0;
    font-size: 13px;
}

.section {
    padding: 90px 0;
}

.section-heading {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading .eyebrow {
    margin-bottom: 16px;
}

.section-heading h2,
.audience h2 {
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.13;
    letter-spacing: 0;
}

.features {
    padding-top: 95px;
}

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

.feature-card {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
}

.feature-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.feature-card div {
    padding: 26px 27px 30px;
}

.feature-card span {
    color: var(--cyan-deep);
    font-weight: 700;
}

.feature-card h3 {
    margin: 9px 0 9px;
    font-size: 25px;
    letter-spacing: 0;
}

.feature-card p {
    margin: 0;
}

.camera-showcase {
    background: var(--surface);
}

.camera-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
    gap: 78px;
    align-items: center;
}

.camera-grid h2,
.cam-pricing-grid h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: 0;
}

.camera-grid > div:last-child > p {
    margin-bottom: 29px;
    font-size: 18px;
}

.camera-demo {
    position: relative;
    min-width: 0;
    min-height: 435px;
}

.camera-screen {
    overflow: hidden;
    position: relative;
    min-height: 383px;
    padding: 22px;
    border-radius: 25px;
    color: var(--white);
    background:
        linear-gradient(155deg, rgba(9, 26, 48, .25), rgba(3, 12, 27, .72)),
        linear-gradient(135deg, #275f59, #143145 40%, #0a1c36);
    box-shadow: 0 24px 50px rgba(6, 21, 47, .16);
}

.camera-screen-top {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
}

.camera-screen-top small {
    margin-left: auto;
    padding: 6px 10px;
    border-radius: 100px;
    color: #dce7f1;
    background: rgba(255, 255, 255, .14);
    font-size: 11px;
}

.record-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4949;
    box-shadow: 0 0 0 5px rgba(255, 73, 73, .17);
}

.court-lines {
    position: absolute;
    inset: 78px 45px 71px;
    border: 3px solid rgba(0, 214, 211, .58);
    transform: perspective(470px) rotateX(37deg);
    transform-origin: bottom;
}

.court-lines::before,
.court-lines::after {
    content: "";
    position: absolute;
    background: rgba(0, 214, 211, .58);
}

.court-lines::before {
    top: 51%;
    left: 0;
    right: 0;
    height: 3px;
}

.court-lines::after {
    top: 0;
    bottom: 0;
    left: calc(50% - 1px);
    width: 3px;
}

.ball {
    position: absolute;
    right: 25%;
    top: 37%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d7fb45;
    box-shadow: 0 0 18px #d7fb45;
}

.camera-controls {
    position: absolute;
    right: 20px;
    bottom: 19px;
    left: 20px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    background: rgba(4, 15, 30, .56);
}

.camera-controls span {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}

.camera-controls b {
    margin-left: auto;
    padding: 4px 8px;
    border-radius: 6px;
    background: #ff4949;
    font-size: 12px;
}

.clip-card {
    position: absolute;
    right: -27px;
    bottom: 21px;
    width: 217px;
    padding: 15px 17px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
}

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

.clip-card span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.camera-points {
    display: grid;
    gap: 14px;
    margin-bottom: 31px;
}

.camera-points div {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.camera-points strong {
    font-size: 17px;
}

.camera-points span {
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    gap: 11px;
    color: var(--cyan-deep);
    font-weight: 700;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.steps {
    color: var(--white);
    background: var(--navy);
}

.split-heading {
    display: grid;
    grid-template-columns: .65fr 1fr;
    gap: 62px;
    align-items: start;
}

.split-heading h2 {
    font-size: 46px;
    letter-spacing: 0;
}

.steps-grid {
    display: grid;
    gap: 21px;
}

.steps-grid article {
    display: grid;
    grid-template-columns: 51px 1fr;
    gap: 0 19px;
}

.steps-grid b {
    grid-row: span 2;
    width: 51px;
    height: 51px;
    padding-top: 12px;
    border-radius: 50%;
    text-align: center;
    color: var(--navy);
    background: var(--cyan);
    font-size: 20px;
}

.steps-grid h3 {
    margin: 2px 0 3px;
    font-size: 22px;
}

.steps-grid p {
    margin-bottom: 0;
    color: #b7c6db;
}

.audience {
    background: var(--surface);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 70px;
    align-items: center;
}

.audience-grid p {
    max-width: 590px;
    margin: 20px 0 32px;
    font-size: 18px;
}

.check-list {
    margin: 0;
    padding: 31px 34px;
    list-style: none;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.check-list li {
    position: relative;
    padding: 16px 0 16px 39px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    font-weight: 500;
}

.check-list li:last-child {
    border-bottom: 0;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--cyan);
}

.check-list li::after {
    content: "";
    position: absolute;
    top: 26px;
    left: 10px;
    width: 7px;
    height: 4px;
    border-left: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: rotate(-45deg);
}

.download {
    padding: 57px 0;
    color: var(--white);
    background: linear-gradient(105deg, var(--cyan-deep), #006e88);
}

.download-content {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 27px;
    align-items: center;
}

.download-content > img {
    width: 90px;
    height: 90px;
    border-radius: 21px;
}

.download h2 {
    margin-bottom: 7px;
    font-size: 34px;
    letter-spacing: 0;
}

.download p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.business-hero {
    padding: 164px 0 94px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 24%, rgba(0, 214, 211, .2), transparent 31%),
        var(--navy);
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr 470px;
    gap: 75px;
    align-items: center;
}

.business-grid h1 {
    margin-bottom: 21px;
    font-size: clamp(48px, 5vw, 62px);
    line-height: 1.07;
    letter-spacing: 0;
}

.business-grid p {
    margin-bottom: 36px;
    font-size: 19px;
    color: #bfcbdb;
}

.business-stat-card {
    padding: 34px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
}

.business-stat-card h2 {
    margin-bottom: 19px;
    font-size: 27px;
}

.business-stat-card div {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.business-stat-card strong,
.business-stat-card span {
    display: block;
}

.business-stat-card strong {
    margin-bottom: 4px;
    color: var(--cyan);
    font-size: 20px;
}

.business-stat-card span {
    color: #c5d0df;
}

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

.benefit-grid article {
    padding: 29px 25px;
    border-radius: 18px;
    background: var(--surface);
}

.benefit-grid h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.benefit-grid p {
    margin-bottom: 0;
}

.recorder-business {
    padding-top: 25px;
    background: var(--surface);
}

.recorder-business .section-heading p {
    margin: 17px 0 0;
    font-size: 18px;
}

.recorder-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
    margin-bottom: 42px;
}

.recorder-flow article {
    padding: 31px 27px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.recorder-flow b {
    display: inline-block;
    margin-bottom: 23px;
    color: var(--cyan-deep);
    font-size: 14px;
    letter-spacing: .12em;
}

.recorder-flow h3 {
    font-size: 24px;
    letter-spacing: 0;
}

.recorder-flow p {
    margin: 0;
}

.pricing-banner {
    display: grid;
    grid-template-columns: 1fr 325px;
    align-items: center;
    gap: 46px;
    padding: 40px 45px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--navy);
}

.pricing-banner .eyebrow {
    margin-bottom: 15px;
}

.pricing-banner h2 {
    margin-bottom: 14px;
    font-size: 39px;
    letter-spacing: 0;
}

.pricing-banner p {
    margin: 0;
    color: #c0cedd;
    font-size: 17px;
}

.price-box {
    padding: 28px;
    border-radius: 17px;
    background: rgba(255, 255, 255, .08);
}

.price-box strong {
    display: block;
    color: var(--cyan);
    font-size: 44px;
    line-height: 1;
}

.price-box span,
.price-box small {
    display: block;
}

.price-box span {
    margin: 8px 0 17px;
    font-size: 17px;
}

.price-box small {
    margin-bottom: 21px;
    color: #c3d0df;
}

.price-box .button {
    width: 100%;
}

.business-cta {
    padding: 72px 0;
    text-align: center;
    color: var(--white);
    background: var(--navy);
}

.business-cta h2 {
    margin-bottom: 11px;
    font-size: 40px;
    letter-spacing: 0;
}

.business-cta p {
    margin-bottom: 30px;
    color: #bdc9d8;
    font-size: 18px;
}

.cam-hero {
    overflow: hidden;
    padding: 151px 0 84px;
    color: var(--white);
    background:
        radial-gradient(circle at 84% 22%, rgba(0, 214, 211, .21), transparent 29%),
        var(--navy);
}

.cam-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 505px);
    align-items: center;
    gap: 67px;
}

.cam-hero-grid h1 {
    margin-bottom: 23px;
    font-size: clamp(47px, 5vw, 61px);
    line-height: 1.08;
    letter-spacing: 0;
}

.cam-hero-grid p {
    margin-bottom: 37px;
    color: #bcc9da;
    font-size: 19px;
}

.cam-hero-demo .camera-screen {
    min-height: 413px;
    border: 1px solid rgba(255, 255, 255, .12);
    background:
        linear-gradient(155deg, rgba(9, 26, 48, .17), rgba(3, 12, 27, .73)),
        linear-gradient(130deg, #1a625c, #0a2944 54%, #08172d);
}

.installation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.installation-grid article {
    padding: 35px 37px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.installation-grid span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--cyan-deep);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.installation-grid h3 {
    margin-bottom: 13px;
    font-size: 29px;
    letter-spacing: 0;
}

.installation-grid p {
    margin: 0;
    font-size: 17px;
}

.cam-process {
    color: var(--white);
    background: var(--navy);
}

.cam-process .section-heading h2 {
    color: var(--white);
}

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

.process-grid article {
    padding: 27px 23px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .04);
}

.process-grid b {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--cyan);
}

.process-grid h3 {
    margin-bottom: 12px;
    font-size: 23px;
}

.process-grid p {
    margin: 0;
    color: #b7c6db;
}

.cam-pricing {
    background: var(--surface);
}

.cam-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 72px;
    align-items: center;
}

.cam-pricing-grid > div:first-child p {
    margin-top: 19px;
    font-size: 18px;
}

.plan-card {
    padding: 35px 33px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.plan-card > span {
    display: block;
    margin-bottom: 13px;
    color: var(--cyan-deep);
    font-weight: 700;
}

.plan-card > strong {
    display: block;
    margin-bottom: 24px;
    color: var(--navy);
    font-size: 50px;
    line-height: 1;
}

.plan-card > strong small {
    color: var(--muted);
    font-size: 18px;
    font-weight: 500;
}

.plan-card ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.plan-card li {
    position: relative;
    padding: 10px 0 10px 26px;
    color: var(--muted);
}

.plan-card li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 2px;
    width: 11px;
    height: 6px;
    border-left: 2px solid var(--cyan-deep);
    border-bottom: 2px solid var(--cyan-deep);
    transform: rotate(-45deg);
}

.plan-card .button {
    width: 100%;
}

.reservation-hero {
    padding: 142px 0 62px;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 12%, rgba(0, 214, 211, .18), transparent 29%),
        var(--navy);
}

.reservation-hero h1 {
    margin: 13px 0 14px;
    max-width: 800px;
    font-size: clamp(41px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: 0;
}

.reservation-hero p {
    max-width: 650px;
    color: #bdc9d9;
    font-size: 18px;
}

.catalog-filter {
    display: flex;
    align-items: end;
    gap: 13px;
    margin-top: 37px;
    padding: 18px;
    max-width: 760px;
    border-radius: 19px;
    background: var(--white);
}

.catalog-filter label {
    flex: 1;
    color: var(--navy);
}

.catalog-filter label span,
.date-picker span {
    display: block;
    margin: 0 0 7px 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.catalog-filter select,
.date-picker input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--navy);
    background: var(--surface);
    font: inherit;
}

.catalog-section {
    padding: 57px 0 82px;
    background: var(--surface);
}

.catalog-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 21px;
}

.catalog-head h2 {
    font-size: 29px;
}

.catalog-head a {
    color: var(--cyan-deep);
    font-weight: 600;
}

.catalog-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 29px;
}

.catalog-links a {
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.catalog-links a:hover {
    border-color: var(--cyan);
    color: var(--navy);
}

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

.facility-card {
    padding: 25px 23px 23px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.facility-logo {
    width: 58px;
    height: 58px;
    margin-bottom: 17px;
    padding: 5px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 13px;
}

.facility-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
}

.sport-pill {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    color: #027c80;
    background: #e5fbfa;
    font-size: 13px;
    font-weight: 700;
}

.price {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.facility-card h3 {
    margin-bottom: 7px;
    font-size: 24px;
    letter-spacing: 0;
}

.facility-place,
.facility-count {
    margin: 0 0 9px;
    color: var(--muted);
}

.facility-description {
    min-height: 45px;
    margin: 13px 0 16px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
}

.facility-count {
    margin-bottom: 21px;
    font-size: 14px;
}

.facility-card .button {
    width: 100%;
}

.catalog-empty {
    padding: 55px 28px;
    border: 1px dashed var(--line);
    border-radius: 19px;
    text-align: center;
    background: var(--white);
}

.catalog-empty h3 {
    margin-bottom: 9px;
    font-size: 26px;
}

.catalog-empty p {
    margin: 0;
}

.facility-detail-hero {
    padding: 131px 0 50px;
    color: var(--white);
    background: var(--navy);
}

.facility-detail-hero .sport-pill {
    margin: 26px 0 16px;
}

.facility-detail-logo {
    width: 72px;
    height: 72px;
    margin: 20px 0 14px;
    padding: 7px;
    object-fit: contain;
    border-radius: 15px;
    background: var(--white);
}

.facility-detail-hero h1 {
    margin-bottom: 10px;
    font-size: clamp(38px, 5vw, 53px);
    letter-spacing: 0;
}

.facility-detail-hero p {
    margin: 0;
    color: #bfcbd9;
    font-size: 18px;
}

.facility-detail-description {
    max-width: 670px;
    margin-top: 15px !important;
}

.back-link {
    display: block;
    color: #bfcbd9;
    font-weight: 500;
}

.booking-section {
    padding: 50px 0 116px;
    background: var(--surface);
}

.booking-grid {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.location-list,
.availability-panel {
    padding: 25px;
    border-radius: 19px;
    background: var(--white);
    box-shadow: 0 9px 28px rgba(5, 24, 49, .05);
}

.location-list h2 {
    margin-bottom: 18px;
    font-size: 24px;
}

.location-options {
    min-width: 0;
}

.location-option {
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    text-align: left;
    color: var(--navy);
    background: var(--white);
    cursor: pointer;
}

.location-option.selected {
    border-color: var(--cyan);
    background: #f0fffe;
}

.location-option strong,
.location-option span {
    display: block;
}

.location-option span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 14px;
}

.availability-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.availability-head .label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.availability-head h2 {
    margin-top: 6px;
    font-size: 27px;
}

.date-picker {
    width: 180px;
}

.slot-status {
    margin-bottom: 18px;
    color: var(--muted);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
}

.booking-notice {
    margin: 25px 0 0;
    padding: 14px 16px;
    border-radius: 11px;
    color: var(--muted);
    background: var(--surface);
    font-size: 14px;
}

.booking-slot {
    padding: 14px 8px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--navy);
    background: var(--white);
    cursor: pointer;
}

.booking-slot strong,
.booking-slot span {
    display: block;
}

.booking-slot span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.booking-slot:hover:not(:disabled),
.booking-slot.selected {
    border-color: var(--cyan);
    background: #eafffe;
}

.booking-slot:disabled {
    opacity: .42;
    cursor: not-allowed;
}

.booking-checkout {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    padding: 14px 0;
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 -8px 32px rgba(5, 24, 49, .16);
}

.booking-checkout .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
}

.booking-checkout span,
.booking-checkout strong {
    display: block;
}

.booking-checkout span {
    margin-bottom: 3px;
    color: #a9bad0;
    font-size: 13px;
}

.booking-checkout strong {
    font-size: 17px;
}

.booking-checkout[hidden] {
    display: none;
}

.error-content {
    min-height: calc(100vh - 290px);
    padding: 190px 0 112px;
    text-align: center;
    color: var(--white);
    background: var(--navy);
}

.error-content h1 {
    margin: 0 auto 16px;
    max-width: 700px;
    font-size: clamp(44px, 6vw, 62px);
    letter-spacing: 0;
}

.error-content p {
    margin: 0 auto 37px;
    max-width: 550px;
    color: #becadb;
    font-size: 18px;
}

.site-footer {
    padding: 64px 0 27px;
    color: #ccdae9;
    background: #041124;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr .8fr .9fr 1.15fr;
    gap: 42px;
    padding-bottom: 48px;
}

.footer-brand .brand {
    margin-bottom: 18px;
    color: var(--white);
}

.footer-brand p {
    max-width: 290px;
    margin: 0;
    color: #94a6be;
}

.footer-grid h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 17px;
}

.footer-grid > div:not(.footer-brand) > a {
    display: block;
    margin-bottom: 13px;
    color: #a6b6ca;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-stores {
    display: grid;
}

.footer-stores img {
    height: 42px;
}

.footer-bottom {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #8ea1bb;
    font-size: 14px;
}

.footer-bottom div {
    display: flex;
    gap: 22px;
}

@media (max-width: 1040px) {
    .navigation {
        gap: 20px;
    }

    .hero-grid,
    .business-grid,
    .cam-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .hero-media {
        max-width: 560px;
        margin: 0 auto;
    }

    .finder-panel {
        grid-template-columns: 1fr;
    }

    .finder-note {
        grid-column: 1;
    }

    .camera-grid,
    .cam-pricing-grid,
    .facility-card-grid,
    .booking-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 45px;
    }

    .camera-demo {
        max-width: 590px;
    }

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

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 34px, 570px);
    }

    .menu-button {
        display: block;
    }

    .navigation {
        position: absolute;
        top: 78px;
        left: 17px;
        right: 17px;
        display: none;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        border-radius: 18px;
        color: var(--white);
        background: var(--navy-soft);
        box-shadow: var(--shadow);
    }

    .navigation.is-open {
        display: flex;
    }

    .navigation .button {
        margin-top: 5px;
    }

    .hero,
    .business-hero,
    .cam-hero,
    .reservation-hero,
    .facility-detail-hero {
        padding-top: 125px;
    }

    .hero {
        padding-bottom: 92px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 45px;
    }

    .hero-copy h1 {
        font-size: clamp(43px, 13vw, 56px);
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-media {
        padding: 0 0 34px;
    }

    .hero-photo {
        height: min(112vw, 490px);
    }

    .app-badge {
        top: 16px;
        left: 12px;
    }

    .match-card {
        right: 10px;
        bottom: 0;
    }

    .finder {
        margin-top: -40px;
    }

    .finder-panel {
        padding: 25px 21px;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
        margin-top: 16px;
    }

    .catalog-filter,
    .availability-head,
    .booking-checkout .container {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-filter .button,
    .date-picker {
        width: 100%;
    }

    .catalog-head {
        align-items: start;
        flex-direction: column;
    }

    .booking-grid {
        gap: 17px;
    }

    .location-options {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .location-option {
        flex: 0 0 min(275px, calc(100vw - 86px));
        margin-bottom: 0;
    }

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

    .booking-checkout .container {
        gap: 13px;
    }

    .section {
        padding: 68px 0;
    }

    .feature-grid,
    .split-heading,
    .audience-grid,
    .benefit-grid,
    .installation-grid,
    .recorder-flow,
    .pricing-banner,
    .process-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .split-heading,
    .audience-grid {
        gap: 36px;
    }

    .download-content {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .business-grid {
        gap: 45px;
    }

    .camera-demo {
        min-height: 395px;
    }

    .camera-screen,
    .cam-hero-demo .camera-screen {
        min-height: 355px;
    }

    .clip-card {
        right: 10px;
        bottom: 0;
    }

    .camera-points div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .pricing-banner {
        gap: 30px;
        padding: 29px 23px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 22px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .brand {
        font-size: 23px;
    }

    .feature-card img {
        height: 202px;
    }

    .court-lines {
        inset: 79px 24px 78px;
    }

    .camera-controls {
        gap: 9px;
        font-size: 13px;
    }

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

    .footer-bottom div {
        flex-direction: column;
        gap: 12px;
    }
}
