/*
 * Winn Media Group - Site Styles
 * Shared components first, followed by page-scoped sections.
 * Edit this file to update presentation across the public website.
 */


/* ================================================================
   Shared site chrome: header, navigation, buttons and footer
   ================================================================ */
:root {
    color-scheme: dark;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: linear-gradient(to bottom, rgba(8, 8, 10, 0.96), rgba(8, 8, 10, 0.78));
    backdrop-filter: blur(18px);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.site-header .nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header .brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.site-header .brand img {
    width: 54px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.12));
}

.site-header .brand-copy {
    display: grid;
    line-height: 1.08;
}

.site-header .brand-copy strong {
    font-size: 0.96rem;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.site-header .brand-copy span {
    margin-top: 4px;
    color: #a9a9b2;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav a:not(.button) {
    padding: 9px 12px;
    border-radius: 10px;
    color: #d9d9df;
    font-size: 0.92rem;
    transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:not(.button):hover,
.desktop-nav a:not(.button):focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
    display: none;
    padding: 0 0 18px;
}

.mobile-nav-inner {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(16, 16, 20, 0.98);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
}

.mobile-nav a:not(.button) {
    padding: 12px 13px;
    border-radius: 10px;
    color: #e4e4e9;
}

.mobile-nav a:not(.button):hover { background: rgba(255, 255, 255, 0.06); }

.site-footer {
    padding: 64px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.site-footer .footer-content {
    display: grid;
    justify-items: center;
    gap: 22px;
}

.site-footer .footer-logo {
    display: block;
    width: min(100%, 310px);
}

.site-footer .footer-logo img {
    width: 100%;
    height: auto;
}

.site-footer .footer-copy {
    max-width: 720px;
    margin: 0;
    color: #a9a9b2;
}

.site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
}

.site-footer .footer-links a {
    color: #d9d9df;
    font-size: 0.92rem;
}

.site-footer .footer-links a:hover { color: #ff4a9a; }

.site-footer .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #85858f;
    font-size: 0.82rem;
}

.maintenance-header {
    position: relative;
    z-index: 10;
    padding: 26px 0;
}

.maintenance-header .header-row,
.maintenance-footer .footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.maintenance-header .brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.maintenance-header .brand img {
    width: 60px;
    height: 42px;
    object-fit: contain;
}

.maintenance-header .brand-copy { display: grid; line-height: 1.05; }
.maintenance-header .brand-copy strong { font-size: .98rem; letter-spacing: .045em; text-transform: uppercase; }
.maintenance-header .brand-copy span { margin-top: 5px; color: #aaaab4; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }

.maintenance-footer { padding: 24px 0 30px; color: #aaaab4; font-size: .88rem; }
.maintenance-footer a:hover { color: #ff4a9a; }

@media (max-width: 820px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    .mobile-nav.open { display: block; }
}

@media (max-width: 560px) {
    .site-header .brand-copy span { display: none; }
    .site-footer { padding-top: 50px; }
    .maintenance-header .brand-copy span { display: none; }
    .maintenance-header .portal-link { padding-inline: 13px; font-size: .8rem; }
    .maintenance-footer .footer-row { align-items: flex-start; flex-direction: column; }
}


/* ================================================================
   Homepage
   ================================================================ */

        html.page-home-root {
            --bg: #08080a;
            --bg-soft: #101014;
            --panel: rgba(255, 255, 255, 0.045);
            --panel-strong: rgba(255, 255, 255, 0.075);
            --line: rgba(255, 255, 255, 0.11);
            --text: #f7f7f9;
            --muted: #a9a9b2;
            --pink: #ff2f87;
            --pink-bright: #ff4a9a;
            --pink-deep: #c90058;
            --success: #52e0a4;
            --shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
            --radius-lg: 30px;
            --radius-md: 22px;
            --radius-sm: 14px;
            --container: 1180px;
            --font-brand: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }

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

        html.page-home-root {
            scroll-behavior: smooth;
            scroll-padding-top: 96px;
        }

        body.page-home {
            margin: 0;
            min-width: 320px;
            overflow-x: hidden;
            background:
                radial-gradient(circle at 78% 9%, rgba(255, 47, 135, 0.16), transparent 27rem),
                radial-gradient(circle at 10% 45%, rgba(255, 47, 135, 0.07), transparent 22rem),
                var(--bg);
            color: var(--text);
            font-family: var(--font-brand);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        body.page-home.menu-open {
            overflow: hidden;
        }

        body.page-home a {
            color: inherit;
            text-decoration: none;
        }

        body.page-home img {
            display: block;
            max-width: 100%;
        }

        body.page-home button,
body.page-home input,
body.page-home textarea {
            font: inherit;
        }

        body.page-home .container {
            width: min(calc(100% - 40px), var(--container));
            margin-inline: auto;
        }

        body.page-home .site-header {
            position: fixed;
            inset: 0 0 auto;
            z-index: 1000;
            border-bottom: 1px solid transparent;
            background: linear-gradient(to bottom, rgba(8, 8, 10, 0.93), rgba(8, 8, 10, 0.72));
            backdrop-filter: blur(18px);
            transition: border-color 180ms ease, box-shadow 180ms ease;
        }

        body.page-home .site-header.scrolled {
            border-color: var(--line);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
        }

        body.page-home .nav-wrap {
            min-height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        body.page-home .brand {
            display: inline-flex;
            align-items: center;
            gap: 13px;
            min-width: 0;
        }

        body.page-home .brand img {
            width: 54px;
            height: 38px;
            object-fit: contain;
            filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.12));
        }

        body.page-home .brand-copy {
            display: grid;
            line-height: 1.08;
        }

        body.page-home .brand-copy strong {
            font-family: var(--font-brand);
            font-size: 0.96rem;
            font-weight: 900;
            letter-spacing: 0.045em;
            text-transform: uppercase;
        }

        body.page-home .brand-copy span {
            margin-top: 4px;
            color: var(--muted);
            font-family: var(--font-brand);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.11em;
            text-transform: uppercase;
        }

        body.page-home .desktop-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        body.page-home .desktop-nav a:not(.button) {
            padding: 9px 12px;
            border-radius: 10px;
            color: #d9d9df;
            font-size: 0.92rem;
            transition: color 160ms ease, background 160ms ease;
        }

        body.page-home .desktop-nav a:not(.button):hover,
body.page-home .desktop-nav a:not(.button):focus-visible {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }

        body.page-home .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 48px;
            padding: 0 20px;
            border: 1px solid transparent;
            border-radius: 999px;
            cursor: pointer;
            font-weight: 750;
            letter-spacing: -0.01em;
            transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease, background 170ms ease;
        }

        body.page-home .button:hover {
            transform: translateY(-2px);
        }

        body.page-home .button-primary {
            color: #fff;
            background: linear-gradient(135deg, var(--pink-bright), var(--pink-deep));
            box-shadow: 0 12px 35px rgba(255, 47, 135, 0.28);
        }

        body.page-home .button-primary:hover {
            box-shadow: 0 16px 44px rgba(255, 47, 135, 0.4);
        }

        body.page-home .button-secondary {
            color: #fff;
            border-color: var(--line);
            background: rgba(255, 255, 255, 0.035);
        }

        body.page-home .button-secondary:hover {
            border-color: rgba(255, 47, 135, 0.48);
            background: rgba(255, 47, 135, 0.08);
        }

        body.page-home .menu-toggle {
            display: none;
            width: 46px;
            height: 46px;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.04);
            color: #fff;
            cursor: pointer;
        }

        body.page-home .menu-toggle span,
body.page-home .menu-toggle::before,
body.page-home .menu-toggle::after {
            content: "";
            display: block;
            width: 20px;
            height: 2px;
            margin: 4px auto;
            border-radius: 999px;
            background: currentColor;
            transition: transform 180ms ease, opacity 180ms ease;
        }

        body.page-home .menu-toggle[aria-expanded="true"] span {
            opacity: 0;
        }

        body.page-home .menu-toggle[aria-expanded="true"]::before {
            transform: translateY(6px) rotate(45deg);
        }

        body.page-home .menu-toggle[aria-expanded="true"]::after {
            transform: translateY(-6px) rotate(-45deg);
        }

        body.page-home .mobile-nav {
            display: none;
            padding: 0 0 18px;
        }

        body.page-home .mobile-nav-inner {
            display: grid;
            gap: 8px;
            padding: 14px;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: #111116;
            box-shadow: var(--shadow);
        }

        body.page-home .mobile-nav a {
            padding: 12px 14px;
            border-radius: 12px;
        }

        body.page-home .mobile-nav a:not(.button):hover {
            background: rgba(255, 255, 255, 0.05);
        }

        body.page-home .hero {
            position: relative;
            padding: 156px 0 92px;
            min-height: 780px;
            display: grid;
            align-items: center;
        }

        body.page-home .hero::before {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 220px;
            pointer-events: none;
            background:
                linear-gradient(to bottom, transparent, var(--bg)),
                repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.025) 80px),
                repeating-linear-gradient(0deg, transparent 0 79px, rgba(255, 255, 255, 0.025) 80px);
            mask-image: linear-gradient(to bottom, transparent, black);
        }

        body.page-home .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
            align-items: center;
            gap: clamp(46px, 8vw, 100px);
        }

        body.page-home .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin: 0 0 20px;
            color: var(--pink-bright);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        body.page-home .eyebrow::before {
            content: "";
            width: 26px;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            box-shadow: 0 0 14px currentColor;
        }

        body.page-home h1,
body.page-home h2,
body.page-home h3,
body.page-home p {
            margin-top: 0;
        }

        body.page-home h1,
body.page-home h2,
body.page-home h3,
body.page-home .brand-copy strong,
body.page-home .eyebrow,
body.page-home .button {
            font-family: var(--font-brand);
        }

        body.page-home h1,
body.page-home h2,
body.page-home h3 {
            font-weight: 800;
        }

        body.page-home h1 {
            max-width: 760px;
            margin-bottom: 24px;
            font-size: clamp(3.55rem, 8vw, 6.8rem);
            line-height: 0.91;
            letter-spacing: -0.07em;
        }

        body.page-home h1 .accent {
            color: var(--pink);
            text-shadow: 0 0 38px rgba(255, 47, 135, 0.24);
        }

        body.page-home .brand-tagline {
            font-family: var(--font-brand);
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        body.page-home .brand-tagline strong {
            font-weight: 700;
        }

        body.page-home .hero-copy > p:not(.eyebrow) {
            max-width: 635px;
            margin-bottom: 30px;
            color: var(--muted);
            font-size: clamp(1rem, 1.6vw, 1.17rem);
        }

        body.page-home .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        body.page-home .hero-proof {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
            margin-top: 34px;
            color: #d7d7dc;
            font-size: 0.88rem;
        }

        body.page-home .hero-proof span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        body.page-home .hero-proof span::before {
            content: "✓";
            display: inline-grid;
            place-items: center;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            color: #07130e;
            background: var(--success);
            font-size: 0.72rem;
            font-weight: 900;
        }

        body.page-home .hero-visual {
            position: relative;
            min-height: 470px;
            display: grid;
            place-items: center;
        }

        body.page-home .orbit {
            position: absolute;
            width: min(33vw, 430px);
            aspect-ratio: 1;
            border: 2px solid var(--pink);
            border-radius: 50%;
            background:
                radial-gradient(circle at 50% 45%, rgba(255, 47, 135, 0.13), rgba(255, 47, 135, 0.02) 50%, transparent 70%);
            box-shadow:
                0 0 16px rgba(255, 47, 135, 0.95),
                0 0 55px rgba(255, 47, 135, 0.48),
                inset 0 0 48px rgba(255, 47, 135, 0.14);
            animation: pulse 4s ease-in-out infinite;
        }

        body.page-home .orbit::before,
body.page-home .orbit::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(255, 47, 135, 0.25);
        }

        body.page-home .orbit::before { inset: -32px; }
        body.page-home .orbit::after { inset: 32px; }

        body.page-home .hero-mark {
            position: relative;
            z-index: 2;
            width: min(25vw, 310px);
            filter:
                drop-shadow(0 18px 22px rgba(0, 0, 0, 0.62))
                drop-shadow(0 0 15px rgba(255, 255, 255, 0.12));
        }

        body.page-home .float-card {
            position: absolute;
            z-index: 3;
            min-width: 170px;
            padding: 14px 16px;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: rgba(13, 13, 17, 0.82);
            backdrop-filter: blur(14px);
            box-shadow: var(--shadow);
        }

        body.page-home .float-card strong {
            display: block;
            margin-bottom: 2px;
            font-size: 0.92rem;
        }

        body.page-home .float-card span {
            color: var(--muted);
            font-size: 0.76rem;
        }

        body.page-home .float-card.one { top: 11%; right: 0; }
        body.page-home .float-card.two { left: 0; bottom: 13%; }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 16px rgba(255, 47, 135, 0.92), 0 0 55px rgba(255, 47, 135, 0.45), inset 0 0 48px rgba(255, 47, 135, 0.14); }
            50% { transform: scale(1.018); box-shadow: 0 0 24px rgba(255, 47, 135, 1), 0 0 80px rgba(255, 47, 135, 0.6), inset 0 0 58px rgba(255, 47, 135, 0.2); }
        }

        body.page-home section {
            position: relative;
            padding: 104px 0;
        }

        body.page-home .section-head {
            display: grid;
            grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
            justify-content: space-between;
            align-items: end;
            gap: 40px;
            margin-bottom: 44px;
        }

        body.page-home .section-head h2 {
            margin-bottom: 0;
            font-size: clamp(2.35rem, 5vw, 4.3rem);
            line-height: 1;
            letter-spacing: -0.055em;
        }

        body.page-home .section-head p {
            margin-bottom: 0;
            color: var(--muted);
        }

        body.page-home .accent-text {
            color: var(--pink);
        }

        body.page-home .services {
            border-top: 1px solid rgba(255, 255, 255, 0.055);
        }

        body.page-home .service-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        body.page-home .service-card {
            position: relative;
            min-height: 340px;
            overflow: hidden;
            padding: 26px;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
            transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
        }

        body.page-home .service-card::after {
            content: "";
            position: absolute;
            inset: auto -20% -35% 30%;
            height: 170px;
            border-radius: 50%;
            background: rgba(255, 47, 135, 0.17);
            filter: blur(45px);
            opacity: 0;
            transition: opacity 180ms ease;
        }

        body.page-home .service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 47, 135, 0.42);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 47, 135, 0.035));
        }

        body.page-home .service-card:hover::after { opacity: 1; }

        body.page-home .service-icon {
            position: relative;
            z-index: 1;
            display: grid;
            place-items: center;
            width: 54px;
            height: 54px;
            margin-bottom: 48px;
            border: 1px solid rgba(255, 47, 135, 0.35);
            border-radius: 16px;
            color: #fff;
            background: linear-gradient(145deg, rgba(255, 47, 135, 0.35), rgba(255, 47, 135, 0.1));
            box-shadow: 0 12px 30px rgba(255, 47, 135, 0.16);
            font-size: 1.45rem;
        }

        body.page-home .service-card h3 {
            position: relative;
            z-index: 1;
            margin-bottom: 10px;
            font-size: 1.22rem;
            letter-spacing: -0.025em;
        }

        body.page-home .service-card p {
            position: relative;
            z-index: 1;
            margin-bottom: 22px;
            color: var(--muted);
            font-size: 0.94rem;
        }

        body.page-home .text-link {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--pink-bright);
            font-size: 0.9rem;
            font-weight: 800;
        }

        body.page-home .text-link span {
            transition: transform 170ms ease;
        }

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

        body.page-home .marquee-wrap {
            padding: 24px 0;
            overflow: hidden;
            border-block: 1px solid var(--line);
            background: rgba(255, 255, 255, 0.025);
        }

        body.page-home .marquee {
            display: flex;
            width: max-content;
            animation: marquee 24s linear infinite;
        }

        body.page-home .marquee-group {
            display: flex;
            align-items: center;
            gap: 32px;
            padding-right: 32px;
        }

        body.page-home .marquee-item {
            display: flex;
            align-items: center;
            gap: 32px;
            color: #d7d7dc;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        body.page-home .marquee-item::after {
            content: "✦";
            color: var(--pink);
        }

        @keyframes marquee {
            to { transform: translateX(-50%); }
        }

        body.page-home .feature-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
            gap: 18px;
        }

        body.page-home .feature-panel {
            position: relative;
            overflow: hidden;
            min-height: 500px;
            padding: clamp(30px, 5vw, 56px);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background:
                radial-gradient(circle at 90% 20%, rgba(255, 47, 135, 0.18), transparent 17rem),
                linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
        }

        body.page-home .feature-panel h2 {
            max-width: 680px;
            margin-bottom: 22px;
            font-size: clamp(2.55rem, 5vw, 4.8rem);
            line-height: 0.98;
            letter-spacing: -0.06em;
        }

        body.page-home .feature-panel > p {
            max-width: 620px;
            color: var(--muted);
            font-size: 1.05rem;
        }

        body.page-home .feature-tags {
            position: absolute;
            inset: auto 42px 42px;
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
        }

        body.page-home .feature-tags span {
            padding: 9px 13px;
            border: 1px solid var(--line);
            border-radius: 999px;
            color: #d8d8dd;
            background: rgba(0, 0, 0, 0.2);
            font-size: 0.8rem;
        }

        body.page-home .benefit-stack {
            display: grid;
            gap: 18px;
        }

        body.page-home .benefit-card {
            min-height: 155px;
            padding: 26px;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            background: var(--panel);
        }

        body.page-home .benefit-card small {
            display: inline-block;
            margin-bottom: 12px;
            color: var(--pink-bright);
            font-weight: 850;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        body.page-home .benefit-card h3 {
            margin-bottom: 8px;
            font-size: 1.26rem;
        }

        body.page-home .benefit-card p {
            margin-bottom: 0;
            color: var(--muted);
            font-size: 0.93rem;
        }

        body.page-home .process {
            overflow: hidden;
        }

        body.page-home .process::before {
            content: "";
            position: absolute;
            width: 520px;
            height: 520px;
            right: -250px;
            top: 80px;
            border-radius: 50%;
            background: rgba(255, 47, 135, 0.1);
            filter: blur(90px);
        }

        body.page-home .process-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        body.page-home .process-card {
            position: relative;
            min-height: 270px;
            padding: 28px;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.032);
        }

        body.page-home .process-card .number {
            display: inline-grid;
            place-items: center;
            width: 42px;
            height: 42px;
            margin-bottom: 44px;
            border-radius: 50%;
            color: #fff;
            background: var(--pink);
            box-shadow: 0 0 28px rgba(255, 47, 135, 0.35);
            font-weight: 900;
        }

        body.page-home .process-card h3 {
            margin-bottom: 10px;
            font-size: 1.34rem;
        }

        body.page-home .process-card p {
            margin-bottom: 0;
            color: var(--muted);
        }

        body.page-home .cta {
            padding-top: 40px;
        }

        body.page-home .cta-box {
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            gap: 32px;
            min-height: 300px;
            padding: clamp(34px, 7vw, 72px);
            border: 1px solid rgba(255, 47, 135, 0.42);
            border-radius: var(--radius-lg);
            background:
                radial-gradient(circle at 85% 50%, rgba(255, 47, 135, 0.28), transparent 22rem),
                linear-gradient(135deg, rgba(255, 47, 135, 0.11), rgba(255, 255, 255, 0.035));
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
        }

        body.page-home .cta-box::after {
            content: "W";
            position: absolute;
            right: 4%;
            bottom: -42%;
            color: rgba(255, 255, 255, 0.025);
            font: 900 28rem/1 Georgia, serif;
            transform: rotate(-8deg);
            pointer-events: none;
        }

        body.page-home .cta-copy {
            position: relative;
            z-index: 1;
        }

        body.page-home .cta-copy h2 {
            max-width: 760px;
            margin-bottom: 14px;
            font-size: clamp(2.5rem, 5.8vw, 5rem);
            line-height: 0.96;
            letter-spacing: -0.06em;
        }

        body.page-home .cta-copy p {
            max-width: 620px;
            margin-bottom: 0;
            color: #c5c5cc;
        }

        body.page-home .cta-box .button {
            position: relative;
            z-index: 2;
            white-space: nowrap;
        }

        body.page-home footer {
            padding: 70px 0 30px;
        }

        body.page-home .footer-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: end;
            gap: 30px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--line);
        }

        body.page-home .footer-brand p {
            max-width: 500px;
            margin: 20px 0 0;
            color: var(--muted);
        }

        body.page-home .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 12px 24px;
            color: #d8d8dc;
            font-size: 0.9rem;
        }

        body.page-home .footer-links a:hover {
            color: var(--pink-bright);
        }

        body.page-home .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            padding-top: 24px;
            color: #777781;
            font-size: 0.82rem;
        }

        body.page-home .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 650ms ease, transform 650ms ease;
        }

        body.page-home .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        body.page-home :focus-visible {
            outline: 3px solid rgba(255, 47, 135, 0.55);
            outline-offset: 3px;
        }

        @media (max-width: 980px) {
            body.page-home .desktop-nav { display: none; }
            body.page-home .menu-toggle { display: block; }
            body.page-home .mobile-nav.open { display: block; }

            body.page-home .hero {
                padding-top: 132px;
                min-height: auto;
            }

            body.page-home .hero-grid,
body.page-home .feature-grid {
                grid-template-columns: 1fr;
            }

            body.page-home .hero-visual {
                min-height: 430px;
                order: -1;
            }

            body.page-home .orbit {
                width: min(72vw, 390px);
            }

            body.page-home .hero-mark {
                width: min(52vw, 280px);
            }

            body.page-home .service-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            body.page-home .section-head {
                grid-template-columns: 1fr;
                align-items: start;
                gap: 18px;
            }
        }

        @media (max-width: 720px) {
            body.page-home .container {
                width: min(calc(100% - 28px), var(--container));
            }

            body.page-home .brand-copy span { display: none; }
            body.page-home .brand-copy strong { font-size: 0.83rem; }
            body.page-home .brand img { width: 48px; }

            body.page-home .hero {
                padding-bottom: 72px;
            }

            body.page-home .hero-grid { gap: 25px; }
            body.page-home .hero-visual { min-height: 350px; }
            body.page-home .float-card { min-width: 142px; padding: 11px 13px; }
            body.page-home .float-card.one { top: 5%; right: -4px; }
            body.page-home .float-card.two { left: -2px; bottom: 8%; }

            body.page-home h1 {
                font-size: clamp(3.1rem, 17vw, 5rem);
            }

            body.page-home section { padding: 76px 0; }

            body.page-home .service-grid,
body.page-home .process-grid {
                grid-template-columns: 1fr;
            }

            body.page-home .service-card {
                min-height: 280px;
            }

            body.page-home .service-icon {
                margin-bottom: 34px;
            }

            body.page-home .feature-panel {
                min-height: 450px;
            }

            body.page-home .feature-tags {
                inset: auto 28px 28px;
            }

            body.page-home .cta-box {
                grid-template-columns: 1fr;
                min-height: 360px;
                align-items: start;
            }

            body.page-home .cta-box .button {
                justify-self: start;
            }

            body.page-home .footer-grid,
body.page-home .footer-bottom {
                grid-template-columns: 1fr;
                display: grid;
            }

            body.page-home .footer-links {
                justify-content: flex-start;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html.page-home-root { scroll-behavior: auto; }
            body.page-home *,
body.page-home *::before,
body.page-home *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            body.page-home .reveal {
                opacity: 1;
                transform: none;
            }
        }
    

/* ================================================================
   Service detail pages
   ================================================================ */

        html.page-service-root {
            --bg: #08080a;
            --bg-soft: #101014;
            --panel: rgba(255,255,255,.045);
            --line: rgba(255,255,255,.11);
            --text: #f7f7f9;
            --muted: #aaaab3;
            --pink: #ff2f87;
            --pink-bright: #ff4a9a;
            --pink-deep: #c90058;
            --container: 1180px;
            --radius-lg: 30px;
            --radius-md: 22px;
        }

        body.page-service *,
body.page-service *::before,
body.page-service *::after { box-sizing: border-box; }
        html.page-service-root { scroll-behavior: smooth; scroll-padding-top: 90px; }
        body.page-service {
            margin: 0;
            min-width: 320px;
            overflow-x: hidden;
            color: var(--text);
            background:
                radial-gradient(circle at 82% 4%, rgba(255,47,135,.17), transparent 28rem),
                radial-gradient(circle at 5% 48%, rgba(255,47,135,.08), transparent 24rem),
                var(--bg);
            font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
        }
        body.page-service a { color: inherit; text-decoration: none; }
        body.page-service img { display: block; max-width: 100%; }
        body.page-service h1,
body.page-service h2,
body.page-service h3,
body.page-service p { margin-top: 0; }
        body.page-service .container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

        body.page-service .site-header {
            position: fixed;
            inset: 0 0 auto;
            z-index: 50;
            background: rgba(8,8,10,.84);
            border-bottom: 1px solid var(--line);
            backdrop-filter: blur(18px);
        }
        body.page-service .nav-wrap {
            min-height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        body.page-service .brand { display: inline-flex; align-items: center; gap: 13px; }
        body.page-service .brand img { width: 54px; height: 38px; object-fit: contain; }
        body.page-service .brand-copy { display: grid; line-height: 1.05; }
        body.page-service .brand-copy strong { font-size: .95rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
        body.page-service .brand-copy span { margin-top: 5px; color: var(--muted); font-size: .66rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
        body.page-service .nav-links { display: flex; align-items: center; gap: 8px; }
        body.page-service .nav-links > a:not(.button) { padding: 9px 12px; color: #d8d8dd; font-size: .9rem; }
        body.page-service .nav-links > a:not(.button):hover { color: #fff; }

        body.page-service .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 48px;
            padding: 0 20px;
            border: 1px solid transparent;
            border-radius: 999px;
            font-weight: 800;
            transition: .18s ease;
        }
        body.page-service .button:hover { transform: translateY(-2px); }
        body.page-service .button-primary {
            background: linear-gradient(135deg, var(--pink-bright), var(--pink-deep));
            box-shadow: 0 14px 38px rgba(255,47,135,.28);
        }
        body.page-service .button-secondary { border-color: var(--line); background: rgba(255,255,255,.035); }
        body.page-service .button-secondary:hover { border-color: rgba(255,47,135,.5); background: rgba(255,47,135,.08); }

        body.page-service .hero {
            position: relative;
            min-height: 760px;
            padding: 156px 0 96px;
            display: grid;
            align-items: center;
        }
        body.page-service .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 220px;
            background: linear-gradient(to bottom, transparent, var(--bg));
            pointer-events: none;
        }
        body.page-service .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr);
            gap: clamp(44px,8vw,100px);
            align-items: center;
        }
        body.page-service .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            color: var(--pink-bright);
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
        }
        body.page-service .eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; box-shadow: 0 0 14px currentColor; }
        body.page-service h1 {
            max-width: 760px;
            margin-bottom: 24px;
            font-size: clamp(3.4rem,7vw,6.5rem);
            line-height: .94;
            letter-spacing: -.065em;
            font-weight: 900;
        }
        body.page-service .accent { color: var(--pink); text-shadow: 0 0 35px rgba(255,47,135,.2); }
        body.page-service .hero-copy > p:not(.eyebrow) { max-width: 650px; margin-bottom: 30px; color: var(--muted); font-size: clamp(1rem,1.6vw,1.16rem); }
        body.page-service .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
        body.page-service .hero-panel {
            position: relative;
            min-height: 470px;
            display: grid;
            place-items: center;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background:
                radial-gradient(circle at 50% 50%, rgba(255,47,135,.22), transparent 45%),
                linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
            overflow: hidden;
        }
        body.page-service .hero-panel::before,
body.page-service .hero-panel::after {
            content: "";
            position: absolute;
            border: 1px solid rgba(255,47,135,.28);
            border-radius: 50%;
        }
        body.page-service .hero-panel::before { width: 330px; height: 330px; box-shadow: 0 0 55px rgba(255,47,135,.25); }
        body.page-service .hero-panel::after { width: 430px; height: 430px; }
        body.page-service .service-symbol {
            position: relative;
            z-index: 2;
            display: grid;
            place-items: center;
            width: 150px;
            height: 150px;
            border: 1px solid rgba(255,47,135,.5);
            border-radius: 38px;
            background: linear-gradient(145deg, rgba(255,47,135,.48), rgba(255,47,135,.1));
            box-shadow: 0 20px 60px rgba(255,47,135,.25);
            font-size: 4.2rem;
            font-weight: 800;
        }

        body.page-service section { padding: 100px 0; }
        body.page-service .section-head {
            display: grid;
            grid-template-columns: minmax(0,.85fr) minmax(280px,.55fr);
            align-items: end;
            gap: 40px;
            margin-bottom: 42px;
        }
        body.page-service .section-head h2 { margin-bottom: 0; font-size: clamp(2.3rem,5vw,4.2rem); line-height: 1; letter-spacing: -.055em; font-weight: 900; }
        body.page-service .section-head p { margin-bottom: 0; color: var(--muted); }

        body.page-service .highlight-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
        body.page-service .highlight-card {
            min-height: 260px;
            padding: 28px;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
        }
        body.page-service .highlight-card .dot { width: 12px; height: 12px; margin-bottom: 44px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 20px var(--pink); }
        body.page-service .highlight-card h3 { margin-bottom: 10px; font-size: 1.18rem; font-weight: 800; }
        body.page-service .highlight-card p { margin-bottom: 0; color: var(--muted); font-size: .93rem; }

        body.page-service .included-wrap {
            display: grid;
            grid-template-columns: minmax(0,.85fr) minmax(360px,1.15fr);
            gap: 18px;
        }
        body.page-service .included-copy,
body.page-service .included-list {
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background: rgba(255,255,255,.035);
        }
        body.page-service .included-copy { padding: clamp(32px,5vw,58px); }
        body.page-service .included-copy h2 { margin-bottom: 18px; font-size: clamp(2.4rem,5vw,4.4rem); line-height: .98; letter-spacing: -.055em; font-weight: 900; }
        body.page-service .included-copy p { color: var(--muted); margin-bottom: 0; }
        body.page-service .included-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); overflow: hidden; }
        body.page-service .included-item { display: flex; align-items: center; min-height: 112px; padding: 24px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); font-weight: 700; }
        body.page-service .included-item::before { content: "✓"; display: grid; place-items: center; flex: 0 0 28px; width: 28px; height: 28px; margin-right: 12px; border-radius: 50%; color: #fff; background: var(--pink); font-size: .75rem; }
        body.page-service .included-item:nth-child(even) { border-right: 0; }
        body.page-service .included-item:nth-last-child(-n/**/+2) { border-bottom: 0; }

        body.page-service .process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
        body.page-service .process-card { min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.032); }
        body.page-service .process-number { display: inline-block; margin-bottom: 44px; color: var(--pink-bright); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
        body.page-service .process-card h3 { margin-bottom: 10px; font-size: 1.26rem; font-weight: 800; }
        body.page-service .process-card p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

        body.page-service .cta { padding-top: 36px; }
        body.page-service .cta-box {
            display: grid;
            grid-template-columns: minmax(0,1fr) auto;
            align-items: center;
            gap: 32px;
            min-height: 300px;
            padding: clamp(34px,7vw,72px);
            border: 1px solid rgba(255,47,135,.45);
            border-radius: var(--radius-lg);
            background:
                radial-gradient(circle at 88% 50%, rgba(255,47,135,.3), transparent 22rem),
                linear-gradient(135deg, rgba(255,47,135,.12), rgba(255,255,255,.035));
        }
        body.page-service .cta-box h2 { margin-bottom: 14px; font-size: clamp(2.5rem,5vw,4.8rem); line-height: .98; letter-spacing: -.055em; font-weight: 900; }
        body.page-service .cta-box p { max-width: 700px; margin-bottom: 0; color: #c7c7cf; }
        body.page-service .cta-box .button { white-space: nowrap; }

        body.page-service footer { padding: 68px 0 30px; }
        body.page-service .footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: end; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
        body.page-service .footer-grid p { max-width: 520px; margin: 20px 0 0; color: var(--muted); }
        body.page-service .footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 22px; font-size: .88rem; }
        body.page-service .footer-links a:hover { color: var(--pink); }
        body.page-service .footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 22px; color: #777781; font-size: .8rem; }

        body.page-service .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
        body.page-service .reveal.visible { opacity: 1; transform: none; }

        @media (max-width: 980px) {
            body.page-service .nav-links > a:not(.button) { display: none; }
            body.page-service .hero-grid,
body.page-service .included-wrap { grid-template-columns: 1fr; }
            body.page-service .hero-panel { min-height: 390px; order: -1; }
            body.page-service .highlight-grid,
body.page-service .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
            body.page-service .section-head { grid-template-columns: 1fr; align-items: start; gap: 18px; }
        }
        @media (max-width: 680px) {
            body.page-service .container { width: min(calc(100% - 28px), var(--container)); }
            body.page-service .brand-copy span { display: none; }
            body.page-service .nav-links .button { min-height: 42px; padding-inline: 14px; font-size: .78rem; }
            body.page-service .hero { min-height: auto; padding: 126px 0 74px; }
            body.page-service .hero-panel { min-height: 320px; }
            body.page-service .hero-panel::before { width: 240px; height: 240px; }
            body.page-service .hero-panel::after { width: 310px; height: 310px; }
            body.page-service .service-symbol { width: 120px; height: 120px; font-size: 3.3rem; }
            body.page-service h1 { font-size: clamp(3rem,15vw,4.8rem); }
            body.page-service section { padding: 74px 0; }
            body.page-service .highlight-grid,
body.page-service .process-grid,
body.page-service .included-list { grid-template-columns: 1fr; }
            body.page-service .included-item { border-right: 0; border-bottom: 1px solid var(--line) !important; }
            body.page-service .included-item:last-child { border-bottom: 0 !important; }
            body.page-service .cta-box { grid-template-columns: 1fr; }
            body.page-service .cta-box .button { justify-self: start; }
            body.page-service .footer-grid,
body.page-service .footer-bottom { display: grid; }
            body.page-service .footer-links { justify-content: flex-start; }
        }
        @media (prefers-reduced-motion: reduce) {
            html.page-service-root { scroll-behavior: auto; }
            body.page-service *,
body.page-service *::before,
body.page-service *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
            body.page-service .reveal { opacity: 1; transform: none; }
        }
    

/* ================================================================
   Maintenance page
   ================================================================ */

        html.page-maintenance-root {
            --bg: #08080a;
            --panel: rgba(255, 255, 255, 0.055);
            --panel-strong: rgba(255, 255, 255, 0.085);
            --line: rgba(255, 255, 255, 0.12);
            --text: #f7f7f9;
            --muted: #aaaab4;
            --pink: #ff2f87;
            --pink-bright: #ff4a9a;
            --pink-deep: #c90058;
            --container: 1120px;
        }

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

        html.page-maintenance-root {
            min-width: 320px;
            background: var(--bg);
        }

        body.page-maintenance {
            min-height: 100vh;
            margin: 0;
            overflow-x: hidden;
            color: var(--text);
            background:
                radial-gradient(circle at 78% 10%, rgba(255, 47, 135, 0.2), transparent 28rem),
                radial-gradient(circle at 10% 75%, rgba(255, 47, 135, 0.08), transparent 24rem),
                linear-gradient(145deg, #08080a 0%, #0d0d11 55%, #08080a 100%);
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        body.page-maintenance::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            opacity: 0.22;
            background-image:
                linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
            background-size: 54px 54px;
            mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
        }

        body.page-maintenance a {
            color: inherit;
            text-decoration: none;
        }

        body.page-maintenance img {
            display: block;
            max-width: 100%;
        }

        body.page-maintenance .page {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: grid;
            grid-template-rows: auto 1fr auto;
        }

        body.page-maintenance .container {
            width: min(calc(100% - 40px), var(--container));
            margin-inline: auto;
        }

        body.page-maintenance header {
            padding: 26px 0;
        }

        body.page-maintenance .header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        body.page-maintenance .brand {
            display: inline-flex;
            align-items: center;
            gap: 14px;
        }

        body.page-maintenance .brand img {
            width: 60px;
            height: 42px;
            object-fit: contain;
            filter: drop-shadow(0 0 16px rgba(255,255,255,0.12));
        }

        body.page-maintenance .brand-copy {
            display: grid;
            line-height: 1.05;
        }

        body.page-maintenance .brand-copy strong {
            font-size: 0.98rem;
            letter-spacing: 0.045em;
            text-transform: uppercase;
        }

        body.page-maintenance .brand-copy span {
            margin-top: 5px;
            color: var(--muted);
            font-size: 0.7rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        body.page-maintenance .portal-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 17px;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: rgba(255,255,255,0.035);
            font-size: 0.88rem;
            font-weight: 750;
            transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
        }

        body.page-maintenance .portal-link:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 47, 135, 0.55);
            background: rgba(255, 47, 135, 0.09);
        }

        body.page-maintenance main {
            display: grid;
            align-items: center;
            padding: 48px 0 74px;
        }

        body.page-maintenance .hero {
            display: grid;
            grid-template-columns: minmax(0, 1.13fr) minmax(320px, 0.87fr);
            align-items: center;
            gap: clamp(42px, 7vw, 96px);
        }

        body.page-maintenance .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
            color: #ffd5e7;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        body.page-maintenance .eyebrow::before {
            content: "";
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--pink);
            box-shadow: 0 0 0 7px rgba(255,47,135,0.12), 0 0 24px rgba(255,47,135,0.9);
            animation: pulse 2.1s ease-in-out infinite;
        }

        body.page-maintenance h1 {
            max-width: 820px;
            margin: 0;
            font-size: clamp(3.35rem, 7.6vw, 7rem);
            line-height: 0.94;
            letter-spacing: -0.067em;
        }

        body.page-maintenance h1 span {
            color: var(--pink);
            text-shadow: 0 0 35px rgba(255,47,135,0.22);
        }

        body.page-maintenance .lead {
            max-width: 650px;
            margin: 28px 0 0;
            color: #c1c1c9;
            font-size: clamp(1.02rem, 1.8vw, 1.22rem);
        }

        body.page-maintenance .actions {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
            margin-top: 34px;
        }

        body.page-maintenance .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 50px;
            padding: 0 21px;
            border: 1px solid transparent;
            border-radius: 999px;
            font-weight: 800;
            transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
        }

        body.page-maintenance .button:hover {
            transform: translateY(-2px);
        }

        body.page-maintenance .button-primary {
            background: linear-gradient(135deg, var(--pink-bright), var(--pink-deep));
            box-shadow: 0 15px 42px rgba(255,47,135,0.3);
        }

        body.page-maintenance .button-primary:hover {
            box-shadow: 0 18px 50px rgba(255,47,135,0.42);
        }

        body.page-maintenance .button-secondary {
            border-color: var(--line);
            background: rgba(255,255,255,0.035);
        }

        body.page-maintenance .button-secondary:hover {
            border-color: rgba(255,47,135,0.52);
        }

        body.page-maintenance .services {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
            margin-top: 36px;
        }

        body.page-maintenance .services span {
            padding: 8px 12px;
            border: 1px solid var(--line);
            border-radius: 999px;
            color: #c9c9d0;
            background: rgba(255,255,255,0.025);
            font-size: 0.78rem;
            font-weight: 700;
        }

        body.page-maintenance .visual {
            position: relative;
            min-height: 480px;
            display: grid;
            place-items: center;
        }

        body.page-maintenance .orb {
            position: relative;
            width: min(100%, 430px);
            aspect-ratio: 1;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255,47,135,0.7);
            border-radius: 50%;
            background:
                radial-gradient(circle, rgba(255,47,135,0.14), rgba(255,47,135,0.025) 54%, transparent 70%);
            box-shadow:
                inset 0 0 65px rgba(255,47,135,0.11),
                0 0 35px rgba(255,47,135,0.36),
                0 0 120px rgba(255,47,135,0.15);
        }

        body.page-maintenance .orb::before,
body.page-maintenance .orb::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
        }

        body.page-maintenance .orb::before {
            inset: 9%;
        }

        body.page-maintenance .orb::after {
            inset: -7%;
            border-color: rgba(255,47,135,0.1);
        }

        body.page-maintenance .orb img {
            width: 61%;
            filter: drop-shadow(0 16px 22px rgba(0,0,0,0.52));
            animation: float 5s ease-in-out infinite;
        }

        body.page-maintenance .status-card {
            position: absolute;
            right: -5px;
            bottom: 22px;
            width: min(270px, 76%);
            padding: 18px;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: rgba(15,15,19,0.78);
            box-shadow: 0 22px 60px rgba(0,0,0,0.4);
            backdrop-filter: blur(18px);
        }

        body.page-maintenance .status-card strong {
            display: block;
            margin-bottom: 7px;
            font-size: 0.92rem;
        }

        body.page-maintenance .status-card p {
            margin: 0 0 13px;
            color: var(--muted);
            font-size: 0.79rem;
        }

        body.page-maintenance .progress {
            height: 7px;
            overflow: hidden;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
        }

        body.page-maintenance .progress span {
            display: block;
            width: 68%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--pink-deep), var(--pink-bright));
            box-shadow: 0 0 20px rgba(255,47,135,0.72);
            animation: shimmer 3.6s ease-in-out infinite;
        }

        body.page-maintenance footer {
            padding: 23px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.075);
            color: #85858f;
            font-size: 0.8rem;
        }

        body.page-maintenance .footer-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        body.page-maintenance footer a:hover {
            color: #fff;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(0.75); opacity: 0.7; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(-1deg); }
            50% { transform: translateY(-14px) rotate(1deg); }
        }

        @keyframes shimmer {
            0%, 100% { width: 62%; opacity: 0.84; }
            50% { width: 74%; opacity: 1; }
        }

        @media (max-width: 840px) {
            body.page-maintenance .hero {
                grid-template-columns: 1fr;
                text-align: center;
            }

            body.page-maintenance .hero-copy {
                display: grid;
                justify-items: center;
            }

            body.page-maintenance .lead {
                max-width: 620px;
            }

            body.page-maintenance .actions,
body.page-maintenance .services {
                justify-content: center;
            }

            body.page-maintenance .visual {
                min-height: auto;
                padding: 10px 0 32px;
            }

            body.page-maintenance .status-card {
                right: 2%;
            }
        }

        @media (max-width: 560px) {
            body.page-maintenance .container {
                width: min(calc(100% - 28px), var(--container));
            }

            body.page-maintenance header {
                padding: 18px 0;
            }

            body.page-maintenance .brand-copy span {
                display: none;
            }

            body.page-maintenance .portal-link {
                min-height: 40px;
                padding-inline: 13px;
                font-size: 0.78rem;
            }

            body.page-maintenance main {
                padding-top: 28px;
            }

            body.page-maintenance h1 {
                font-size: clamp(3rem, 15.5vw, 4.7rem);
            }

            body.page-maintenance .lead {
                margin-top: 22px;
            }

            body.page-maintenance .actions {
                width: 100%;
            }

            body.page-maintenance .button {
                width: 100%;
            }

            body.page-maintenance .visual {
                margin-top: 8px;
            }

            body.page-maintenance .orb {
                width: 88vw;
                max-width: 380px;
            }

            body.page-maintenance .status-card {
                right: 0;
                bottom: 4px;
            }

            body.page-maintenance .footer-row {
                align-items: flex-start;
                flex-direction: column;
                gap: 8px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            body.page-maintenance *,
body.page-maintenance *::before,
body.page-maintenance *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
            }
        }
    


/* ================================================================
   Final shared footer layout override
   Keeps the same centered footer on home and service pages.
   ================================================================ */
body.page-home .site-footer,
body.page-service .site-footer {
    padding: 64px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

body.page-home .site-footer .footer-content,
body.page-service .site-footer .footer-content {
    display: grid;
    justify-items: center;
    gap: 22px;
}

body.page-home .site-footer .footer-logo,
body.page-service .site-footer .footer-logo {
    display: block;
    width: min(100%, 310px);
}

body.page-home .site-footer .footer-logo img,
body.page-service .site-footer .footer-logo img {
    width: 100%;
    height: auto;
}

body.page-home .site-footer .footer-copy,
body.page-service .site-footer .footer-copy {
    max-width: 720px;
    margin: 0;
    color: #a9a9b2;
}

body.page-home .site-footer .footer-links,
body.page-service .site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    font-size: 0.92rem;
}

body.page-home .site-footer .footer-bottom,
body.page-service .site-footer .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #85858f;
    font-size: 0.82rem;
}


/* ================================================================
   Cloud hosting sales page and self-service checkout
   ================================================================ */
html.page-hosting-root {
    scroll-padding-top: 92px;
}

body.page-hosting .hosting-hero {
    padding-bottom: 86px;
}

body.page-hosting .hosting-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 28px;
    color: #d8d8de;
    font-size: .82rem;
    font-weight: 700;
}

body.page-hosting .hosting-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-hosting .hosting-trust-row span::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    color: #06110c;
    background: #52e0a4;
    font-size: .68rem;
    font-weight: 900;
}

body.page-hosting .hosting-dashboard-preview {
    padding: clamp(24px, 4vw, 46px);
}

body.page-hosting .hosting-dashboard-preview::before,
body.page-hosting .hosting-dashboard-preview::after {
    opacity: .5;
}

body.page-hosting .hosting-preview-window {
    position: relative;
    z-index: 3;
    width: min(100%, 430px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    background: rgba(8,8,10,.88);
    box-shadow: 0 28px 90px rgba(0,0,0,.48), 0 0 50px rgba(255,47,135,.13);
}

body.page-hosting .hosting-preview-top {
    display: flex;
    gap: 7px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.035);
}

body.page-hosting .hosting-preview-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.24);
}

body.page-hosting .hosting-preview-top span:first-child {
    background: var(--pink);
    box-shadow: 0 0 12px rgba(255,47,135,.8);
}

body.page-hosting .hosting-preview-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 26px;
    border-bottom: 1px solid var(--line);
}

body.page-hosting .hosting-preview-status small,
body.page-hosting .hosting-preview-metrics small {
    display: block;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.page-hosting .hosting-preview-status strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8bf0c2;
    font-size: .92rem;
}

body.page-hosting .hosting-preview-status i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #52e0a4;
    box-shadow: 0 0 14px rgba(82,224,164,.85);
}

body.page-hosting .hosting-preview-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-hosting .hosting-preview-metrics div {
    min-height: 104px;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

body.page-hosting .hosting-preview-metrics div:nth-child(even) { border-right: 0; }
body.page-hosting .hosting-preview-metrics div:nth-last-child(-n+2) { border-bottom: 0; }
body.page-hosting .hosting-preview-metrics strong { display: block; margin-top: 8px; font-size: 1rem; }

body.page-hosting .hosting-plans-section {
    border-top: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.015);
}

body.page-hosting .billing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
    min-width: 300px;
}

body.page-hosting .billing-label {
    color: var(--muted);
    font-size: .84rem;
    font-weight: 800;
    transition: color 160ms ease;
}

body.page-hosting .billing-label.is-active { color: #fff; }
body.page-hosting .billing-label b {
    display: inline-block;
    margin-left: 4px;
    padding: 3px 7px;
    border-radius: 999px;
    color: #8bf0c2;
    background: rgba(82,224,164,.1);
    font-size: .64rem;
    letter-spacing: .03em;
    text-transform: uppercase;
}

body.page-hosting .billing-toggle {
    position: relative;
    width: 54px;
    height: 30px;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(255,47,135,.5);
    border-radius: 999px;
    background: rgba(255,47,135,.12);
    cursor: pointer;
}

body.page-hosting .billing-toggle span {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,.4);
    transition: transform 180ms ease, background 180ms ease;
}

body.page-hosting .billing-toggle[aria-checked="true"] span {
    transform: translateX(24px);
    background: var(--pink-bright);
}

body.page-hosting .hosting-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

body.page-hosting .hosting-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(155deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
    box-shadow: 0 22px 65px rgba(0,0,0,.2);
}

body.page-hosting .hosting-plan-card.is-featured {
    border-color: rgba(255,47,135,.62);
    background: radial-gradient(circle at 85% 5%, rgba(255,47,135,.18), transparent 14rem), linear-gradient(155deg, rgba(255,255,255,.08), rgba(255,47,135,.035));
    box-shadow: 0 26px 90px rgba(0,0,0,.34), 0 0 45px rgba(255,47,135,.12);
}

body.page-hosting .plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #fff;
    background: var(--pink-deep);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

body.page-hosting .plan-heading { padding-right: 68px; }
body.page-hosting .plan-heading h3 {
    margin-bottom: 7px;
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -.035em;
}
body.page-hosting .plan-heading p { min-height: 52px; margin-bottom: 0; color: var(--muted); font-size: .88rem; }

body.page-hosting .plan-price {
    display: grid;
    gap: 2px;
    min-height: 96px;
    margin: 24px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

body.page-hosting .price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
body.page-hosting .price-main small { align-self: flex-start; padding-top: 8px; font-size: 1.1rem; font-weight: 900; }
body.page-hosting .price-main strong { font-size: clamp(2.65rem, 5vw, 3.8rem); line-height: 1; letter-spacing: -.06em; }
body.page-hosting .price-main em { color: var(--muted); font-size: .82rem; font-style: normal; font-weight: 700; }
body.page-hosting .price-note { color: var(--muted); font-size: .72rem; }

body.page-hosting .plan-feature-list {
    display: grid;
    gap: 12px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}
body.page-hosting .plan-feature-list li {
    position: relative;
    padding-left: 25px;
    color: #d6d6dc;
    font-size: .83rem;
}
body.page-hosting .plan-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #6be6ae;
    font-weight: 900;
}
body.page-hosting .hosting-plan-card .button { width: 100%; margin-top: auto; }
body.page-hosting .hosting-small-print { max-width: 900px; margin: 24px auto 0; color: #7e7e88; font-size: .74rem; text-align: center; }

body.page-hosting .hosting-inclusion-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

body.page-hosting .hosting-faq-wrap {
    display: grid;
    grid-template-columns: minmax(280px, .65fr) minmax(0, 1.1fr);
    gap: clamp(35px, 7vw, 90px);
    align-items: start;
}
body.page-hosting .hosting-faq-intro { position: sticky; top: 118px; }
body.page-hosting .hosting-faq-intro h2 { margin-bottom: 18px; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: .98; letter-spacing: -.055em; }
body.page-hosting .hosting-faq-intro > p:last-child { color: var(--muted); }
body.page-hosting .hosting-faq-list { display: grid; gap: 12px; }
body.page-hosting .hosting-faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.035);
}
body.page-hosting .hosting-faq-list summary {
    position: relative;
    padding: 22px 56px 22px 24px;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}
body.page-hosting .hosting-faq-list summary::-webkit-details-marker { display: none; }
body.page-hosting .hosting-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    color: var(--pink-bright);
    font-size: 1.35rem;
    transform: translateY(-50%);
}
body.page-hosting .hosting-faq-list details[open] summary::after { content: "−"; }
body.page-hosting .hosting-faq-list details p { margin: 0; padding: 0 24px 24px; color: var(--muted); font-size: .9rem; }

/* Checkout */
body.page-checkout {
    background: radial-gradient(circle at 90% 0, rgba(255,47,135,.13), transparent 30rem), var(--bg);
}
body.page-checkout .checkout-main { min-height: 78vh; }
body.page-checkout .checkout-shell-section { padding: 128px 0 90px; }
body.page-checkout .checkout-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}
body.page-checkout .checkout-heading h1,
body.page-checkout .checkout-complete-card h1 {
    margin-bottom: 12px;
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    line-height: .96;
    letter-spacing: -.06em;
    font-weight: 900;
}
body.page-checkout .checkout-heading p:last-child { max-width: 720px; margin-bottom: 0; color: var(--muted); }
body.page-checkout .checkout-reset-link { color: var(--pink-bright); font-size: .83rem; font-weight: 800; white-space: nowrap; }

body.page-checkout .checkout-notice {
    display: grid;
    gap: 4px;
    margin: 0 0 22px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    font-size: .83rem;
}
body.page-checkout .checkout-notice span { color: #c7c7ce; }
body.page-checkout .checkout-notice-warning { border-color: rgba(255,188,72,.36); background: rgba(255,188,72,.075); }
body.page-checkout .checkout-notice-warning strong { color: #ffd183; }
body.page-checkout .checkout-notice-error { border-color: rgba(255,80,110,.45); background: rgba(255,80,110,.09); }
body.page-checkout .checkout-notice-error strong { color: #ff8aa0; }

body.page-checkout .checkout-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}
body.page-checkout .checkout-progress li { position: relative; }
body.page-checkout .checkout-progress li::after {
    content: "";
    position: absolute;
    top: 17px;
    left: calc(50% + 23px);
    right: calc(-50% + 23px);
    height: 1px;
    background: var(--line);
}
body.page-checkout .checkout-progress li:last-child::after { display: none; }
body.page-checkout .checkout-progress a,
body.page-checkout .checkout-progress .progress-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    color: #777781;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}
body.page-checkout .checkout-progress a > span,
body.page-checkout .checkout-progress .progress-item > span {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #a8a8b0;
    background: var(--bg-soft);
}
body.page-checkout .checkout-progress .is-current a,
body.page-checkout .checkout-progress .is-current .progress-item { color: #fff; }
body.page-checkout .checkout-progress .is-current a > span,
body.page-checkout .checkout-progress .is-current .progress-item > span {
    border-color: var(--pink);
    color: #fff;
    background: var(--pink-deep);
    box-shadow: 0 0 22px rgba(255,47,135,.28);
}
body.page-checkout .checkout-progress .is-complete a { color: #a9a9b2; }
body.page-checkout .checkout-progress .is-complete a > span { border-color: rgba(82,224,164,.5); color: #07130e; background: #52e0a4; }

body.page-checkout .checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 18px;
    align-items: start;
}
body.page-checkout .checkout-layout-wide { grid-template-columns: 1fr; }
body.page-checkout .checkout-panel,
body.page-checkout .checkout-summary {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.035);
}
body.page-checkout .checkout-panel { padding: clamp(25px, 5vw, 52px); }
body.page-checkout .checkout-panel-heading { margin-bottom: 30px; }
body.page-checkout .checkout-panel-heading h2 { margin-bottom: 10px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.05em; }
body.page-checkout .checkout-panel-heading > p:last-child { max-width: 720px; margin-bottom: 0; color: var(--muted); }

body.page-checkout .checkout-summary {
    position: sticky;
    top: 100px;
    padding: 28px;
}
body.page-checkout .checkout-summary h2 { margin-bottom: 6px; font-size: 1.75rem; letter-spacing: -.04em; }
body.page-checkout .checkout-summary > p:not(.eyebrow) { color: var(--muted); font-size: .83rem; }
body.page-checkout .checkout-summary-price { display: flex; align-items: baseline; gap: 5px; margin: 22px 0; padding: 20px 0; border-block: 1px solid var(--line); }
body.page-checkout .checkout-summary-price strong { font-size: 2rem; letter-spacing: -.04em; }
body.page-checkout .checkout-summary-price span { color: var(--muted); font-size: .78rem; }
body.page-checkout .checkout-summary ul { display: grid; gap: 10px; margin: 0 0 22px; padding: 0; list-style: none; }
body.page-checkout .checkout-summary li { position: relative; padding-left: 22px; color: #d5d5db; font-size: .78rem; }
body.page-checkout .checkout-summary li::before { content: "✓"; position: absolute; left: 0; color: #52e0a4; font-weight: 900; }
body.page-checkout .checkout-summary > a { color: var(--pink-bright); font-size: .78rem; font-weight: 800; }

body.page-checkout .checkout-plan-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
body.page-checkout .checkout-plan-option { position: relative; cursor: pointer; }
body.page-checkout .checkout-plan-option input { position: absolute; opacity: 0; pointer-events: none; }
body.page-checkout .checkout-plan-option-copy {
    display: grid;
    align-content: start;
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.025);
    transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}
body.page-checkout .checkout-plan-option:hover .checkout-plan-option-copy { transform: translateY(-3px); border-color: rgba(255,47,135,.4); }
body.page-checkout .checkout-plan-option input:checked + .checkout-plan-option-copy {
    border-color: var(--pink);
    background: rgba(255,47,135,.09);
    box-shadow: 0 0 30px rgba(255,47,135,.1);
}
body.page-checkout .checkout-plan-option-copy strong { font-size: 1.15rem; }
body.page-checkout .checkout-plan-option-copy small { margin: 8px 0 22px; color: var(--muted); }
body.page-checkout .checkout-plan-option-copy b { margin-top: auto; color: var(--pink-bright); font-size: 1rem; }

body.page-checkout fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
body.page-checkout legend { margin-bottom: 12px; font-size: .88rem; font-weight: 800; }
body.page-checkout .checkout-inline-options { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 24px; }
body.page-checkout .checkout-inline-options legend { width: 100%; }
body.page-checkout .checkout-inline-options label { display: flex; align-items: center; gap: 9px; color: #d8d8de; font-size: .85rem; cursor: pointer; }
body.page-checkout input[type="radio"],
body.page-checkout input[type="checkbox"] { accent-color: var(--pink); }

body.page-checkout .checkout-choice-group { margin-bottom: 26px; }
body.page-checkout .checkout-choice-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
body.page-checkout .checkout-choice-card { position: relative; cursor: pointer; }
body.page-checkout .checkout-choice-card > input { position: absolute; opacity: 0; pointer-events: none; }
body.page-checkout .checkout-choice-card > span {
    display: grid;
    align-content: start;
    min-height: 150px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(255,255,255,.025);
}
body.page-checkout .checkout-choice-card > span::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-bottom: 16px;
    border: 2px solid #777781;
    border-radius: 50%;
}
body.page-checkout .checkout-choice-card input:checked + span { border-color: var(--pink); background: rgba(255,47,135,.075); }
body.page-checkout .checkout-choice-card input:checked + span::before { border: 5px solid var(--pink); background: #fff; }
body.page-checkout .checkout-choice-card strong { font-size: .88rem; }
body.page-checkout .checkout-choice-card small { margin-top: 7px; color: var(--muted); font-size: .72rem; }

body.page-checkout .checkout-form { display: grid; gap: 24px; }
body.page-checkout .checkout-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
body.page-checkout .form-field { display: grid; gap: 8px; min-width: 0; }
body.page-checkout .form-field-full { grid-column: 1 / -1; }
body.page-checkout .form-field > span { font-size: .8rem; font-weight: 800; }
body.page-checkout .form-field > span small { color: var(--muted); font-weight: 600; }
body.page-checkout .form-field input,
body.page-checkout .form-field select,
body.page-checkout .form-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: none;
    color: #fff;
    background: rgba(4,4,6,.6);
    font: inherit;
    font-size: .88rem;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}
body.page-checkout .form-field textarea { min-height: 120px; resize: vertical; }
body.page-checkout .form-field select { appearance: auto; }
body.page-checkout .form-field input:focus,
body.page-checkout .form-field select:focus,
body.page-checkout .form-field textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,47,135,.12); }
body.page-checkout .form-field > small { color: #777781; font-size: .68rem; }
body.page-checkout .field-error { display: block; margin-top: 4px; color: #ff8299; font-size: .72rem; font-weight: 700; }

body.page-checkout .checkout-addon-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
body.page-checkout .checkout-addon {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255,255,255,.025);
    cursor: pointer;
}
body.page-checkout .checkout-addon input { flex: 0 0 auto; margin-top: 4px; }
body.page-checkout .checkout-addon span { display: grid; }
body.page-checkout .checkout-addon strong { font-size: .82rem; }
body.page-checkout .checkout-addon small { margin-top: 4px; color: var(--muted); font-size: .7rem; }
body.page-checkout .checkout-existing-client { margin-bottom: 24px; }
body.page-checkout .checkout-security-note,
body.page-checkout .checkout-next-phase {
    padding: 16px 18px;
    border: 1px solid rgba(82,224,164,.25);
    border-radius: 14px;
    color: #c9dcd3;
    background: rgba(82,224,164,.06);
    font-size: .78rem;
}
body.page-checkout .checkout-security-note strong { color: #8bf0c2; }

body.page-checkout .checkout-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
}

body.page-checkout .checkout-review-sections { display: grid; gap: 12px; }
body.page-checkout .checkout-review-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
}
body.page-checkout .checkout-review-card small { color: var(--pink-bright); font-size: .64rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
body.page-checkout .checkout-review-card h3 { margin: 5px 0 4px; font-size: 1rem; }
body.page-checkout .checkout-review-card p { margin: 0; color: var(--muted); font-size: .78rem; }
body.page-checkout .checkout-review-card > a { color: var(--pink-bright); font-size: .74rem; font-weight: 800; }

body.page-checkout .checkout-total-card {
    display: grid;
    gap: 13px;
    margin-top: 20px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(0,0,0,.2);
}
body.page-checkout .checkout-total-card > div { display: flex; justify-content: space-between; gap: 20px; color: #d8d8de; font-size: .82rem; }
body.page-checkout .checkout-total-pending { color: #d7bb85 !important; }
body.page-checkout .checkout-total-main { margin-top: 5px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 1rem !important; }
body.page-checkout .checkout-total-main strong { color: #fff; font-size: 1.25rem; }
body.page-checkout .checkout-total-card > small { color: #73737d; font-size: .66rem; }
body.page-checkout .checkout-confirmation { display: flex; align-items: flex-start; gap: 11px; margin-top: 22px; color: #c8c8cf; font-size: .77rem; cursor: pointer; }
body.page-checkout .checkout-confirmation input { flex: 0 0 auto; margin-top: 4px; }

body.page-checkout .checkout-complete-section { display: grid; align-items: center; min-height: 82vh; padding: 130px 0 90px; }
body.page-checkout .checkout-complete-card {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(32px, 7vw, 72px);
    border: 1px solid rgba(255,47,135,.38);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 92% 12%, rgba(255,47,135,.2), transparent 18rem), rgba(255,255,255,.035);
    box-shadow: 0 35px 100px rgba(0,0,0,.3);
}
body.page-checkout .checkout-complete-icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 24px; border-radius: 50%; color: #07130e; background: #52e0a4; box-shadow: 0 0 35px rgba(82,224,164,.28); font-size: 1.6rem; font-weight: 900; }
body.page-checkout .checkout-complete-lead { max-width: 670px; color: var(--muted); font-size: 1rem; }
body.page-checkout .checkout-complete-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; overflow: hidden; margin: 30px 0; border: 1px solid var(--line); border-radius: 17px; background: var(--line); }
body.page-checkout .checkout-complete-details div { padding: 20px; background: #111115; }
body.page-checkout .checkout-complete-details dt { margin-bottom: 5px; color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
body.page-checkout .checkout-complete-details dd { margin: 0; font-size: .88rem; font-weight: 800; word-break: break-word; }
body.page-checkout .checkout-next-phase { display: grid; gap: 4px; }
body.page-checkout .checkout-next-phase strong { color: #8bf0c2; }
body.page-checkout .checkout-next-phase code { color: #fff; }
body.page-checkout .checkout-complete-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

@media (max-width: 980px) {
    body.page-hosting .hosting-plan-grid { grid-template-columns: 1fr; }
    body.page-hosting .hosting-plan-card { max-width: 680px; width: 100%; margin-inline: auto; }
    body.page-hosting .plan-heading p { min-height: 0; }
    body.page-hosting .hosting-inclusion-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body.page-hosting .hosting-faq-wrap { grid-template-columns: 1fr; }
    body.page-hosting .hosting-faq-intro { position: static; }
    body.page-checkout .checkout-layout { grid-template-columns: 1fr; }
    body.page-checkout .checkout-summary { position: static; order: -1; }
    body.page-checkout .checkout-plan-options { grid-template-columns: 1fr; }
    body.page-checkout .checkout-plan-option-copy { min-height: 0; }
}

@media (max-width: 720px) {
    body.page-hosting .billing-toggle-wrap { justify-content: flex-start; min-width: 0; }
    body.page-hosting .hosting-inclusion-grid { grid-template-columns: 1fr; }
    body.page-hosting .hosting-preview-metrics { grid-template-columns: 1fr; }
    body.page-hosting .hosting-preview-metrics div { border-right: 0; border-bottom: 1px solid var(--line) !important; }
    body.page-hosting .hosting-preview-metrics div:last-child { border-bottom: 0 !important; }
    body.page-checkout .checkout-shell-section { padding-top: 112px; }
    body.page-checkout .checkout-heading { align-items: flex-start; flex-direction: column; }
    body.page-checkout .checkout-progress { grid-template-columns: repeat(4, 1fr); }
    body.page-checkout .checkout-progress a,
    body.page-checkout .checkout-progress .progress-item { width: auto; display: grid; justify-items: center; gap: 6px; font-size: .58rem; text-align: center; }
    body.page-checkout .checkout-progress li::after { left: calc(50% + 19px); right: calc(-50% + 19px); }
    body.page-checkout .checkout-choice-cards,
    body.page-checkout .checkout-addon-grid,
    body.page-checkout .checkout-form-grid { grid-template-columns: 1fr; }
    body.page-checkout .form-field-full { grid-column: auto; }
    body.page-checkout .checkout-choice-card > span { min-height: 0; }
    body.page-checkout .checkout-actions { justify-content: stretch; }
    body.page-checkout .checkout-actions .button { flex: 1 1 100%; }
    body.page-checkout .checkout-complete-details { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    body.page-hosting .billing-label b { display: block; width: max-content; margin: 3px 0 0; }
    body.page-hosting .hosting-plan-card { padding: 24px; }
    body.page-hosting .plan-heading { padding-right: 0; }
    body.page-hosting .plan-badge { position: static; width: max-content; margin-bottom: 18px; }
    body.page-checkout .checkout-panel,
    body.page-checkout .checkout-summary { border-radius: 20px; }
    body.page-checkout .checkout-review-card { align-items: flex-start; flex-direction: column; gap: 10px; }
    body.page-checkout .checkout-complete-actions .button { width: 100%; }
}

/* Phase 2 payment, portal activation and status states */
body.page-checkout .checkout-notice code {
    color: #fff;
    font: inherit;
    font-weight: 800;
}

body.page-checkout .checkout-complete-icon-muted {
    color: #fff;
    background: #5b5b66;
    box-shadow: none;
}

body.page-checkout .checkout-complete-icon-pending {
    color: #181106;
    background: #f0c66a;
    box-shadow: 0 0 35px rgba(240,198,106,.22);
}

body.page-checkout .checkout-provisioning-note {
    margin-top: 14px;
    border-color: rgba(255,47,135,.25);
    background: rgba(255,47,135,.055);
}

body.page-checkout .checkout-provisioning-note strong {
    color: var(--pink-bright);
}

body.page-checkout .checkout-activation-card {
    max-width: 720px;
}

body.page-checkout .activation-email {
    display: inline-flex;
    margin: 8px 0 24px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: #fff;
    background: rgba(255,255,255,.035);
    font-size: .82rem;
    font-weight: 800;
}

body.page-checkout .activation-form {
    display: grid;
    gap: 16px;
    max-width: 520px;
    margin-top: 26px;
}

body.page-checkout .activation-form .button {
    width: max-content;
    margin-top: 6px;
}

@media (max-width: 540px) {
    body.page-checkout .activation-form .button {
        width: 100%;
    }
}

body.page-checkout .checkout-notice-success {
    border-color: rgba(82,224,164,.25);
    background: rgba(82,224,164,.06);
}

body.page-checkout .checkout-notice-success strong {
    color: #8bf0c2;
}

body.page-checkout .checkout-resend-form {
    margin: 10px 0 0;
}

body.page-checkout .checkout-resend-form button {
    padding: 0;
    border: 0;
    color: var(--pink-bright);
    background: transparent;
    font: inherit;
    font-size: .74rem;
    font-weight: 800;
    cursor: pointer;
}

body.page-checkout .checkout-resend-form button:hover {
    text-decoration: underline;
}
