    /* -----------------------
    GLOBAL STYLES
------------------------*/

    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@400;500;600;700&display=swap');

    :root {
        --bg-main: #5DBEB2;
        --text-primary: #083a35;
        --text-secondary: rgba(8, 58, 53, 0.78);
        --brand-teal: #0c4a44;
        --surface: rgba(255, 255, 255, 0.12);
        --surface-alt: rgba(255, 255, 255, 0.18);
        --surface-strong: rgba(255, 255, 255, 0.2);
        --border-thin: rgba(8, 58, 53, 0.12);
        --border-soft: rgba(8, 58, 53, 0.2);
        --text-on-dark: #f6fffd;
        --action: #0c4a44;
        --action-hover: #083a35;
        --shadow-sm: 0 1px 2px 0 rgba(8, 58, 53, 0.08);
        --shadow-md: 0 4px 12px -2px rgba(8, 58, 53, 0.2);
    }

    body {
        margin: 0;
        padding: 0;

        /* Solid Background Color */
        background-color: var(--bg-main);

        color: var(--text-primary);
        font-family: 'Poppins', sans-serif;
    }

    h1,
    h2,
    h3,
    h4 {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        color: var(--text-primary);
    }

    p {
        line-height: 1.5;
    }

    button {
        cursor: pointer;
        border: none;
    }

    main section.section-reveal {
        opacity: 0;
        transform: translateY(40px);
        transition:
            opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
            transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
        will-change: opacity, transform;
    }

    main section.section-reveal.is-revealed,
    main section.is-revealed {
        opacity: 1;
        transform: translateY(0);
    }

    /* ===============================
   HEADER (FIXED, GLASS)
================================ */
    body>header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;

        background: rgba(255, 255, 255, 0.62);
        backdrop-filter: blur(12px) saturate(130%);
        -webkit-backdrop-filter: blur(12px) saturate(130%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.55);
        box-shadow: 0 8px 24px rgba(8, 58, 53, 0.08);
        opacity: 0;
        transform: translateY(-10px);
        animation: heroNavReveal 0.6s ease-out 0.05s forwards;
    }

    @keyframes heroNavReveal {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Offset page content */
    body {
        padding-top: 85px;
    }

    /* ===============================
   NAV CONTAINER (KEY FIX)
================================ */
    .nav-container {
        max-width: 1400px;
        margin: 0 auto;

        display: flex;
        /* IMPORTANT */
        align-items: center;
        justify-content: space-between;
        /* LOGO LEFT | MENU RIGHT */

        padding: 10px 50px;
    }

    /* ===============================
   LOGO (LEFT)
================================ */
    .logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        /* prevent shrinking */
    }

    .logo img {
        height: 60px;
        width: auto;
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    nav {
        white-space: nowrap;
        /* prevent wrapping */
    }

    nav ul {
        display: flex;
        align-items: center;
        gap: 38px;

        list-style: none;
        margin: 0;
        padding: 0;
    }

    nav ul li {
        display: flex;
        align-items: center;
    }

    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown-toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: none;
        border: none;
        color: inherit;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 1px;
        padding: 0 0 6px;
        position: relative;
        text-decoration: none;
    }

    .nav-dropdown-toggle::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0%;
        height: 2px;
        background: var(--text-primary);
        transition: width 0.3s ease;
    }

    .nav-dropdown-toggle::after {
        content: "\25BE";
        font-size: 0.8em;
        transition: transform 0.2s ease;
    }

    .nav-dropdown-toggle:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(8, 58, 53, 0.2);
        border-radius: 8px;
    }

    .nav-dropdown.open .nav-dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .nav-dropdown-toggle:hover::before,
    .nav-dropdown:focus-within .nav-dropdown-toggle::before,
    .nav-dropdown.open .nav-dropdown-toggle::before {
        width: 100%;
    }

    .nav-submenu {
        position: absolute;
        top: calc(100% + 12px); /* Slight gap for slide animation */
        left: 0;
        right: auto;
        transform: translateY(10px);
        transform-origin: top left;
        width: max-content;
        min-width: 220px;
        max-width: min(92vw, 300px);
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(16px) saturate(140%);
        -webkit-backdrop-filter: blur(16px) saturate(140%);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 16px;
        padding: 12px;
        display: grid;
        gap: 6px;
        list-style: none;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: 0 10px 40px rgba(8, 58, 53, 0.12);
        transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
    }

    .nav-submenu::before {
        display: none;
    }

    .nav-submenu li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 18px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-decoration: none;
        color: var(--text-primary);
        background: transparent;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-submenu li a:hover {
        background: rgba(8, 58, 53, 0.08);
        color: var(--text-primary);
        transform: translateX(4px);
    }

    .nav-dropdown:hover .nav-submenu,
    .nav-dropdown:focus-within .nav-submenu,
    .nav-dropdown.open .nav-submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    nav ul li a {
        text-decoration: none;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        letter-spacing: 1px;
        color: var(--text-primary);
        line-height: 1;
        display: inline-flex;
        align-items: center;

        position: relative;
        padding-bottom: 6px;
    }

    .nav-toggle {
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        width: 42px;
        height: 38px;
        border: 1px solid rgba(8, 58, 53, 0.35);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        padding: 6px;
    }

    .nav-toggle span {
        width: 20px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 999px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    header.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    header.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    header.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ===============================
   WHITE GRADIENT UNDERLINE
================================ */
    nav ul li a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;

        width: 0%;
        height: 2px;

        background: var(--text-primary);

        transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
        width: 100%;
    }

    /* Active link (optional) */
    nav ul li a.active {
        color: var(--text-primary);
    }

    nav ul li a.active::after {
        width: 100%;
        background: var(--text-primary);
    }

    @media (max-width: 860px) {
        body.nav-open {
            overflow: hidden;
        }

        .nav-container {
            position: relative;
            padding: 14px 20px;
            z-index: 1001; /* Above mobile overlay base */
        }

        .logo img {
            height: 52px;
        }

        .nav-toggle {
            display: inline-flex;
            position: relative;
            margin-left: auto;
            z-index: 1010; /* Definitely above the overlay */
            border: none;
            background: rgba(8, 58, 53, 0.06);
            backdrop-filter: blur(8px);
        }

        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100dvh;
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.35s ease, visibility 0.35s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        header.nav-open nav {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        nav ul {
            display: flex !important; /* Force layout inside overlay */
            flex-direction: column;
            align-items: center;
            gap: 24px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 40px 20px;
            transform: translateY(20px);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        header.nav-open nav ul {
            transform: translateY(0);
        }

        .nav-dropdown {
            width: 100%;
            max-width: 320px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .nav-dropdown-toggle {
            width: 100%;
            justify-content: center;
            padding: 14px 20px;
            border-radius: 14px;
            background: rgba(8, 58, 53, 0.05);
            border: 1px solid rgba(8, 58, 53, 0.1);
            font-size: 16px;
            font-weight: 600;
        }

        .nav-submenu {
            position: static;
            transform: none !important;
            box-shadow: none;
            background: rgba(8, 58, 53, 0.03);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            width: 100%;
            max-width: 100%;
            display: none !important;
            padding: 8px;
            border-radius: 14px;
            border: 1px solid rgba(8, 58, 53, 0.08);
            gap: 4px;
            transition: none;
        }

        .nav-dropdown.open .nav-submenu {
            display: grid !important;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .nav-dropdown.open .nav-dropdown-toggle {
            background: rgba(8, 58, 53, 0.08);
            border-color: rgba(8, 58, 53, 0.15);
        }

        nav ul li {
            width: 100%;
            max-width: 320px;
            text-align: center;
        }

        nav ul li a {
            display: block;
            width: 100%;
            padding: 14px 0;
            font-size: 16px;
            font-weight: 600;
        }

        nav ul li a::after {
            display: none; /* Hide hover line on mobile */
        }
    }

    @media (max-width: 980px) {
        .hero {
            padding: 96px 28px;
        }

        .hero h1 {
            font-size: 40px;
        }

    }

    @media (max-width: 560px) {
        .hero {
            padding: 86px 18px;
        }

        .hero h1 {
            font-size: 32px;
        }

        .hero p {
            font-size: 15px;
        }

    }

    /* ---------------------------------------------------------
    HERO SECTION (Gradient)
---------------------------------------------------------- */
    .hero {
        text-align: center;
        padding: 120px 40px;
        background-color: #5DBEB2;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 50px;
        font-weight: 700;
    }

    .hero p {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        max-width: 720px;
        margin: 12px auto 0;
    }

    .hero p+p {
        margin-top: 6px;
    }

    /* ---------------------------------------------------------
    QUICK COMPARISON TABLE
---------------------------------------------------------- */

    /* ---------------------------------------------------------
    PAIN POINT CARDS (Glassmorphic Style for consistency)
---------------------------------------------------------- */

    @keyframes signalContrastPulse {
        0% {
            opacity: 0.9;
            transform: translateY(-50%) scale(1);
            box-shadow: 0 0 0 0 rgba(8, 58, 53, 0.38);
        }

        50% {
            opacity: 0.5;
            transform: translateY(-50%) scale(0.88);
            box-shadow: 0 0 0 6px rgba(8, 58, 53, 0.08);
        }

        100% {
            opacity: 0.9;
            transform: translateY(-50%) scale(1);
            box-shadow: 0 0 0 0 rgba(8, 58, 53, 0.38);
        }
    }

    @keyframes recommendedPlanGlow {
        0% {
            box-shadow: 0 18px 34px rgba(8, 58, 53, 0.22), 0 0 0 0 rgba(156, 195, 63, 0.44);
        }

        50% {
            box-shadow: 0 18px 34px rgba(8, 58, 53, 0.22), 0 0 0 8px rgba(156, 195, 63, 0.12);
        }

        100% {
            box-shadow: 0 18px 34px rgba(8, 58, 53, 0.22), 0 0 0 0 rgba(156, 195, 63, 0.44);
        }
    }

    @keyframes recommendedCtaPulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.03);
        }

        100% {
            transform: scale(1);
        }
    }

    50%,
    100% {
        opacity: 0;
    }
    }

    /* ---------------------------------------------------------
    FOOTER SECTION
---------------------------------------------------------- */
    .saas-footer {
        margin-top: 48px;
        padding: 32px 20px 12px;
        background: #f7f6f2; /* Brutalist paper background */
        border-top: 2px solid #111111;
    }

    .footer-shell {
        max-width: 1200px;
        margin: 0 auto;
        padding: 16px 32px;
        border: 2px solid #111111;
        border-radius: 0;
        background: #ffffff;
        box-shadow: 8px 8px 0 #111111;
        display: grid;
        grid-template-columns: 1.15fr 2fr;
        gap: 24px;
        align-items: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 12px;
        min-width: 230px;
        align-items: flex-start;
    }

    .footer-brand img {
        height: 64px;
        width: auto;
        border: none;
        background: none;
        padding: 0;
    }

    .footer-brand h2 {
        font-size: 1.4rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #111111;
    }

    .footer-brand p {
        margin: 4px 0 0;
        max-width: 340px;
        color: #111111;
        font-weight: 500;
        line-height: 1.4;
    }

    .footer-address {
        font-size: 0.9rem;
        opacity: 0.85;
    }

    .footer-quote-card {
        margin-top: 12px;
        padding: 0;
        background: none;
        border: none;
        box-shadow: none;
        position: relative;
        max-width: 340px;
        text-align: left;
    }

    /* Traditional Pattern Overlay Removed */

    .footer-quote-card > * {
        position: relative;
        z-index: 2;
    }

    .quote-content p {
        font-family: "Poppins", sans-serif;
        font-size: 1.15rem;
        font-weight: 800;
        line-height: 1.3;
        color: #111111;
        margin: 0 0 4px;
        letter-spacing: -0.01em;
    }

    .quote-meta {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .quote-meta p {
        font-size: 0.95rem;
        font-weight: 600;
        color: #111111;
        margin: 0;
        opacity: 0.9;
    }

    .footer-brand a {
        display: inline-block;
        font-size: 0.95rem;
        color: #111111;
        text-decoration: none;
        font-weight: 700;
        border-bottom: 2px solid transparent;
        transition: border-bottom 0.2s ease;
    }

    .footer-brand a:hover {
        border-bottom: 2px solid #111111;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(140px, 1fr));
        gap: 24px;
    }

    .footer-col h4 {
        margin-bottom: 16px;
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #111111;
    }

    .footer-col a {
        display: block;
        margin-bottom: 12px;
        color: #111111;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        line-height: 1.5;
        transition: transform 0.2s ease, padding-left 0.2s ease;
    }

    .footer-col a:hover {
        transform: translateX(4px);
        font-weight: 700;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 24px auto 0;
        padding: 0 4px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        color: #111111;
        font-size: 14px;
        font-weight: 600;
    }

    /* Footer bottom bar removed */

    /* Mobile Responsiveness for Footer */
    @media (max-width: 900px) {
        .footer-shell {
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            padding: 24px 20px;
        }

        .footer-brand {
            width: 100%;
            align-items: flex-start;
            text-align: left;
        }

        .footer-quote-card {
            margin: 24px 0 0;
            width: 100%;
        }

        .footer-grid {
            width: 100%;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            text-align: left;
        }
    }

    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 24px;
            text-align: left;
        }
    }



    .home-page .hero {
        padding: 140px 24px 96px;
        background: transparent;
        text-align: left;
        position: relative;
        overflow: hidden;
    }

    .home-page .hero-content {
        max-width: 980px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .home-page .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
        background-size: 64px 64px;
        opacity: 0.6;
        transform: scale(1.04);
        transform-origin: center;
        animation: heroGridReveal 1.2s ease-out both;
        pointer-events: none;
    }

    .home-page .hero h1 {
        font-size: clamp(2.2rem, 3.8vw, 3.6rem);
        font-weight: 700;
        text-align: center;
    }

    .home-page .hero p {
        font-family: "Poppins", sans-serif;
        font-size: clamp(1rem, 1.6vw, 1.35rem);
        line-height: 1.6;
        max-width: 880px;
        margin: 18px auto 0;
        text-align: center;
    }

    .home-page .hero p strong {
        font-weight: 700;
    }

    @keyframes heroGridReveal {
        0% {
            opacity: 0;
            transform: scale(1.08);
            background-position: 0 0;
        }

        100% {
            opacity: 0.6;
            transform: scale(1.04);
            background-position: 32px 32px;
        }
    }

    @keyframes heroFadeUp {
        0% {
            opacity: 0;
            transform: translate3d(0, 16px, 0);
        }

        100% {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }

    @keyframes heroNavReveal {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero h1,
    .hero p,
    .hero .hero-actions {
        opacity: 0;
        transform: translate3d(0, 16px, 0);
        animation: heroFadeUp 0.72s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    }

    .hero h1 {
        animation-delay: 0.2s;
    }

    .hero p {
        animation-delay: 0.36s;
    }

    .hero p+p {
        animation-delay: 0.48s;
    }

    .hero .hero-actions {
        animation-delay: 0.54s;
    }

    .hero .hero-actions .btn-primary,
    .hero .hero-actions .btn-secondary,
    .hero .hero-actions .hero-btn {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
        animation: heroFadeUp 0.64s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
        animation-delay: 0.68s;
    }

    .hero .hero-actions .btn-secondary,
    .hero .hero-actions .hero-btn+.hero-btn {
        animation-delay: 0.78s;
    }

    @media (prefers-reduced-motion: reduce) {
        main section.section-reveal {
            opacity: 1;
            transform: none;
            transition: none;
            will-change: auto;
        }

        .home-page .hero::before {
            animation: none;
        }

        body>header {
            animation: none;
            opacity: 1;
            transform: none;
        }

        .home-page .hero h1,
        .home-page .hero p,
        .home-page .hero .hero-actions,
        .home-page .hero .hero-btn,
        .plp-page .hero h1,
        .plp-page .hero p {
            animation: none;
            opacity: 1;
            transform: none;
        }
    }

    .home-page .hero-actions {
        margin-top: 40px;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-page .hero-actions .btn-primary,
    .home-page .hero-actions .btn-secondary {
        justify-content: center;
        padding-right: 22px;
        text-align: center;
    }

    .home-page .btn-primary,
    .home-page .btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 22px;
        padding-right: 42px;
        border-radius: 12px;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        border: 2px solid #0b3f3b;
        color: #0b3f3b;
        background: #ffffff;
        min-width: 260px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        position: relative;
        overflow: visible;
    }

    .home-page .btn-primary::after,
    .home-page .btn-secondary::after {
        content: "\2197";
        font-size: 1.2rem;
        line-height: 1;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }

    .home-page .hero-actions .btn-primary::after,
    .home-page .hero-actions .btn-secondary::after {
        content: none;
    }

    .home-page .hero-actions .btn-primary .cta-dot,
    .home-page .hero-actions .btn-secondary .cta-dot {
        position: absolute;
        right: 16px;
        top: 50%;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #0b3f3b;
        transform: translateY(-50%);
        animation: signalContrastPulse 1.35s ease-in-out infinite;
        z-index: 1;
    }

    .home-page .btn-primary:hover,
    .home-page .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(8, 58, 53, 0.2);
    }

    @media (prefers-reduced-motion: reduce) {

        .home-page .hero-actions .btn-primary .cta-dot,
        .home-page .hero-actions .btn-secondary .cta-dot {
            animation: none;
        }
    }

    @media (max-width: 560px) {
        .footer-shell {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .footer-brand {
            min-width: 0;
        }

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

        .saas-footer {
            padding: 24px 14px 14px;
        }

        .footer-shell {
            padding: 20px;
        }

        .footer-col a,
        .footer-brand a,
        .footer-address {
            overflow-wrap: anywhere;
            word-break: break-word;
        }
    }

    /* ===============================
   PLP PAGE (Scoped)
================================ */
    .plp-page .hero {
        max-width: 980px;
        margin: 0 auto;
        padding: 88px 24px 46px;
        text-align: center;
    }

    .plp-page .hero h1 {
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .plp-page .hero p {
        margin-top: 12px;
        font-size: clamp(1rem, 2.3vw, 1.15rem);
    }

    .plp-page .catalog-section {
        width: min(720px, 92vw);
        margin: 0 auto 18px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        border-radius: 999px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
    }

    .plp-page .filter-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 6px;
        border-radius: 999px;
        background: rgba(8, 58, 53, 0.06);
    }

    .plp-page .filter-btn {
        min-width: 120px;
        padding: 10px 16px;
        border-radius: 999px;
        border: 1px solid transparent;
        background: rgba(8, 58, 53, 0.08);
        color: var(--text-primary);
        font-weight: 900;
        letter-spacing: 0.6px;
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .plp-page .filter-btn.active {
        background: var(--action);
        color: var(--text-on-dark);
    }

    .plp-page .filter-btn:hover {
        transform: translateY(-1px);
    }

    .plp-page .product-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, minmax(220px, 1fr));
        gap: 22px;
    }

    .plp-page .product-card {
        background: var(--surface);
        border: 1px solid var(--border-soft);
        border-radius: 18px;
        padding: 22px;
        backdrop-filter: blur(8px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-height: 275px;
        opacity: 1;
        transform: translateY(0) scale(1);
        transition: transform 0.28s ease, box-shadow 0.24s ease, opacity 0.28s ease;
    }

    .plp-page .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
    }

    .plp-page .product-card.is-hidden {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
        pointer-events: none;
    }

    .plp-page .product-card.hidden {
        display: none;
    }

    .plp-page .product-card h3 {
        font-size: 1.15rem;
    }

    .plp-page .product-image {
        width: 100%;
        height: 150px;
        object-fit: cover;
        object-position: center;
        margin: 4px 0 2px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: block;
    }

    .plp-page .product-image[src=""] {
        display: none;
    }

    .plp-page .spec-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        opacity: 0.8;
    }

    .plp-page .spec-value {
        font-size: 0.95rem;
        font-weight: 700;
    }

    .plp-page .action-btn {
        margin-top: auto;
        width: 100%;
        border: none;
        border-radius: 10px;
        padding: 11px 14px;
        font-family: "Montserrat", sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.6px;
        color: var(--text-on-dark);
        background: var(--action);
        position: relative;
        overflow: hidden;
        transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    .plp-page .action-btn:hover {
        color: var(--action);
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(8, 58, 53, 0.25);
    }

    .plp-page .action-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #ffffff;
        transform: translateX(-110%);
        transition: transform 0.35s ease;
        z-index: -1;
    }

    .plp-page .action-btn:hover::before {
        transform: translateX(0);
    }

    /* ===============================
   PDP PAGE (Scoped)
================================ */
    .pdp-page .buy-main,
    .buy-main {
        max-width: 1200px;
        margin: 0 auto;
        padding: 36px 24px 64px;
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .pdp-page .product-shell,
    .buy-main .product-shell {
        display: grid;
        grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.1fr);
        gap: 32px;
        background: var(--surface);
        border: 1px solid var(--border-soft);
        border-radius: 22px;
        padding: 26px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
    }

    .pdp-page .image-section,
    .buy-main .image-section {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .pdp-page .image-placeholder,
    .buy-main .image-placeholder {
        width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        letter-spacing: 0.8px;
        color: var(--text-primary);
    }

    .pdp-page .image-buttons,
    .buy-main .image-buttons {
        display: flex;
        gap: 10px;
    }

    .pdp-page .image-buttons button,
    .buy-main .image-buttons button {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        border: 1px solid rgba(8, 58, 53, 0.3);
        background: rgba(255, 255, 255, 0.35);
        font-weight: 700;
        color: var(--text-primary);
        transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .pdp-page .image-buttons button:hover,
    .buy-main .image-buttons button:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.6);
    }

    .pdp-page .details-section,
    .buy-main .details-section {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .pdp-page .details-section h2,
    .buy-main .details-section h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .pdp-page .price,
    .buy-main .price {
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 14px;
        padding: 12px 14px;
        font-weight: 700;
    }

    .pdp-page .details-section label,
    .buy-main .details-section label {
        font-size: 0.85rem;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        font-weight: 700;
        margin-top: 6px;
    }

    .pdp-page .details-section select,
    .buy-main .details-section select {
        padding: 10px 12px;
        border-radius: 10px;
        border: 1px solid rgba(8, 58, 53, 0.25);
        background: rgba(255, 255, 255, 0.7);
        font-family: inherit;
        font-size: 0.95rem;
    }

    .pdp-page .enquiry-button,
    .buy-main .enquiry-button {
        margin-top: 12px;
        width: 100%;
        border: none;
        border-radius: 12px;
        padding: 12px 16px;
        font-family: "Montserrat", sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.7px;
        color: var(--text-on-dark);
        background: var(--action);
        transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .pdp-page .enquiry-button:hover,
    .buy-main .enquiry-button:hover {
        background: var(--action-hover);
        transform: translateY(-2px);
    }

    .pdp-page .quote-form {
        padding: 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(224, 255, 248, 0.8);
        box-shadow: inset 0 0 0 1px rgba(8, 58, 53, 0.18), 0 0 0 2px rgba(188, 255, 244, 0.25);
    }

    .pdp-page .quote-form h3 {
        margin: 0 0 8px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .pdp-page .quote-form input,
    .pdp-page .quote-form textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 12px;
        border-radius: 10px;
        border: 1px solid rgba(8, 58, 53, 0.25);
        background: rgba(255, 255, 255, 0.75);
        font-family: inherit;
        font-size: 0.95rem;
    }

    .pdp-page .quote-form textarea {
        resize: vertical;
    }

    .pdp-page .quote-status {
        min-height: 1.1rem;
        margin: 8px 2px 0;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .pdp-page .quote-modal {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: grid;
        place-items: center;
        padding: 16px;
        background: rgba(0, 16, 14, 0.55);
    }

    .pdp-page .quote-modal[hidden] {
        display: none !important;
    }

    .pdp-page .quote-modal-panel {
        position: relative;
        width: min(560px, 100%);
        max-height: 88vh;
        overflow: auto;
        border-radius: 16px;
        border: 1px solid transparent;
        background:
            linear-gradient(160deg, rgba(98, 202, 190, 0.95), rgba(44, 114, 106, 0.95)) padding-box,
            linear-gradient(135deg, rgba(227, 255, 249, 0.95), rgba(137, 241, 226, 0.95), rgba(227, 255, 249, 0.95)) border-box;
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(227, 255, 249, 0.35);
    }

    .pdp-page .quote-close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        border: none;
        border-radius: 999px;
        font-size: 1rem;
        line-height: 1;
        font-weight: 700;
        color: #032220;
        background: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    }

    .pdp-page .expandable,
    .buy-main .expandable {
        display: grid;
        gap: 12px;
    }

    .pdp-page .expandable details,
    .buy-main .expandable details {
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 14px;
        padding: 12px 16px;
    }

    .pdp-page .expandable summary,
    .buy-main .expandable summary {
        font-weight: 700;
        letter-spacing: 0.8px;
        cursor: pointer;
    }

    .pdp-page .features-container,
    .buy-main .features-container {
        --feature-gap-x: clamp(24px, 2.4vw, 40px);
        --feature-gap-y: clamp(30px, 3.2vw, 52px);
        --feature-marker-size: 30px;
        --feature-marker-stroke: 2px;
        --feature-edge-offset: 8px;
        --feature-mark: rgba(228, 250, 245, 0.95);
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: var(--feature-gap-x);
        row-gap: var(--feature-gap-y);
        width: min(100%, 1080px);
        margin: 0 auto;
        padding: clamp(28px, 3.4vw, 46px) clamp(20px, 2.8vw, 36px);
        box-sizing: border-box;
        overflow: clip;
        background: #5dbeb2;
    }

    .pdp-page .features-container:empty,
    .buy-main .features-container:empty {
        display: none;
    }

    .pdp-page .feature-box,
    .buy-main .feature-box {
        position: relative;
        min-height: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        min-width: 0;
        padding: 12px 4px 0;
        box-shadow: none;
        color: #001b19;
    }

    .pdp-page .feature-box::before,
    .pdp-page .feature-box::after,
    .buy-main .feature-box::before,
    .buy-main .feature-box::after {
        content: none;
        position: absolute;
        top: -10px;
        width: var(--feature-marker-size);
        height: var(--feature-marker-size);
        pointer-events: none;
    }

    /* Junction crosshairs: one between each pair of columns, every row */
    .pdp-page .feature-box:nth-child(3n + 2)::before,
    .pdp-page .feature-box:nth-child(3n)::before {
        content: "";
        left: calc((-1 * var(--feature-gap-x) / 2) - (var(--feature-marker-size) / 2));
        background:
            linear-gradient(var(--feature-mark), var(--feature-mark)) center top / var(--feature-marker-stroke) var(--feature-marker-size) no-repeat,
            linear-gradient(var(--feature-mark), var(--feature-mark)) left center / var(--feature-marker-size) var(--feature-marker-stroke) no-repeat,
            linear-gradient(var(--feature-mark), var(--feature-mark)) right center / var(--feature-marker-size) var(--feature-marker-stroke) no-repeat;
    }

    /* Edge markers: left edge of first card, right edge of last card in each row */
    .pdp-page .feature-box:nth-child(3n + 1)::after {
        content: "";
        left: calc(-1 * var(--feature-edge-offset));
        background:
            linear-gradient(var(--feature-mark), var(--feature-mark)) left center / var(--feature-marker-stroke) var(--feature-marker-size) no-repeat,
            linear-gradient(var(--feature-mark), var(--feature-mark)) left center / calc(var(--feature-marker-size) - 4px) var(--feature-marker-stroke) no-repeat;
    }

    .pdp-page .feature-box:nth-child(3n)::after {
        content: "";
        right: calc(-1 * var(--feature-edge-offset));
        background:
            linear-gradient(var(--feature-mark), var(--feature-mark)) right center / var(--feature-marker-stroke) var(--feature-marker-size) no-repeat,
            linear-gradient(var(--feature-mark), var(--feature-mark)) right center / calc(var(--feature-marker-size) - 4px) var(--feature-marker-stroke) no-repeat;
    }

    .pdp-page .feature-box h3,
    .buy-main .feature-box h3 {
        margin: 0 0 16px;
        font-family: "Montserrat", sans-serif;
        font-size: clamp(1.95rem, 2.2vw, 2.25rem);
        font-weight: 700;
        line-height: 1.02;
        letter-spacing: -0.2px;
        white-space: pre-line;
        color: #001b19;
    }

    .pdp-page .feature-box p,
    .buy-main .feature-box p {
        margin: 0;
        font-family: "Montserrat", sans-serif;
        font-size: clamp(1.06rem, 1.2vw, 1.18rem);
        line-height: 1.12;
        letter-spacing: -0.05px;
        overflow-wrap: break-word;
        color: #001b19;
    }

    .pdp-page .specs-container,
    .buy-main .specs-container {
        background: rgba(255, 255, 255, 0.12);
        border: 2px solid #000000;
        border-radius: 18px;
        width: min(100%, 1080px);
        margin: 0 auto;
        padding: clamp(20px, 2.8vw, 32px) clamp(18px, 2.6vw, 30px);
        box-sizing: border-box;
    }

    .pdp-page .specs-container table,
    .buy-main .specs-container table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.95rem;
    }

    .pdp-page .specs-container th,
    .pdp-page .specs-container td,
    .buy-main .specs-container th,
    .buy-main .specs-container td {
        text-align: left;
        padding: 10px 8px;
        border-bottom: 1px solid rgba(8, 58, 53, 0.2);
    }

    @media (max-width: 1100px) {
        .plp-page .product-grid {
            grid-template-columns: repeat(3, minmax(200px, 1fr));
        }
    }

    @media (max-width: 980px) {
        .pdp-page .product-shell {
            grid-template-columns: 1fr;
        }

        .pdp-page .features-container {
            grid-template-columns: repeat(2, minmax(200px, 1fr));
            --feature-gap-x: 24px;
            --feature-gap-y: 34px;
            --feature-marker-size: 28px;
            --feature-edge-offset: 6px;
            padding: 24px 18px;
        }

        .pdp-page .feature-box::before,
        .pdp-page .feature-box::after {
            top: -10px;
        }

        .pdp-page .feature-box:nth-child(3n + 2)::before,
        .pdp-page .feature-box:nth-child(3n)::before,
        .pdp-page .feature-box:nth-child(3n + 1)::after,
        .pdp-page .feature-box:nth-child(3n)::after {
            content: none;
        }

        .pdp-page .feature-box:nth-child(2n)::before {
            content: "";
            left: calc((-1 * var(--feature-gap-x) / 2) - (var(--feature-marker-size) / 2));
            background:
                linear-gradient(var(--feature-mark), var(--feature-mark)) center top / var(--feature-marker-stroke) var(--feature-marker-size) no-repeat,
                linear-gradient(var(--feature-mark), var(--feature-mark)) left center / var(--feature-marker-size) var(--feature-marker-stroke) no-repeat,
                linear-gradient(var(--feature-mark), var(--feature-mark)) right center / var(--feature-marker-size) var(--feature-marker-stroke) no-repeat;
        }

        .pdp-page .feature-box:nth-child(2n + 1)::after {
            content: "";
            left: calc(-1 * var(--feature-edge-offset));
            background:
                linear-gradient(var(--feature-mark), var(--feature-mark)) left center / var(--feature-marker-stroke) var(--feature-marker-size) no-repeat,
                linear-gradient(var(--feature-mark), var(--feature-mark)) left center / calc(var(--feature-marker-size) - 4px) var(--feature-marker-stroke) no-repeat;
        }

        .pdp-page .feature-box:nth-child(2n)::after {
            content: "";
            right: calc(-1 * var(--feature-edge-offset));
            background:
                linear-gradient(var(--feature-mark), var(--feature-mark)) right center / var(--feature-marker-stroke) var(--feature-marker-size) no-repeat,
                linear-gradient(var(--feature-mark), var(--feature-mark)) right center / calc(var(--feature-marker-size) - 4px) var(--feature-marker-stroke) no-repeat;
        }
    }

    @media (max-width: 640px) {
        .pdp-page .buy-main {
            padding: 24px 16px 48px;
        }

        .pdp-page .features-container {
            grid-template-columns: 1fr;
            width: 100%;
            margin: 0;
            --feature-marker-size: 24px;
            padding: 20px 16px 16px;
            gap: 24px;
        }

        .pdp-page .feature-box::before,
        .pdp-page .feature-box::after {
            content: none;
        }
    }

    @media (max-width: 560px) {
        .plp-page .hero {
            padding: 48px 18px 34px;
        }

        .plp-page .catalog-section {
            padding: 8px;
        }

        .plp-page .filter-btn {
            min-width: 90px;
            padding: 9px 12px;
            font-size: 0.85rem;
        }

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

    }

    /* ===============================
   JAAS LANDING (Scoped)
================================ */

    /* ---------------------------------------------------------
    JAAS LANDING ANIMATIONS
---------------------------------------------------------- */

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes saturate {
        to {
            filter: saturate(1.15);
        }
    }

    @keyframes flowPulse {
        0% {
            opacity: 0.45;
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0.45;
        }
    }


    100% {
        box-shadow: 0 14px 26px rgba(20, 170, 144, 0.3);
    }

    /* ---------------------------------------------------------
    JAAS SUPPORTING ANIMATIONS
---------------------------------------------------------- */

    @keyframes jaasFlow {
        from {
            stroke-dashoffset: 0;
        }

        to {
            stroke-dashoffset: -220;
        }
    }

    @keyframes jaasPulse {
        0% {
            opacity: 0.7;
            transform: scale(0.65);
        }

        100% {
            opacity: 0;
            transform: scale(1.45);
        }
    }

    /* ---------------------------------------------------------
    JAAS SOVEREIGN LANDING (Production Scoped)
---------------------------------------------------------- */
    .jaas-sovereign-page {
        background:
            radial-gradient(circle at 10% 0%, rgba(246, 255, 253, 0.22), transparent 36%),
            radial-gradient(circle at 95% 100%, rgba(8, 58, 53, 0.1), transparent 32%),
            var(--bg-main);
        color: var(--text-primary);
        padding-top: 96px;
    }

    .jaas-sovereign-page main {
        width: min(1180px, calc(100vw - 44px));
        margin: 14px auto 88px;
        display: grid;
        gap: 28px;
    }

    .jaas-sovereign-page section {
        border-radius: 20px;
        border: 1px solid var(--border-soft);
        background: var(--surface);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 10px 24px rgba(8, 58, 53, 0.1);
        padding: 34px 30px;
    }

    .jaas-sovereign-page h1,
    .jaas-sovereign-page h2,
    .jaas-sovereign-page h3 {
        font-family: "Montserrat", sans-serif;
    }

    .jaas-sovereign-page p,
    .jaas-sovereign-page li,
    .jaas-sovereign-page button {
        font-family: "Poppins", sans-serif;
    }

    .jaas-sovereign-page .hero {
        text-align: center;
        padding: 54px 36px;
        background: rgba(245, 255, 253, 0.34);
        animation: jaasHeroIn 0.7s ease-out both;
    }

    .jaas-sovereign-page .hero-shell {
        width: min(980px, 100%);
        margin: 0 auto;
    }

    .jaas-sovereign-page .hero-kicker {
        margin: 0;
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(8, 58, 53, 0.85);
        font-weight: 600;
    }

    .jaas-sovereign-page .hero h1 {
        margin-top: 12px;
        margin-bottom: 0;
        font-size: clamp(2.15rem, 4.7vw, 3.85rem);
        line-height: 1.04;
        letter-spacing: -0.02em;
        text-wrap: balance;
    }

    .jaas-sovereign-page .hero-copy {
        margin: 14px auto 0;
        max-width: 720px;
        font-size: 1.08rem;
    }

    .jaas-sovereign-page .hero-actions {
        margin-top: 28px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .jaas-sovereign-page .hero-btn {
        border: 3px solid #0b3f3b;
        border-radius: 12px;
        padding: 13px 18px;
        font-size: 1rem;
        font-weight: 700;
        min-width: 240px;
        font-family: "Montserrat", sans-serif;
        letter-spacing: 0.01em;
        transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
    }

    .jaas-sovereign-page .hero-btn:hover,
    .jaas-sovereign-page .hero-btn:focus-visible {
        transform: translate(2px, 2px);
        box-shadow: 2px 2px 0 #083a35;
        outline: none;
    }

    .jaas-sovereign-page .hero-btn:active {
        transform: translate(3px, 3px);
        box-shadow: 1px 1px 0 #083a35;
    }

    .jaas-sovereign-page .btn-glass {
        background: #0f5b54;
        color: #f3fffd;
        box-shadow: 4px 4px 0 #083a35;
    }

    .jaas-sovereign-page .btn-outline {
        background: #e8f6f3;
        color: #083a35;
        box-shadow: 4px 4px 0 #083a35;
    }

    .jaas-sovereign-page .problem h2,
    .jaas-sovereign-page .economics h2 {
        font-size: clamp(1.6rem, 3vw, 2.35rem);
        letter-spacing: -0.02em;
    }

    .jaas-sovereign-page .problem-grid {
        margin-top: 18px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .jaas-sovereign-page .problem-card {
        border: 2px solid #083a35;
        border-radius: 14px;
        background: #f7fffe;
        box-shadow: 5px 5px 0 rgba(8, 58, 53, 0.18);
        padding: 18px;
        font-size: 1.02rem;
        font-weight: 700;
    }

    .jaas-sovereign-page .mode-selector {
        display: grid;
        gap: 16px;
    }

    .jaas-sovereign-page .section-head h2 {
        margin: 0;
    }

    .jaas-sovereign-page .mode-system-message {
        margin: 8px 0 0;
        font-size: 0.96rem;
        color: rgba(8, 58, 53, 0.78);
        min-height: 22px;
        opacity: 0.7;
    }

    .jaas-sovereign-page .mode-system-message.is-active {
        animation: jaasMessageFadeIn 0.52s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .jaas-sovereign-page .mode-toggle {
        display: inline-flex;
        gap: 14px;
        padding: 8px;
        border: 1px solid var(--border-soft);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.48);
        box-shadow: 0 10px 18px rgba(8, 58, 53, 0.08);
        width: fit-content;
    }

    .jaas-sovereign-page .mode-btn {
        border: 1px solid rgba(8, 58, 53, 0.2);
        border-radius: 999px;
        padding: 11px 20px;
        font-weight: 700;
        font-family: "Montserrat", sans-serif;
        background: rgba(255, 255, 255, 0.72);
        color: rgba(8, 58, 53, 0.88);
        transition:
            background-color 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
            color 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
            border-color 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
            box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
            transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .jaas-sovereign-page .mode-btn:hover {
        border-color: rgba(8, 58, 53, 0.42);
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
    }

    .jaas-sovereign-page .mode-btn:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(8, 58, 53, 0.18);
    }

    .jaas-sovereign-page .mode-btn.active {
        border-color: #0b4b47;
        background: #0b4b47;
        color: #f6fffd;
        transform: scale(1.04);
        box-shadow:
            0 0 0 1px rgba(246, 255, 253, 0.44) inset,
            0 0 16px rgba(28, 165, 148, 0.28);
    }

    .jaas-sovereign-page .mode-selector[data-active-mode="edge"] .mode-btn[data-mode="edge"].active {
        background: #0b4b47;
        border-color: #0b4b47;
    }

    .jaas-sovereign-page .mode-selector[data-active-mode="hybrid"] .mode-btn[data-mode="hybrid"].active {
        background: #0a3f57;
        border-color: #0a3f57;
        box-shadow:
            0 0 0 1px rgba(241, 250, 255, 0.44) inset,
            0 0 16px rgba(56, 146, 186, 0.28);
    }

    .jaas-sovereign-page .mode-cards-grid {
        display: grid;
        gap: 14px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
    }

    .jaas-sovereign-page .mode-card {
        border: 3px solid #000000;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.5);
        padding: 16px;
        position: relative;
        backdrop-filter: blur(8px);
        box-shadow: 0 8px 18px rgba(8, 58, 53, 0.1);
        transform: none;
        animation: none;
        align-self: start;
        height: auto;
        transition:
            opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1),
            border-color 0.28s ease,
            box-shadow 0.28s ease,
            background 0.28s ease;
    }

    .jaas-sovereign-page .mode-card-badge-label {
        position: absolute;
        top: 0;
        right: 0;
        background: #000000;
        color: #ffffff;
        padding: 4px 12px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 0 13px 0 13px;
        letter-spacing: 1px;
        z-index: 10;
        box-shadow: -4px 4px 0 rgba(0, 0, 0, 0.1);
    }

    .jaas-sovereign-page .mode-card:hover,
    .jaas-sovereign-page .mode-card:focus-visible {
        transform: none;
        border-color: rgba(8, 58, 53, 0.4);
        box-shadow: 0 10px 18px rgba(8, 58, 53, 0.12);
    }

    .jaas-sovereign-page .mode-card:focus-visible {
        outline: none;
        border-color: rgba(8, 58, 53, 0.48);
    }

    .jaas-sovereign-page .mode-card:nth-child(2) {
        animation-duration: 7s;
    }

    .jaas-sovereign-page .mode-card:nth-child(3) {
        animation-duration: 5.5s;
    }

    .jaas-sovereign-page .mode-card h3 {
        margin: 0;
        font-size: 1.2rem;
        font-family: "Montserrat", sans-serif;
    }

    .jaas-sovereign-page .mode-card p {
        margin: 8px 0 0;
        color: rgba(8, 58, 53, 0.85);
        font-size: 0.95rem;
        font-family: "Poppins", sans-serif;
    }

    .jaas-sovereign-page .mode-card-header {
        display: grid;
        gap: 6px;
    }

    .jaas-sovereign-page .mode-card.is-edge-card {
        display: flex;
        flex-direction: column;
    }

    .jaas-sovereign-page .mode-card.is-edge-card .mode-card-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .jaas-sovereign-page .mode-card.is-edge-card:not(.is-expanded) {
        min-height: 276px;
    }

    .jaas-sovereign-page .mode-selector[data-active-mode="hybrid"] .mode-card {
        min-height: 276px;
        display: flex;
        flex-direction: column;
    }

    .jaas-sovereign-page .mode-card-trigger {
        margin-top: 4px;
        justify-self: start;
        border: 1px solid #0c4a44;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.72);
        color: #0c4a44;
        padding: 8px 12px;
        font-family: "Poppins", sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        line-height: 1;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .jaas-sovereign-page .mode-card.is-edge-card .mode-card-trigger {
        margin-top: 10px;
    }

    .jaas-sovereign-page .mode-card-trigger:hover,
    .jaas-sovereign-page .mode-card-trigger:focus-visible {
        transform: none;
        box-shadow: 0 6px 12px rgba(8, 58, 53, 0.12);
        outline: none;
    }

    .jaas-sovereign-page .mode-performance {
        margin-top: 2px;
    }

    .jaas-sovereign-page .mode-performance-line {
        margin: 0;
        color: rgba(8, 58, 53, 0.95);
        font-family: "Poppins", sans-serif;
        font-size: 0.93rem;
        font-weight: 600;
    }

    .jaas-sovereign-page .mode-performance-line+.mode-performance-line {
        margin-top: 4px;
    }

    .jaas-sovereign-page .mode-capabilities {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 7px;
    }

    .jaas-sovereign-page .mode-capabilities li {
        position: relative;
        padding-left: 20px;
        color: rgba(8, 58, 53, 0.92);
        font-family: "Poppins", sans-serif;
        font-size: 0.88rem;
    }

    .jaas-sovereign-page .mode-capabilities li::before {
        content: "\2713";
        position: absolute;
        left: 0;
        top: 0;
        color: #0c4a44;
        font-weight: 700;
    }

    .jaas-sovereign-page .mode-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
    }

    .jaas-sovereign-page .mode-badges span {
        border-radius: 999px;
        padding: 6px 10px;
        background: rgba(8, 58, 53, 0.1);
        color: #083a35;
        font-size: 0.78rem;
        font-weight: 700;
        font-family: "Montserrat", sans-serif;
    }

    .jaas-sovereign-page .mode-card-details {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.36s ease-in-out, opacity 0.3s ease-in-out, margin-top 0.36s ease-in-out;
    }

    .jaas-sovereign-page .mode-card-details-inner {
        opacity: 0;
        transform: translateY(6px);
        transition: opacity 0.24s ease-in-out 0.08s, transform 0.24s ease-in-out 0.08s;
    }

    .jaas-sovereign-page .mode-detail-group {
        display: grid;
        gap: 8px;
    }

    .jaas-sovereign-page .mode-detail-group+.mode-detail-group {
        margin-top: 12px;
    }

    .jaas-sovereign-page .mode-detail-group h4 {
        margin: 0;
        font-family: "Montserrat", sans-serif;
        font-size: 0.84rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: rgba(8, 58, 53, 0.75);
    }

    .jaas-sovereign-page .mode-card-actions {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .jaas-sovereign-page .mode-card-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        border: 1px solid #0c4a44;
        padding: 10px 12px;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        font-size: 0.9rem;
        text-decoration: none;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .jaas-sovereign-page .mode-card-btn:hover,
    .jaas-sovereign-page .mode-card-btn:focus-visible {
        transform: none;
        box-shadow: 0 6px 12px rgba(8, 58, 53, 0.12);
        outline: none;
    }

    .jaas-sovereign-page .mode-card-btn-docs {
        background: rgba(255, 255, 255, 0.68);
        color: #0c4a44;
    }

    .jaas-sovereign-page .mode-card-btn-primary {
        background: #0c4a44;
        color: #f6fffd;
    }

    .jaas-sovereign-page .mode-card-cta {
        margin-top: 14px;
        width: 100%;
        border-radius: 10px;
        border: 1px solid #0c4a44;
        background: #0c4a44;
        color: #f6fffd;
        font-weight: 600;
        padding: 10px 12px;
    }

    .jaas-sovereign-page .mode-card.is-recommended {
        border: 3px solid #000000;
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.68), rgba(238, 250, 248, 0.56));
        box-shadow: 0 10px 20px rgba(8, 58, 53, 0.12);
        z-index: 2;
    }

    .jaas-sovereign-page .mode-selector[data-active-mode="hybrid"] .mode-card.is-recommended {
        border: 3px solid #000000;
        background:
            radial-gradient(circle at 30% 46%, rgba(162, 220, 103, 0.16), transparent 42%),
            radial-gradient(circle at 64% 40%, rgba(255, 255, 255, 0.32), transparent 48%),
            linear-gradient(160deg, rgba(245, 255, 252, 0.76), rgba(230, 247, 243, 0.64));
        box-shadow:
            0 0 24px rgba(156, 220, 92, 0.2),
            0 10px 20px rgba(8, 58, 53, 0.12);
        animation: nemoclawnGlow 4.8s ease-in-out infinite;
    }

    .jaas-sovereign-page .mode-cards-grid.has-expanded-card .mode-card.is-recommended:not(.is-expanded) {
        border-color: rgba(8, 58, 53, 0.28);
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 0 8px 18px rgba(8, 58, 53, 0.1);
        z-index: 1;
    }

    .jaas-sovereign-page .mode-card.is-expanded {
        animation: none;
        border: 3px solid #000000;
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.48) inset,
            0 16px 30px rgba(8, 58, 53, 0.2),
            0 0 0 2px rgba(12, 74, 68, 0.24);
        z-index: 4;
    }

    .jaas-sovereign-page .mode-card.is-expanded .mode-card-details {
        max-height: 300px;
        opacity: 1;
        margin-top: 12px;
    }

    .jaas-sovereign-page .mode-card.is-expanded .mode-card-details-inner {
        opacity: 1;
        transform: translateY(0);
    }

    .jaas-sovereign-page .mode-cards-grid.has-expanded-card .mode-card.is-edge-card:not(.is-expanded) {
        opacity: 1;
    }

    .jaas-sovereign-page .mode-card.is-hidden {
        opacity: 0;
        transform: translateY(16px);
    }

    .jaas-sovereign-page .mode-note {
        min-height: 22px;
        margin: 0;
        color: rgba(8, 58, 53, 0.85);
        font-size: 0.94rem;
    }

    .jaas-sovereign-page .mode-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .jaas-sovereign-page .mode-cards-grid,
    .jaas-sovereign-page .mode-note,
    .jaas-sovereign-page .mode-actions {
        transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .jaas-sovereign-page .mode-cards-grid.is-fading-out,
    .jaas-sovereign-page .mode-note.is-fading-out,
    .jaas-sovereign-page .mode-actions.is-fading-out {
        opacity: 0;
        transform: translateY(6px);
        pointer-events: none;
    }

    .jaas-sovereign-page .mode-cards-grid.is-fading-in,
    .jaas-sovereign-page .mode-note.is-fading-in,
    .jaas-sovereign-page .mode-actions.is-fading-in {
        opacity: 1;
        transform: translateY(0);
    }

    .jaas-sovereign-page .nemoclaw-grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        align-items: stretch;
    }

    .jaas-sovereign-page .nemoclaw-title {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .jaas-sovereign-page .nemoclaw-title-icon {
        width: 30px;
        height: 30px;
        object-fit: contain;
        display: block;
    }

    .jaas-sovereign-page .glass-feature {
        border: 1px solid rgba(8, 58, 53, 0.2);
        border-radius: 14px;
        background: var(--surface-strong);
        padding: 14px;
    }

    .jaas-sovereign-page .governance-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        align-items: stretch;
        margin-top: 24px;
    }

    .jaas-sovereign-page .glass-feature.security-governance-card {
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-height: 120px;
        padding: 24px;
        height: 100%;
        background: rgba(255, 255, 255, 0.45);
        border: 1px solid rgba(8, 58, 53, 0.12);
        border-radius: 20px;
    }

    @media (max-width: 1024px) {
        .jaas-sovereign-page .nemoclaw-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .jaas-sovereign-page .nemoclaw-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .jaas-sovereign-page .nemoclaw {
            padding-bottom: 100px;
        }
    }

    .jaas-sovereign-page .governance-icon {
        position: relative;
        z-index: 1;
        color: #0b4b47;
        line-height: 0;
        animation: governanceFloat 3.8s ease-in-out infinite, governanceGlow 4.6s ease-in-out infinite;
        transition: filter 0.35s ease;
    }

    .jaas-sovereign-page .governance-icon svg {
        width: 50px;
        height: 50px;
        transition: transform 0.35s ease;
    }

    .jaas-sovereign-page .governance-icon::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 72px;
        height: 72px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(38, 182, 162, 0.3) 0%, rgba(38, 182, 162, 0) 72%);
        transform: translate(-50%, -50%) scale(0.9);
        animation: governanceHalo 4.2s ease-in-out infinite;
        pointer-events: none;
        z-index: -1;
    }

    .jaas-sovereign-page .glass-feature.security-governance-card:hover .governance-icon {
        filter: drop-shadow(0 6px 16px rgba(11, 75, 71, 0.2));
    }

    .jaas-sovereign-page .glass-feature.security-governance-card:hover .governance-icon svg {
        transform: scale(1.04);
    }

    .jaas-sovereign-page .glass-feature h3 {
        margin: 0;
        font-size: 1.06rem;
    }

    .jaas-sovereign-page .glass-feature p {
        margin: 8px 0 0;
        font-size: 0.92rem;
    }

    .jaas-sovereign-page .logo-pill {
        margin-top: 10px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 0;
    }

    .jaas-sovereign-page .logo-strip-mark {
        width: 24px;
        height: 24px;
        display: block;
        transition: transform 0.25s ease, filter 0.25s ease;
    }

    .jaas-sovereign-page .logo-strip-img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        display: block;
        transition: transform 0.25s ease, filter 0.25s ease;
    }

    .jaas-sovereign-page .logo-strip-mark svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .jaas-sovereign-page .mistral-mark {
        width: 26px;
    }

    .jaas-sovereign-page .logo-pill:hover .logo-strip-mark {
        transform: translateY(-2px);
        filter: drop-shadow(0 3px 8px rgba(8, 58, 53, 0.18));
    }

    .jaas-sovereign-page .logo-pill:hover .logo-strip-img {
        transform: translateY(-2px);
        filter: drop-shadow(0 3px 8px rgba(8, 58, 53, 0.18));
    }

    .jaas-sovereign-page .economics-grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .jaas-sovereign-page .economics-subtitle {
        margin: 10px 0 0;
        color: rgba(8, 58, 53, 0.86);
        font-size: 1rem;
    }

    .jaas-sovereign-page .roi-layout {
        margin-top: 16px;
        display: grid;
        grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
        gap: 14px;
        align-items: start;
    }

    .jaas-sovereign-page .roi-inputs-card {
        background: rgba(255, 255, 255, 0.92);
        border: 2px solid #083a35;
        border-radius: 14px;
        box-shadow: 6px 6px 0 rgba(8, 58, 53, 0.2);
        padding: 18px;
    }

    .jaas-sovereign-page .roi-inputs-card h3 {
        margin: 0;
        font-size: 1.02rem;
    }

    .jaas-sovereign-page .roi-field {
        margin-top: 12px;
        display: grid;
        gap: 7px;
    }

    .jaas-sovereign-page .roi-field span {
        font-size: 0.86rem;
        font-weight: 700;
        letter-spacing: 0.01em;
    }

    .jaas-sovereign-page .roi-field input,
    .jaas-sovereign-page .roi-field select {
        width: 100%;
        box-sizing: border-box;
        border: 1.6px solid rgba(8, 58, 53, 0.38);
        border-radius: 10px;
        background: #ffffff;
        color: #083a35;
        padding: 10px 12px;
        font-size: 0.95rem;
        font-family: "Poppins", sans-serif;
    }

    .jaas-sovereign-page .roi-field input:focus-visible,
    .jaas-sovereign-page .roi-field select:focus-visible {
        outline: none;
        border-color: #0c4a44;
        box-shadow: 0 0 0 3px rgba(12, 74, 68, 0.12);
    }

    .jaas-sovereign-page .roi-split {
        margin: 14px 0 0;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(8, 58, 53, 0.1);
        border: 1px solid rgba(8, 58, 53, 0.2);
        border-radius: 999px;
        padding: 7px 11px;
        font-size: 0.84rem;
        font-weight: 700;
    }

    .jaas-sovereign-page .roi-results-grid {
        margin-top: 0;
    }

    .jaas-sovereign-page .economics-card {
        background: #ffffff;
        border: 2px solid #083a35;
        border-radius: 14px;
        box-shadow: 6px 6px 0 rgba(8, 58, 53, 0.2);
        padding: 18px;
    }

    .jaas-sovereign-page .economics-card h3 {
        margin: 0;
        font-size: 1rem;
    }

    .jaas-sovereign-page .economics-card p {
        margin: 8px 0 0;
        font-family: "Montserrat", sans-serif;
        font-size: clamp(1.8rem, 3.8vw, 2.5rem);
        font-weight: 800;
        line-height: 1;
    }

    .jaas-sovereign-page .economics-card span {
        display: inline-block;
        margin-top: 8px;
    }

    .jaas-sovereign-page .savings-card {
        background: #083a35;
        color: #f6fffd;
    }

    .jaas-sovereign-page .savings-card h3,
    .jaas-sovereign-page .savings-card span {
        color: inherit;
    }

    .jaas-sovereign-page .savings-card p {
        color: #9ffbe9;
    }

    .jaas-sovereign-page .economics-card.roi-savings-spotlight {
        animation: roiSavingsSpotlight 1.15s ease-out;
    }

    .jaas-sovereign-page .roi-negative .savings-card {
        background: #652222;
        border-color: #4b1515;
        color: #fff1f1;
    }

    .jaas-sovereign-page .roi-negative .savings-card p {
        color: #ffd6d6;
    }

    .jaas-sovereign-page .workflow-steps {
        margin: 14px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        counter-reset: step;
    }

    .jaas-sovereign-page .workflow-steps li {
        border: 1px dashed rgba(8, 58, 53, 0.35);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.45);
        padding: 14px 12px;
        font-weight: 600;
        counter-increment: step;
    }

    .jaas-sovereign-page .workflow-steps li::before {
        content: counter(step) ". ";
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
    }

    .jaas-sovereign-page .cta {
        text-align: center;
    }

    .jaas-sovereign-page .cta h2 {
        margin: 0 0 16px;
    }

    /* ── FAQ Section ────────────────────────────────────── */
    .jaas-sovereign-page .jaas-faq {
        padding: 80px 40px;
        background-color: var(--ai-hero-bg);
        color: var(--ai-hero-text);
    }

    .jaas-faq-container {
        max-width: 760px;
        margin: 0 auto;
    }

    .jaas-faq-header {
        margin-bottom: 48px;
        text-align: center;
    }

    .jaas-faq-eyebrow {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(8, 58, 53, 0.55);
        margin-bottom: 12px;
    }

    .jaas-faq-title {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 800;
        letter-spacing: -0.02em;
        line-height: 1.2;
        color: var(--ai-hero-text);
        margin: 0;
        font-family: 'Montserrat', sans-serif;
    }

    .jaas-sovereign-page .jaas-faq-list {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
        border: 1.5px solid rgba(8, 58, 53, 0.14);
        border-radius: 16px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.55);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 8px 32px rgba(8, 58, 53, 0.07);
    }

    .jaas-sovereign-page .jaas-faq-item {
        display: block;
        width: 100%;
        border-bottom: 1.5px solid rgba(8, 58, 53, 0.1);
    }

    .jaas-sovereign-page .jaas-faq-item:last-child {
        border-bottom: none;
    }

    .jaas-sovereign-page .jaas-faq-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 16px;
        padding: 22px 28px;
        background: transparent;
        border: none;
        cursor: pointer;
        text-align: left;
        transition: background 180ms ease;
    }

    .jaas-sovereign-page .jaas-faq-trigger:hover {
        background: rgba(8, 58, 53, 0.04);
    }

    .jaas-sovereign-page .jaas-faq-trigger[aria-expanded="true"] {
        background: rgba(8, 58, 53, 0.05);
    }

    .jaas-sovereign-page .jaas-faq-q {
        font-size: 1rem;
        font-weight: 700;
        color: var(--ai-hero-text);
        font-family: 'Montserrat', sans-serif;
        line-height: 1.4;
    }

    .jaas-sovereign-page .jaas-faq-icon {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(8, 58, 53, 0.08);
        color: var(--ai-hero-text);
        transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease;
    }

    .jaas-sovereign-page .jaas-faq-trigger[aria-expanded="true"] .jaas-faq-icon {
        transform: rotate(45deg);
        background: rgba(8, 58, 53, 0.14);
    }

    .jaas-sovereign-page .jaas-faq-body {
        overflow: hidden;
        max-height: 0;
        transition: max-height 350ms cubic-bezier(0.16, 1, 0.3, 1),
                    padding 280ms ease;
        padding: 0 28px;
    }

    .jaas-sovereign-page .jaas-faq-body.is-open {
        padding: 0 28px 22px;
        max-height: 600px;
    }

    .jaas-sovereign-page .jaas-faq-body p {
        font-size: 0.95rem;
        line-height: 1.75;
        color: rgba(8, 58, 53, 0.8);
        margin: 0;
    }

    @media (max-width: 640px) {
        .jaas-sovereign-page .jaas-faq {
            padding: 56px 20px;
        }
        .jaas-sovereign-page .jaas-faq-trigger {
            padding: 18px 20px;
        }
        .jaas-sovereign-page .jaas-faq-body,
        .jaas-sovereign-page .jaas-faq-body.is-open {
            padding-left: 20px;
            padding-right: 20px;
        }
    }

    .jaas-sovereign-page .sticky-cta {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 1200;
        border: 2px solid #083a35;
        border-radius: 12px;
        background: #0c4a44;
        color: #f6fffd;
        padding: 12px 16px;
        font-weight: 700;
        opacity: 0;
        transform: translateY(12px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
        box-shadow: 0 10px 20px rgba(8, 58, 53, 0.24);
    }

    .jaas-sovereign-page .sticky-cta.is-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        animation: jaasStickyPulse 4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
    }

    @keyframes jaasHeroIn {
        from {
            opacity: 0;
            transform: translateY(12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes jaasMessageFadeIn {
        from {
            opacity: 0;
            transform: translateY(4px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes jaasStickyPulse {

        0%,
        70%,
        100% {
            box-shadow: 0 10px 20px rgba(8, 58, 53, 0.24);
        }

        10% {
            box-shadow: 0 12px 24px rgba(8, 58, 53, 0.3);
        }
    }

    @keyframes nemoclawnGlow {

        0%,
        100% {
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.5) inset,
                0 0 20px rgba(156, 220, 92, 0.16),
                0 10px 20px rgba(8, 58, 53, 0.1);
        }

        50% {
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.56) inset,
                0 0 28px rgba(156, 220, 92, 0.24),
                0 12px 22px rgba(8, 58, 53, 0.14);
        }
    }

    @keyframes governanceFloat {

        0%,
        100% {
            transform: translateY(0);
            opacity: 0.92;
        }

        50% {
            transform: translateY(-3px);
            opacity: 1;
        }
    }

    @keyframes governanceGlow {

        0%,
        100% {
            filter: drop-shadow(0 0 0 rgba(11, 75, 71, 0));
        }

        50% {
            filter: drop-shadow(0 3px 10px rgba(11, 75, 71, 0.24));
        }
    }

    @keyframes governanceHalo {

        0%,
        100% {
            opacity: 0.35;
            transform: translate(-50%, -50%) scale(0.9);
        }

        50% {
            opacity: 0.7;
            transform: translate(-50%, -50%) scale(1);
        }
    }

    @keyframes roiSavingsSpotlight {
        0% {
            transform: translateY(0) scale(1);
            box-shadow: 6px 6px 0 rgba(8, 58, 53, 0.2);
            filter: brightness(1);
        }

        35% {
            transform: translateY(-2px) scale(1.02);
            box-shadow:
                0 0 0 4px rgba(159, 251, 233, 0.45),
                0 14px 24px rgba(8, 58, 53, 0.32);
            filter: brightness(1.08);
        }

        100% {
            transform: translateY(0) scale(1);
            box-shadow: 6px 6px 0 rgba(8, 58, 53, 0.2);
            filter: brightness(1);
        }
    }

    @media (max-width: 980px) {

        .jaas-sovereign-page .problem-grid,
        .jaas-sovereign-page .mode-cards-grid,
        .jaas-sovereign-page .nemoclaw-grid,
        .jaas-sovereign-page .workflow-steps {
            grid-template-columns: 1fr;
        }

        .jaas-sovereign-page .nemoclaw-grid {
            gap: 14px;
        }

        .jaas-sovereign-page .glass-feature.security-governance-card {
            height: auto;
            min-height: 0;
            padding: 16px;
        }

        .jaas-sovereign-page .telemetry-module {
            margin-top: 14px;
            min-height: auto;
        }

        .jaas-sovereign-page .telemetry-primary-value {
            flex-wrap: wrap;
            row-gap: 2px;
        }

        .jaas-sovereign-page .telemetry-secondary {
            gap: 10px;
            align-items: flex-end;
        }

        .jaas-sovereign-page .telemetry-metric {
            min-width: 0;
        }

        .jaas-sovereign-page .roi-layout {
            grid-template-columns: 1fr;
        }

        .jaas-sovereign-page .economics-grid {
            grid-template-columns: 1fr;
        }

        .jaas-sovereign-page .hero {
            padding: 40px 20px;
        }

        .jaas-sovereign-page .hero h1 {
            font-size: clamp(1.85rem, 9vw, 2.8rem);
            line-height: 1.08;
        }

        .jaas-sovereign-page .nemoclaw-title-icon {
            width: 24px;
            height: 24px;
        }

        .jaas-sovereign-page .hero-actions,
        .jaas-sovereign-page .mode-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .jaas-sovereign-page .mode-toggle {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            width: 100%;
            max-width: 100%;
            gap: 8px;
            padding: 6px;
            border-radius: 16px;
            box-sizing: border-box;
        }

        .jaas-sovereign-page .mode-btn {
            min-width: 0;
            width: 100%;
            padding: 10px 12px;
            font-size: 0.92rem;
            line-height: 1.2;
            text-align: center;
            white-space: nowrap;
        }

        .jaas-sovereign-page .hero-btn {
            min-width: 0;
            width: 100%;
        }

        .jaas-sovereign-page .mode-card-actions {
            grid-template-columns: 1fr;
        }

        .jaas-sovereign-page .mode-card.is-edge-card:not(.is-expanded),
        .jaas-sovereign-page .mode-card.is-edge-card:not(.is-expanded) .mode-card-header {
            min-height: 0;
        }

        .jaas-sovereign-page .mode-selector[data-active-mode="hybrid"] .mode-card.is-recommended {
            animation: none;
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.5) inset,
                0 0 16px rgba(156, 220, 92, 0.16),
                0 8px 16px rgba(8, 58, 53, 0.1);
        }

        .jaas-sovereign-page .mode-card.is-expanded .mode-card-details {
            max-height: 640px;
        }

        .jaas-sovereign-page main {
            width: min(1180px, calc(100vw - 20px));
            margin: 12px auto 88px;
        }

        .jaas-sovereign-page section {
            padding: 24px 18px;
        }

    }

    @media (max-width: 860px) {
        .jaas-sovereign-page {
            padding-top: 118px;
        }
    }

    @media (max-width: 680px) {
        .footer-shell {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .footer-brand {
            min-width: 0;
        }

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

        .jaas-sovereign-page {
            padding-top: 122px;
        }

        .jaas-sovereign-page main {
            width: calc(100vw - 14px);
            margin: 8px auto 82px;
            gap: 16px;
        }

        .jaas-sovereign-page section {
            border-radius: 16px;
            padding: 18px 14px;
        }

        .jaas-sovereign-page .hero {
            padding: 30px 14px;
        }

        .jaas-sovereign-page .hero h1 {
            font-size: clamp(1.95rem, 11vw, 2.5rem);
            line-height: 1.08;
        }

        .jaas-sovereign-page .hero-copy {
            font-size: 1rem;
            line-height: 1.45;
        }

        .jaas-sovereign-page .hero-actions {
            margin-top: 18px;
            gap: 10px;
        }

        .jaas-sovereign-page .hero-btn {
            border-width: 2px;
            border-radius: 11px;
            padding: 11px 14px;
            font-size: 0.96rem;
            min-width: 0;
        }

        .jaas-sovereign-page .mode-system-message {
            min-height: 0;
            font-size: 0.9rem;
        }

        .jaas-sovereign-page .mode-toggle {
            gap: 6px;
        }

        .jaas-sovereign-page .mode-btn {
            padding: 10px 8px;
            font-size: 0.84rem;
            white-space: normal;
            min-height: 44px;
        }

        .jaas-sovereign-page .mode-card {
            padding: 14px;
            border-radius: 14px;
        }

        .jaas-sovereign-page .mode-card h3 {
            font-size: 1.08rem;
        }

        .jaas-sovereign-page .mode-card p {
            font-size: 0.9rem;
        }

        .jaas-sovereign-page .mode-badges {
            gap: 6px;
            margin-top: 10px;
        }

        .jaas-sovereign-page .mode-badges span {
            padding: 5px 8px;
            font-size: 0.72rem;
        }

        .jaas-sovereign-page .nemoclaw-title {
            gap: 8px;
            flex-wrap: wrap;
        }

        .jaas-sovereign-page .governance-icon svg {
            width: 44px;
            height: 44px;
        }

        .jaas-sovereign-page .logo-pill {
            gap: 5px;
            flex-wrap: wrap;
        }

        .jaas-sovereign-page .logo-strip-mark,
        .jaas-sovereign-page .logo-strip-img {
            width: 21px;
            height: 21px;
        }

        .jaas-sovereign-page .economics-card {
            padding: 14px;
        }

        .jaas-sovereign-page .economics-subtitle {
            font-size: 0.93rem;
            line-height: 1.45;
        }

        .jaas-sovereign-page .roi-layout {
            gap: 10px;
            margin-top: 12px;
        }

        .jaas-sovereign-page .roi-inputs-card {
            padding: 14px;
        }

        .jaas-sovereign-page .roi-field {
            gap: 6px;
        }

        .jaas-sovereign-page .roi-field span {
            font-size: 0.82rem;
        }

        .jaas-sovereign-page .roi-field input,
        .jaas-sovereign-page .roi-field select {
            min-height: 46px;
            padding: 10px 11px;
            font-size: 16px;
            line-height: 1.2;
        }

        .jaas-sovereign-page .roi-split {
            display: flex;
            width: 100%;
            justify-content: center;
            text-align: center;
            white-space: normal;
            line-height: 1.3;
        }

        .jaas-sovereign-page .economics-card h3 {
            font-size: 0.92rem;
        }

        .jaas-sovereign-page .economics-card p {
            font-size: clamp(1.55rem, 9vw, 2rem);
            line-height: 1.05;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .jaas-sovereign-page .economics-card span {
            font-size: 0.82rem;
            line-height: 1.35;
            overflow-wrap: anywhere;
        }

        .jaas-sovereign-page .workflow-steps li {
            padding: 12px 10px;
            font-size: 0.92rem;
        }

        .jaas-sovereign-page .ai-flow-section {
            padding: 20px 14px;
        }

        .jaas-sovereign-page .ai-flow-header {
            margin-bottom: 20px;
        }

        .jaas-sovereign-page .ai-flow-subtitle {
            font-size: 0.84rem;
            letter-spacing: 0.08em;
            margin-bottom: 8px;
        }

        .jaas-sovereign-page .ai-flow-title {
            font-size: clamp(1.6rem, 8.2vw, 2rem);
            line-height: 1.08;
        }

        .jaas-sovereign-page .ai-flow-wrapper {
            padding: 8px 0 0;
        }

        .jaas-sovereign-page .ai-flow-steps {
            gap: 18px;
        }

        .jaas-sovereign-page .ai-flow-step {
            gap: 12px;
        }

        .jaas-sovereign-page .ai-flow-line-track {
            left: 19px;
            top: 22px;
            height: calc(100% - 44px);
        }

        .jaas-sovereign-page .flow-step-icon {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
        }

        .jaas-sovereign-page .flow-step-content h4 {
            font-size: 1rem;
            margin-bottom: 6px;
            line-height: 1.2;
        }

        .jaas-sovereign-page .flow-step-content p {
            font-size: 0.86rem;
            line-height: 1.4;
        }

        .jaas-sovereign-page .sticky-cta {
            left: 12px;
            right: 12px;
            bottom: 12px;
            width: auto;
            text-align: center;
            padding: 11px 12px;
            font-size: 0.95rem;
        }

        .jaas-sovereign-page main {
            width: min(1180px, calc(100vw - 20px));
            margin: 12px auto 88px;
        }

        .jaas-sovereign-page .saas-footer {
            padding-bottom: 88px;
        }

        .jaas-sovereign-page section {
            padding: 24px 18px;
        }

    }

    @media (max-width: 420px) {
        .jaas-sovereign-page {
            padding-top: 126px;
        }

        .jaas-sovereign-page .hero h1 {
            font-size: clamp(1.8rem, 10.5vw, 2.2rem);
        }

        .jaas-sovereign-page .hero-copy {
            font-size: 0.95rem;
        }

        .jaas-sovereign-page .mode-btn {
            font-size: 0.8rem;
            line-height: 1.15;
        }

        .jaas-sovereign-page .ai-flow-section {
            padding: 18px 12px;
        }

        .jaas-sovereign-page .ai-flow-title {
            font-size: clamp(1.45rem, 8.8vw, 1.8rem);
        }

        .jaas-sovereign-page .ai-flow-line-track {
            left: 18px;
            top: 21px;
            height: calc(100% - 42px);
        }

        .jaas-sovereign-page .flow-step-icon {
            width: 40px;
            height: 40px;
        }

        .jaas-sovereign-page .flow-step-content h4 {
            font-size: 0.95rem;
        }

        .jaas-sovereign-page .flow-step-content p {
            font-size: 0.82rem;
        }

        .jaas-sovereign-page .nemoclaw-grid {
            gap: 12px;
        }

        .jaas-sovereign-page .glass-feature.security-governance-card {
            padding: 14px;
        }

        .jaas-sovereign-page .telemetry-module {
            padding: 12px;
        }

        .jaas-sovereign-page .sticky-cta {
            transition: none;
        }

        .jaas-sovereign-page .roi-inputs-card {
            padding: 12px;
        }

        .jaas-sovereign-page .roi-field input,
        .jaas-sovereign-page .roi-field select {
            min-height: 44px;
        }

        .jaas-sovereign-page .governance-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .jaas-sovereign-page .hero,
        .jaas-sovereign-page .mode-card,
        .jaas-sovereign-page .sticky-cta.is-visible {
            animation: none;
        }

        .jaas-sovereign-page .hero-btn,
        .jaas-sovereign-page .mode-btn,
        .jaas-sovereign-page .sticky-cta {
            transition: none;
        }

        .jaas-sovereign-page .governance-icon {
            animation: none;
        }

        .jaas-sovereign-page .governance-icon::before {
            animation: none;
        }

        .jaas-sovereign-page .logo-strip-mark {
            transition: none;
        }

        .jaas-sovereign-page .logo-strip-img {
            transition: none;
        }

        .jaas-sovereign-page .economics-card.roi-savings-spotlight {
            animation: none;
        }
    }

    /* =========================================================
   REAL-TIME SYSTEM TELEMETRY MODULE
========================================================== */
    .telemetry-module {
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        background: rgba(255, 255, 255, 0.4);
        border: 1px solid rgba(8, 58, 53, 0.15);
        border-radius: 8px;
        padding: 16px;
        position: relative;
        overflow: hidden;
        margin-top: auto;
        margin-bottom: 0;
        width: 100%;
        box-sizing: border-box;
        backdrop-filter: blur(12px);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        color: var(--text-primary, #083a35);
        text-align: left;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        min-height: 170px;
        height: 170px;
        display: flex;
        flex-direction: column;
    }

    .telemetry-data {
        width: 100%;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .telemetry-module:hover,
    .telemetry-module:focus,
    .telemetry-module:active {
        border-color: rgba(8, 58, 53, 0.4);
        box-shadow: 0 0 15px rgba(8, 58, 53, 0.1);
        outline: none;
    }

    .telemetry-module:hover .telemetry-data,
    .telemetry-module:focus .telemetry-data,
    .telemetry-module:active .telemetry-data {
        opacity: 0;
        transform: scale(0.98);
    }

    .telemetry-module:hover .telemetry-json,
    .telemetry-module:focus .telemetry-json,
    .telemetry-module:active .telemetry-json {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
        transition-delay: 0.1s;
    }

    .telemetry-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }

    .telemetry-title {
        display: flex;
        align-items: center;
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        color: rgba(8, 58, 53, 0.7);
        font-weight: 700;
        line-height: 1;
    }

    .pulse-dot {
        width: 6px;
        height: 6px;
        background-color: #10b981;
        border-radius: 50%;
        margin-right: 8px;
        margin-top: 1px;
        box-shadow: 0 0 8px #10b981;
        animation: pulse-ring 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
        flex-shrink: 0;
    }

    @keyframes pulse-ring {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        }

        70% {
            transform: scale(1);
            box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
        }

        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
        }
    }

    .telemetry-badge {
        padding: 4px 8px;
        background: rgba(8, 58, 53, 0.08);
        border-radius: 4px;
        font-size: 0.65rem;
        font-weight: 700;
        color: #083a35;
        letter-spacing: 0.5px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
    }

    .telemetry-primary {
        margin-bottom: 14px;
    }

    .telemetry-primary-value {
        font-size: 1.4rem;
        font-weight: 700;
        color: #083a35;
        display: flex;
        align-items: baseline;
        gap: 6px;
    }

    .telemetry-primary-label {
        font-size: 0.6rem;
        font-weight: 600;
        color: rgba(8, 58, 53, 0.5);
        text-transform: uppercase;
    }

    .telemetry-track {
        height: 4px;
        background: rgba(8, 58, 53, 0.08);
        border-radius: 2px;
        margin-top: 8px;
        overflow: hidden;
    }

    .telemetry-fill {
        height: 100%;
        background: #10b981;
        border-radius: 2px;
        transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .telemetry-secondary {
        display: flex;
        justify-content: space-between;
        margin-top: auto;
    }

    .telemetry-metric {
        display: flex;
        flex-direction: column;
    }

    .telemetry-metric-value {
        font-size: 0.95rem;
        font-weight: 700;
    }

    .telemetry-metric-value.blue {
        color: #083a35;
    }

    .telemetry-metric-value.purple {
        color: #1c5b55;
    }

    .telemetry-metric-label {
        font-size: 0.6rem;
        font-weight: 600;
        color: rgba(8, 58, 53, 0.5);
        text-transform: uppercase;
        margin-top: 2px;
    }

    .telemetry-json {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.95);
        padding: 16px;
        box-sizing: border-box;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        transform: scale(1.05);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .telemetry-json pre {
        margin: 0;
        color: #083a35;
        font-size: 0.75rem;
        line-height: 1.5;
        white-space: pre-wrap;
        word-break: break-all;
        text-shadow: none;
        font-weight: 600;
    }

    @media (hover: none),
    (pointer: coarse) {

        .telemetry-module:hover .telemetry-data,
        .telemetry-module:focus .telemetry-data,
        .telemetry-module:active .telemetry-data {
            opacity: 1;
            transform: none;
        }

        .telemetry-module:hover .telemetry-json,
        .telemetry-module:focus .telemetry-json,
        .telemetry-module:active .telemetry-json {
            opacity: 0;
            pointer-events: none;
            transform: none;
        }

        .telemetry-module.is-mobile-overlay-active .telemetry-data {
            opacity: 0;
            transform: scale(0.98);
        }

        .telemetry-module.is-mobile-overlay-active .telemetry-json {
            opacity: 1;
            pointer-events: auto;
            transform: scale(1);
            transition-delay: 0.08s;
        }
    }




    /* ===============================
   HOME PAGE (MIGRATED FROM INDEX INLINE CSS)
================================ */
    /* AI Infrastructure Hero System */
    :root {
        --ai-hero-bg: #5DBEB2;
        --ai-hero-text: #083a35;
        --ai-hero-glass: rgba(255, 255, 255, 0.12);
        --ai-hero-border: rgba(255, 255, 255, 0.2);
        --ai-hero-accent: #0c4a44;
        --ai-hero-glow: rgba(255, 255, 255, 0.3);
        --container-max: 1200px;
        --space-2: 8px;
        --space-3: 12px;
        --space-4: 16px;
        --space-5: 20px;
        --space-6: 24px;
        --space-8: 32px;
        --space-10: 40px;
        --space-12: 48px;
        --space-14: 56px;
        --space-16: 64px;
        --section-py: clamp(72px, 9vw, 112px);
        --section-px: clamp(16px, 3.2vw, 40px);
        --radius-card: 16px;
        --ease-standard: 260ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .home-page {
        --section-py: clamp(56px, 7vw, 96px);
        --section-px: clamp(16px, 3vw, 36px);
    }

    .home-page main.home-main {
        width: 100%;
        margin: 0 auto;
        padding: 0 0 72px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .home-page main.home-main>section {
        position: relative;
        display: block;
        width: 100%;
        margin: 0;
        clear: both;
        isolation: isolate;
        flex: 0 0 auto;
    }

    .home-page main.home-main,
    .home-page main.home-main>section,
    .home-page main.home-main * {
        box-sizing: border-box;
    }

    /* Keep home sections stable and prevent reveal-transform overlap artifacts */
    .home-page main.home-main>section.section-reveal {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }

    .ai-hero-system {
        background-color: var(--ai-hero-bg);
        color: var(--ai-hero-text);
        padding: var(--section-py) var(--section-px);
        font-family: 'Poppins', 'Inter', sans-serif;
        overflow: hidden;
        position: relative;
        min-height: max(560px, 68vh);
        display: flex;
        align-items: center;
    }

    .ai-hero-container {
        width: min(var(--container-max), 100%);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(32px, 5vw, 64px);
        align-items: center;
    }

    .ai-hero-content {
        display: flex;
        flex-direction: column;
        gap: var(--space-6);
        z-index: 2;
    }

    /* Neo-brutalism headings */
    .ai-hero-title {
        font-size: clamp(3rem, 5vw, 4.5rem);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.04em;
        color: var(--ai-hero-text);
        margin: 0;
        font-family: 'Montserrat', sans-serif;
    }

    .ai-hero-desc {
        font-size: clamp(1.125rem, 2vw, 1.25rem);
        line-height: 1.6;
        color: var(--ai-hero-text);
        opacity: 0.85;
        font-weight: 500;
        max-width: 95%;
        margin: 0;
    }

    .ai-hero-micro-values {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-3);
        margin-top: var(--space-2);
    }

    .value-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.18);
        padding: 8px 16px;
        border-radius: 30px;
        border: 1px solid var(--ai-hero-border);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        color: var(--ai-hero-text);
    }

    .ai-hero-actions {
        display: flex;
        gap: var(--space-4);
        margin-top: var(--space-4);
        flex-wrap: wrap;
        align-items: center;
    }

    .btn-node,
    .btn-explore {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        text-decoration: none;
        transition: transform var(--ease-standard), box-shadow var(--ease-standard), background-color var(--ease-standard), color var(--ease-standard), border-color var(--ease-standard);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins', sans-serif;
    }

    .btn-node {
        background-color: var(--ai-hero-accent);
        color: #ffffff;
        border: 1px solid var(--ai-hero-accent);
        box-shadow: 0 8px 24px rgba(12, 74, 68, 0.15);
    }

    .btn-node:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(12, 74, 68, 0.3);
        background-color: #083a35;
        color: #ffffff;
    }

    .btn-explore {
        background-color: var(--ai-hero-glass);
        color: var(--ai-hero-text);
        border: 1px solid var(--ai-hero-border);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .btn-explore:hover {
        background-color: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(8, 58, 53, 0.1);
        color: var(--ai-hero-text);
    }



    /* Responsive Hero */
    @media (max-width: 992px) {
        .ai-hero-container {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .ai-hero-content {
            align-items: center;
        }

        .ai-hero-desc {
            max-width: 100%;
        }
    }

    @media (max-width: 680px) {
        .ai-hero-system {
            padding: 56px var(--section-px);
            min-height: auto;
        }

        .ai-hero-title {
            font-size: 2.5rem;
        }

        .ai-hero-actions {
            flex-direction: column;
            width: 100%;
            align-items: stretch;
        }

        .btn-node,
        .btn-explore {
            width: 100%;
        }
    }

    /* Problem Section */
    .ai-problem-section {
        background-color: var(--ai-hero-bg);
        color: var(--ai-hero-text);
        padding: var(--section-py) var(--section-px);
        font-family: 'Poppins', 'Inter', sans-serif;
        position: relative;
    }

    .ai-problem-container {
        width: min(var(--container-max), 100%);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: clamp(32px, 6vw, 72px);
        align-items: center;
    }

    .ai-problem-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ai-problem-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.03em;
        color: var(--ai-hero-text);
        margin: 0;
        font-family: 'Montserrat', sans-serif;
    }

    .ai-problem-desc {
        font-size: clamp(1.05rem, 1.5vw, 1.2rem);
        line-height: 1.6;
        opacity: 0.85;
        font-weight: 500;
        margin: 0;
        max-width: 90%;
    }

    .ai-problem-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .home-page .problem-card {
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid var(--ai-hero-border);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: var(--radius-card);
        padding: clamp(20px, 2vw, 28px);
        box-shadow: 0 8px 32px rgba(8, 58, 53, 0.05);
        transition: transform var(--ease-standard), box-shadow var(--ease-standard), background-color var(--ease-standard);
        height: 100%;
    }

    .home-page .problem-card h4 {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0 0 8px;
        color: var(--ai-hero-text);
        font-family: 'Montserrat', sans-serif;
        letter-spacing: -0.01em;
    }

    .home-page .problem-card p {
        font-size: 1rem;
        font-weight: 500;
        margin: 0;
        opacity: 0.8;
        line-height: 1.6;
    }

    .home-page .problem-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 48px rgba(8, 58, 53, 0.15), 0 0 30px var(--ai-hero-glow);
        background: rgba(255, 255, 255, 0.25);
    }

    .home-page .problem-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .home-page .problem-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .home-page .problem-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .home-page .problem-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    @keyframes problem-card-fade-in {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (prefers-reduced-motion: no-preference) {
        .home-page .problem-card {
            opacity: 0;
            transform: translateY(20px);
            animation: problem-card-fade-in 0.8s ease-out forwards;
        }
    }

    @media (max-width: 992px) {
        .ai-problem-container {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .ai-problem-desc {
            max-width: 100%;
            margin: 0 auto;
        }
    }

    @media (max-width: 600px) {
        .ai-problem-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Use Case Bento Section */
    .ai-usecase-section {
        background-color: var(--ai-hero-bg);
        color: var(--ai-hero-text);
        padding: var(--section-py) var(--section-px);
        font-family: 'Poppins', 'Inter', sans-serif;
        position: relative;
    }

    .ai-usecase-container {
        width: min(var(--container-max), 100%);
        margin: 0 auto;
    }

    .ai-usecase-header {
        text-align: center;
        margin-bottom: var(--space-12);
    }

    .ai-usecase-subtitle {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 700;
        color: var(--ai-hero-accent);
        margin: 0 0 12px;
    }

    .ai-usecase-title {
        font-size: clamp(2.2rem, 3vw, 3rem);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.03em;
        color: var(--ai-hero-text);
        margin: 0;
        font-family: 'Montserrat', sans-serif;
    }

    .ai-usecase-desc {
        margin: var(--space-4) auto 0;
        max-width: 62ch;
        font-size: clamp(1rem, 1.4vw, 1.1rem);
        line-height: 1.6;
        opacity: 0.85;
    }

    .ai-usecase-bento {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }

    .usecase-card {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid var(--ai-hero-border);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: var(--radius-card);
        padding: clamp(20px, 2vw, 28px);
        box-shadow: 0 8px 32px rgba(8, 58, 53, 0.05);
        transition: transform var(--ease-standard), box-shadow var(--ease-standard), background-color var(--ease-standard);
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        height: 100%;
    }

    .usecase-icon {
        width: 48px;
        height: 48px;
        background: rgba(12, 74, 68, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ai-hero-accent);
        border: 1px solid rgba(12, 74, 68, 0.2);
        transition: transform 0.3s ease;
    }

    .usecase-card h4 {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0;
        color: var(--ai-hero-text);
        font-family: 'Montserrat', sans-serif;
        letter-spacing: -0.01em;
    }

    .usecase-card p {
        font-size: 1rem;
        font-weight: 500;
        margin: 0;
        opacity: 0.8;
        line-height: 1.6;
    }

    .usecase-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 48px rgba(8, 58, 53, 0.15), 0 0 30px var(--ai-hero-glow);
        background: rgba(255, 255, 255, 0.22);
    }

    .usecase-card:hover .usecase-icon {
        transform: scale(1.1);
        background: var(--ai-hero-accent);
        color: #fff;
    }

    .usecase-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .usecase-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .usecase-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .usecase-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .usecase-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .usecase-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    @keyframes usecase-fade-in {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (prefers-reduced-motion: no-preference) {
        .usecase-card {
            opacity: 0;
            transform: translateY(20px);
            animation: usecase-fade-in 0.8s ease-out forwards;
        }
    }

    @media (max-width: 1024px) {
        .ai-usecase-bento {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .ai-usecase-bento {
            grid-template-columns: 1fr;
        }

        .usecase-card {
            padding: 24px;
        }
    }

    /* Edge Nodes Section */
    .ai-nodes-section {
        background-color: var(--ai-hero-bg);
        color: var(--ai-hero-text);
        padding: var(--section-py) var(--section-px);
        font-family: 'Poppins', 'Inter', sans-serif;
        position: relative;
    }

    .ai-nodes-container {
        width: min(var(--container-max), 100%);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(32px, 6vw, 72px);
        align-items: center;
    }

    .ai-nodes-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nodes-placeholder {
        position: relative;
        width: 320px;
        height: 320px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .node-ring {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 1px dashed var(--ai-hero-border);
        animation: spin-slow 20s linear infinite;
    }

    .node-ring::after {
        content: '';
        position: absolute;
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 10px;
        height: 10px;
        background: var(--ai-hero-accent);
        border-radius: 50%;
        box-shadow: 0 0 16px var(--ai-hero-accent);
    }

    .node-core {
        width: 120px;
        height: 120px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid var(--ai-hero-border);
        border-radius: 30px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ai-hero-text);
        box-shadow: 0 16px 40px rgba(8, 58, 53, 0.1);
    }

    .ai-nodes-content {
        display: flex;
        flex-direction: column;
        gap: var(--space-8);
    }

    .ai-nodes-title {
        font-size: clamp(2.5rem, 4vw, 3.8rem);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.03em;
        color: var(--ai-hero-text);
        margin: 0;
        font-family: 'Montserrat', sans-serif;
    }

    .ai-nodes-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ai-nodes-list li {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--ai-hero-text);
        opacity: 0.9;
    }

    .ai-nodes-list li svg {
        color: var(--ai-hero-accent);
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        padding: 5px;
        width: 28px;
        height: 28px;
        border: 1px solid var(--ai-hero-border);
    }

    @keyframes node-fade-in {
        to {
            opacity: 1;
            transform: translate(0);
        }
    }

    @keyframes spin-slow {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @media (max-width: 900px) {
        .ai-nodes-container {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .ai-nodes-visual {
            order: 2;
        }

        .ai-nodes-content {
            order: 1;
            align-items: center;
        }

        .ai-nodes-list {
            align-items: flex-start;
            text-align: left;
        }
    }

    /* Flow Section */
    .ai-flow-section {
        background-color: var(--ai-hero-bg);
        color: var(--ai-hero-text);
        padding: var(--section-py) var(--section-px);
        font-family: 'Poppins', 'Inter', sans-serif;
        position: relative;
        overflow: hidden;
    }

    .ai-flow-container {
        width: min(var(--container-max), 100%);
        margin: 0 auto;
    }

    .ai-flow-header {
        text-align: center;
        margin-bottom: var(--space-14);
    }

    .ai-flow-subtitle {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 700;
        color: var(--ai-hero-accent);
        margin: 0 0 12px;
    }

    .ai-flow-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.03em;
        color: var(--ai-hero-text);
        margin: 0;
        font-family: 'Montserrat', sans-serif;
    }

    .ai-flow-wrapper {
        position: relative;
        padding: var(--space-8) 0;
    }

    .ai-flow-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        position: relative;
        z-index: 2;
        gap: var(--space-6);
    }

    /* Base track line */
    .ai-flow-line-track {
        position: absolute;
        top: 22px;
        /* Center of the 48px icon (24px) - half line height (2px) */
        left: 12.5%;
        width: 75%;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        z-index: 1;
    }

    /* Animated progress line */
    .ai-flow-line-progress {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background: var(--ai-hero-accent);
        border-radius: 4px;
        transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: 0 0 12px var(--ai-hero-accent);
    }

    .ai-flow-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        cursor: pointer;
        transition: transform 0.3s ease;
        position: relative;
        z-index: 2;
    }

    .flow-step-icon {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.12);
        border: 2px solid var(--ai-hero-border);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ai-hero-text);
        margin-bottom: var(--space-4);
        transition: transform var(--ease-standard), background-color var(--ease-standard), border-color var(--ease-standard), box-shadow var(--ease-standard), color var(--ease-standard);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    }

    .ai-flow-step:hover .flow-step-icon,
    .ai-flow-step.active .flow-step-icon {
        background: var(--ai-hero-accent);
        color: #fff;
        border-color: var(--ai-hero-accent);
        transform: scale(1.15);
        box-shadow: 0 12px 24px rgba(12, 74, 68, 0.25);
    }

    .flow-step-content h4 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--ai-hero-text);
        margin: 0 0 8px;
        font-family: 'Montserrat', sans-serif;
        transition: color 0.3s ease;
    }

    .flow-step-content p {
        font-size: 0.9rem;
        font-weight: 500;
        opacity: 0.8;
        margin: 0;
        max-width: 180px;
        line-height: 1.4;
        min-height: 3em;
    }

    /* Mobile Layout - Vertical Line */
    @media (max-width: 768px) {
        .ai-flow-steps {
            grid-template-columns: 1fr;
            gap: var(--space-8);
        }

        .ai-flow-step {
            flex-direction: row;
            text-align: left;
            gap: var(--space-4);
            align-items: flex-start;
        }

        .ai-flow-line-track {
            top: 24px;
            height: calc(100% - 48px);
            left: 22px;
            width: 4px;
        }

        .ai-flow-line-progress {
            width: 100%;
            height: 0%;
            transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .flow-step-icon {
            margin-bottom: 0;
        }

        .flow-step-content p {
            max-width: 100%;
            min-height: 0;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .glass-bento-card,
        .home-page .problem-card,
        .usecase-card,
        .ai-nodes-visual,
        .ai-nodes-content {
            animation: none;
            opacity: 1;
            transform: none;
        }

        .btn-node,
        .btn-explore,
        .glass-bento-card,
        .home-page .problem-card,
        .usecase-card,
        .flow-step-icon {
            transition: none;
        }
    }

    @media (prefers-reduced-motion: no-preference) {
        .ai-nodes-visual {
            opacity: 0;
            transform: translateX(-20px);
            animation: node-fade-in 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .ai-nodes-content {
            opacity: 0;
            transform: translateY(20px);
            animation: node-fade-in 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
            animation-delay: 0.18s;
        }
    }

    /* -------------------------------------------------------------
   Deployment Model (Home) — Neo-Tech Glass Minimalism
-------------------------------------------------------------- */

    .deploy-model-section {
        padding: 80px 20px;
        background: #5DBEB2;
        color: #083a35;
        position: relative;
        overflow: hidden;
    }

    .deploy-model-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .deploy-model-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 28px;
    }

    .deploy-model-title {
        font-family: "Montserrat", sans-serif;
        font-size: clamp(1.6rem, 2.2vw, 2.2rem);
        letter-spacing: 0.01em;
        margin: 0 0 10px;
        color: #083a35;
    }

    .deploy-model-subtext {
        margin: 0;
        max-width: 58ch;
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        line-height: 1.6;
        opacity: 0.95;
    }

    .deploy-toggle {
        flex: 0 0 auto;
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 4px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(8, 58, 53, 0.2);
        box-shadow: 0 10px 24px rgba(8, 58, 53, 0.12);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .deploy-toggle-indicator {
        position: absolute;
        top: 4px;
        bottom: 4px;
        left: 4px;
        width: calc(50% - 4px);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.28);
        border: 1px solid rgba(255, 255, 255, 0.35);
        box-shadow: 0 10px 24px rgba(8, 58, 53, 0.12);
        transition: transform 200ms ease;
        pointer-events: none;
    }

    .deploy-toggle[data-deploy-active="ownership"] .deploy-toggle-indicator {
        transform: translateX(100%);
    }

    .deploy-toggle-btn {
        position: relative;
        z-index: 1;
        appearance: none;
        border: 0;
        background: transparent;
        padding: 8px 12px;
        border-radius: 999px;
        cursor: pointer;
        font-family: "Poppins", sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: rgba(8, 58, 53, 0.86);
        transition: color 200ms ease;
        white-space: nowrap;
    }

    .deploy-toggle-btn.is-active {
        color: #083a35;
    }

    .deploy-toggle-btn:focus-visible {
        outline: 3px solid rgba(12, 74, 68, 0.32);
        outline-offset: 2px;
    }

    .deploy-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .deploy-card {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 18px;
        padding: 26px;
        box-shadow: 0 14px 40px rgba(8, 58, 53, 0.16);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
        cursor: pointer;
    }

    .deploy-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 54px rgba(8, 58, 53, 0.18), 0 0 0 1px rgba(12, 74, 68, 0.18);
    }

    .deploy-card.is-selected {
        border-color: rgba(12, 74, 68, 0.55);
        box-shadow: 0 22px 70px rgba(8, 58, 53, 0.2), 0 0 0 1px rgba(12, 74, 68, 0.28);
        transform: scale(1.02);
    }

    .deploy-card:focus-visible {
        outline: 3px solid rgba(12, 74, 68, 0.32);
        outline-offset: 3px;
    }

    .deploy-card-top {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 10px;
    }

    .deploy-card-title {
        margin: 0;
        font-family: "Montserrat", sans-serif;
        font-size: 1.25rem;
        letter-spacing: 0.01em;
        color: #083a35;
    }

    .deploy-card-tag {
        display: inline-flex;
        align-items: center;
        padding: 6px 10px;
        border-radius: 999px;
        font-family: "Poppins", sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        background: rgba(12, 74, 68, 0.12);
        border: 1px solid rgba(12, 74, 68, 0.18);
        color: rgba(8, 58, 53, 0.92);
        white-space: nowrap;
    }

    .deploy-card-desc {
        margin: 0 0 18px;
        font-family: "Poppins", sans-serif;
        font-size: 0.98rem;
        line-height: 1.6;
        color: rgba(8, 58, 53, 0.92);
    }

    .deploy-benefits {
        list-style: none;
        padding: 0;
        margin: 0 0 22px;
        display: grid;
        gap: 10px;
        font-family: "Poppins", sans-serif;
        font-size: 0.95rem;
        color: rgba(8, 58, 53, 0.92);
    }

    .deploy-benefits li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .deploy-benefits li::before {
        content: "";
        width: 10px;
        height: 10px;
        margin-top: 6px;
        border-radius: 999px;
        background: rgba(12, 74, 68, 0.85);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
        flex: 0 0 auto;
    }

    .deploy-cta {
        width: 100%;
        appearance: none;
        border: 0;
        background: #0c4a44;
        color: #ffffff;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        letter-spacing: 0.01em;
        padding: 12px 14px;
        border-radius: 14px;
        cursor: pointer;
        transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
        box-shadow: 0 12px 30px rgba(8, 58, 53, 0.16);
    }

    .deploy-cta:hover {
        background: #0a3f3a;
        box-shadow: 0 16px 40px rgba(8, 58, 53, 0.2);
    }

    .deploy-cta:active {
        transform: translateY(1px);
    }

    .deploy-cta:focus-visible {
        outline: 3px solid rgba(255, 255, 255, 0.65);
        outline-offset: 3px;
    }

    .deploy-modal {
        position: fixed;
        inset: 0;
        display: grid;
        place-items: start center;
        /* push dialog below the fixed navbar (~85px) + comfortable gap */
        padding: 100px 16px 24px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 200ms ease, visibility 200ms ease;
        /* must exceed navbar z-index (1000) */
        z-index: 1100;
        overflow-y: auto;
    }

    .deploy-modal.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .deploy-modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(8, 58, 53, 0.42);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .deploy-modal-dialog {
        position: relative;
        width: min(720px, 100%);
        border-radius: 18px;
        padding: 26px;
        /* solid white so content behind never bleeds through */
        background: #ffffff;
        border: 1px solid rgba(8, 58, 53, 0.12);
        box-shadow: 0 26px 90px rgba(0, 0, 0, 0.18);
        color: #083a35;
        max-height: calc(100dvh - 110px);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(8, 58, 53, 0.2) transparent;
    }

    .deploy-modal-close {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        border: 1.5px solid rgba(8, 58, 53, 0.15);
        background: #f0f4f3;
        color: #083a35;
        cursor: pointer;
        font-size: 20px;
        line-height: 1;
        display: grid;
        place-items: center;
        transition: transform 200ms ease, background-color 200ms ease;
    }

    .deploy-modal-close:hover {
        background: rgba(8, 58, 53, 0.08);
        transform: translateY(-1px);
    }

    .deploy-modal-title {
        margin: 0 0 8px;
        font-family: "Montserrat", sans-serif;
        font-size: 1.35rem;
        letter-spacing: 0.01em;
    }

    .deploy-modal-subtext {
        margin: 0 0 18px;
        font-family: "Poppins", sans-serif;
        line-height: 1.6;
        color: rgba(8, 58, 53, 0.68);
    }

    .deploy-form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-bottom: 14px;
    }

    .deploy-field {
        display: grid;
        gap: 8px;
        font-family: "Poppins", sans-serif;
        font-size: 0.92rem;
        color: rgba(8, 58, 53, 0.92);
    }

    .deploy-field span {
        font-weight: 600;
    }

    .deploy-field input,
    .deploy-field textarea {
        width: 100%;
        border-radius: 10px;
        border: 1.5px solid rgba(8, 58, 53, 0.2);
        background: #f8faf9;
        padding: 11px 12px;
        font-family: "Poppins", sans-serif;
        font-size: 0.95rem;
        color: #083a35;
        outline: none;
        transition: border-color 200ms ease, box-shadow 200ms ease;
    }

    .deploy-field textarea {
        resize: vertical;
        min-height: 92px;
    }

    .deploy-field input:focus,
    .deploy-field textarea:focus {
        border-color: #0c4a44;
        box-shadow: 0 0 0 3px rgba(12, 74, 68, 0.12);
        background: #ffffff;
    }

    .deploy-field-full {
        margin-bottom: 18px;
    }

    .deploy-form-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        flex-wrap: wrap;
    }

    .deploy-submit {
        appearance: none;
        border: 0;
        background: #0c4a44;
        color: #ffffff;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        letter-spacing: 0.01em;
        padding: 12px 16px;
        border-radius: 14px;
        cursor: pointer;
        transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
        box-shadow: 0 14px 34px rgba(8, 58, 53, 0.16);
    }

    .deploy-submit:hover {
        background: #0a3f3a;
        box-shadow: 0 18px 48px rgba(8, 58, 53, 0.2);
    }

    .deploy-submit:active {
        transform: translateY(1px);
    }

    .deploy-secondary-link {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        color: rgba(8, 58, 53, 0.95);
        text-decoration: none;
        padding: 10px 2px;
    }

    .deploy-secondary-link:hover {
        text-decoration: underline;
    }

    .deploy-form-status {
        margin: 14px 0 0;
        min-height: 1.2em;
        font-family: "Poppins", sans-serif;
        font-size: 0.92rem;
    }

    .deploy-form-status[data-type="success"] { color: #0c7a60; }
    .deploy-form-status[data-type="error"]   { color: #c0392b; }
    .deploy-form-status[data-type="info"]    { color: rgba(8, 58, 53, 0.7); }

    /* ── select fields ─────────────────────────────────────── */
    .deploy-field select {
        width: 100%;
        border-radius: 10px;
        border: 1.5px solid rgba(8, 58, 53, 0.2);
        background: #f8faf9;
        padding: 11px 12px;
        font-family: "Poppins", sans-serif;
        font-size: 0.95rem;
        color: #083a35;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23083a35' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        cursor: pointer;
        transition: border-color 200ms ease, box-shadow 200ms ease;
    }

    .deploy-field select:focus {
        border-color: #0c4a44;
        box-shadow: 0 0 0 3px rgba(12, 74, 68, 0.12);
        background-color: #ffffff;
    }

    /* ── real-time validation states ───────────────────────── */
    .deploy-field input:invalid:not(:placeholder-shown),
    .deploy-field select:invalid {
        border-color: rgba(192, 57, 43, 0.45);
    }

    .deploy-field input.is-valid,
    .deploy-field select.is-valid {
        border-color: rgba(12, 122, 96, 0.5);
    }

    /* ── duration picker ───────────────────────────────────── */
.deploy-duration-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
    min-width: 0;
}

    .deploy-duration-wrapper input[type="number"] {
        border-radius: 10px;
        border: 1.5px solid rgba(8, 58, 53, 0.2);
        background: #f8faf9;
        padding: 11px 12px;
        font-family: "Poppins", sans-serif;
        font-size: 0.95rem;
        color: #083a35;
        outline: none;
        transition: border-color 200ms ease, box-shadow 200ms ease;
        text-align: center;
    }

    .deploy-duration-wrapper input[type="number"]:focus {
        border-color: #0c4a44;
        box-shadow: 0 0 0 3px rgba(12, 74, 68, 0.12);
        background: #ffffff;
    }

    .deploy-duration-toggle {
        display: flex;
        border-radius: 10px;
        border: 1.5px solid rgba(8, 58, 53, 0.2);
        overflow: hidden;
        background: #f0f4f3;
    }

    .duration-toggle-option {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .duration-toggle-option input[type="radio"] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 0;
        height: 0;
    }

    .duration-toggle-text {
        display: block;
        padding: 10px 20px;
        font-family: "Poppins", sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: rgba(8, 58, 53, 0.7);
        transition: background 200ms ease, color 200ms ease;
        user-select: none;
    }

    .duration-toggle-option input[type="radio"]:checked + .duration-toggle-text {
        background: #0c4a44;
        color: #ffffff;
    }

    .duration-toggle-option:not(:first-child) .duration-toggle-text {
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    /* ── scrollable dialog for smaller screens ─────────────── */
    .deploy-modal-dialog {
        max-height: 90dvh;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(8, 58, 53, 0.2) transparent;
    }

    .deploy-field.deploy-field-full {
        display: grid;
        gap: 8px;
        font-family: "Poppins", sans-serif;
        font-size: 0.92rem;
        color: rgba(8, 58, 53, 0.92);
    }

    .deploy-field.deploy-field-full > span {
        font-weight: 600;
    }


    @media (max-width: 900px) {
        .deploy-model-section {
            padding: 64px 18px;
        }

        .deploy-cards {
            gap: 18px;
        }
    }

    @media (max-width: 760px) {
        .deploy-model-header {
            flex-direction: column;
            align-items: stretch;
        }

        .deploy-toggle {
            width: 100%;
            max-width: 340px;
            margin-left: auto;
        }

        .deploy-cards {
            grid-template-columns: 1fr;
        }

        .deploy-card {
            padding: 22px;
        }

        .deploy-form-grid {
            grid-template-columns: 1fr;
        }

        .deploy-form-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .deploy-submit {
            width: 100%;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .deploy-toggle-indicator,
        .deploy-toggle-btn,
        .deploy-card,
        .deploy-cta,
        .deploy-modal,
        .deploy-modal-close,
        .deploy-field input,
        .deploy-field textarea,
        .deploy-submit {
            transition: none !important;
        }
    }

    /* -------------------------------------------------------------
   Deployment Model (Home) — Neo Brutal Override
   (Overrides the earlier glass minimal rules.)
-------------------------------------------------------------- */

    .home-page .deploy-model-section {
        background: var(--nb-bg, #f7f6f2);
        color: var(--nb-ink, #111111);
        overflow: visible;
    }

    .home-page .deploy-model-title {
        color: var(--nb-ink, #111111);
        text-transform: uppercase;
    }

    .home-page .deploy-model-subtext {
        color: var(--nb-ink, #111111);
        opacity: 0.85;
    }

    .home-page .deploy-toggle {
        background: var(--nb-paper, #fffdf8);
        border: var(--nb-border, 2px solid #111111);
        border-radius: 0;
        box-shadow: var(--nb-shadow, 3px 3px 0 #111111);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .home-page .deploy-toggle-indicator {
        background: var(--nb-accent, #f4dd5c);
        border: var(--nb-border, 2px solid #111111);
        border-radius: 0;
        box-shadow: var(--nb-shadow, 3px 3px 0 #111111);
        pointer-events: none;
    }

    .home-page .deploy-toggle-btn {
        font-family: "Montserrat", sans-serif;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--nb-ink, #111111);
        border-radius: 0;
        opacity: 0.75;
    }

    .home-page .deploy-toggle-btn.is-active {
        opacity: 1;
    }

    .home-page .deploy-cards {
        gap: 24px;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .home-page .deploy-card {
        background: var(--nb-paper, #fffdf8);
        border: var(--nb-border, 2px solid #111111);
        border-radius: 0;
        box-shadow: var(--nb-shadow, 3px 3px 0 #111111);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
        width: min(900px, 100%);
    }

    .home-page .deploy-card:not(.is-selected) {
        opacity: 1;
    }

    .home-page .deploy-card:not(.is-selected) .deploy-cta {
        opacity: 1;
    }

    .home-page .deploy-card:hover {
        box-shadow: 5px 5px 0 var(--nb-ink, #111111);
    }

    .home-page .deploy-card.is-selected {
        border-color: var(--nb-ink, #111111);
        box-shadow: 7px 7px 0 var(--nb-ink, #111111);
        transform: translateY(-4px) scale(1.01);
        background: linear-gradient(0deg, rgba(244, 221, 92, 0.22), rgba(244, 221, 92, 0.22)), var(--nb-paper, #fffdf8);
    }

    .home-page .deploy-card.is-transition-in {
        opacity: 0;
        transform: translateY(8px);
    }

    .home-page .deploy-card.is-transition-out {
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 200ms ease, transform 200ms ease;
    }

    .home-page .deploy-card-title {
        color: var(--nb-ink, #111111);
        text-transform: uppercase;
    }

    .home-page .deploy-card-tag {
        background: var(--nb-accent, #f4dd5c);
        border: var(--nb-border, 2px solid #111111);
        border-radius: 0;
        box-shadow: var(--nb-shadow, 3px 3px 0 #111111);
        color: var(--nb-ink, #111111);
        font-family: "Montserrat", sans-serif;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .home-page .deploy-card-desc,
    .home-page .deploy-benefits {
        color: var(--nb-ink, #111111);
        opacity: 0.85;
    }

    .home-page .deploy-benefits li::before {
        border-radius: 0;
        background: var(--nb-ink, #111111);
        box-shadow: none;
    }

    .home-page .deploy-cta,
    .home-page .deploy-submit {
        background: var(--nb-accent, #f4dd5c);
        color: var(--nb-ink, #111111);
        border: var(--nb-border, 2px solid #111111);
        border-radius: 0;
        box-shadow: var(--nb-shadow, 3px 3px 0 #111111);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-weight: 900;
    }

    .home-page .deploy-modal-backdrop {
        background: rgba(17, 17, 17, 0.55);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .home-page .deploy-modal-dialog {
        background: var(--nb-paper, #fffdf8);
        border: var(--nb-border, 2px solid #111111);
        border-radius: 0;
        color: var(--nb-ink, #111111);
        box-shadow: 10px 10px 0 var(--nb-ink, #111111);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .home-page .deploy-modal-close {
        border-radius: 0;
        background: var(--nb-accent, #f4dd5c);
        border: var(--nb-border, 2px solid #111111);
        color: var(--nb-ink, #111111);
        box-shadow: var(--nb-shadow, 3px 3px 0 #111111);
    }

    .home-page .deploy-field input,
    .home-page .deploy-field textarea {
        background: #ffffff;
        border: var(--nb-border, 2px solid #111111);
        border-radius: 0;
        color: var(--nb-ink, #111111);
        box-shadow: var(--nb-shadow, 3px 3px 0 #111111);
    }

    @media (max-width: 760px) {
        .home-page .deploy-model-section {
            padding: 64px 16px;
        }

        .home-page .deploy-model-header {
            gap: 14px;
            margin-bottom: 20px;
        }

        .home-page .deploy-toggle {
            width: 100%;
            max-width: 360px;
        }

        .home-page .deploy-cards {
            gap: 16px;
        }

        .home-page .deploy-card {
            width: 100%;
            padding: 20px;
        }

        .home-page .deploy-card-top {
            align-items: flex-start;
        }

        .home-page .deploy-card-title {
            font-size: 1.15rem;
            line-height: 1.15;
        }

        .home-page .deploy-card-tag {
            font-size: 0.7rem;
            padding: 5px 8px;
        }

        .home-page .deploy-card-desc {
            font-size: 0.95rem;
        }

        .home-page .deploy-benefits {
            font-size: 0.92rem;
            gap: 10px;
        }

        .home-page .deploy-cta {
            padding: 12px 12px;
            font-size: 0.88rem;
        }
    }

    @media (max-width: 420px) {
        .home-page .deploy-model-title {
            font-size: 1.4rem;
        }

        .home-page .deploy-model-subtext {
            font-size: 0.95rem;
        }

        .home-page .deploy-toggle-btn {
            padding: 10px 10px;
            font-size: 0.78rem;
            letter-spacing: 0.06em;
        }

        .home-page .deploy-card {
            padding: 18px;
        }

        .home-page .deploy-benefits li {
            gap: 10px;
        }

        .home-page .deploy-benefits li::before {
            width: 9px;
            height: 9px;
            margin-top: 6px;
        }
    }

/* ============================================================
   JETSON SUBSCRIPTION MODAL
   ============================================================ */

.jetson-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: start center;
    padding: 100px 16px 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
    z-index: 1100;
    overflow-y: auto;
}

.jetson-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.jetson-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 58, 53, 0.44);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: -1;
}

.jetson-modal-dialog {
    position: relative;
    width: min(680px, 100%);
    background: #ffffff;
    border: 1px solid rgba(8, 58, 53, 0.1);
    border-radius: 20px;
    padding: 28px 28px 24px;
    box-shadow: 0 32px 96px rgba(0, 0, 0, 0.16);
    color: #083a35;
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(8, 58, 53, 0.15) transparent;
}

.jetson-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1.5px solid rgba(8, 58, 53, 0.15);
    background: #f0f4f3;
    color: #083a35;
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 180ms ease, transform 180ms ease;
    line-height: 1;
}

.jetson-modal-close:hover {
    background: rgba(8, 58, 53, 0.1);
    transform: translateY(-1px);
}

.jetson-modal-head {
    margin-bottom: 20px;
    padding-right: 30px;
}

.jetson-modal-eyebrow {
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(8, 58, 53, 0.5);
    margin: 0 0 6px;
}

.jetson-modal-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #083a35;
    margin: 0 0 6px;
    letter-spacing: 0.01em;
}

.jetson-modal-subtext {
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    color: rgba(8, 58, 53, 0.58);
    margin: 0;
    line-height: 1.55;
}

/* ── Form Grid ──────────────────────────────────────── */
.jetson-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    margin-bottom: 20px;
    align-items: start;
}

.jetson-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: "Poppins", sans-serif;
}

/* Ensure full-width fields span both columns */
.jetson-form-grid .jetson-field-full {
    grid-column: 1 / -1;
}

.jetson-field > span {
    font-weight: 600;
    font-size: 0.82rem;
    color: #083a35;
    display: flex;
    align-items: center;
}

.jetson-field > span em {
    color: #c0392b;
    font-style: normal;
    margin-left: 3px;
    font-weight: 700;
}

.jetson-field input,
.jetson-field textarea,
.jetson-field select {
    width: 100%;
    border-radius: 12px;
    border: 1.5px solid rgba(8, 58, 53, 0.12);
    background: #ffffff;
    padding: 12px 14px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: #083a35;
    outline: none;
    transition: all 220ms ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.jetson-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23083a35' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.jetson-field input:focus,
.jetson-field textarea:focus,
.jetson-field select:focus {
    border-color: #0c4a44;
    box-shadow: 0 0 0 4px rgba(12, 74, 68, 0.08);
    background: #ffffff;
}

.jetson-field-error {
    font-size: 0.72rem;
    color: #c0392b;
    font-weight: 500;
    min-height: 1.2em;
    margin-top: 2px;
}

/* ── Duration section ───────────────────────────────── */
.jetson-field-duration-root {
    background: #f8faf9;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(8, 58, 53, 0.06);
    margin-bottom: 20px;
}

.jetson-duration-label {
    font-weight: 700;
    font-size: 0.82rem;
    color: #083a35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: block;
}

.jetson-duration-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.jetson-duration-input-wrap {
    position: relative;
    width: 100px;
}

.jetson-duration-input-wrap input {
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px;
}

.jetson-duration-toggle {
    display: flex;
    background: #e9eeed;
    padding: 4px;
    border-radius: 12px;
    flex: 1;
}

.jetson-dur-opt {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.jetson-dur-opt input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.jetson-dur-opt span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(8, 58, 53, 0.6);
    transition: all 200ms ease;
}

.jetson-dur-opt input:checked + span {
    background: #ffffff;
    color: #0c4a44;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ── Form actions ───────────────────────────────────── */
.jetson-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.jetson-submit {
    appearance: none;
    border: 0;
    background: #0c4a44;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 180ms ease, box-shadow 180ms ease, transform 120ms ease;
    box-shadow: 0 10px 28px rgba(8, 58, 53, 0.18);
}

.jetson-submit:hover {
    background: #0a3f3a;
    box-shadow: 0 14px 36px rgba(8, 58, 53, 0.22);
}

.jetson-submit:active {
    transform: translateY(1px);
}

.jetson-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.jetson-secondary-link {
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(8, 58, 53, 0.7);
    text-decoration: none;
    padding: 10px 2px;
    transition: color 180ms ease;
}

.jetson-secondary-link:hover {
    color: #0c4a44;
    text-decoration: underline;
}

.jetson-form-status {
    margin: 12px 0 0;
    min-height: 1.1em;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
}

.jetson-form-status[data-type="success"] { color: #0c7a60; }
.jetson-form-status[data-type="error"]   { color: #c0392b; }
.jetson-form-status[data-type="info"]    { color: rgba(8, 58, 53, 0.6); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 560px) {
    .jetson-form-grid {
        grid-template-columns: 1fr;
    }

    .jetson-modal-dialog {
        padding: 20px 16px 18px;
        border-radius: 16px;
    }

    .jetson-modal-title {
        font-size: 1.2rem;
    }

    .jetson-duration-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   GLOBAL FORM SYSTEM — Neo Brutal
   Applies to: deploy modal, PDP quote modal, Jetson subscribe modals
   ============================================================ */

:root {
    --nb-bg: #f7f6f2;
    --nb-paper: #fffdf8;
    --nb-ink: #111111;
    --nb-accent: #f4dd5c;
    --nb-border: 2px solid var(--nb-ink);
    --nb-shadow: 3px 3px 0 var(--nb-ink);
    --nb-shadow-lg: 10px 10px 0 var(--nb-ink);
    --nb-danger: #c0392b;
    --nb-success: #0c7a60;
}

/* Ensure form controls never overflow their grid/flex columns */
.deploy-modal-form,
.jetson-modal-form,
.pdp-page .quote-form {
    width: 100%;
    max-width: 100%;
}

.deploy-modal-form *,
.jetson-modal-form *,
.pdp-page .quote-form *,
.deploy-modal-form *::before,
.jetson-modal-form *::before,
.pdp-page .quote-form *::before,
.deploy-modal-form *::after,
.jetson-modal-form *::after,
.pdp-page .quote-form *::after {
    box-sizing: border-box;
}

.deploy-field,
.jetson-field {
    min-width: 0;
}

/* Backdrops */
.deploy-modal-backdrop,
.jetson-modal-backdrop,
.pdp-page .quote-modal {
    background: rgba(17, 17, 17, 0.55);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Dialog shells */
.deploy-modal-dialog,
.jetson-modal-dialog,
.pdp-page .quote-modal-panel {
    background: var(--nb-paper);
    border: var(--nb-border);
    border-radius: 0;
    box-shadow: var(--nb-shadow-lg);
    color: var(--nb-ink);
}

/* Modal close buttons */
.deploy-modal-close,
.jetson-modal-close,
.pdp-page .quote-close-btn {
    border-radius: 0;
    background: var(--nb-accent);
    border: var(--nb-border);
    color: var(--nb-ink);
    box-shadow: var(--nb-shadow);
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.deploy-modal-close:hover,
.jetson-modal-close:hover,
.pdp-page .quote-close-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--nb-ink);
    background: #ffe76b;
}

/* Titles/subtext */
.deploy-modal-title,
.pdp-page .quote-form h3,
.jetson-modal-title {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--nb-ink);
}

.deploy-modal-subtext,
.jetson-modal-subtext {
    color: rgba(17, 17, 17, 0.72);
}

/* Field labels */
.deploy-modal-form .deploy-field > span,
.deploy-modal-form .deploy-field span,
.jetson-modal-form .jetson-field > span {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--nb-ink);
}

/* Controls */
.deploy-modal-form .deploy-field input,
.deploy-modal-form .deploy-field textarea,
.deploy-modal-form .deploy-field select,
.deploy-modal-form .deploy-duration-wrapper input[type="number"],
.jetson-modal-form .jetson-field input,
.jetson-modal-form .jetson-field textarea,
.jetson-modal-form .jetson-field select,
.jetson-modal-form .jetson-duration-input-wrap input,
.pdp-page .quote-form input,
.pdp-page .quote-form textarea {
    display: block;
    border-radius: 0;
    border: var(--nb-border);
    background: #ffffff;
    color: var(--nb-ink);
    box-shadow: var(--nb-shadow);
    max-width: 100%;
    min-width: 0;
}

.deploy-modal-form .deploy-field select,
.jetson-modal-form .jetson-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23111111' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 44px;
    appearance: none;
    -webkit-appearance: none;
}

.deploy-modal-form .deploy-field select option,
.jetson-modal-form .jetson-field select option {
    color: var(--nb-ink);
    background: #ffffff;
}

.deploy-modal-form .deploy-field input:focus,
.deploy-modal-form .deploy-field textarea:focus,
.deploy-modal-form .deploy-field select:focus,
.deploy-modal-form .deploy-duration-wrapper input[type="number"]:focus,
.jetson-modal-form .jetson-field input:focus,
.jetson-modal-form .jetson-field textarea:focus,
.jetson-modal-form .jetson-field select:focus,
.jetson-modal-form .jetson-duration-input-wrap input:focus,
.pdp-page .quote-form input:focus,
.pdp-page .quote-form textarea:focus {
    outline: none;
    border-color: var(--nb-ink);
    box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.14), var(--nb-shadow);
}

.deploy-modal-form .deploy-field input::placeholder,
.deploy-modal-form .deploy-field textarea::placeholder,
.jetson-modal-form .jetson-field input::placeholder,
.jetson-modal-form .jetson-field textarea::placeholder {
    color: rgba(17, 17, 17, 0.55);
}

/* Validation: deploy modal */
.deploy-modal-form .deploy-field input:invalid:not(:placeholder-shown),
.deploy-modal-form .deploy-field select:invalid {
    border-color: var(--nb-danger);
}

.deploy-modal-form .deploy-field input.is-valid,
.deploy-modal-form .deploy-field select.is-valid {
    border-color: var(--nb-success);
}

/* Deployment duration toggle */
.deploy-duration-toggle {
    border-radius: 0;
    border: var(--nb-border);
    background: #ffffff;
    box-shadow: var(--nb-shadow);
    overflow: hidden;
}

.duration-toggle-text {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.duration-toggle-option input[type="radio"]:checked + .duration-toggle-text {
    background: var(--nb-accent);
    color: var(--nb-ink);
}

.duration-toggle-option:not(:first-child) .duration-toggle-text {
    border-left: var(--nb-border);
}

/* Deploy submit + secondary link */
.deploy-submit,
.jetson-submit,
.pdp-page .enquiry-button {
    border-radius: 0;
    border: var(--nb-border);
    box-shadow: var(--nb-shadow);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 900;
}

.deploy-submit,
.jetson-submit {
    background: var(--nb-accent);
    color: var(--nb-ink);
}

.pdp-page .enquiry-button {
    background: var(--nb-accent);
    color: var(--nb-ink);
}

.deploy-submit:hover,
.jetson-submit:hover,
.pdp-page .enquiry-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--nb-ink);
}

.pdp-page .enquiry-button:hover {
    background: #ffe76b;
}

.deploy-secondary-link,
.jetson-secondary-link {
    color: var(--nb-ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Jetson duration section */
.jetson-field-duration-root {
    background: #ffffff;
    border: var(--nb-border);
    border-radius: 0;
    box-shadow: var(--nb-shadow);
}

.jetson-duration-wrapper {
    align-items: stretch;
}

.jetson-duration-input-wrap {
    width: 120px;
    min-width: 120px;
}

.jetson-duration-input-wrap input {
    height: 48px;
    padding: 12px 12px;
    font-size: 1rem;
}

.jetson-duration-toggle {
    border-radius: 0;
    border: var(--nb-border);
    background: #ffffff;
    box-shadow: var(--nb-shadow);
    min-width: 0;
    padding: 0;
    min-height: 48px;
}

.jetson-dur-opt span {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    min-height: 48px;
    padding: 12px 14px;
}

.jetson-dur-opt input:checked + span {
    background: var(--nb-accent);
    color: var(--nb-ink);
    box-shadow: none;
}

/* Jetson (Edge Node) forms: slightly tighter scale */
.jetson-modal-dialog {
    --nb-shadow: 2px 2px 0 var(--nb-ink);
    --nb-shadow-lg: 8px 8px 0 var(--nb-ink);
}

.jetson-modal-dialog {
    padding: 22px 22px 18px;
    max-height: calc(100dvh - 96px);
}

.jetson-modal-title {
    font-size: 1.25rem;
}

.jetson-modal-subtext {
    font-size: 0.86rem;
}

.jetson-form-grid {
    gap: 14px 16px;
    margin-bottom: 16px;
}

.jetson-modal-form .jetson-field > span {
    font-size: 0.75rem;
}

.jetson-modal-form .jetson-field input,
.jetson-modal-form .jetson-field textarea,
.jetson-modal-form .jetson-field select {
    padding: 10px 12px;
    font-size: 0.92rem;
}

.jetson-modal-form .jetson-field textarea {
    min-height: 88px;
}

.jetson-modal-form .jetson-form-actions {
    margin-top: 16px;
}

.jetson-modal-form .jetson-submit {
    padding: 11px 18px;
    font-size: 0.86rem;
}

/* Jetson duration control: match Home subscription style */
.jetson-field-duration-root {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.jetson-field-duration-root .jetson-duration-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.jetson-field-duration-root .jetson-duration-input-wrap {
    flex: 0 0 auto;
    width: 96px;
    min-width: 96px;
}

.jetson-field-duration-root .jetson-duration-input-wrap input {
    height: 48px;
    padding: 12px 12px;
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
}

.jetson-field-duration-root .jetson-duration-toggle {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    min-height: 48px;
    border: var(--nb-border);
    box-shadow: var(--nb-shadow);
    background: #ffffff;
}

.jetson-field-duration-root .jetson-dur-opt span {
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 0;
    border: 0;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(17, 17, 17, 0.7);
}

.jetson-field-duration-root .jetson-dur-opt:not(:first-child) span {
    border-left: var(--nb-border);
}

.jetson-field-duration-root .jetson-dur-opt input:checked + span {
    background: var(--nb-accent);
    color: var(--nb-ink);
}

@media (max-width: 560px) {
    .jetson-field-duration-root .jetson-duration-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .jetson-field-duration-root .jetson-duration-input-wrap {
        width: 100%;
        min-width: 0;
    }

    .jetson-field-duration-root .jetson-duration-toggle {
        width: 100%;
        justify-content: stretch;
    }

    .jetson-field-duration-root .jetson-dur-opt {
        flex: 1 1 0;
    }
}

/* Quote modal panel: remove gradient skin */
.pdp-page .quote-modal-panel {
    background: var(--nb-paper);
    border: var(--nb-border);
}

.pdp-page .quote-form {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 18px;
}

/* Mobile polish (avoid iOS zoom on inputs) */
@media (max-width: 480px) {
    .deploy-modal-form input,
    .deploy-modal-form select,
    .deploy-modal-form textarea,
    .jetson-modal-form input,
    .jetson-modal-form select,
    .jetson-modal-form textarea,
    .pdp-page .quote-form input,
    .pdp-page .quote-form textarea {
        font-size: 16px;
    }

    .deploy-modal-dialog,
    .jetson-modal-dialog,
    .pdp-page .quote-modal-panel {
        box-shadow: 7px 7px 0 var(--nb-ink);
    }
}
