:root {
    --ink-950: #001f3f;
    --ink-900: #05294d;
    --ink-800: #0d365d;
    --blue-600: #1e488f;
    --cream-50: #fbfcf6;
    --cream-100: #f6f7ed;
    --cream-200: #eaeddd;
    --white: #fff;
    --lime-400: #dbe64c;
    --lime-500: #cbd83d;
    --green-600: #00804c;
    --green-700: #006a3f;
    --text: var(--ink-950);
    --text-soft: #55708b;
    --border: rgba(0, 31, 63, .12);
    --border-light: rgba(255, 255, 255, .18);
    --shadow-sm: 0 12px 40px rgba(0, 31, 63, .08);
    --shadow-lg: 0 32px 90px rgba(0, 19, 39, .2);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 36px;
    --container: 1360px;
    --gutter: clamp(20px, 4vw, 64px);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --header-height: 84px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    color: var(--text);
    background: var(--cream-100);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid var(--lime-400);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--lime-400);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(100%, var(--container));
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section-pad {
    padding-block: clamp(90px, 11vw, 170px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: rgba(255, 255, 255, .62);
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(290px, .55fr);
    align-items: center;
    gap: clamp(48px, 9vw, 150px);
    margin-bottom: clamp(24px, 5vw, 48px);
}

.split-heading h2,
.court-copy h2,
.installation-copy h2,
.cta-inner h2 {
    margin: 0;
    font-size: clamp(45px, 5vw, 56px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.065em;
}

h2 em {
    color: var(--green-600);
    font-family: Georgia, serif;
    font-weight: 400;
}

.intro-copy {
    max-width: 540px;
}

.lead {
    font-size: clamp(20px, 1.2vw, 30px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -.025em;
}

.intro-copy .lead {
    margin-bottom: 24px;
}

.intro-copy p:last-child,
.court-copy > p {
    color: var(--text-soft);
    font-size: 17px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .35s var(--ease), background .25s, color .25s, box-shadow .35s;
}

.button svg,
.text-link svg {
    width: 19px;
    margin-left: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform .3s var(--ease);
}

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

.button:hover svg {
    transform: translateX(4px);
}

.button-lime {
    color: var(--ink-950);
    background: var(--lime-400);
    box-shadow: 0 14px 36px rgba(219, 230, 76, .16);
}

.button-lime:hover {
    background: var(--lime-500);
    box-shadow: 0 20px 44px rgba(219, 230, 76, .27);
}

.button-dark {
    color: var(--white);
    background: var(--ink-950);
}

.button-large {
    min-height: 66px;
    padding-inline: 32px;
    font-size: 15px;
}

.button-small {
    min-height: 48px;
    padding-inline: 22px;
}

.text-link {
    display: inline-flex;
    padding: 5px 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.text-link-light {
    color: var(--white);
    opacity: .8;
    transition: opacity .3s var(--ease);
}

.text-link-light:hover {
    opacity: 1;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    color: var(--white);
    transition: color .4s, background .4s, box-shadow .4s, transform .4s var(--ease);
}

.site-header.is-scrolled {
    color: var(--ink-950);
    background: rgba(246, 247, 237, .92);
    box-shadow: 0 1px 0 var(--border);
    backdrop-filter: blur(18px);
}

.policy-header {
    color: var(--ink-950);
    background: rgba(246, 247, 237, .96);
    box-shadow: 0 1px 0 var(--border);
    backdrop-filter: blur(18px);
}

.policy-title {
    margin: 0 0 48px;
    color: var(--ink-950);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.policy-content {
    max-width: 920px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

.policy-content h2 {
    margin: 48px 0 20px;
    color: var(--ink-950);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    margin: 28px 0 12px;
    color: var(--ink-900);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.policy-content p {
    margin: 0 0 16px;
}

.policy-content a {
    color: var(--green-700);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.policy-content ul {
    margin: 0 0 22px;
    padding-left: 24px;
}

.policy-content li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.policy-table-wrap {
    margin: 24px 0 8px;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.policy-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.5;
}

.policy-table th,
.policy-table td {
    padding: 16px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.policy-table th:last-child,
.policy-table td:last-child {
    border-right: 0;
}

.policy-table tr:last-child td {
    border-bottom: 0;
}

.policy-table th {
    color: var(--white);
    background: var(--ink-950);
    font-weight: 700;
}

.policy-source {
    margin-top: 40px !important;
    color: var(--text-soft);
    font-size: 14px;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}


.brand-mark {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--lime-400);
}

.brand-name {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-name b {
    font-weight: 800;
}

.desktop-nav {
    display: flex;
    gap: clamp(20px, 2.6vw, 42px);
    margin: 0 auto;
}

.desktop-nav a {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    display: flex;
    min-height: 100svh;
    overflow: hidden;
    color: var(--white);
    background: var(--ink-950);
}

.hero-media,
.hero-media video,
.hero-media-fallback,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media video {
    z-index: 1;
    object-fit: cover;
}

.hero-media-fallback {
    background:
        radial-gradient(circle at 76% 38%, rgba(219, 230, 76, .16), transparent 23%),
        linear-gradient(125deg, var(--ink-950) 10%, #16486a 58%, #087451);
}

.hero-overlay {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0, 18, 37, .87) 0%, rgba(0, 18, 37, .45) 55%, rgba(0, 18, 37, .2) 100%),
        linear-gradient(0deg, rgba(0, 18, 37, .78) 0%, transparent 46%);
}

.hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 170px;
        align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    align-self: center;
    margin-bottom: 32px;
    padding: 9px 14px;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime-400);
    box-shadow: 0 0 0 5px rgba(219, 230, 76, .15);
}

.hero-title {
    max-width: 1220px;
    margin: 0;
    font-size: clamp(36px, 6vw, 100px);
    font-weight: 600;
    line-height: .84;
    letter-spacing: -.078em;
    text-align: center;
}

.hero-line {
    display: block;
}

.hero-line-accent {
    color: var(--lime-400);
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.hero-bottom {
    display: grid;
    grid-template-columns: minmax(260px, 460px) auto;
    align-items: center;
    gap: 60px;
    margin-top: clamp(40px, 6vh, 76px);
}

.hero-lead {
    margin: 0;
    font-size: clamp(12px, 1.5vw, 18px);
    line-height: 1.48;
    letter-spacing: -.02em;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.step-dots {
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
}

.step-dots i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ink-950);
    transition: transform .35s var(--ease);
}

.step-dots i + i {
    margin-left: -4px;
}

.step-dots i:nth-child(1) {
    opacity: .4;
}

.step-dots i:nth-child(2) {
    opacity: .6;
}

.step-dots i:nth-child(3) {
    opacity: .8;
}

.button:hover .step-dots i:nth-child(1) {
    transform: translateX(-2px);
}

.button:hover .step-dots i:nth-child(3) {
    transform: translateX(2px);
}

.hero-facts {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid var(--border-light);
    background: rgba(0, 21, 42, .28);
    backdrop-filter: blur(15px);
}

.facts-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.fact {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    min-height: 112px;
    padding-right: 50px;
    border-right: 1px solid var(--border-light);
}

.fact + .fact {
    padding-left: 50px;
}

.fact:last-child {
    border-right: 0;
}

.fact strong {
    color: var(--lime-400);
    font-size: 26px;
    letter-spacing: -.05em;
}

.fact span {
    max-width: 150px;
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.manifesto {
    background:
        radial-gradient(circle at 90% 10%, rgba(219, 230, 76, .16), transparent 24%),
        var(--cream-100);
}

.sport-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(290px, .55fr);
    gap: clamp(48px, 9vw, 150px);
    align-items: stretch;
}

.media-frame {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(219, 230, 76, .35), rgba(0, 128, 76, .18)),
        var(--cream-200);
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.media-frame.is-fallback::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, transparent 0 44%, rgba(255, 255, 255, .32) 44.2% 44.6%, transparent 44.8%),
        linear-gradient(35deg, rgba(0, 31, 63, .12), transparent 55%);
    content: "";
}

.media-frame.is-fallback::before {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    border: 16px dotted rgba(0, 31, 63, .18);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%) rotate(-18deg);
}

.media-frame:hover img {
    transform: scale(1.025);
}

.sport-photo {
    height: min(72vw, 760px);
}

.sport-photo::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 31, 63, .68), transparent 45%);
    content: "";
    pointer-events: none;
}

.sport-photo figcaption {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 28px;
    left: 30px;
    display: flex;
    justify-content: space-between;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sport-notes {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sport-notes article {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.sport-notes h3 {
    margin-bottom: 9px;
    font-size: clamp(22px, 2vw, 30px);
    letter-spacing: -.045em;
}

.sport-notes p {
    max-width: 410px;
    margin-bottom: 0;
    color: var(--text-soft);
}

.court-section {
    overflow: hidden;
    color: var(--white);
    background: var(--ink-950);
}

.court-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: clamp(40px, 9vw, 140px);
}

.court-copy h2 em,
.installation-copy h2 em,
.cta-inner h2 em {
    color: var(--lime-400);
}

.court-copy > p {
    max-width: 500px;
    margin: 34px 0 52px;
    color: rgba(255, 255, 255, .62);
}

.court-metrics {
    margin: 0;
}

.court-metrics > div {
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
}

.court-metrics dt {
    color: var(--lime-400);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 600;
    letter-spacing: -.04em;
}

.court-metrics dd {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.court-comparison {
    padding: 22px 0 4px;
    border-top: 1px solid var(--border-light);
}

.comparison-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 54px;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 14px;
}

.comparison-heading > span {
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.comparison-heading > small {
    color: rgba(255, 255, 255, .34);
    font-size: 9px;
    line-height: 1.35;
    text-align: right;
}

.comparison-heading > b {
    color: rgba(255, 255, 255, .34);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .04em;
    text-align: right;
    text-transform: uppercase;
}

.court-comparison dl {
    margin: 0;
}

.court-comparison dl > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 54px;
    align-items: baseline;
    gap: 20px;
    padding: 7px 0;
}

.court-comparison dt {
    color: rgba(255, 255, 255, .46);
    font-size: 11px;
}

.court-comparison dt small {
    color: rgba(255, 255, 255, .28);
    font-size: 9px;
}

.court-comparison dd {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.court-comparison .comparison-ratio {
    color: var(--lime-400);
    font-size: 14px;
    font-weight: 800;
    text-align: right;
}

.surface-note {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding: 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .04);
}

.surface-note svg {
    width: 28px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--lime-400);
    stroke-width: 1.5;
}

.surface-note p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.surface-note strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}

.court-diagram-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 820px;
}

.court-diagram {
    position: relative;
    z-index: 2;
    width: min(100%, 600px);
    filter: drop-shadow(0 34px 80px rgba(0, 0, 0, .26));
}

.court-diagram .court-outer {
    fill: rgba(219, 230, 76, .07);
    stroke: rgba(219, 230, 76, .22);
}

.court-diagram .court-play {
    fill: #08744c;
}

.court-diagram .court-service {
    fill: #2d8fbd;
}

.court-diagram .court-outline {
    fill: none;
    stroke: var(--cream-100);
    stroke-width: 3;
}

.court-diagram .court-line {
    stroke: var(--cream-100);
    stroke-width: 3;
}

.court-diagram .court-net {
    stroke: var(--lime-400);
    stroke-width: 7;
}

.court-diagram text {
    fill: rgba(255, 255, 255, .55);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
}

.court-diagram .measure line {
    stroke: var(--lime-400);
    stroke-width: 1.5;
}

.court-diagram .measure text {
    fill: var(--lime-400);
    font-size: 17px;
}

.court-orbit {
    position: absolute;
    border: 1px solid rgba(219, 230, 76, .12);
    border-radius: 50%;
}

.court-orbit-one {
    top: 12%;
    left: -5%;
    width: 740px;
    height: 740px;
}

.court-orbit-two {
    top: 23%;
    left: 6%;
    width: 540px;
    height: 540px;
}

.diagram-tag {
    position: absolute;
    z-index: 3;
    padding: 10px 16px;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    color: rgba(255, 255, 255, .7);
    background: rgba(0, 31, 63, .82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.tag-top {
    top: 24%;
    right: -2%;
}

.tag-bottom {
    bottom: 38%;
    left: -3%;
}

.growth {
    background: var(--cream-50);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr .72fr;
    gap: 18px;
}

.stat-card {
    position: relative;
    display: flex;
    min-height: 490px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(28px, 3.2vw, 48px);
    border-radius: var(--radius-lg);
}

.stat-primary {
    background: var(--lime-400);
}

.stat-dark {
    color: var(--white);
    background: var(--ink-950);
}

.stat-quote {
    border: 1px solid var(--border);
    background: var(--cream-100);
}

.stat-label {
    position: relative;
    z-index: 2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.stat-card strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: auto;
    font-size: clamp(80px, 10vw, 148px);
    font-weight: 600;
    line-height: .8;
    letter-spacing: -.09em;
}

.stat-card strong sup {
    font-size: .33em;
}

.stat-card > p {
    position: relative;
    z-index: 2;
    max-width: 310px;
    margin: 30px 0 0;
    font-size: 15px;
}

.mini-chart {
    position: absolute;
    inset: 30% 26px 26px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    opacity: .2;
}

.mini-chart i {
    flex: 1;
    border-radius: 5px 5px 0 0;
    background: var(--ink-950);
}

.mini-chart i:nth-child(1) { height: 12%; }
.mini-chart i:nth-child(2) { height: 18%; }
.mini-chart i:nth-child(3) { height: 27%; }
.mini-chart i:nth-child(4) { height: 34%; }
.mini-chart i:nth-child(5) { height: 48%; }
.mini-chart i:nth-child(6) { height: 58%; }
.mini-chart i:nth-child(7) { height: 78%; }
.mini-chart i:nth-child(8) { height: 100%; }

.ball-trail {
    position: absolute;
    inset: 0;
}

.ball-trail span {
    position: absolute;
    border: 1px solid rgba(219, 230, 76, .3);
    border-radius: 50%;
}

.ball-trail span:nth-child(1) { top: 24%; right: 14%; width: 35px; height: 35px; }
.ball-trail span:nth-child(2) { top: 34%; right: 26%; width: 60px; height: 60px; opacity: .7; }
.ball-trail span:nth-child(3) { top: 43%; right: 42%; width: 90px; height: 90px; opacity: .45; }
.ball-trail span:nth-child(4) { top: 53%; right: 58%; width: 140px; height: 140px; opacity: .2; }

.quote-mark {
    color: var(--green-600);
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: .5;
}

.stat-quote > p {
    margin: auto 0 36px;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.035em;
}

.stat-quote .text-link {
    align-self: flex-start;
}

.source-note {
    margin: 20px 0 0;
    color: var(--text-soft);
    font-size: 11px;
}

.solutions {
    background: var(--cream-100);
}

.product-tabs {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.tab-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border);
}

.tab-list button {
    position: relative;
    min-height: 84px;
    border: 0;
    border-right: 1px solid var(--border);
    color: var(--text-soft);
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: color .25s, background .25s;
}

.tab-list button:last-child {
    border-right: 0;
}

.tab-list button[aria-selected="true"] {
    color: var(--ink-950);
    background: var(--lime-400);
}

.product-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
}

.product-panel[hidden] {
    display: none;
}

.product-media {
    min-height: 650px;
    border-radius: 0;
}

.media-badge {
    position: absolute;
    top: 26px;
    left: 26px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 31, 63, .72);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.product-info {
    display: flex;
    flex-direction: column;
    padding: clamp(34px, 5vw, 72px);
}

.product-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.product-head h3 {
    margin: 0;
    font-size: clamp(30px, 3vw, 56px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.065em;
}

.product-price {
    display: inline-block;
    padding-top: 12px;
    color: var(--ink-950);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}

.product-lead {
    max-width: 510px;
    margin: 44px 0 34px;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -.03em;
}

.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding: 13px 0 13px 30px;
    border-top: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 14px;
}

.feature-list li::before {
    position: absolute;
    top: 20px;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-600);
    content: "";
}

.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 36px;
}

.product-foot > span {
    color: var(--text-soft);
    font-size: 12px;
}

.product-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.product-cta-note {
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.2;
    text-align: center;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--ink-950);
    background: #ffe24a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1;
    white-space: nowrap;
}

.installation {
    color: var(--white);
    background: var(--green-700);
    display: none;
}

.installation-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: stretch;
    gap: clamp(50px, 8vw, 130px);
}

.installation-copy .lead {
    max-width: 540px;
    margin: 36px 0 62px;
    color: rgba(255, 255, 255, .75);
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    padding: 22px 0;
    border-top: 1px solid var(--border-light);
}

.process-list strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.process-list p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

.installation-media {
    min-height: 760px;
}

.installation-media::after {
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(0deg, rgba(0, 31, 63, .78), transparent);
    content: "";
}

.installation-media figcaption {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 28px;
    left: 30px;
    color: var(--white);
}

.installation-media strong,
.installation-media span {
    display: block;
}

.installation-media strong {
    margin-bottom: 7px;
    font-size: 26px;
    letter-spacing: -.04em;
}

.installation-media span {
    max-width: 380px;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

.equipment {
    background: var(--cream-50);
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.equipment-card {
    display: flex;
    min-height: 500px;
    flex-direction: column;
    padding: clamp(28px, 3vw, 46px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-sm);
}

.equipment-card-featured {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(24px, 3vw, 40px);
    align-items: stretch;
    min-height: 0;
}

.equipment-card-wide {
    color: var(--white);
    background: var(--ink-950);
}

.equipment-card-accent {
    background: var(--lime-400);
}

.equipment-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.equipment-photo {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(0, 31, 63, .07);
}

.equipment-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), opacity .35s var(--ease);
}

.equipment-card:hover .equipment-photo img {
    transform: scale(1.04);
}

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

.equipment-thumb {
    position: relative;
    display: block;
    height: 78px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 12px;
    background: rgba(0, 31, 63, .07);
    cursor: pointer;
    transition: border-color .3s var(--ease), transform .3s var(--ease);
}

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

.equipment-thumb:hover {
    transform: translateY(-2px);
}

.equipment-thumb.is-active {
    border-color: var(--ink-950);
}

.equipment-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.equipment-placeholder {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--text-soft);
    background:
        linear-gradient(135deg, rgba(0, 31, 63, .04), transparent),
        repeating-linear-gradient(135deg, transparent 0 16px, rgba(0, 31, 63, .05) 16px 17px);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-align: center;
    text-transform: uppercase;
}

.equipment-photo.is-fallback .equipment-placeholder {
    display: flex;
}

.equipment-card-wide .equipment-photo {
    background: rgba(255, 255, 255, .1);
}

.equipment-card-wide .equipment-placeholder {
    color: rgba(255, 255, 255, .55);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .09), transparent),
        repeating-linear-gradient(135deg, transparent 0 16px, rgba(255, 255, 255, .05) 16px 17px);
}

.equipment-visual {
    position: relative;
    height: 180px;
    margin-bottom: auto;
}

.net-visual {
    overflow: hidden;
    perspective: 500px;
}

.net-floor-shadow {
    position: absolute;
    right: 5%;
    bottom: 4px;
    left: 5%;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, .28), transparent 70%);
    filter: blur(5px);
}

.net-line {
    position: absolute;
    z-index: 1;
    top: 53px;
    right: 18px;
    left: 18px;
    height: 88px;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
    background-image:
        linear-gradient(rgba(255, 255, 255, .3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .3) 1px, transparent 1px);
    background-position: center top;
    background-size: 10px 10px;
}

.net-top-tape {
    position: absolute;
    z-index: 3;
    top: 48px;
    right: 14px;
    left: 14px;
    height: 7px;
    border-radius: 4px;
    background: var(--lime-400);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .22);
}

.net-center-strap {
    position: absolute;
    z-index: 2;
    top: 53px;
    bottom: 31px;
    left: 50%;
    width: 3px;
    border-radius: 0 0 2px 2px;
    background: rgba(255, 255, 255, .72);
    transform: translateX(-50%);
}

.net-center-strap::after {
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 13px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .5);
    content: "";
    transform: translateX(-50%);
}

.net-post {
    position: absolute;
    z-index: 4;
    top: 32px;
    bottom: 22px;
    left: 11px;
    width: 6px;
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(90deg, var(--lime-500), var(--lime-400) 50%, #eff786);
    box-shadow: 3px 5px 12px rgba(0, 0, 0, .2);
}

.net-post::before {
    position: absolute;
    top: -3px;
    left: -1px;
    width: 8px;
    height: 5px;
    border-radius: 3px;
    background: #eff786;
    content: "";
}

.net-post::after {
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 25px;
    height: 5px;
    border-radius: 5px;
    background: var(--lime-400);
    box-shadow: 0 5px 8px rgba(0, 0, 0, .18);
    content: "";
    transform: translateX(-50%);
}

.net-post-right {
    right: 11px;
    left: auto;
}

.equipment-icon {
    display: grid;
    width: 82px;
    height: 82px;
    margin-bottom: auto;
    border: 1px solid var(--border);
    border-radius: 50%;
    place-items: center;
}

.equipment-icon svg {
    width: 46px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
}

.equipment-type {
    margin-bottom: 12px;
    color: var(--green-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.equipment-card-wide .equipment-type {
    color: var(--lime-400);
}

.equipment-card h3 {
    margin-bottom: 16px;
    font-size: clamp(24px, 2vw, 26px);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.equipment-card p {
    color: var(--text-soft);
    font-size: 14px;
}

.equipment-card-wide p {
    color: rgba(255, 255, 255, .6);
}

.equipment-price {
    margin-top: auto;
    padding-top: 24px;
    font-size: 17px;
    font-weight: 800;
}

.inventory {
    background: var(--cream-100);
}

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

.inventory-card {
    display: flex;
    min-height: 580px;
    overflow: hidden;
    flex-direction: column;
    padding: clamp(14px, 2vw, 24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.inventory-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-sm);
}

.inventory-card-dark {
    color: var(--white);
    background: var(--ink-950);
}

.inventory-card-blue {
    color: var(--white);
    background: #2d8fbd;
}

.inventory-card-lime {
    background: var(--lime-400);
}

.inventory-art {
    position: relative;
    height: 230px;
    margin: -8px -8px auto;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
}

.inventory-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.inventory-card:hover .inventory-art img {
    transform: scale(1.04);
}

.inventory-placeholder {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: currentColor;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .1), transparent),
        repeating-linear-gradient(135deg, transparent 0 16px, rgba(255, 255, 255, .05) 16px 17px);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-align: center;
    text-transform: uppercase;
}

.inventory-art.is-fallback .inventory-placeholder {
    display: flex;
}

.inventory-card-light .inventory-art,
.inventory-card-lime .inventory-art {
    background: rgba(0, 31, 63, .07);
}

.inventory-card-light .inventory-placeholder,
.inventory-card-lime .inventory-placeholder {
    background:
        linear-gradient(135deg, rgba(0, 31, 63, .04), transparent),
        repeating-linear-gradient(135deg, transparent 0 16px, rgba(0, 31, 63, .05) 16px 17px);
}

.inventory-type {
    margin-bottom: 12px;
    color: var(--green-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.inventory-card-dark .inventory-type,
.inventory-card-blue .inventory-type {
    color: var(--lime-400);
}

.inventory-card h3 {
    margin-bottom: 15px;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.inventory-card > p {
    margin-bottom: 24px;
    color: var(--text-soft);
    font-size: 13px;
}

.inventory-card-dark > p,
.inventory-card-blue > p {
    color: rgba(255, 255, 255, .62);
}

.inventory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.inventory-tags li {
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.inventory-card-dark .inventory-tags li,
.inventory-card-blue .inventory-tags li {
    border-color: rgba(255, 255, 255, .2);
}

.final-cta {
    position: relative;
    display: grid;
    min-height: 760px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink-950);
    place-items: center;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-inner h2 {
    font-size: clamp(54px, 8vw, 116px);
}

.cta-inner p {
    max-width: 570px;
    margin: 38px auto;
    color: rgba(255, 255, 255, .62);
    font-size: 18px;
}


.cta-balls {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.flying-ball {
    position: absolute;
    top: 12%;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--lime-400);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
    opacity: .7;
    will-change: transform;
}

.flying-ball-one {
    animation: ball-left-to-right 5s linear infinite;
}

.flying-ball-two {
    width: 24px;
    height: 24px;
    opacity: .52;
    animation: ball-right-to-left 5.8s linear -2.1s infinite;
}

.flying-ball-three {
    width: 19px;
    height: 19px;
    opacity: .38;
    animation: ball-left-to-right 4.2s linear -3.1s infinite;
}

@keyframes ball-left-to-right {
    0% { top: 18%; transform: translate3d(-8vw, 0, 0) rotate(0deg); }
    16% { top: 74%; transform: translate3d(10vw, 0, 0) rotate(105deg); }
    30% { top: 24%; transform: translate3d(27vw, 0, 0) rotate(195deg); }
    47% { top: 70%; transform: translate3d(45vw, 0, 0) rotate(305deg); }
    64% { top: 20%; transform: translate3d(64vw, 0, 0) rotate(415deg); }
    82% { top: 76%; transform: translate3d(83vw, 0, 0) rotate(530deg); }
    100% { top: 22%; transform: translate3d(108vw, 0, 0) rotate(680deg); }
}

@keyframes ball-right-to-left {
    0% { top: 22%; transform: translate3d(108vw, 0, 0) rotate(0deg); }
    18% { top: 73%; transform: translate3d(87vw, 0, 0) rotate(-120deg); }
    35% { top: 19%; transform: translate3d(69vw, 0, 0) rotate(-230deg); }
    53% { top: 77%; transform: translate3d(50vw, 0, 0) rotate(-345deg); }
    70% { top: 25%; transform: translate3d(31vw, 0, 0) rotate(-455deg); }
    86% { top: 71%; transform: translate3d(14vw, 0, 0) rotate(-560deg); }
    100% { top: 20%; transform: translate3d(-8vw, 0, 0) rotate(-700deg); }
}

.site-footer {
    padding-top: 70px;
    color: var(--white);
    background: #00162d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .8fr auto;
    gap: 50px;
    padding-bottom: 70px;
}

.brand-footer {
    margin-bottom: 25px;
}

.footer-grid > div > p {
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-nav > span,
.footer-contact > span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .38);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-nav a {
    font-size: 13px;
}

.circle-button {
    display: grid;
    width: 70px;
    height: 70px;
    border: 0;
    border-radius: 50%;
    color: var(--ink-950);
    background: var(--lime-400);
    cursor: pointer;
    place-items: center;
    transition: transform .35s var(--ease);
}

.circle-button:hover {
    transform: rotate(-30deg) scale(1.06);
}

.circle-button svg {
    width: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-block: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .35);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cookie-consent {
    position: fixed;
    z-index: 450;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    color: var(--white);
    background: var(--ink-950);
    box-shadow: 0 22px 70px rgba(0, 20, 34, .3);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 11px;
    line-height: 1.65;
}

.cookie-consent a {
    color: var(--lime-400);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .3s var(--ease);
}

.cookie-consent a:hover {
    color: var(--white);
}

.cookie-consent-button {
    min-width: 132px;
    flex: 0 0 auto;
}

.quiz-modal {
    position: fixed;
    z-index: 500;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity .35s, visibility .35s;
}

.quiz-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.quiz-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 40, .78);
    backdrop-filter: blur(14px);
}

.quiz-shell {
    position: absolute;
    inset: 18px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border-radius: 28px;
    background: var(--cream-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(30px) scale(.985);
    transition: transform .5s var(--ease);
}

.quiz-modal.is-open .quiz-shell {
    transform: none;
}

.quiz-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 90px;
    padding: 0 clamp(22px, 4vw, 60px);
    border-bottom: 1px solid var(--border);
}

.quiz-progress-meta {
    width: min(32vw, 360px);
    text-align: center;
}

.quiz-progress-meta > span {
    display: block;
    margin-bottom: 8px;
    color: var(--text-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.quiz-progress {
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--cream-200);
}

.quiz-progress i {
    display: block;
    width: 25%;
    height: 100%;
    border-radius: inherit;
    background: var(--green-600);
    transition: width .5s var(--ease);
}

.quiz-close {
    position: relative;
    justify-self: end;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    color: var(--ink-950);
    transition: color .25s, border-color .25s, background .25s;
}

.quiz-close:hover {
    color: var(--lime-400);
    border-color: var(--lime-400);
}

.quiz-close span {
    position: absolute;
    top: 23px;
    left: 13px;
    width: 20px;
    height: 1px;
    background: currentColor;
}

.quiz-close span:first-child { transform: rotate(45deg); }
.quiz-close span:last-child { transform: rotate(-45deg); }

.quiz-form {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    overflow-y: auto;
}

.quiz-step {
    width: min(100%, 1120px);
    margin: auto;
    padding: 55px var(--gutter) 35px;
}

.quiz-step[hidden] {
    display: none;
}

.quiz-question {
    max-width: 810px;
    margin-bottom: 36px;
}

.quiz-question .eyebrow {
    margin-bottom: 18px;
}

.quiz-question h2,
.result-summary h2,
.quiz-success h2 {
    margin-bottom: 14px;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.06em;
}

.quiz-question p {
    margin: 0;
    color: var(--text-soft);
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.quiz-step[data-step="3"] .quiz-options {
    grid-template-columns: repeat(2, 1fr);
}

.quiz-option {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 26px;
    align-items: start;
    gap: 14px;
    min-height: 150px;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    cursor: pointer;
    transition: border .25s, background .25s, transform .35s var(--ease), box-shadow .35s;
}

.quiz-option:hover {
    border-color: var(--green-600);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.quiz-option:has(input:checked) {
    border-color: var(--green-600);
    background: rgba(219, 230, 76, .22);
}

.quiz-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quiz-option strong,
.quiz-option small {
    display: block;
}

.quiz-option strong {
    margin-bottom: 8px;
    font-size: 17px;
}

.quiz-option small {
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.5;
}

.quiz-option i {
    width: 22px;
    height: 22px;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.quiz-option:has(input:checked) i {
    border: 6px solid var(--green-600);
}

.quiz-help {
    margin-top: 14px;
    padding: 17px 22px;
    border-radius: 14px;
    color: var(--white);
    background: var(--ink-950);
    font-size: 12px;
}

.quiz-help strong {
    margin-right: 12px;
    color: var(--lime-400);
}

.quiz-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    padding: 0 clamp(22px, 4vw, 60px);
    border-top: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.quiz-back {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
}

.quiz-back:disabled {
    visibility: hidden;
}

.quiz-back svg {
    width: 19px;
    margin-right: 10px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.quiz-result {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: clamp(48px, 9vw, 130px);
    align-items: center;
}

.quiz-result[hidden] {
    display: none;
}

.result-summary h2 em {
    color: var(--green-600);
}

.result-summary > p {
    max-width: 560px;
    color: var(--text-soft);
    font-size: 18px;
}

.result-summary ul {
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.result-summary li {
    padding: 12px 0;
    border-top: 1px solid var(--border);
    font-size: 13px;
}

.result-form-wrap {
    padding: clamp(28px, 4vw, 48px);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.result-form-label {
    color: var(--green-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.result-form-wrap h3 {
    margin: 8px 0 18px;
    font-size: 28px;
    letter-spacing: -.04em;
}

.result-discount {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 13px 14px;
    border: 1px solid rgba(82, 102, 35, .2);
    border-radius: 11px;
    background: rgba(219, 230, 76, .18);
}

.result-discount-copy {
    color: var(--ink-950);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
}

.result-countdown {
    min-width: 64px;
    margin-left: auto;
    color: var(--green-600);
    font-size: 22px;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    letter-spacing: -.04em;
    text-align: right;
}

.field {
    position: relative;
    margin-bottom: 16px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 700;
}

.field input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--text);
    background: var(--cream-50);
}

.field input.is-invalid {
    border-color: #bd362f;
}

.field-error {
    display: none;
    margin-top: 4px;
    color: #a12722;
    font-size: 10px;
}

.field input.is-invalid + .field-error {
    display: block;
}

.field-error[data-lead-error]:not([hidden]) {
    display: block;
    margin: 0 0 12px;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0;
    color: var(--text-soft);
    cursor: pointer;
    font-size: 10px;
}

.consent input {
    position: absolute;
    opacity: 0;
}

.consent > span {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.consent input:checked + span {
    border-color: var(--green-600);
    background: var(--green-600);
}

.consent input:checked + span::after {
    position: absolute;
    top: 3px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    content: "";
    transform: rotate(45deg);
}

.consent.is-invalid > span {
    border-color: #bd362f;
}

.result-submit {
    width: 100%;
}

.result-submit:disabled {
    box-shadow: none;
    cursor: not-allowed;
    opacity: .45;
    transform: none;
}

.demo-note {
    margin: 12px 0 0;
    color: var(--text-soft);
    font-size: 9px;
    text-align: center;
}

.quiz-success {
    max-width: 730px;
    text-align: center;
}

.success-icon {
    display: grid;
    width: 82px;
    height: 82px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: var(--lime-400);
    place-items: center;
}

.success-icon span {
    width: 17px;
    height: 30px;
    border: solid var(--ink-950);
    border-width: 0 4px 4px 0;
    transform: rotate(45deg) translate(-4px, 4px);
}

.quiz-success p {
    max-width: 580px;
    margin: 0 auto 30px;
    color: var(--text-soft);
}
a{
    transition: color .3s;
}

footer a:hover {
    color: var(--lime-400);

}

@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

    .header-cta {
        margin-left: auto;
        margin-right: 12px;
    }

    .menu-toggle {
        position: relative;
        display: block;
        width: 48px;
        height: 48px;
        border: 3px solid var(--lime-500);
        border-radius: 14px;
        background: transparent;
    }

    .menu-toggle span {
        position: absolute;
        right: 13px;
        left: 13px;
        height: 3px;
        background: var(--lime-500);
        transition: transform .3s, top .3s;
        border-radius: 3px;
    }

    .menu-toggle span:first-child { top: 17px; }
    .menu-toggle span:last-child { top: 25px; }
    .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

    .mobile-menu {
        position: fixed;
        z-index: 99;
        inset: 0;
        display: block;
        min-height: 100dvh;
        overflow-y: auto;
        visibility: hidden;
        padding: 130px var(--gutter) 40px;
        color: var(--white);
        background: var(--ink-950);
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity .35s, transform .35s, visibility .35s;
    }

    .mobile-menu.is-open {
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .mobile-menu a {
        font-size: clamp(34px, 7vw, 60px);
        font-weight: 600;
        letter-spacing: -.05em;
    }

    .mobile-menu .button {
        align-self: flex-start;
        margin-top: 20px;
    }

    .mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid var(--border-light);
    }

    .mobile-contact a {
        font-size: clamp(18px, 4vw, 24px);
        font-weight: 500;
        letter-spacing: -.02em;
    }

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

    .stat-quote {
        grid-column: span 2;
        min-height: 330px;
    }

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

    .equipment-card-featured {
        grid-template-columns: 1fr;
    }

    .equipment-photo {
        height: 280px;
    }

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

@media (max-width: 820px) {
    :root {
        --header-height: 72px;
    }

    .section-pad {
        padding-block: 90px;
    }

    .split-heading,
    .sport-stage,
    .court-layout,
    .installation-grid {
        grid-template-columns: 1fr;
    }

    .split-heading {
        gap: 34px;
        margin-bottom: 55px;
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 175px;
    }

    .hero-title {
        font-size: clamp(54px, 13.4vw, 105px);
    }

    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 35px;
    }

    .hero-lead {
        max-width: 540px;
    }

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

    .fact {
        min-height: 100px;
        padding-right: 20px;
    }

    .fact + .fact {
        padding-left: 20px;
    }

    .sport-photo {
        height: 620px;
    }

    .court-layout {
        gap: 70px;
    }

    .court-diagram-wrap {
        min-height: 700px;
    }

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

    .stat-card,
    .stat-quote {
        grid-column: auto;
        min-height: 410px;
    }

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

    .product-media {
        min-height: 460px;
    }

    .product-info {
        min-height: 580px;
    }

    .installation-grid {
        gap: 70px;
    }

    .installation-media {
        min-height: 600px;
    }

    .quiz-shell {
        inset: 0;
        border-radius: 0;
    }

    .quiz-header {
        min-height: 76px;
    }

    .quiz-header .brand-name {
        display: none;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .quiz-step[data-step="3"] .quiz-options {
        grid-template-columns: 1fr 1fr;
    }

    .quiz-option {
        min-height: 112px;
    }

    .quiz-result {
        grid-template-columns: 1fr;
        overflow-y: auto;
        align-items: start;
    }

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

@media (max-width: 580px) {
    :root {
        --gutter: 20px;
        --radius-lg: 24px;
    }

    .cookie-consent {
        right: 12px;
        bottom: 12px;
        left: 12px;
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        border-radius: 16px;
    }

    .cookie-consent-button {
        width: 100%;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        margin-left: auto;
    }

    .hero-content {
        padding-bottom: 160px;
    }

    .hero-title {
        font-size: clamp(48px, 13vw, 78px);
        line-height: .9;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

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

    .hero-facts .fact {
        display: block;
        min-height: 112px;
        padding: 16px 8px 14px 0;
    }

    .hero-facts .fact + .fact {
        padding-left: 8px;
    }

    .fact strong,
    .fact span {
        display: block;
    }

    .fact strong {
        margin-bottom: 5px;
        font-size: 20px;
    }

    .fact span {
        font-size: 8px;
    }

    .sport-photo {
        min-height: 0;
        height: 115vw;
    }

    .sport-photo figcaption {
        right: 20px;
        bottom: 20px;
        left: 20px;
        font-size: 9px;
    }

    .court-copy h2,
    .installation-copy h2 {
        font-size: 46px;
    }

    .court-diagram-wrap {
        min-height: 540px;
        margin-inline: -20px;
    }

    .court-diagram {
        width: 390px;
    }

    .diagram-tag {
        display: none;
    }

    .stat-card {
        min-height: 380px;
    }

    .tab-list {
        overflow-x: auto;
        grid-template-columns: repeat(3, minmax(130px, 1fr));
    }

    .tab-list button {
        min-height: 70px;
    }

    .product-media {
        min-height: 330px;
    }

    .product-info {
        min-height: 580px;
        padding: 30px 24px;
    }

    .product-head {
        display: block;
    }

    .product-price {
        display: inline-flex;
        margin-top: 8px;
    }

    .product-lead {
        margin-top: 30px;
    }

    .product-foot {
        align-items: stretch;
        flex-direction: column;
    }

    .installation-media {
        min-height: 460px;
    }

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

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

    .inventory-card {
        min-height: 500px;
    }

    .equipment-card,
    .equipment-card-featured {
        min-height: 0;
    }

    .equipment-photo {
        height: 240px;
    }

    .equipment-thumb {
        height: 64px;
    }

    .final-cta {
        min-height: 690px;
    }

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

    .footer-action {
        position: absolute;
        right: 20px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .quiz-header {
        grid-template-columns: auto 1fr auto;
        gap: 15px;
    }

    .quiz-progress-meta {
        width: auto;
    }

    .quiz-step {
        overflow-y: auto;
        margin: 0;
        padding-top: 35px;
    }

    .quiz-question {
        margin-bottom: 24px;
    }

    .quiz-question h2,
    .result-summary h2,
    .quiz-success h2 {
        font-size: 36px;
    }

    .quiz-question p {
        font-size: 13px;
    }

    .quiz-step[data-step="3"] .quiz-options {
        grid-template-columns: 1fr;
    }

    .quiz-option {
        min-height: 96px;
        padding: 17px;
    }

    .quiz-footer > span {
        display: none;
    }

    .quiz-result {
        padding-bottom: 45px;
    }

    .result-discount {
        align-items: flex-start;
    }

    .result-countdown {
        min-width: 58px;
        font-size: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .hero video {
        display: none;
    }

    .cta-balls {
        display: none;
    }
}
