        :root {
            --accent: #029ee1;
            --accent-hover: #24b6f0;
            --accent-deep: #0178b0;
            --accent-ink: #003a52;

            --bg: #f6fbff;
            --text: #0b1f2a;
            --muted: #3b5b6b;

            --card: rgba(255, 255, 255, .72);
            --stroke: rgba(2, 158, 225, .16);
            --shadow: 0 12px 28px rgba(11, 31, 42, .10);
            --shadow-strong: 0 18px 44px rgba(11, 31, 42, .14);

            --r-lg: 16px;
            --r-md: 12px;

            --container: 1120px;
        }

        * {
            box-sizing: border-box
        }

        body {
            margin: 0;
            font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at 18% 18%, rgba(2, 158, 225, 0.12), transparent 40%),
                radial-gradient(circle at 78% 10%, rgba(36, 182, 240, 0.10), transparent 38%),
                radial-gradient(circle at 70% 85%, rgba(1, 120, 176, 0.08), transparent 46%),
                var(--bg);
        }

        .container {
            width: min(var(--container), calc(100% - 56px));
            margin: 0 auto;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 10;
            backdrop-filter: blur(10px);
            background: rgba(246, 251, 255, 0.70);
            border-bottom: 1px solid rgba(2, 158, 225, 0.12);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 14px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text);
            min-width: 160px;
        }

        .brand img {
            height: 40px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.20));
        }

        nav {
            display: flex;
            align-items: center;
            gap: 14px;
            flex: 1;
            justify-content: center;
        }

        .navlink {
            text-decoration: none;
            color: var(--muted);
            font-weight: 800;
            font-size: 14px;
            padding: 8px 10px;
            border-radius: 999px;
            transition: background .15s ease, color .15s ease;
            white-space: nowrap;
        }

        .navlink:hover {
            background: rgba(2, 158, 225, 0.10);
            color: var(--accent-ink);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 210px;
            justify-content: flex-end;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid rgba(2, 158, 225, .20);
            background: rgba(255, 255, 255, .55);
            color: var(--accent-ink);
            cursor: pointer;
            font-weight: 800;
            transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
            text-decoration: none;
            box-shadow: 0 8px 18px rgba(11, 31, 42, 0.06);
            white-space: nowrap;
        }

        .btn:hover {
            border-color: var(--accent);
            background: rgba(2, 158, 225, 0.10);
            transform: translateY(-1px);
            box-shadow: 0 12px 26px rgba(11, 31, 42, 0.10);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            color: #f7fdff;
            border-color: rgba(2, 158, 225, 0.30);
            box-shadow: 0 16px 38px rgba(2, 158, 225, 0.24);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent-hover), var(--accent));
            border-color: rgba(2, 158, 225, 0.42);
            box-shadow: 0 18px 46px rgba(2, 158, 225, 0.28);
        }

        /* Sections */
        section {
            padding: 34px 0;
        }

        .section-head {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 14px;
        }

        .section-head h2 {
            margin: 0;
            font-size: 22px;
            letter-spacing: -0.2px;
        }

        .hint {
            color: var(--muted);
            font-size: 14px;
        }

        /* Hero */
        #hero .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 26px;
            align-items: center;
            padding-top: 16px;
        }

        .hero-cta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 10px;
        }

        .microcopy {
            color: var(--muted);
            font-size: 13px;
            font-weight: 700;
        }

        /* Placeholder for dynamic hero banner (we’ll implement next) */
        .hero-visual {
            position: relative;
            border-radius: var(--r-lg);
            background:
                linear-gradient(145deg, rgba(2, 158, 225, 0.18), rgba(36, 182, 240, 0.18)),
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.25), transparent 55%);
            border: 1px solid rgba(2, 158, 225, 0.18);
            box-shadow: var(--shadow-strong);
            min-height: 340px;
            overflow: hidden;
            display: grid;
            place-items: center;
            padding: 18px;
            color: #e9fbff;
            text-align: center;
        }

        /* .hero-visual::after {
            content: "";
            position: absolute;
            inset: 14px;
            border-radius: 14px;
            border: 1px dashed rgba(2, 158, 225, 0.28);
            pointer-events: none;
        }*/

        .hero-visual .kicker {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #bff2ff;
            font-weight: 900;
        }

        .hero-visual .big {
            font-size: 22px;
            font-weight: 900;
            margin: 10px 0 6px;
        }

        .hero-visual .small {
            font-size: 14px;
            color: #d7f7ff;
            line-height: 1.5;
            max-width: 38ch;
            margin: 0 auto;
        }

        /* ----- Dynamic hero banner ----- */
        .hero-banner {
            padding: 0;
            /* we handle padding inside */
            color: #e9fbff;
            text-align: left;
        }

        .hero-banner__frame {
            position: relative;
            border-radius: var(--r-lg);
            overflow: hidden;
            min-height: 340px;
            width: 100%;
            border: 1px solid rgba(2, 158, 225, 0.18);
            box-shadow: var(--shadow-strong);
            background: #fff;
        }

        .hero-banner__slides {
            position: absolute;
            inset: 0;
        }

        .hero-banner__img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #fff;
            opacity: 0;
            transition: opacity 700ms ease;
        }

        .hero-banner__img.is-active {
            opacity: 1;
        }

        /* Overlay removed as per request */

        .hero-banner__caption {
            position: absolute;
            left: 14px;
            bottom: 14px;
            z-index: 3;
            padding: 12px 14px;
            max-width: 70%;
            background: transparent;
        }

        .hero-banner__kicker {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-deep);
            font-weight: 900;
        }

        .hero-banner__title {
            font-size: 18px;
            font-weight: 950;
            margin: 6px 0 4px;
            color: var(--text);
        }

        .hero-banner__sub {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.5;
        }

        .hero-banner__dots {
            position: absolute;
            z-index: 3;
            right: 14px;
            bottom: 14px;
            display: flex;
            gap: 8px;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            border: 1px solid rgba(11, 31, 42, 0.35);
            background: rgba(11, 31, 42, 0.18);
            cursor: pointer;
        }

        .hero-dot.is-active {
            background: var(--accent);
            border-color: var(--accent);
        }


        /* On very small screens, give caption full width */
        @media (max-width: 560px) {
            .hero-banner__caption {
                max-width: 100%;
            }
        }



        /* Testimonials grid */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        @media (max-width: 980px) {
            .grid-3 {
                grid-template-columns: 1fr;
            }
        }



        /* Social proof */
        .proof-strip {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 14px 16px;
            border-radius: var(--r-lg);
            border: 1px solid rgba(2, 158, 225, 0.14);
            background: rgba(255, 255, 255, 0.55);
            box-shadow: 0 12px 26px rgba(11, 31, 42, 0.06);
            backdrop-filter: blur(10px);
        }

        .proof-strip strong {
            font-weight: 950
        }

        .logos {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .logo-pill {
            padding: 7px 10px;
            border-radius: 999px;
            border: 1px solid rgba(2, 158, 225, 0.14);
            background: rgba(2, 158, 225, 0.06);
            color: var(--accent-ink);
            font-weight: 900;
            font-size: 12px;
            white-space: nowrap;
        }

        /* Cards grid */
        .grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        @media (max-width: 980px) {
            .grid {
                grid-template-columns: 1fr;
            }
        }

        .card {
            background: var(--card);
            border: 1px solid var(--stroke);
            border-radius: var(--r-md);
            padding: 14px 16px;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
        }

        .card h3 {
            margin: 2px 0 6px;
            font-size: 16px;
            font-weight: 950;
        }

        .card p {
            margin: 0;
            color: rgba(11, 31, 42, 0.82);
            line-height: 1.6;
            font-size: 14px;
        }

        .icon {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            font-weight: 950;
            color: var(--accent-ink);
            background: rgba(2, 158, 225, 0.10);
            border: 1px solid rgba(2, 158, 225, 0.20);
            margin-bottom: 10px;
        }

        /* Preview strip */
        .preview {
            text-align: center;
        }

        .preview-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .preview-item h3 {
            margin: 6px 0 4px;
            font-size: 15px;
            font-weight: 950;
        }

        .preview-item p {
            margin: 0;
            font-size: 14px;
            color: var(--muted);
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .preview-grid {
                grid-template-columns: 1fr;
            }
        }


        /* News */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .news-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 8px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            border-radius: 999px;
            border: 1px solid rgba(2, 158, 225, 0.24);
            background: rgba(2, 158, 225, 0.10);
            color: var(--accent-ink);
            font-weight: 950;
            font-size: 12px;
            white-space: nowrap;
        }

        .news-date {
            font-size: 12px;
            color: var(--muted);
            white-space: nowrap;
        }

        .news-title {
            margin: 0 0 6px;
            font-size: 16px;
            font-weight: 950;
            line-height: 1.25;
        }

        .news-summary {
            margin: 0;
            font-size: 14px;
            color: rgba(11, 31, 42, 0.82);
            line-height: 1.6;
        }

        .news-actions {
            margin-top: 12px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        /* ---------- Pricing ---------- */
        .pricing-wrap {
            display: grid;
            gap: 14px;
        }

        .pricing-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .toggle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px;
            border-radius: 999px;
            border: 1px solid rgba(2, 158, 225, 0.18);
            background: rgba(255, 255, 255, 0.55);
            box-shadow: 0 10px 22px rgba(11, 31, 42, 0.06);
        }

        .toggle button {
            border: 0;
            background: transparent;
            padding: 10px 14px;
            border-radius: 999px;
            cursor: pointer;
            font-weight: 950;
            color: var(--muted);
            transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
        }

        .toggle button[aria-pressed="true"] {
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            color: #f7fdff;
            box-shadow: 0 14px 30px rgba(2, 158, 225, 0.22);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        @media (max-width: 980px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }

        .price-card {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .price-card.featured {
            border-color: rgba(2, 158, 225, 0.32);
            box-shadow: 0 18px 44px rgba(2, 158, 225, 0.14);
        }

        .ribbon {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(2, 158, 225, 0.12);
            border: 1px solid rgba(2, 158, 225, 0.22);
            color: var(--accent-ink);
            font-weight: 950;
            font-size: 12px;
            letter-spacing: 0.2px;
        }

        .plan-name {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 10px;
        }

        .plan-name h3 {
            margin: 0;
            font-size: 16px;
            font-weight: 950;
        }

        .plan-tag {
            font-size: 12px;
            color: var(--muted);
            font-weight: 900;
        }

        .plan-price {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .plan-price .amount {
            font-size: 30px;
            font-weight: 1000;
            letter-spacing: -0.6px;
        }

        .plan-price .per {
            color: var(--muted);
            font-weight: 900;
            font-size: 13px;
        }

        .plan-note {
            margin: -6px 0 0;
            color: var(--muted);
            font-size: 13px;
            font-weight: 750;
            line-height: 1.5;
        }

        .plan-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
            color: rgba(11, 31, 42, 0.82);
            font-size: 14px;
            font-weight: 700;
        }

        .plan-list li {
            padding-left: 18px;
            position: relative;
        }

        .plan-list li::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(2, 158, 225, 0.65);
            position: absolute;
            left: 0;
            top: 7px;
        }

        .plan-actions {
            margin-top: auto;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .muted-inline {
            color: var(--muted);
            font-size: 13px;
            font-weight: 800;
        }

        /* Final CTA */
        .final-cta {
            border-radius: var(--r-lg);
            border: 1px solid rgba(2, 158, 225, 0.16);
            background:
                linear-gradient(145deg, rgba(2, 158, 225, 0.10), rgba(36, 182, 240, 0.10)),
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.30), transparent 60%);
            box-shadow: 0 18px 44px rgba(11, 31, 42, 0.10);
            padding: 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .final-cta h2 {
            margin: 0;
            font-size: 22px;
            letter-spacing: -0.2px;
        }

        .final-cta p {
            margin: 6px 0 0;
            color: var(--muted);
            font-weight: 700;
        }

        /* Footer */
        footer {
            margin-top: 10px;
            padding: 26px 0;
            border-top: 1px solid rgba(2, 158, 225, 0.14);
            background: rgba(246, 251, 255, 0.60);
            backdrop-filter: blur(10px);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .footer-title {
            margin: 0 0 10px;
            font-size: 13px;
            font-weight: 950;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            color: var(--text);
        }

        .footer-text {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-links {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
            font-size: 14px;
        }

        .footer-links a {
            color: var(--accent-ink);
            font-weight: 900;
            text-decoration: none;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px dashed rgba(2, 158, 225, 0.26);
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            justify-content: space-between;
            color: var(--muted);
            font-size: 13px;
        }

        /* Responsive */
        @media (max-width: 980px) {
            #hero .hero-grid {
                grid-template-columns: 1fr;
            }

            nav {
                display: none;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .header-actions {
                min-width: auto;
            }

            .brand {
                min-width: auto;
            }
        }

        @media (max-width: 560px) {
            .container {
                width: calc(100% - 32px);
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Markdown inside sections */
        .md h1 {
            margin: 0 0 12px;
            font-size: clamp(34px, 3vw + 18px, 52px);
            line-height: 1.06;
            letter-spacing: -0.6px;
        }

        .md h2 {
            margin: 0 0 10px;
            font-size: 18px;
            color: var(--muted);
            font-weight: 850;
        }

        .md h3 {
            margin: 18px 0 8px;
            font-size: 16px;
            font-weight: 950;
        }

        .md p {
            margin: 0 0 14px;
            color: var(--muted);
            font-size: 17px;
            line-height: 1.6;
            max-width: 100%;
        }

        .md ul {
            margin: 0;
            padding-left: 18px;
            color: rgba(11, 31, 42, 0.82);
            font-weight: 700;
        }

        .md li {
            margin: 6px 0;
        }

        .md blockquote {
            margin: 0;
            padding: 0 0 0 14px;
            border-left: 3px solid rgba(2, 158, 225, 0.35);
            color: rgba(11, 31, 42, 0.82);
        }

        .md hr {
            border: 0;
            border-top: 1px dashed rgba(2, 158, 225, 0.28);
            margin: 16px 0;
        }

        .md img {
            max-width: 180px;
            border-radius: 12px;
            float: left;
            margin: 6px 18px 12px 0;
            box-shadow: 0 8px 18px rgba(11, 31, 42, 0.12);
        }

        /* Testimonial revisions */
        .card .quote {
            font-size: 17px;
            font-weight: 500;
            font-style: italic;
            margin-bottom: 8px;
            color: var(--text);
        }

        .card .author {
            font-size: 14px;
            font-weight: 800;
            margin-top: 4px;
        }

        .card .role {
            font-size: 13px;
            color: var(--muted);
        }