/* Shared responsive styles for the High Performance and Baby Tennis pages. */

.dnap-page {
    --dnap-blue: #1717c9;
    --dnap-blue-dark: #0a0a73;
    --dnap-navy: #0b123f;
    --dnap-sky: #55c5f0;
    --dnap-lime: #c8f000;
    --dnap-coral: #ff7065;
    --dnap-cream: #fbfbf1;
    --dnap-ice: #eef9fe;
    --dnap-white: #ffffff;
    --dnap-ink: #171a2b;
    --dnap-muted: #60677b;
    --dnap-line: #dce2eb;
    --dnap-radius: 30px;
    color: var(--dnap-ink);
    background: var(--dnap-white);
    font-family: "Archivo", Arial, sans-serif;
    overflow: hidden;
}

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

.dnap-page h1,
.dnap-page h2,
.dnap-page h3,
.dnap-page p,
.dnap-page ul,
.dnap-page ol,
.dnap-page dl,
.dnap-page dd { margin-top: 0; }

.dnap-page h1,
.dnap-page h2,
.dnap-page h3 {
    color: inherit;
    font-family: "Exo", "Archivo", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.08;
}

.dnap-page p,
.dnap-page li,
.dnap-page dt,
.dnap-page dd {
    font-size: 17px;
    line-height: 1.65;
}

.dnap-shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.dnap-kicker,
.dnap-page .dnap-kicker {
    margin-bottom: 16px;
    color: var(--dnap-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.dnap-section {
    padding: 112px 0;
    scroll-margin-top: 100px;
}

.dnap-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: 64px;
    margin-bottom: 54px;
}

.dnap-section-heading h2,
.dnap-split-heading > div:first-child h2,
.dnap-contact h2,
.dnap-play-values h2 {
    margin-bottom: 0;
    font-size: clamp(36px, 5vw, 62px);
    letter-spacing: -0.04em;
}

.dnap-section-heading > p,
.dnap-split-heading > div:first-child > p:last-child {
    margin-bottom: 4px;
    color: var(--dnap-muted);
}

.dnap-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.dnap-button:hover,
.dnap-button:focus-visible { transform: translateY(-2px); text-decoration: none; }
.dnap-button:focus-visible { outline: 3px solid var(--dnap-lime); outline-offset: 4px; }
.dnap-button--primary { color: var(--dnap-navy); background: var(--dnap-lime); }
.dnap-button--primary:hover,
.dnap-button--primary:focus-visible { color: var(--dnap-navy); background: #dcff45; }
.dnap-button--ghost { color: var(--dnap-white); border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.06); }
.dnap-button--ghost:hover,
.dnap-button--ghost:focus-visible { color: var(--dnap-white); border-color: var(--dnap-white); background: rgba(255,255,255,.13); }
.dnap-button--dark { color: var(--dnap-white); background: var(--dnap-navy); }
.dnap-button--dark:hover,
.dnap-button--dark:focus-visible { color: var(--dnap-white); background: var(--dnap-blue); }

/* Shared hero */
.dnap-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 86px 0 92px;
    color: var(--dnap-white);
    background:
        radial-gradient(circle at 12% 12%, rgba(85,197,240,.3), transparent 32%),
        linear-gradient(125deg, var(--dnap-navy) 0%, var(--dnap-blue-dark) 48%, var(--dnap-blue) 100%);
}

.dnap-high-performance .dnap-hero {
    background:
        radial-gradient(circle at 15% 12%, rgba(200,240,0,.18), transparent 31%),
        linear-gradient(125deg, #0b123f 0%, #15175e 55%, #1717c9 100%);
}

.dnap-hero::after {
    position: absolute;
    inset: auto -4% -90px 46%;
    height: 180px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 100% 0 0 0;
    content: "";
    transform: rotate(-5deg);
}

.dnap-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
    align-items: center;
    gap: 74px;
}

.dnap-hero .dnap-kicker { color: var(--dnap-lime); }

.dnap-hero h1 {
    max-width: 800px;
    margin-bottom: 24px;
    color: var(--dnap-white);
    font-size: clamp(50px, 7vw, 88px);
    letter-spacing: -0.055em;
}

.dnap-hero h1 span { display: block; color: var(--dnap-lime); }
.dnap-baby-tennis .dnap-hero h1 span { color: var(--dnap-sky); }

.dnap-hero__intro {
    max-width: 660px;
    margin-bottom: 34px;
    color: rgba(255,255,255,.82);
    font-size: clamp(18px, 2vw, 22px) !important;
}

.dnap-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.dnap-hero__visual {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
}

.dnap-logo-frame {
    position: relative;
    z-index: 2;
    width: min(315px, 78vw);
    padding: 18px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    box-shadow: 0 34px 90px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
}

.dnap-logo-frame img { display: block; width: 100%; height: auto; border-radius: 50%; }

.dnap-orbit {
    position: absolute;
    border: 1px solid rgba(200,240,0,.35);
    border-radius: 50%;
}

.dnap-orbit::after {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--dnap-lime);
    box-shadow: 0 0 24px rgba(200,240,0,.55);
    content: "";
}

.dnap-orbit--one { width: 390px; height: 390px; transform: rotate(18deg); }
.dnap-orbit--one::after { top: 42px; right: 35px; }
.dnap-orbit--two { width: 460px; height: 260px; transform: rotate(-25deg); }
.dnap-orbit--two::after { bottom: 24px; left: 68px; width: 14px; height: 14px; }

.dnap-stat-pill {
    position: absolute;
    z-index: 3;
    right: -18px;
    bottom: 12px;
    display: flex;
    min-width: 180px;
    align-items: center;
    gap: 12px;
    padding: 17px 20px;
    border-radius: 18px;
    color: var(--dnap-navy);
    background: var(--dnap-lime);
    box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.dnap-stat-pill strong { font-family: "Exo", sans-serif; font-size: 38px; line-height: 1; }
.dnap-stat-pill span { font-size: 12px; font-weight: 800; line-height: 1.3; text-transform: uppercase; }

.dnap-editor-content { padding: 56px 0 0; }
.dnap-prose { max-width: 820px; }
.dnap-prose > *:last-child { margin-bottom: 0; }

/* High Performance overview */
.dnap-overview { background: var(--dnap-cream); }

.dnap-price { min-width: 230px; text-align: right; }
.dnap-price strong,
.dnap-price span { display: block; }
.dnap-price strong { color: var(--dnap-blue); font-family: "Exo", sans-serif; font-size: 58px; font-weight: 800; line-height: 1; }
.dnap-price span { margin-top: 7px; color: var(--dnap-muted); font-size: 14px; font-weight: 800; }

.dnap-overview-grid { display: grid; grid-template-columns: minmax(330px,.82fr) minmax(0,1.18fr); gap: 24px; }

.dnap-panel {
    padding: 40px;
    border: 1px solid var(--dnap-line);
    border-radius: var(--dnap-radius);
    background: var(--dnap-white);
    box-shadow: 0 22px 70px rgba(11,18,63,.08);
}

.dnap-panel--accent { border: 0; background: var(--dnap-lime); box-shadow: none; }
.dnap-panel h3 { margin-bottom: 24px; color: var(--dnap-navy); font-size: 26px; }

.dnap-facts { display: grid; margin-bottom: 40px; }
.dnap-facts > div { padding: 15px 0; border-bottom: 1px solid rgba(11,18,63,.15); }
.dnap-facts > div:first-child { padding-top: 0; }
.dnap-facts dt { margin-bottom: 3px; color: rgba(11,18,63,.68); font-size: 12px; font-weight: 800; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
.dnap-facts dd { margin-bottom: 0; color: var(--dnap-navy); font-weight: 750; line-height: 1.4; }

.dnap-benefits ul,
.dnap-panel--details ul { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.dnap-benefits li,
.dnap-panel--details li { position: relative; padding-left: 31px; }
.dnap-benefits li::before,
.dnap-panel--details li::before {
    position: absolute;
    top: .55em;
    left: 1px;
    width: 12px;
    height: 12px;
    border: 3px solid var(--dnap-blue);
    border-radius: 50%;
    background: var(--dnap-white);
    content: "";
}

.dnap-notice {
    margin: 30px 0 0;
    padding: 17px 20px;
    border-left: 4px solid var(--dnap-lime);
    border-radius: 0 12px 12px 0;
    color: var(--dnap-navy);
    background: #f5f8ee;
    font-size: 15px !important;
}

/* Requirements */
.dnap-requirements { background: var(--dnap-ice); }
.dnap-split-heading { display: grid; grid-template-columns: minmax(260px,.7fr) minmax(0,1.3fr); align-items: start; gap: 90px; }
.dnap-split-heading > div:first-child { position: sticky; top: 120px; }
.dnap-split-heading > div:first-child h2 { margin-bottom: 24px; }
.dnap-requirement-list { display: grid; }
.dnap-requirement-list article { display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 18px; padding: 28px 0; border-top: 1px solid rgba(11,18,63,.14); }
.dnap-requirement-list article:last-child { border-bottom: 1px solid rgba(11,18,63,.14); }
.dnap-requirement-list article > span { padding-top: 3px; color: var(--dnap-blue); font-family: "Exo", sans-serif; font-size: 13px; font-weight: 800; }
.dnap-requirement-list h3 { margin-bottom: 8px; color: var(--dnap-navy); font-size: 21px; }
.dnap-requirement-list p { margin-bottom: 0; color: var(--dnap-muted); }

/* Policies */
.dnap-policies {
    color: var(--dnap-white);
    background: radial-gradient(circle at 100% 0, rgba(85,197,240,.2), transparent 30%), var(--dnap-navy);
}

.dnap-section-heading--light h2 { color: var(--dnap-white); }
.dnap-section-heading--light .dnap-kicker { color: var(--dnap-lime); }
.dnap-section-heading--light > p { color: rgba(255,255,255,.68); }

.dnap-policy-layout { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: start; gap: 24px; }
.dnap-policy-card { padding: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--dnap-radius); background: rgba(255,255,255,.07); }
.dnap-policy-card--wide { grid-column: 1 / -1; }
.dnap-policy-card h3 { margin-bottom: 28px; color: var(--dnap-white); font-size: clamp(26px,3vw,36px); }
.dnap-policy-card p,
.dnap-policy-card li { color: rgba(255,255,255,.77); font-size: 15px; }
.dnap-policy-card p:last-child { margin-bottom: 0; }
.dnap-policy-card strong { color: var(--dnap-white); }
.dnap-policy-card ol { display: grid; gap: 10px; padding-left: 23px; }
.dnap-policy-card ol li { list-style: lower-alpha outside; }

/* Baby Tennis */
.dnap-hero--playful {
    background:
        radial-gradient(circle at 15% 15%, rgba(85,197,240,.34), transparent 32%),
        linear-gradient(135deg, #0b123f 0%, #1717c9 72%, #2424e4 100%);
}

.dnap-free-lesson {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: -8px 0 28px;
    padding: 11px 18px;
    border: 2px dashed rgba(255,255,255,.9);
    border-radius: 999px;
    color: var(--dnap-white);
    background: var(--dnap-coral);
    transform: rotate(-2deg);
}
.dnap-free-lesson span { color: var(--dnap-lime); font-size: 20px; }
.dnap-free-lesson strong { font-size: 17px; }

.dnap-bounce-ball {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: var(--dnap-lime);
    box-shadow: inset -10px -12px 0 rgba(11,18,63,.11), 0 18px 40px rgba(0,0,0,.18);
}
.dnap-bounce-ball::before,
.dnap-bounce-ball::after { position: absolute; inset: 15% 45%; width: 8%; border-radius: 50%; background: var(--dnap-blue); content: ""; }
.dnap-bounce-ball::after { inset: 45% 15%; width: 70%; height: 8%; }
.dnap-bounce-ball--one { top: 6px; right: -8px; width: 92px; height: 92px; transform: rotate(24deg); }
.dnap-bounce-ball--two { bottom: 2px; left: -16px; width: 68px; height: 68px; transform: rotate(-12deg); }
.dnap-bounce-ball--three { top: 55%; right: -35px; width: 38px; height: 38px; opacity: .82; }

.dnap-little-aces { background: var(--dnap-cream); }
.dnap-fact-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.dnap-fact-card { min-height: 240px; padding: 32px; border: 1px solid var(--dnap-line); border-radius: 24px; background: var(--dnap-white); box-shadow: 0 18px 55px rgba(11,18,63,.08); }
.dnap-fact-card > p { display: inline-block; margin-bottom: 28px; padding: 7px 12px; border-radius: 999px; color: var(--dnap-white); background: var(--dnap-coral); font-size: 12px; font-weight: 800; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.dnap-fact-card h3 { margin-bottom: 12px; color: var(--dnap-navy); font-size: 28px; }
.dnap-fact-card span { color: var(--dnap-muted); font-size: 15px; line-height: 1.5; }

.dnap-rate-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; margin-top: 20px; }
.dnap-rate-card { padding: 34px 38px; border-radius: 24px; color: var(--dnap-navy); }
.dnap-rate-card--monthly { background: var(--dnap-lime); }
.dnap-rate-card--drop-in { background: var(--dnap-sky); }
.dnap-rate-card > p:first-child { margin-bottom: 12px; font-size: 12px; font-weight: 800; letter-spacing: .1em; line-height: 1.2; text-transform: uppercase; }
.dnap-rate-card h3 { display: flex; align-items: baseline; margin-bottom: 10px; }
.dnap-rate-card h3 strong { font-size: 54px; line-height: 1; }
.dnap-rate-card h3 span { font-size: 18px; }
.dnap-rate-card > p:last-child { margin-bottom: 0; font-size: 15px; font-weight: 700; }

.dnap-play-values { padding: 80px 0; color: var(--dnap-white); background: var(--dnap-blue); }
.dnap-play-values__inner { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); align-items: center; gap: 64px; }
.dnap-play-values .dnap-kicker { color: var(--dnap-lime); }
.dnap-play-values h2 { color: var(--dnap-white); }
.dnap-value-chips { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.dnap-value-chips span { padding: 13px 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: var(--dnap-white); background: rgba(255,255,255,.08); font-weight: 800; }

/* Contact CTA */
.dnap-contact { padding: 76px 0; background: var(--dnap-lime); }
.dnap-contact__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.dnap-contact .dnap-kicker { margin-bottom: 10px; color: var(--dnap-blue); }
.dnap-contact h2 { max-width: 780px; color: var(--dnap-navy); font-size: clamp(32px,4vw,50px); }
.dnap-contact p:last-child { margin: 15px 0 0; color: rgba(11,18,63,.75); }
.dnap-contact__actions { display: flex; flex: 0 0 auto; align-items: center; flex-direction: column; gap: 12px; }
.dnap-text-link { color: var(--dnap-navy); font-size: 15px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.dnap-text-link:hover,
.dnap-text-link:focus-visible { color: var(--dnap-blue); }

@media (max-width: 991px) {
    .dnap-section { padding: 86px 0; }
    .dnap-hero { min-height: auto; padding: 76px 0; }
    .dnap-hero__grid { grid-template-columns: minmax(0,1fr) 280px; gap: 34px; }
    .dnap-hero__visual { min-height: 340px; }
    .dnap-logo-frame { width: 245px; }
    .dnap-orbit--one { width: 310px; height: 310px; }
    .dnap-orbit--two { width: 350px; height: 220px; }
    .dnap-overview-grid,
    .dnap-split-heading { grid-template-columns: 1fr; }
    .dnap-split-heading { gap: 48px; }
    .dnap-split-heading > div:first-child { position: static; max-width: 680px; }
    .dnap-play-values__inner { grid-template-columns: 1fr; gap: 34px; }
    .dnap-value-chips { justify-content: flex-start; }
}

@media (max-width: 767px) {
    .dnap-shell { width: min(100% - 36px,620px); }
    .dnap-page p,
    .dnap-page li,
    .dnap-page dt,
    .dnap-page dd { font-size: 16px; }
    .dnap-section { padding: 72px 0; }
    .dnap-section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 38px; }
    .dnap-hero { padding: 64px 0 70px; }
    .dnap-hero__grid { grid-template-columns: 1fr; }
    .dnap-hero__visual { min-height: 260px; justify-content: start; padding: 12px 0 0; }
    .dnap-logo-frame { width: 190px; padding: 11px; }
    .dnap-orbit--one { left: -24px; width: 250px; height: 250px; }
    .dnap-orbit--two { left: -20px; width: 290px; height: 170px; }
    .dnap-stat-pill { right: auto; bottom: -10px; left: 150px; min-width: 164px; }
    .dnap-price { min-width: 0; text-align: left; }
    .dnap-price strong { font-size: 48px; }
    .dnap-panel { padding: 30px 26px; }
    .dnap-policy-layout,
    .dnap-fact-card-grid,
    .dnap-rate-grid { grid-template-columns: 1fr; }
    .dnap-policy-card--wide { grid-column: auto; }
    .dnap-policy-card { padding: 30px 26px; }
    .dnap-fact-card { min-height: 0; padding: 28px; }
    .dnap-contact__inner { align-items: flex-start; flex-direction: column; }
    .dnap-contact__actions { width: 100%; align-items: flex-start; }
    .dnap-bounce-ball--one { right: auto; left: 170px; width: 70px; height: 70px; }
    .dnap-bounce-ball--three { right: auto; left: 245px; }
}

@media (max-width: 479px) {
    .dnap-shell { width: min(100% - 28px,620px); }
    .dnap-hero h1 { font-size: 46px; }
    .dnap-hero__actions,
    .dnap-button { width: 100%; }
    .dnap-stat-pill { left: 132px; min-width: 150px; }
    .dnap-requirement-list article { grid-template-columns: 36px minmax(0,1fr); gap: 10px; }
    .dnap-rate-card { padding: 28px; }
    .dnap-rate-card h3 strong { font-size: 48px; }
}

@media (prefers-reduced-motion: reduce) {
    .dnap-page *,
    .dnap-page *::before,
    .dnap-page *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
