﻿        :root {
            color-scheme: light;
            --bg: #050816;
            --bg-soft: #0d1330;
            --bbva-blue: #0d47c9;
            --bbva-blue-deep: #0a2d7a;
            --bbva-cyan: #20c6e0;
            --bbva-cyan-soft: #78e8ff;
            --panel: #f7f8fc;
            --panel-2: #ffffff;
            --line: #d8def0;
            --text: #11162b;
            --muted: #687086;
            --ink: #f4f7ff;
            --ink-soft: rgba(244, 247, 255, 0.72);
            --accent: #171d48;
            --accent-2: #2c7ef8;
            --accent-3: #71e4ff;
            --ok: #0f9f6e;
            --error: #b42318;
            --shadow: 0 24px 64px rgba(7, 10, 26, 0.28);
        }
        * { box-sizing: border-box; }
        body {
            margin: 0;
            background:
                radial-gradient(circle at 15% 15%, rgba(32, 198, 224, 0.18), transparent 24%),
                radial-gradient(circle at 85% 18%, rgba(44, 126, 248, 0.22), transparent 22%),
                radial-gradient(circle at 50% 100%, rgba(32, 198, 224, 0.08), transparent 30%),
                linear-gradient(180deg, #05112d 0%, #07173a 48%, #08122f 100%);
            min-height: 100vh;
            overflow-x: hidden;
            color: var(--text);
            font-family: "IBM Plex Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
        }
        body.intro-active {
            overflow: hidden;
        }
        .intro-curtain {
            position: fixed;
            inset: 0;
            z-index: 120;
            display: flex;
            align-items: center;
            justify-content: center;
            background:
                linear-gradient(135deg, transparent 0 63%, rgba(131, 211, 255, 0.18) 63.15%, rgba(72, 148, 255, 0.34) 64%, transparent 66.4%),
                linear-gradient(146deg, transparent 0 71%, rgba(197, 238, 255, 0.14) 71.1%, transparent 72.6%),
                radial-gradient(circle at 56% 48%, rgba(158, 228, 255, 0.16), transparent 16%),
                linear-gradient(180deg, #071739 0%, #09204c 46%, #08183c 100%);
            transform: translateY(0);
            transition: transform 2.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 2.4s, opacity 0.35s ease;
            overflow: hidden;
        }
        .intro-curtain::before,
        .intro-curtain::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
        }
        .intro-curtain::before {
            background:
                linear-gradient(146deg, transparent 0 38%, rgba(255, 255, 255, 0.07) 38.15%, transparent 38.45%),
                linear-gradient(146deg, transparent 0 66%, rgba(110, 196, 255, 0.1) 66.15%, transparent 66.5%);
            opacity: 0.56;
        }
        .intro-curtain::after {
            background:
                radial-gradient(circle at 54% 50%, rgba(213, 242, 255, 0.09), transparent 18%);
            mix-blend-mode: screen;
            opacity: 0.28;
        }
        .intro-curtain.is-opening {
            transform: translateY(-100%);
            opacity: 0.98;
        }
        .intro-curtain.is-hidden {
            visibility: hidden;
            pointer-events: none;
        }
        .intro-curtain__inner {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: min(58vw, 520px);
            padding: 28px 34px;
            gap: 18px;
            margin: 0 auto;
            text-align: center;
        }
        .intro-curtain__inner::before,
        .intro-curtain__inner::after {
            content: "";
            position: absolute;
            pointer-events: none;
        }
        .intro-curtain__inner::before {
            inset: 14px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(116, 203, 255, 0.05);
            opacity: 0.52;
        }
        .intro-curtain__inner::after {
            left: 18px;
            right: 18px;
            top: 50%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(180, 234, 255, 0.12), transparent);
            opacity: 0.36;
        }
        .intro-curtain__logo {
            width: min(100%, 420px);
            height: auto;
            display: block;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 18px 34px rgba(3, 13, 36, 0.28));
            animation: intro-logo-pulse 2.4s ease-in-out infinite;
        }
        .intro-curtain__copy {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 6px;
            text-align: center;
            animation: intro-copy-rise 1.4s ease-out both;
        }
        .intro-curtain__copy strong,
        .intro-curtain__eyebrow,
        .intro-curtain__hint {
            display: block;
        }
        .intro-curtain__eyebrow {
            color: rgba(207, 235, 255, 0.74);
            font-size: 0.8rem;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            animation: intro-eyebrow-pulse 2.2s ease-in-out infinite;
        }
        .intro-curtain__copy strong {
            color: #f5fbff;
            font-family: "Sora", "Aptos Display", "Segoe UI", sans-serif;
            font-size: clamp(1.35rem, 3vw, 2rem);
            font-weight: 700;
            letter-spacing: -0.04em;
            text-shadow: 0 8px 24px rgba(10, 32, 84, 0.28);
            animation: intro-title-glow 2.6s ease-in-out infinite;
        }
        .intro-curtain__hint {
            color: rgba(225, 242, 255, 0.82);
            font-size: clamp(0.92rem, 1.7vw, 1.05rem);
            font-weight: 500;
            letter-spacing: 0.02em;
            margin-top: 20px;
        }
        .intro-curtain__button {
            position: relative;
            z-index: 1;
            min-width: 96px;
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid rgba(203, 236, 255, 0.4);
            background: rgba(255, 255, 255, 0.06);
            color: #f7fbff;
            font-family: "Sora", "Aptos Display", "Segoe UI", sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            cursor: pointer;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            backdrop-filter: blur(10px);
            box-shadow: 0 14px 32px rgba(4, 14, 34, 0.2);
            transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
            animation: intro-button-pulse 2.1s ease-in-out infinite;
        }
        .intro-curtain__button:hover,
        .intro-curtain__button:focus-visible {
            outline: none;
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(203, 236, 255, 0.68);
            box-shadow: 0 18px 40px rgba(32, 198, 224, 0.18);
        }
        .intro-curtain__button:active {
            transform: translateY(0);
        }
        @keyframes intro-button-pulse {
            0%, 100% {
                transform: translateY(0) scale(1);
                letter-spacing: 0.07em;
                background: rgba(255, 255, 255, 0.06);
                border-color: rgba(203, 236, 255, 0.4);
                box-shadow: 0 14px 32px rgba(4, 14, 34, 0.2);
            }
            50% {
                transform: translateY(-1px) scale(1.04);
                letter-spacing: 0.11em;
                background: rgba(255, 255, 255, 0.12);
                border-color: rgba(203, 236, 255, 0.7);
                box-shadow: 0 18px 36px rgba(32, 198, 224, 0.24);
            }
        }
        @keyframes intro-logo-pulse {
            0%, 100% {
                transform: translateY(0) scale(1);
                filter: drop-shadow(0 18px 34px rgba(3, 13, 36, 0.28));
                opacity: 0.94;
            }
            50% {
                transform: translateY(-2px) scale(1.03);
                filter: drop-shadow(0 22px 40px rgba(32, 198, 224, 0.22));
                opacity: 1;
            }
        }
        @keyframes intro-copy-rise {
            from {
                opacity: 0;
                transform: translateY(18px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes intro-eyebrow-pulse {
            0%, 100% {
                opacity: 0.54;
                letter-spacing: 0.22em;
            }
            50% {
                opacity: 1;
                letter-spacing: 0.28em;
            }
        }
        @keyframes intro-title-glow {
            0%, 100% {
                opacity: 0.88;
                text-shadow: 0 8px 24px rgba(10, 32, 84, 0.22);
            }
            50% {
                opacity: 1;
                text-shadow: 0 12px 32px rgba(113, 228, 255, 0.32);
            }
        }
        .shell {
            max-width: 1240px;
            margin: 0 auto;
            padding: 28px 20px 72px;
        }
        .frame {
            position: relative;
            padding: 18px;
            border-radius: 36px;
            border: 1px solid rgba(120, 196, 255, 0.2);
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
                linear-gradient(180deg, rgba(5, 18, 46, 0.96), rgba(7, 16, 40, 0.94));
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .frame::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 18%),
                radial-gradient(circle at top right, rgba(32, 198, 224, 0.18), transparent 22%),
                linear-gradient(90deg, transparent 10%, rgba(120, 232, 255, 0.18) 50%, transparent 90%);
            pointer-events: none;
        }
        .frame::after {
            content: "";
            position: absolute;
            left: 26px;
            right: 26px;
            top: 78px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(120, 232, 255, 0.5), transparent);
            opacity: 0.7;
            pointer-events: none;
        }
        .window-bar {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 8px 12px 18px;
            color: var(--ink);
        }
        .window-title {
            font-family: "Aptos Display", "Sora", "Segoe UI", sans-serif;
            font-size: clamp(1.02rem, 1.8vw, 1.24rem);
            font-weight: 700;
            letter-spacing: 0.24em;
            color: #ffffff;
            text-align: center;
            line-height: 1;
            text-transform: uppercase;
            text-shadow: 0 8px 18px rgba(7, 18, 46, 0.18);
        }
        .brandline {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            letter-spacing: 0.02em;
            color: inherit;
            text-decoration: none;
        }
        .brandlogo {
            height: 52px;
            width: auto;
            display: block;
            background: transparent;
        }
        .window-chip {
            padding: 9px 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--ink-soft);
            background: rgba(255, 255, 255, 0.06);
            font-size: 13px;
            text-decoration: none;
        }
        .window-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .window-actions form {
            margin: 0;
        }
        .window-sidebar-toggle {
            width: 42px;
            height: 42px;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 4px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: none;
        }
        .window-sidebar-toggle span {
            display: block;
            width: 16px;
            height: 2px;
            border-radius: 999px;
            background: #f4f7ff;
            transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
        }
        .window-sidebar-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        body.portal-sidebar-hidden .window-sidebar-toggle span:nth-child(1) {
            width: 12px;
            transform: translateX(2px);
        }
        body.portal-sidebar-hidden .window-sidebar-toggle span:nth-child(3) {
            width: 12px;
            transform: translateX(2px);
        }
        .window-logout {
            padding: 10px 18px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: linear-gradient(135deg, rgba(17, 34, 88, 0.94), rgba(35, 53, 122, 0.96));
            color: #ffffff;
            font-family: "Sora", "Aptos Display", "Segoe UI", sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 14px 28px rgba(5, 8, 22, 0.2);
        }
        .window-logout:hover {
            box-shadow: 0 18px 34px rgba(5, 8, 22, 0.26);
            transform: translateY(-1px);
        }
        .hamburger {
            display: inline-flex;
            width: 42px;
            height: 42px;
            padding: 0;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: none;
            align-items: center;
            justify-content: center;
        }
        .hamburger span {
            display: block;
            width: 18px;
            height: 2px;
            background: #f4f7ff;
            border-radius: 999px;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }
        .hamburger span + span {
            margin-top: 4px;
        }
        .mobile-menu {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            width: min(260px, calc(100vw - 32px));
            padding: 12px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(11, 17, 39, 0.96);
            box-shadow: 0 18px 40px rgba(5, 8, 22, 0.28);
            backdrop-filter: blur(12px);
            z-index: 15;
        }
        .mobile-menu.is-open {
            display: grid;
            gap: 8px;
        }
        .mobile-menu a {
            display: block;
            padding: 12px 14px;
            border-radius: 14px;
            color: #f4f7ff;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .workspace {
            position: relative;
            z-index: 1;
            background: linear-gradient(180deg, #f9fbff 0%, #f2f5fb 100%);
            border-radius: 28px;
            padding: 26px;
            min-height: 72vh;
            border: 1px solid rgba(216, 222, 240, 0.7);
        }
        .workspace-landing,
        .workspace-auth {
            background:
                linear-gradient(180deg, rgba(8, 25, 63, 0.78), rgba(7, 18, 46, 0.92)),
                linear-gradient(90deg, rgba(32, 198, 224, 0.04), transparent);
            border-color: rgba(120, 196, 255, 0.16);
            padding: 18px;
        }
        .card {
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid var(--line);
            border-radius: 28px;
            box-shadow: 0 20px 50px rgba(17, 22, 43, 0.08);
            padding: 30px;
        }
        h1, h2, h3 { margin-top: 0; }
        h1, h2, h3, .display {
            font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
            letter-spacing: -0.03em;
        }
        h1 {
            font-size: clamp(2.2rem, 4vw, 4.35rem);
            line-height: 1.04;
            margin-bottom: 14px;
        }
        h2 {
            font-size: clamp(1.65rem, 2.8vw, 2.45rem);
            line-height: 1.08;
        }
        h3 {
            font-size: 1.2rem;
            line-height: 1.18;
        }
        p { line-height: 1.65; }
        .topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            margin-bottom: 26px;
        }
        .hero {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 22px;
            align-items: stretch;
        }
        .badge {
            display: inline-block;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(44, 126, 248, 0.09);
            color: var(--accent);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .badge-inverse {
            background: rgba(255, 255, 255, 0.08);
            color: #f4f7ff;
        }
        .stack-top-md {
            margin-top: 18px;
        }
        .card-block-offset {
            margin-top: 22px;
        }
        .alert {
            padding: 14px 16px;
            border-radius: 16px;
            margin-bottom: 18px;
            border: 1px solid transparent;
        }
        .alert-success {
            background: #ecfdf6;
            color: var(--ok);
            border-color: rgba(15, 159, 110, 0.18);
        }
        .alert-error {
            background: #fff0ef;
            color: var(--error);
            border-color: rgba(180, 35, 24, 0.14);
        }
        .status-modal-backdrop {
            position: fixed;
            inset: 0;
            z-index: 60;
            display: grid;
            place-items: center;
            padding: 20px;
            background: rgba(5, 8, 22, 0.56);
            backdrop-filter: blur(8px);
        }
        .status-modal {
            position: relative;
            width: min(100%, 420px);
            padding: 26px 24px 22px;
            border-radius: 26px;
            border: 1px solid rgba(180, 35, 24, 0.12);
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 30px 70px rgba(5, 8, 22, 0.24);
            text-align: center;
        }
        .status-modal-kicker {
            display: inline-flex;
            margin-bottom: 14px;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(180, 35, 24, 0.08);
            color: var(--error);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .status-modal h2 {
            margin-bottom: 10px;
            font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
            font-size: clamp(1.2rem, 2vw, 1.55rem);
            letter-spacing: -0.04em;
            color: #171d48;
        }
        .status-modal p {
            margin: 0;
            color: #4c5673;
            line-height: 1.55;
        }
        .status-modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 36px;
            height: 36px;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            appearance: none;
            -webkit-appearance: none;
            border-radius: 50%;
            background: rgba(32, 198, 224, 0.14);
            color: #0d47c9;
            border: 1px solid rgba(13, 71, 201, 0.14);
            box-shadow: 0 10px 20px rgba(13, 71, 201, 0.12);
            line-height: 1;
            text-align: center;
            z-index: 2;
            opacity: 1;
            text-decoration: none;
        }
        .status-modal-close span {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1;
            color: #0d47c9;
            transform: translateY(-1px);
        }
        .status-modal-close:hover {
            background: rgba(32, 198, 224, 0.22);
            color: #08348f;
            box-shadow: 0 14px 24px rgba(13, 71, 201, 0.18);
        }
        .status-modal-close:hover span {
            color: #08348f;
        }
        .status-modal-close:hover svg {
            color: #08348f;
        }
        .status-modal-action {
            min-width: 160px;
            margin-top: 20px;
        }
        label {
            display: block;
            font-weight: 700;
            margin-bottom: 8px;
            color: #2f3550;
        }
        input {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #d6dced;
            border-radius: 16px;
            margin-bottom: 18px;
            font: inherit;
            background: rgba(248, 250, 255, 0.96);
            color: var(--text);
            transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
        }
        input:focus {
            outline: none;
            border-color: rgba(44, 126, 248, 0.55);
            box-shadow: 0 0 0 4px rgba(44, 126, 248, 0.12);
            transform: translateY(-1px);
        }
        button {
            background: linear-gradient(135deg, var(--accent) 0%, #222e70 100%);
            color: #fff;
            border: 0;
            border-radius: 16px;
            padding: 14px 18px;
            font: inherit;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 14px 30px rgba(23, 29, 72, 0.18);
            transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
        }
        button:hover {
            transform: translateY(-1px);
            box-shadow: 0 18px 34px rgba(23, 29, 72, 0.24);
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 18px;
            margin-top: 24px;
        }
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 18px;
            margin-top: 24px;
        }
        .mini {
            padding: 22px;
            border-radius: 22px;
            border: 1px solid #d9e0ef;
            background: linear-gradient(180deg, #ffffff, #f8faff);
        }
        .hero-panel {
            position: relative;
            overflow: hidden;
            padding: 34px;
            border-radius: 30px;
            border: 1px solid rgba(124, 160, 255, 0.18);
            background:
                radial-gradient(circle at top right, rgba(113, 228, 255, 0.18), transparent 25%),
                linear-gradient(135deg, #0f1636 0%, #171d48 62%, #15295e 100%);
            color: var(--ink);
            box-shadow: 0 30px 70px rgba(11, 16, 40, 0.24);
        }
        .hero-panel::after {
            content: "";
            position: absolute;
            right: -28px;
            bottom: -42px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(113, 228, 255, 0.24), transparent 68%);
            pointer-events: none;
        }
        .hero-panel p,
        .hero-panel .muted {
            color: var(--ink-soft);
        }
        .landing-shell {
            min-height: calc(76vh - 24px);
        }
        .landing-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 18px;
            padding: 4px 6px 0;
        }
        .slider-topbar {
            position: absolute;
            top: 24px;
            left: 24px;
            right: 24px;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }
        .landing-brand {
            display: flex;
            align-items: center;
            gap: 18px;
            color: inherit;
            text-decoration: none;
        }
        .landing-logo {
            width: auto;
            height: 54px;
            display: block;
        }
        .landing-brandline {
            margin: 4px 0 0;
            color: rgba(244, 247, 255, 0.72);
        }
        .landing-kicker {
            margin-bottom: 0;
        }
        .landing-hero {
            position: relative;
        }
        .benefits-strip {
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 30px;
            padding: 24px;
            border-radius: 28px;
            border: 1px solid rgba(113, 228, 255, 0.22);
            background:
                radial-gradient(circle at top left, rgba(120, 232, 255, 0.18), transparent 26%),
                linear-gradient(120deg, rgba(13, 71, 201, 0.24), rgba(15, 134, 189, 0.28) 52%, rgba(9, 58, 118, 0.36));
            box-shadow: 0 18px 42px rgba(12, 39, 82, 0.18);
        }
        .steps-strip {
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 22px;
            padding: 24px;
            border-radius: 28px;
            border: 1px solid rgba(120, 196, 255, 0.14);
            background:
                linear-gradient(132deg, rgba(255, 255, 255, 0.03), transparent 28%),
                radial-gradient(circle at top right, rgba(32, 198, 224, 0.12), transparent 22%),
                linear-gradient(140deg, rgba(9, 29, 75, 0.62), rgba(9, 40, 98, 0.42));
            box-shadow: 0 18px 42px rgba(9, 27, 66, 0.16);
        }
        .landing-footer {
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 24px;
            padding: 24px;
            border-radius: 28px;
            border: 1px solid rgba(113, 228, 255, 0.22);
            background:
                radial-gradient(circle at top left, rgba(120, 232, 255, 0.18), transparent 26%),
                linear-gradient(120deg, rgba(13, 71, 201, 0.24), rgba(15, 134, 189, 0.28) 52%, rgba(9, 58, 118, 0.36));
            box-shadow: 0 18px 42px rgba(12, 39, 82, 0.18);
        }
        .footer-watermark {
            position: absolute;
            left: -12px;
            bottom: -26px;
            width: min(28vw, 320px);
            aspect-ratio: 1 / 1;
            background:
                radial-gradient(circle at 40% 40%, rgba(120, 232, 255, 0.1), transparent 28%),
                url("/app/iamgen/logo.png") center / contain no-repeat;
            opacity: 0.06;
            filter: saturate(0) brightness(1.25) blur(0.6px);
            mix-blend-mode: screen;
            pointer-events: none;
        }
        .benefits-strip::before,
        .steps-strip::before,
        .landing-footer::before {
            content: "";
            position: absolute;
            left: 24px;
            right: 24px;
            top: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(120, 232, 255, 0.7), transparent);
            opacity: 0.9;
            pointer-events: none;
        }
        .benefits-strip::after,
        .steps-strip::after,
        .landing-footer::after {
            content: "";
            position: absolute;
            inset: auto -40px -40px auto;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(32, 198, 224, 0.18), transparent 68%);
            pointer-events: none;
        }
        .benefits-heading::after,
        .steps-heading::after,
        .footer-heading::after {
            content: "";
            display: block;
            width: 170px;
            height: 1px;
            margin: 14px auto 0;
            background: linear-gradient(90deg, transparent, rgba(120, 232, 255, 0.92), transparent);
            box-shadow: 0 0 16px rgba(120, 232, 255, 0.24);
        }
        .benefits-heading {
            grid-column: 1 / -1;
            text-align: center;
            margin-bottom: 2px;
        }
        .steps-heading {
            grid-column: 1 / -1;
            text-align: center;
            margin-bottom: 2px;
        }
        .footer-heading {
            grid-column: 1 / -1;
            text-align: center;
            margin-bottom: 4px;
        }
        .benefits-heading h2 {
            margin: 0;
            color: #ffffff;
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
            letter-spacing: -0.04em;
        }
        .steps-heading h2 {
            margin: 0;
            color: #ffffff;
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
            letter-spacing: -0.04em;
        }
        .footer-heading h2 {
            margin: 0;
            color: #ffffff;
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
            letter-spacing: -0.04em;
        }
        .footer-heading p {
            margin: 10px auto 0;
            max-width: 720px;
            color: rgba(244, 247, 255, 0.78);
        }
        .benefit-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 22px 18px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.04);
            color: #ffffff;
            text-align: center;
        }
        .benefit-card h2 {
            margin: 0;
            font-size: 1.08rem;
            line-height: 1.3;
            font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
            letter-spacing: -0.03em;
            color: #ffffff;
        }
        .benefit-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 54px;
            height: 54px;
            margin-bottom: 14px;
            border-radius: 50%;
            border: 1.5px solid rgba(32, 198, 224, 0.36);
            background: rgba(32, 198, 224, 0.12);
            color: #20c6e0;
            font-size: 1.5rem;
            font-weight: 800;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 22px rgba(32, 198, 224, 0.12);
        }
        .benefit-icon svg {
            width: 26px;
            height: 26px;
            display: block;
        }
        .step-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 22px 18px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.04);
            color: #ffffff;
            text-align: center;
        }
        .step-card h3 {
            margin: 0;
            font-size: 1.08rem;
            line-height: 1.3;
            font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
            letter-spacing: -0.03em;
            color: #ffffff;
        }
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 54px;
            height: 54px;
            margin-bottom: 14px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            font-size: 1.6rem;
            font-weight: 800;
            font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }
        .footer-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 22px 18px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: #ffffff;
            text-align: center;
        }
        .footer-card h3 {
            margin: 0 0 10px;
            font-size: 1.08rem;
            line-height: 1.3;
            font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
            letter-spacing: -0.03em;
            color: #ffffff;
        }
        .footer-card p {
            margin: 4px 0;
            color: rgba(244, 247, 255, 0.82);
        }
        .footer-card a {
            color: #ffffff;
            text-decoration: none;
        }
        .footer-card a:hover {
            text-decoration: underline;
        }
        .footer-socials {
            width: 100%;
            display: grid;
            gap: 10px;
        }
        .footer-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-social-link:hover {
            text-decoration: none;
            background: rgba(255, 255, 255, 0.09);
        }
        .footer-social-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            flex: 0 0 28px;
        }
        .footer-social-mark svg {
            width: 16px;
            height: 16px;
            display: block;
        }
        .footer-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 54px;
            height: 54px;
            margin-bottom: 14px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }
        .footer-icon svg {
            width: 26px;
            height: 26px;
            display: block;
        }
        .ghost-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 10px 18px;
            border-radius: 999px;
            border: 1px solid rgba(23, 29, 72, 0.12);
            text-decoration: none;
            color: var(--accent);
            background: rgba(255, 255, 255, 0.74);
            backdrop-filter: blur(8px);
            font-weight: 700;
            transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
        }
        .ghost-link:hover {
            transform: translateY(-1px);
            border-color: rgba(44, 126, 248, 0.28);
            background: rgba(255, 255, 255, 0.9);
        }
        .ghost-link-light {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.12);
            color: var(--ink);
        }
        .ghost-link-light:hover {
            background: rgba(255, 255, 255, 0.10);
        }
        .slider {
            position: relative;
            min-height: 520px;
        }
        .slider-full {
            min-height: calc(54vh - 18px);
        }
        .slides {
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            min-height: 500px;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 26%),
                linear-gradient(180deg, rgba(8, 25, 63, 0.18), rgba(5, 16, 42, 0.08));
            border: 0;
            box-shadow: none;
        }
        .slides-track {
            position: relative;
            width: 100%;
            height: 100%;
        }
        .slide {
            position: absolute;
            inset: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            align-items: center;
            min-height: 500px;
            padding: 92px 24px 122px;
            opacity: 0;
            pointer-events: none;
            transform: translateX(30px) scale(0.985);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .slide::before {
            content: "";
            position: absolute;
            top: -20%;
            right: 16%;
            width: 170px;
            height: 148%;
            background: linear-gradient(180deg, rgba(120, 232, 255, 0.22), rgba(13, 71, 201, 0.02));
            transform: rotate(28deg);
            filter: blur(10px);
            opacity: 0.72;
            pointer-events: none;
        }
        .slide::after {
            content: "";
            position: absolute;
            right: 46px;
            bottom: 96px;
            width: 210px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(120, 232, 255, 0.8), transparent);
            box-shadow: 0 0 18px rgba(120, 232, 255, 0.24);
            transform: rotate(-24deg);
            pointer-events: none;
        }
        .slide.is-active {
            opacity: 1;
            pointer-events: auto;
            transform: translateX(0) scale(1);
        }
        .slide-copy h1 {
            margin-bottom: 16px;
            max-width: none;
            font-size: clamp(2.6rem, 4.6vw, 4.8rem);
            text-wrap: balance;
            line-height: 1.06;
            color: #ffffff;
            text-shadow: 0 10px 30px rgba(5, 8, 22, 0.28);
            overflow: visible;
            padding: 0.08em 0;
        }
        .slide-copy .title-line {
            display: block;
            opacity: 0;
            transform: translateY(32px);
        }
        .slide.is-active .slide-copy .title-line {
            animation: titleReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        .slide.is-active .slide-copy .title-line:nth-child(1) { animation-delay: 0.08s; }
        .slide.is-active .slide-copy .title-line:nth-child(2) { animation-delay: 0.22s; }
        .slide.is-active .slide-copy .title-line:nth-child(3) { animation-delay: 0.36s; }
        .slide.is-active .slide-copy .title-line:nth-child(4) { animation-delay: 0.5s; }
        .slide.is-active .slide-copy .title-line:nth-child(5) { animation-delay: 0.64s; }
        .slide.is-active .slide-copy .title-line:nth-child(6) { animation-delay: 0.78s; }
        .slide-primary .slide-copy h1,
        .slide-secondary .slide-copy h1,
        .slide-tertiary .slide-copy h1 {
            font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
            font-weight: 800;
            letter-spacing: -0.06em;
        }
        .slide-watermark {
            position: absolute;
            left: 6%;
            top: 50%;
            width: min(34vw, 430px);
            aspect-ratio: 1 / 1;
            transform: translateY(-42%);
            background:
                radial-gradient(circle at 45% 45%, rgba(120, 232, 255, 0.12), transparent 26%),
                url("/app/iamgen/logo.png") center / contain no-repeat;
            opacity: 0.08;
            filter: saturate(0) brightness(1.35) blur(0.5px);
            mix-blend-mode: screen;
            pointer-events: none;
        }
        .slide-pixels {
            position: absolute;
            right: 64px;
            bottom: 84px;
            width: 196px;
            height: 138px;
            pointer-events: none;
            opacity: 0.92;
        }
        .slide-pixels span {
            position: absolute;
            width: 32px;
            height: 32px;
            border-radius: 10px;
            filter: blur(2px);
            box-shadow: 0 0 22px rgba(32, 198, 224, 0.16);
        }
        .slide-pixels span:nth-child(1) {
            right: 0;
            bottom: 10px;
            background: rgba(32, 198, 224, 0.74);
        }
        .slide-pixels span:nth-child(2) {
            right: 34px;
            bottom: 24px;
            background: rgba(70, 169, 255, 0.7);
        }
        .slide-pixels span:nth-child(3) {
            right: 68px;
            bottom: 0;
            background: rgba(28, 111, 255, 0.62);
        }
        .slide-pixels span:nth-child(4) {
            right: 18px;
            bottom: 52px;
            background: rgba(108, 228, 255, 0.5);
        }
        .slide-pixels span:nth-child(5) {
            right: 52px;
            bottom: 62px;
            background: rgba(46, 126, 248, 0.46);
        }
        .slide-pixels span:nth-child(6) {
            right: 96px;
            bottom: 34px;
            background: rgba(18, 77, 189, 0.38);
        }
        .slider-badge {
            margin-bottom: 14px;
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
        }
        .slide-art,
        .slide-visual,
        .slide-diagram,
        .slide-metrics {
            min-height: 260px;
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .slide-art {
            position: relative;
            overflow: hidden;
            display: none;
        }
        .slide-visual-tall {
            min-height: 420px;
        }
        .slide-primary {
            background:
                radial-gradient(circle at 75% 22%, rgba(120, 232, 255, 0.16), transparent 18%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
                linear-gradient(180deg, rgba(10, 31, 84, 0.24), rgba(9, 20, 56, 0.12));
        }
        .slide-primary {
            grid-template-columns: 1fr;
        }
        .slide-primary .slide-copy {
            width: min(100%, 1320px);
            margin: 0 auto;
            text-align: center;
        }
        .slide-primary .slide-copy h1 {
            max-width: none;
            margin-left: auto;
            margin-right: auto;
            width: min(100%, 1160px);
            font-size: clamp(2.6rem, 4.6vw, 4.8rem);
            line-height: 1.04;
        }
        .slide-secondary {
            background:
                radial-gradient(circle at 80% 78%, rgba(32, 198, 224, 0.18), transparent 26%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
                linear-gradient(180deg, rgba(11, 44, 110, 0.18), rgba(9, 20, 56, 0.12));
        }
        .slide-secondary .slide-copy,
        .slide-tertiary .slide-copy {
            width: min(100%, 1320px);
            margin: 0 auto;
            text-align: center;
        }
        .slide-secondary .slide-copy h1,
        .slide-tertiary .slide-copy h1 {
            width: min(100%, 1180px);
            margin-left: auto;
            margin-right: auto;
        }
        .slide-tertiary {
            background:
                radial-gradient(circle at 18% 24%, rgba(113, 228, 255, 0.14), transparent 18%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
                linear-gradient(180deg, rgba(5, 31, 97, 0.2), rgba(9, 20, 56, 0.12));
        }
        .slide-visual {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 28% 28%, rgba(113, 228, 255, 0.42), transparent 20%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
            animation: floatPanel 8s ease-in-out infinite;
        }
        .slide-visual span {
            position: absolute;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
            backdrop-filter: blur(10px);
        }
        .slide-visual span:nth-child(1) {
            top: 26px;
            left: 28px;
            width: 74%;
            height: 88px;
        }
        .slide-visual span:nth-child(2) {
            left: 28px;
            bottom: 28px;
            width: 42%;
            height: 154px;
        }
        .slide-visual span:nth-child(3) {
            right: 28px;
            bottom: 28px;
            width: 36%;
            height: 220px;
        }
        .slide-diagram {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            padding: 18px;
        }
        .slide-art-dashboard {
            padding: 0;
            background: transparent;
            border: 0;
            box-shadow: none;
            animation: floatPanel 8s ease-in-out infinite;
        }
        .art-frame {
            height: 100%;
            border-radius: 28px;
            padding: 10px 0 0 0;
            background: transparent;
            border: 0;
            box-shadow: none;
        }
        .art-topbar {
            height: 58px;
            border-radius: 18px;
            margin-bottom: 18px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(113, 228, 255, 0.12));
        }
        .art-chart {
            border-radius: 20px;
            background: linear-gradient(180deg, rgba(113, 228, 255, 0.28), rgba(255, 255, 255, 0.04));
        }
        .art-chart-large {
            height: 168px;
            margin-bottom: 18px;
        }
        .art-row {
            display: grid;
            grid-template-columns: 1fr 0.72fr;
            gap: 18px;
            height: calc(100% - 244px);
        }
        .art-card {
            border-radius: 22px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
        }
        .art-card-tall {
            background: linear-gradient(180deg, rgba(89, 146, 255, 0.24), rgba(255, 255, 255, 0.04));
        }
        .slide-art-workflow {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            padding: 20px;
            background:
                radial-gradient(circle at 80% 16%, rgba(113, 228, 255, 0.12), transparent 18%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
        }
        .flow-card {
            min-height: 170px;
            display: flex;
            align-items: end;
            padding: 20px;
            border-radius: 24px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
            color: #ffffff;
            font-weight: 700;
            font-size: 1.08rem;
            animation: riseCard 6s ease-in-out infinite;
        }
        .flow-card-wide {
            grid-column: span 2;
            min-height: 150px;
        }
        .flow-card:nth-child(2) { animation-delay: 0.25s; }
        .flow-card:nth-child(3) { animation-delay: 0.5s; }
        .flow-card:nth-child(4) { animation-delay: 0.75s; }
        .flow-card-accent {
            background: linear-gradient(180deg, rgba(113, 228, 255, 0.22), rgba(255, 255, 255, 0.04));
        }
        .slide-art-metrics {
            display: grid;
            gap: 16px;
            padding: 20px;
            background:
                radial-gradient(circle at 18% 18%, rgba(113, 228, 255, 0.16), transparent 18%),
                linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
        }
        .metric-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }
        .metric-card-hero {
            min-height: 210px;
            align-items: flex-end;
        }
        .slide-diagram div,
        .metric-card {
            display: flex;
            align-items: end;
            justify-content: space-between;
            padding: 18px;
            border-radius: 22px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #f4f7ff;
            font-weight: 700;
        }
        .slide-diagram div {
            min-height: 140px;
            animation: riseCard 6s ease-in-out infinite;
        }
        .slide-diagram div:nth-child(2) { animation-delay: 0.4s; }
        .slide-diagram div:nth-child(3) { animation-delay: 0.8s; }
        .slide-diagram div:nth-child(4) { animation-delay: 1.2s; }
        .slide-diagram div:nth-child(1),
        .slide-diagram div:nth-child(4) {
            background: linear-gradient(180deg, rgba(113, 228, 255, 0.18), rgba(255, 255, 255, 0.06));
        }
        .slide-metrics {
            display: grid;
            gap: 14px;
            padding: 18px;
        }
        .metric-card {
            align-items: center;
            animation: pulseGlow 7s ease-in-out infinite;
        }
        .metric-card:nth-child(2) { animation-delay: 0.45s; }
        .metric-card:nth-child(3) { animation-delay: 0.9s; }
        .metric-card strong {
            font-size: 1.8rem;
        }
        .metric-card span {
            color: rgba(255, 255, 255, 0.82);
        }
        .slider-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-top: 0;
        }
        .slider-controls-overlay {
            position: absolute;
            inset: 0;
            margin-top: 0;
            padding: 0;
            z-index: 10;
            pointer-events: none;
        }
        .slider-arrow {
            position: absolute;
            top: 50%;
            width: 46px;
            height: 46px;
            padding: 0;
            border-radius: 999px;
            background: rgba(10, 18, 44, 0.46);
            border: 1px solid rgba(113, 228, 255, 0.26);
            box-shadow: 0 18px 36px rgba(5, 8, 22, 0.26);
            backdrop-filter: blur(14px);
            font-size: 1.4rem;
            line-height: 1;
            color: #20c6e0;
            cursor: pointer;
            transform: translateY(-50%);
            pointer-events: auto;
        }
        .slider-arrow:first-child {
            left: 18px;
        }
        .slider-arrow:last-child {
            right: 18px;
        }
        .slider-arrow:hover {
            background: rgba(18, 31, 68, 0.62);
            box-shadow: 0 22px 40px rgba(5, 8, 22, 0.32), 0 0 18px rgba(32, 198, 224, 0.18);
        }
        .slider-dots {
            position: absolute;
            left: 50%;
            bottom: 26px;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            justify-content: center;
            flex: none;
            pointer-events: auto;
        }
        .slider-dots button {
            width: 44px;
            height: 10px;
            padding: 0;
            border-radius: 999px;
            background: rgba(113, 228, 255, 0.28);
            border: 0;
            box-shadow: 0 0 0 1px rgba(113, 228, 255, 0.12);
            transition: transform 0.2s ease, background 0.2s ease;
            cursor: pointer;
        }
        .slider-dots button.is-active {
            background: #71e4ff;
            transform: scaleX(1.08);
            box-shadow: 0 0 20px rgba(113, 228, 255, 0.32);
        }
        .login-panel {
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: rgba(255, 255, 255, 0.96);
        }
        .login-screen {
            min-height: calc(72vh - 24px);
            display: grid;
            place-items: center;
        }
        .login-card {
            position: relative;
            width: 100%;
            padding: 34px;
            border-radius: 30px;
            border: 1px solid var(--line);
            background: rgba(255, 255, 255, 0.96);
            box-shadow: 0 28px 60px rgba(17, 22, 43, 0.12);
            align-self: center;
        }
        .login-card-solo {
            width: min(100%, 560px);
        }
        .login-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            background: rgba(32, 198, 224, 0.12);
            border: 1px solid rgba(13, 71, 201, 0.14);
            box-shadow: 0 10px 22px rgba(13, 71, 201, 0.1);
        }
        .login-close span {
            display: block;
            color: #0d47c9;
            font-size: 1.55rem;
            font-weight: 800;
            line-height: 1;
            transform: translateY(-1px);
        }
        .login-close:hover {
            background: rgba(32, 198, 224, 0.22);
            box-shadow: 0 14px 24px rgba(13, 71, 201, 0.16);
        }
        .login-close:hover span {
            color: #08348f;
        }
        .login-title {
            font-size: clamp(1.2rem, 2.5vw, 2rem);
            margin-bottom: 12px;
            line-height: 0.98;
            text-align: center;
            font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
            font-weight: 800;
            letter-spacing: -0.06em;
            color: #0d47c9;
            text-shadow: 0 8px 22px rgba(32, 198, 224, 0.14);
        }
        .login-intro {
            margin-bottom: 22px;
        }
        .login-form {
            display: grid;
        }
        .login-honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
            opacity: 0;
            pointer-events: none;
        }
        .recaptcha-wrap {
            display: flex;
            justify-content: center;
            margin: 6px 0 20px;
        }
        .recaptcha-placeholder {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 14px;
            min-height: 78px;
            padding: 14px 16px;
            margin: 6px 0 20px;
            border-radius: 18px;
            border: 1px solid #d6dced;
            background: linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
        }
        .recaptcha-checkbox {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            padding: 0;
            border-radius: 8px;
            border: 1.5px solid #b8c3df;
            background: #ffffff;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
            color: transparent;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }
        .recaptcha-checkbox svg {
            width: 16px;
            height: 16px;
            display: block;
        }
        .recaptcha-checkbox:hover {
            border-color: rgba(13, 71, 201, 0.42);
            transform: translateY(-1px);
        }
        .recaptcha-placeholder.is-checked {
            border-color: rgba(13, 71, 201, 0.24);
            box-shadow: 0 14px 28px rgba(13, 71, 201, 0.08);
        }
        .recaptcha-placeholder.is-checked .recaptcha-checkbox {
            border-color: #0d47c9;
            background: linear-gradient(135deg, #0d47c9 0%, #20c6e0 100%);
            color: #ffffff;
            box-shadow: 0 8px 18px rgba(13, 71, 201, 0.2);
        }
        .recaptcha-copy strong,
        .recaptcha-copy small {
            display: block;
        }
        .recaptcha-copy strong {
            color: #1b2448;
            font-size: 0.98rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .recaptcha-copy small {
            margin-top: 4px;
            color: #687086;
            line-height: 1.4;
            text-transform: uppercase;
        }
        .recaptcha-badge {
            font-size: 0.82rem;
            font-weight: 700;
            color: #8a93ab;
            letter-spacing: 0.01em;
            text-transform: uppercase;
        }
        .login-submit {
            justify-self: center;
            min-width: 220px;
            background: linear-gradient(135deg, #0d47c9 0%, #20c6e0 100%);
            color: #ffffff;
            box-shadow: 0 18px 34px rgba(13, 71, 201, 0.24);
        }
        .login-submit:hover {
            box-shadow: 0 22px 40px rgba(13, 71, 201, 0.3), 0 0 20px rgba(32, 198, 224, 0.18);
        }
        .menu-card {
            display: block;
            text-decoration: none;
            color: inherit;
            padding: 24px;
            border-radius: 24px;
            border: 1px solid #d8deef;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.92));
            box-shadow: 0 14px 34px rgba(17, 22, 43, 0.06);
            transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
        }
        .menu-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 42px rgba(17, 22, 43, 0.10);
            border-color: rgba(44, 126, 248, 0.34);
        }
        .menu-card h2,
        .menu-card h3 {
            margin-bottom: 10px;
        }
        .kicker {
            display: inline-block;
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent-2);
            font-weight: 700;
            margin-bottom: 10px;
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 26px;
        }
        .stat {
            border-radius: 20px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(6px);
        }
        .stat strong {
            display: block;
            font-size: 1.55rem;
            margin-bottom: 6px;
        }
        .actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 18px;
        }
        .button-secondary {
            display: inline-block;
            background: rgba(255, 255, 255, 0.06);
            color: var(--accent);
            border: 1px solid rgba(23, 29, 72, 0.12);
            text-decoration: none;
            border-radius: 16px;
            padding: 13px 16px;
            font-weight: 600;
        }
        .hero-panel .button-secondary {
            color: var(--ink);
            border-color: rgba(255, 255, 255, 0.14);
        }
        .muted { color: var(--muted); }
        ul.clean {
            margin: 18px 0 0;
            padding-left: 20px;
        }
        ul.clean li {
            margin-bottom: 8px;
        }
        .split {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
            gap: 22px;
        }
        .dashboard-main {
            display: block;
        }
        .dashboard-alert {
            margin-bottom: 18px;
        }
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }
        .dashboard-card {
            position: relative;
            overflow: hidden;
            min-height: 290px;
            padding: 28px;
            border-radius: 28px;
            border: 1px solid rgba(124, 160, 255, 0.14);
            background:
                radial-gradient(circle at top right, rgba(113, 228, 255, 0.14), transparent 24%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
            box-shadow: 0 24px 54px rgba(17, 22, 43, 0.08);
        }
        .dashboard-card h3 {
            margin-bottom: 18px;
            color: #171d48;
        }
        .dashboard-card p {
            margin-bottom: 0;
        }
        .dashboard-card-primary {
            background:
                radial-gradient(circle at top right, rgba(113, 228, 255, 0.16), transparent 24%),
                linear-gradient(135deg, #0f1636 0%, #171d48 62%, #15295e 100%);
            color: var(--ink);
            box-shadow: 0 30px 70px rgba(11, 16, 40, 0.22);
        }
        .dashboard-card-primary h2,
        .dashboard-card-primary p,
        .dashboard-card-primary .dashboard-kicker {
            color: var(--ink);
        }
        .dashboard-card-primary p {
            color: rgba(244, 247, 255, 0.78);
        }
        .dashboard-mini-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 22px;
        }
        .dashboard-date-range {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-top: 18px;
        }
        .dashboard-date-field {
            display: grid;
            gap: 8px;
        }
        .dashboard-date-field span {
            color: rgba(244, 247, 255, 0.84);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .dashboard-date-button {
            margin: 0;
            width: 100%;
            padding: 12px 14px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.08);
            color: #f4f7ff;
            box-shadow: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            text-align: left;
        }
        .dashboard-date-button span {
            color: #f4f7ff;
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: none;
        }
        .dashboard-date-button svg {
            width: 18px;
            height: 18px;
            color: #c8f7ff;
        }
        .dashboard-kicker {
            display: block;
            text-align: center;
        }
        .dashboard-mini-stat {
            padding: 16px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.06);
        }
        .dashboard-mini-stat strong,
        .dashboard-mini-stat span {
            display: block;
        }
        .dashboard-mini-stat strong {
            font-size: 1.45rem;
            margin-bottom: 6px;
        }
        .dashboard-bars {
            height: 160px;
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            align-items: end;
            gap: 12px;
            margin-bottom: 18px;
        }
        .dashboard-bars span {
            display: block;
            border-radius: 16px 16px 6px 6px;
            background: linear-gradient(180deg, #9af3ff 0%, #20c6e0 100%);
            box-shadow: 0 12px 24px rgba(32, 198, 224, 0.2);
        }
        .dashboard-bars-labels {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 12px;
            margin: 8px 0 14px;
            color: #7380a0;
            font-size: 0.82rem;
            font-weight: 700;
            text-align: center;
            text-transform: uppercase;
        }
        .dashboard-bars-values {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 12px;
            margin: 10px 0 6px;
            color: #1f2c52;
            font-size: 0.88rem;
            font-weight: 800;
            text-align: center;
        }
        .dashboard-ring {
            width: 170px;
            height: 170px;
            margin: 8px auto 18px;
            padding: 16px;
            border-radius: 50%;
            background: conic-gradient(#20c6e0 0 68%, rgba(32, 198, 224, 0.12) 68% 100%);
            display: grid;
            place-items: center;
        }
        .dashboard-ring-core {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(180deg, #ffffff, #f3f7ff);
            display: grid;
            place-items: center;
            text-align: center;
        }
        .dashboard-ring-core strong,
        .dashboard-ring-core span {
            display: block;
        }
        .dashboard-ring-core strong {
            font-size: 2rem;
            color: #171d48;
            line-height: 1;
        }
        .dashboard-progress-list {
            display: grid;
            gap: 16px;
            margin-top: 10px;
        }
        .dashboard-progress-list div {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 8px 12px;
            align-items: center;
        }
        .dashboard-progress-list span,
        .dashboard-progress-list strong {
            color: #273154;
        }
        .dashboard-progress-list i {
            grid-column: 1 / -1;
            display: block;
            height: 10px;
            width: 0;
            border-radius: 999px;
            background: linear-gradient(90deg, #20c6e0 0%, #2c7ef8 100%);
            box-shadow: 0 10px 18px rgba(44, 126, 248, 0.14);
        }
        .dashboard-progress-list div::after {
            content: "";
            grid-column: 1 / -1;
            height: 10px;
            margin-top: -18px;
            border-radius: 999px;
            background: rgba(44, 126, 248, 0.1);
            z-index: 0;
        }
        .dashboard-progress-list i {
            position: relative;
            z-index: 1;
        }
        .portal-layout {
            display: grid;
            grid-template-columns: 240px minmax(0, 1fr);
            gap: 22px;
            align-items: start;
            transition: grid-template-columns 0.28s ease, gap 0.28s ease;
        }
        .portal-main {
            min-width: 0;
        }
        .portal-sidebar {
            position: sticky;
            top: 18px;
            min-height: calc(100vh - 150px);
            padding: 22px 16px;
            border-radius: 28px;
            border: 1px solid rgba(120, 196, 255, 0.12);
            background:
                radial-gradient(circle at top left, rgba(113, 228, 255, 0.14), transparent 28%),
                linear-gradient(180deg, #0b1736 0%, #0d1d43 58%, #0a1633 100%);
            box-shadow: 0 26px 54px rgba(5, 8, 22, 0.24);
            transition: opacity 0.24s ease, transform 0.24s ease, width 0.24s ease, padding 0.24s ease, margin 0.24s ease;
        }
        .portal-nav {
            display: grid;
            gap: 8px;
            margin-top: 6px;
        }
        .portal-nav-link {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px 14px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.03);
            color: rgba(244, 247, 255, 0.82);
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
        }
        .portal-nav-link::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex: none;
            background: rgba(113, 228, 255, 0.44);
            box-shadow: 0 0 0 4px rgba(113, 228, 255, 0.08);
        }
        .portal-nav-link:hover {
            transform: translateY(-1px);
            color: #ffffff;
            box-shadow: 0 14px 26px rgba(5, 8, 22, 0.18);
            border-color: rgba(113, 228, 255, 0.18);
            background: rgba(255, 255, 255, 0.06);
        }
        .portal-nav-link.is-active {
            border-color: rgba(113, 228, 255, 0.16);
            background: linear-gradient(135deg, rgba(24, 51, 116, 0.96) 0%, rgba(31, 134, 188, 0.88) 100%);
            color: #ffffff;
            box-shadow: 0 16px 30px rgba(13, 71, 201, 0.18);
        }
        .portal-nav-link.is-active::before {
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
        }
        .portal-sidebar .kicker {
            color: rgba(183, 224, 255, 0.76);
            margin-bottom: 12px;
        }
        body.portal-sidebar-hidden .portal-layout {
            grid-template-columns: 0 minmax(0, 1fr);
            gap: 0;
        }
        body.portal-sidebar-hidden .portal-sidebar {
            width: 0;
            min-width: 0;
            padding: 0;
            margin: 0;
            border: 0;
            opacity: 0;
            overflow: hidden;
            transform: translateX(-18px);
            box-shadow: none;
        }
        .panel-note {
            padding: 22px;
            border-radius: 22px;
            background: linear-gradient(180deg, #ffffff, #f6f8fe);
            border: 1px solid #dbe2f1;
        }
        .ops-shell {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
            gap: 22px;
        }
        .ops-hero {
            min-height: 100%;
        }
        .ops-kpis {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
            margin-top: 24px;
        }
        .ops-kpi {
            padding: 16px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(6px);
        }
        .ops-kpi strong {
            display: block;
            font-size: 1.6rem;
            margin-bottom: 6px;
        }
        .ops-kpi span {
            color: rgba(244, 247, 255, 0.78);
            line-height: 1.35;
        }
        .ops-sidecard {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .ops-flow-list {
            display: grid;
            gap: 14px;
            margin-top: 18px;
        }
        .ops-flow-item {
            padding: 16px 18px;
            border-radius: 18px;
            border: 1px solid #dbe2f1;
            background: linear-gradient(180deg, #ffffff, #f6f8fe);
        }
        .ops-flow-item strong,
        .ops-flow-item span {
            display: block;
        }
        .ops-flow-item strong {
            margin-bottom: 6px;
            color: #171d48;
        }
        .ops-flow-item span {
            color: #687086;
            line-height: 1.45;
        }
        .ops-table-card {
            overflow: hidden;
        }
        .ops-table-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
        }
        .ops-header-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: flex-end;
        }
        .ops-chip {
            display: inline-flex;
            align-items: center;
            padding: 9px 12px;
            border-radius: 999px;
            background: rgba(44, 126, 248, 0.08);
            border: 1px solid rgba(44, 126, 248, 0.14);
            color: #1d4fc1;
            font-size: 0.86rem;
            font-weight: 700;
        }
        .ops-table-wrap {
            margin-top: 22px;
            overflow-x: auto;
            border-radius: 22px;
            border: 1px solid #dbe2f1;
        }
        .ops-table {
            width: 100%;
            min-width: 920px;
            border-collapse: collapse;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.95));
        }
        .ops-table th,
        .ops-table td {
            padding: 16px 18px;
            text-align: left;
            border-bottom: 1px solid #e4e9f5;
            vertical-align: top;
        }
        .ops-table th {
            font-size: 0.82rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #64708b;
            background: rgba(244, 247, 255, 0.96);
        }
        .ops-table td {
            color: #1f2845;
            line-height: 1.4;
        }
        .ops-table td strong,
        .ops-table td span {
            display: block;
        }
        .ops-table td span {
            margin-top: 4px;
            color: #687086;
            font-size: 0.92rem;
        }
        .ops-days {
            display: inline-flex;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(255, 176, 64, 0.16);
            color: #9a5d00 !important;
            font-weight: 700;
        }
        .shellline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 12px;
        }
        .tiny {
            font-size: 0.92rem;
        }
        @keyframes floatPanel {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        @keyframes riseCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        @keyframes pulseGlow {
            0%, 100% { transform: translateX(0); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04); }
            50% { transform: translateX(4px); box-shadow: 0 10px 26px rgba(113, 228, 255, 0.08); }
        }
        @keyframes titleReveal {
            from {
                opacity: 0;
                transform: translateY(32px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @media (max-width: 1100px) {
            .shell {
                padding: 22px 16px 42px;
            }
            .frame {
                padding: 14px;
                border-radius: 30px;
            }
            .workspace {
                padding: 20px;
                border-radius: 22px;
            }
            .window-bar {
                padding: 8px 8px 14px;
            }
            .topbar {
                align-items: flex-start;
                flex-direction: column;
            }
            .split {
                grid-template-columns: 1fr;
            }
            .portal-layout {
                grid-template-columns: 1fr;
            }
            .portal-sidebar {
                position: static;
                min-height: auto;
            }
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
            .ops-shell {
                grid-template-columns: 1fr;
            }
            .ops-kpis {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .ops-table-header {
                flex-direction: column;
            }
            .ops-header-chips {
                justify-content: flex-start;
            }
            .card,
            .hero-panel {
                padding: 24px;
            }
        }
        @media (max-width: 820px) {
            .window-bar {
                flex-wrap: wrap;
                align-items: flex-start;
            }
            .window-actions {
                margin-left: auto;
            }
            .window-title {
                order: 3;
                width: 100%;
                text-align: center;
                margin-top: -12px;
                transform: translateY(-6px);
            }
            .hamburger {
                display: inline-flex;
            }
            .window-chip {
                display: none;
            }
            .workspace {
                min-height: auto;
            }
            .workspace-landing,
            .workspace-auth {
                padding: 14px;
            }
            .slider-topbar {
                position: static;
                padding: 8px 8px 0;
                flex-direction: column;
                align-items: flex-start;
            }
            .landing-brand {
                gap: 12px;
            }
            .landing-logo {
                height: 44px;
            }
            .slide {
                min-height: 380px;
                padding: 34px 18px 48px;
            }
            .slide-copy h1 {
                font-size: clamp(2.3rem, 6.5vw, 3.8rem);
                line-height: 0.98;
            }
            .slide-pixels {
                right: 34px;
                bottom: 74px;
                width: 150px;
                height: 110px;
            }
            .slide-watermark {
                width: min(42vw, 300px);
                left: 2%;
                transform: translateY(-40%);
                opacity: 0.1;
            }
            .login-card-solo {
                width: min(100%, 640px);
            }
            .menu-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            .portal-nav {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            .benefits-strip {
                grid-template-columns: 1fr;
            }
            .steps-strip {
                grid-template-columns: 1fr;
            }
            .landing-footer {
                grid-template-columns: 1fr;
            }
            .footer-watermark {
                width: min(34vw, 220px);
                left: -10px;
                bottom: -12px;
                opacity: 0.05;
            }
        }
        @media (max-width: 640px) {
            .topbar { align-items: flex-start; flex-direction: column; }
            .shell {
                padding: 10px 8px 20px;
            }
            .frame {
                padding: 8px;
                border-radius: 20px;
            }
            .workspace {
                padding: 12px;
                border-radius: 16px;
            }
            .workspace-landing,
            .workspace-auth {
                padding: 10px;
            }
        .window-bar {
            position: relative;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 8px;
            padding: 4px 4px 10px;
        }
        .brandline {
            justify-self: start;
        }
        .brandlogo {
            height: 40px;
        }
        .window-title {
            font-size: clamp(0.94rem, 4.4vw, 1.08rem);
            letter-spacing: 0.14em;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: max-content;
            max-width: calc(100% - 136px);
            margin: 0;
            justify-self: auto;
            align-self: auto;
            padding: 0 6px;
            text-align: center;
            text-wrap: balance;
            pointer-events: none;
        }
        .window-actions {
            gap: 8px;
            justify-self: end;
            margin-left: auto;
        }
        .hamburger {
            margin-left: auto;
        }
            .window-logout {
                padding: 9px 14px;
                font-size: 0.78rem;
            }
            .mobile-menu {
                top: calc(100% + 6px);
                width: min(240px, calc(100vw - 24px));
            }
            .intro-curtain__inner {
                width: min(86vw, 360px);
                padding: 22px 18px 26px;
                gap: 14px;
                margin-inline: auto;
            }
            .intro-curtain__logo {
                width: min(100%, 220px);
                margin-inline: auto;
            }
            .intro-curtain__copy {
                gap: 6px;
                justify-items: center;
                width: 100%;
            }
            .intro-curtain__eyebrow {
                font-size: 0.68rem;
                letter-spacing: 0.18em;
            }
            .intro-curtain__copy strong {
                font-size: clamp(1.1rem, 5vw, 1.45rem);
                line-height: 1.12;
            }
            .intro-curtain__hint {
                margin-top: 14px;
                font-size: 0.88rem;
                line-height: 1.35;
            }
            .intro-curtain__button {
                min-width: 88px;
                padding: 9px 14px;
                font-size: 0.68rem;
                align-self: center;
            }
            .card { padding: 18px; }
            .hero { grid-template-columns: 1fr; }
            .stats { grid-template-columns: 1fr; }
            .hero-panel { padding: 18px; }
            .ops-kpis {
                grid-template-columns: 1fr;
            }
            .ops-kpi {
                padding: 14px;
                border-radius: 18px;
            }
            .ops-flow-item {
                padding: 14px 16px;
            }
            .ops-table-wrap {
                border-radius: 18px;
            }
            .landing-topbar,
            .landing-brand {
                align-items: flex-start;
                flex-direction: column;
            }
            .slider-topbar {
                position: static;
                padding: 6px 6px 0;
                flex-direction: column;
                align-items: flex-start;
            }
            .slide {
                gap: 12px;
                min-height: 292px;
                padding: 20px 14px 28px;
            }
            .slide-copy {
                width: 100%;
                display: grid;
                justify-items: center;
            }
            .slide-copy h1 {
                width: min(100%, 94vw);
                max-width: none;
                font-size: clamp(1.72rem, 8.4vw, 2.45rem);
                line-height: 1.03;
                letter-spacing: -0.05em;
                margin-left: auto;
                margin-right: auto;
                text-wrap: balance;
            }
            .slider-badge {
                margin-bottom: 10px;
                font-size: 0.72rem;
            }
            .slide-pixels {
                right: 14px;
                bottom: 22px;
                width: 74px;
                height: 54px;
                opacity: 0.5;
            }
            .slide-watermark {
                width: 150px;
                left: -14px;
                top: 50%;
                opacity: 0.035;
            }
            .slide::after {
                right: 18px;
                bottom: 38px;
                width: 92px;
                opacity: 0.24;
                transform: rotate(-24deg);
            }
            .slide-pixels span {
                width: 14px;
                height: 14px;
                border-radius: 6px;
            }
            .slider {
                min-height: auto;
            }
            .slider-full {
                min-height: auto;
            }
            .slides {
                min-height: 280px;
                border-radius: 24px;
            }
            .slider-controls {
                gap: 10px;
                justify-content: center;
            }
            .slider-controls-overlay {
                position: relative;
                inset: auto;
                margin-top: 6px;
                padding: 0 0 4px;
                pointer-events: auto;
            }
            .slider-arrow {
                position: static;
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                transform: none;
            }
            .slider-arrow:first-child,
            .slider-arrow:last-child {
                left: auto;
                right: auto;
            }
            .slider-dots {
                position: static;
                transform: none;
                bottom: auto;
                left: auto;
            }
            .slider-dots button {
                width: 26px;
                height: 8px;
            }
            .benefits-strip {
                margin-top: 12px;
                gap: 12px;
                padding: 16px 12px;
                border-radius: 18px;
            }
            .steps-strip {
                margin-top: 14px;
                gap: 12px;
                padding: 16px 12px;
                border-radius: 18px;
            }
            .landing-footer {
                margin-top: 16px;
                gap: 12px;
                padding: 16px 12px;
                border-radius: 18px;
            }
            .footer-watermark {
                width: 140px;
                left: -12px;
                bottom: -8px;
                opacity: 0.04;
            }
            .benefits-heading::after,
            .steps-heading::after,
            .footer-heading::after {
                width: 120px;
                margin-top: 12px;
            }
            .benefits-heading h2 {
                font-size: 1.16rem;
            }
            .steps-heading h2 {
                font-size: 1.16rem;
            }
            .footer-heading h2 {
                font-size: 1.16rem;
            }
            .footer-heading p {
                font-size: 0.95rem;
            }
            .benefit-card {
                padding: 16px 12px;
                border-radius: 18px;
                text-align: center;
            }
            .step-card {
                padding: 16px 12px;
                border-radius: 18px;
                text-align: center;
            }
            .footer-card {
                padding: 16px 12px;
                border-radius: 18px;
                text-align: center;
            }
            .benefit-card h2 {
                font-size: 1rem;
            }
            .step-card h3 {
                font-size: 1rem;
            }
            .footer-card h3 {
                font-size: 1rem;
            }
            .benefit-icon {
                width: 46px;
                height: 46px;
                margin-bottom: 10px;
                font-size: 1.2rem;
            }
            .step-number {
                width: 46px;
                height: 46px;
                margin-bottom: 10px;
                font-size: 1.2rem;
            }
            .footer-icon {
                width: 46px;
                height: 46px;
                margin-bottom: 10px;
            }
            .footer-socials {
                gap: 8px;
            }
            .footer-social-link {
                width: 100%;
                justify-content: flex-start;
                padding: 10px 12px;
            }
            .login-card {
                padding: 18px 14px;
                border-radius: 22px;
            }
            .login-screen {
                min-height: auto;
            }
            .login-close {
                top: 10px;
                right: 10px;
                width: 34px;
                height: 34px;
            }
            .login-close span {
                font-size: 1.35rem;
            }
            .login-title {
                font-size: clamp(1.2rem, 7vw, 1.55rem);
                margin-bottom: 16px;
                padding: 0 28px;
                line-height: 1.08;
            }
            label {
                font-size: 0.95rem;
                margin-bottom: 7px;
            }
            input {
                padding: 15px 14px;
                font-size: 16px;
                margin-bottom: 16px;
            }
            .recaptcha-placeholder {
                grid-template-columns: auto 1fr;
                gap: 12px;
                min-height: 70px;
                padding: 12px 14px;
                margin-bottom: 16px;
            }
            .recaptcha-badge {
                display: none;
            }
            .login-submit {
                width: 100%;
                min-width: 0;
            }
            .status-modal {
                width: min(100%, 92vw);
                padding: 24px 18px 20px;
            }
            .status-modal-close {
                top: 8px;
                right: 8px;
            }
            .menu-card {
                padding: 18px;
            }
            .portal-sidebar {
                padding: 16px 12px;
            }
            .portal-nav {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .portal-nav-link {
                padding: 12px 14px;
                text-align: center;
            }
            .dashboard-card {
                min-height: 250px;
                padding: 20px 18px;
            }
            .dashboard-mini-stats {
                grid-template-columns: 1fr;
            }
            .dashboard-date-range {
                grid-template-columns: 1fr;
            }
            .dashboard-bars {
                height: 132px;
                gap: 8px;
            }
            .dashboard-bars-labels {
                gap: 8px;
                font-size: 0.74rem;
            }
            .dashboard-bars-values {
                gap: 8px;
                font-size: 0.78rem;
            }
            .dashboard-ring {
                width: 142px;
                height: 142px;
            }
        }
        @media (max-width: 420px) {
            .window-bar {
                grid-template-columns: auto 1fr auto;
                gap: 8px;
            }
            .brandlogo {
                height: 36px;
            }
            .window-title {
                font-size: clamp(0.88rem, 4.8vw, 1rem);
                letter-spacing: 0.14em;
                padding: 0 4px;
            }
            .intro-curtain__inner {
                width: min(90vw, 320px);
                padding: 18px 14px 22px;
                gap: 12px;
                margin-inline: auto;
            }
            .intro-curtain__logo {
                width: min(100%, 184px);
                margin-inline: auto;
            }
            .intro-curtain__eyebrow {
                font-size: 0.62rem;
                letter-spacing: 0.16em;
            }
            .intro-curtain__copy strong {
                font-size: clamp(1rem, 6vw, 1.22rem);
            }
            .intro-curtain__hint {
                margin-top: 12px;
                font-size: 0.8rem;
            }
            .intro-curtain__button {
                min-width: 80px;
                padding: 8px 12px;
                font-size: 0.64rem;
            }
            .slide {
                min-height: 260px;
                padding: 16px 10px 20px;
            }
            .slides {
                min-height: 260px;
            }
            .slide-copy h1 {
                width: min(100%, 96vw);
                font-size: clamp(1.58rem, 8vw, 2.1rem);
                line-height: 1.04;
            }
            .slide-watermark {
                width: 132px;
                left: -18px;
                opacity: 0.04;
            }
            .slide-pixels {
                right: 10px;
                bottom: 18px;
                width: 58px;
                height: 42px;
                opacity: 0.58;
            }
            .slide::after {
                display: none;
            }
            .benefit-icon,
            .step-number,
            .footer-icon {
                width: 42px;
                height: 42px;
            }
            .footer-social-link {
                font-size: 0.94rem;
            }
        }
        @media (max-width: 900px) {
            .split { grid-template-columns: 1fr; }
            .workspace { padding: 18px; }
            .slide-copy h1 {
                max-width: none;
            }
        }
    

