:root {
            --navy: #0a3556;
            --navy-deep: #06263d;
            --blue: #1578ad;
            --green: #27ae7c;
            --green-light: #4bc79a;
            --text: #142637;
            --muted: #647787;
            --line: #dce8ed;
            --soft: #f5f9fb;
            --white: #ffffff;
            --shadow: 0 18px 50px rgba(8, 47, 74, 0.10);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Segoe UI", Arial, Helvetica, sans-serif;
            background: var(--white);
            color: var(--text);
            line-height: 1.6;
        }

        body.menu-open {
            overflow: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            font: inherit;
        }

        img {
            display: block;
            max-width: 100%;
        }

        .container {
            width: min(1180px, 92%);
            margin: 0 auto;
        }

        /* ---------- NAVIGATION ---------- */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.13);
            transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .site-header.scrolled {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(14px);
            border-color: var(--line);
            box-shadow: 0 10px 30px rgba(8, 47, 74, 0.08);
        }

        .nav-wrap {
            min-height: 82px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .logo {
            width: 255px;
            display: flex;
            align-items: center;
            padding: 7px 10px;
            border-radius: 10px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 25px rgba(6, 38, 61, 0.08);
        }

        .logo img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: contain;
            image-rendering: auto;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 27px;
        }

        .main-nav a {
            color: white;
            font-size: 14px;
            font-weight: 700;
            transition: color 0.2s ease;
        }

        .site-header.scrolled .main-nav a {
            color: var(--navy);
        }

        .main-nav a:hover {
            color: var(--green);
        }

        .nav-button {
            padding: 10px 17px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.45);
        }

        .site-header.scrolled .nav-button {
            color: white !important;
            background: var(--navy);
            border-color: var(--navy);
        }

        .menu-button {
            display: none;
            width: 44px;
            height: 44px;
            border: 0;
            background: transparent;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }

        .site-header.scrolled .menu-button {
            color: var(--navy);
        }

        /* ---------- HERO ---------- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            color: white;
            background: var(--navy-deep);
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(4, 31, 49, 0.95) 0%, rgba(4, 31, 49, 0.80) 45%, rgba(4, 31, 49, 0.28) 100%),
                url('assets/hero-hq.jpg') center / cover no-repeat;
            transform: scale(1.02);
        }

        .hero::after {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            right: -140px;
            top: -120px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.16);
            box-shadow:
                0 0 0 90px rgba(255, 255, 255, 0.025),
                0 0 0 180px rgba(255, 255, 255, 0.015);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: min(800px, 100%);
            padding-top: 110px;
            padding-bottom: 70px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #c2eadb;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-size: 12px;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .eyebrow::before {
            content: "";
            width: 34px;
            height: 2px;
            background: var(--green-light);
        }

        .hero h1 {
            margin: 0;
            max-width: 850px;
            font-size: clamp(46px, 6.2vw, 82px);
            line-height: 1.02;
            letter-spacing: -0.045em;
        }

        .hero h1 span {
            color: #c2eadb;
            font-weight: 500;
        }

        .hero-lead {
            margin: 24px 0 0;
            color: #e0f0f6;
            font-size: 21px;
        }

        .hero-copy {
            max-width: 700px;
            margin-top: 12px;
            color: #c5d8e3;
            font-size: 16px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
            margin-top: 30px;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 21px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 800;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .button-primary {
            background: var(--green);
            color: white;
        }

        .button-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(39, 174, 124, 0.30);
        }

        .button-secondary {
            border: 1px solid rgba(255, 255, 255, 0.40);
            color: white;
        }

        .button-secondary:hover {
            background: white;
            color: var(--navy);
        }

        /* ---------- GENERIC SECTIONS ---------- */
        .section {
            padding: 108px 0;
        }

        .soft-section {
            background: linear-gradient(180deg, #ffffff 0%, #f6fafc 100%);
        }

        .kicker {
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: 0.13em;
            font-size: 12px;
            font-weight: 900;
        }

        .section-title {
            max-width: 900px;
            margin: 9px 0 20px;
            color: var(--navy);
            font-size: clamp(34px, 4.2vw, 54px);
            line-height: 1.08;
            letter-spacing: -0.035em;
        }

        .section-copy {
            max-width: 810px;
            color: var(--muted);
            font-size: 17px;
        }

        /* ---------- OPPORTUNITY ---------- */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 48px;
        }

        .stat-card {
            padding: 30px;
            background: white;
            border: 1px solid var(--line);
            border-radius: 18px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            color: var(--navy);
            font-size: clamp(30px, 4vw, 44px);
            font-weight: 800;
            line-height: 1;
        }

        .stat-label {
            margin-top: 12px;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 13px;
            font-weight: 800;
        }

        .stat-meta {
            color: var(--muted);
            font-size: 13px;
        }

        .opportunity-grid {
            display: grid;
            grid-template-columns: 1.25fr 0.75fr;
            gap: 24px;
            margin-top: 26px;
        }

        .panel {
            padding: 34px;
            border: 1px solid var(--line);
            border-radius: 22px;
            background: white;
        }

        .check-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 0;
            display: grid;
            gap: 12px;
        }

        .check-list li {
            position: relative;
            padding-left: 30px;
            color: #435968;
        }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--green);
            font-weight: 900;
        }

        .dark-panel {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: var(--navy);
            color: white;
        }

        .dark-panel blockquote {
            margin: 0;
            font-size: 28px;
            line-height: 1.3;
            letter-spacing: -0.02em;
        }

        .dark-panel small {
            margin-top: 18px;
            color: #a9c3d2;
        }

        .source-note {
            margin-top: 18px;
            color: #8797a2;
            font-size: 12px;
        }

        /* ---------- IMAGE BREAK ---------- */
        .image-break {
            height: min(68vh, 650px);
            position: relative;
            overflow: hidden;
        }

        .image-break img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-break::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 35%, rgba(5, 36, 56, 0.65));
        }

        .image-break-title {
            position: absolute;
            z-index: 2;
            left: 7%;
            bottom: 8%;
            color: white;
            font-size: clamp(28px, 4vw, 52px);
            font-weight: 750;
            letter-spacing: -0.03em;
        }

        /* ---------- SERVICES / TABS ---------- */
        .tabs {
            display: flex;
            gap: 10px;
            margin: 35px 0 24px;
            padding-bottom: 8px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .tabs::-webkit-scrollbar {
            display: none;
        }

        .tab-button {
            flex: 0 0 auto;
            padding: 11px 16px;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: white;
            color: var(--navy);
            cursor: pointer;
            font-weight: 800;
            transition: all 0.25s ease;
        }

        .tab-button:hover,
        .tab-button.active {
            background: var(--navy);
            color: white;
            border-color: var(--navy);
        }

        .service-panel {
            display: none;
            min-height: 285px;
            padding: 48px;
            border: 1px solid var(--line);
            border-radius: 24px;
            background:
                radial-gradient(circle at 93% 15%, rgba(39, 174, 124, 0.12), transparent 30%),
                linear-gradient(135deg, #fbfdfe, #f0f7fa);
            box-shadow: var(--shadow);
        }

        .service-panel.active {
            display: block;
            animation: panel-in 0.45s ease;
        }

        @keyframes panel-in {
            from {
                opacity: 0;
                transform: translateY(12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-number {
            color: var(--green);
            font-size: 15px;
            font-weight: 900;
            letter-spacing: 0.13em;
        }

        .service-panel h3 {
            margin: 15px 0 13px;
            color: var(--navy);
            font-size: clamp(28px, 4vw, 44px);
            letter-spacing: -0.03em;
        }

        .service-panel p {
            max-width: 780px;
            margin: 0;
            color: var(--muted);
            font-size: 18px;
        }

        /* ---------- VALUE CREATION ---------- */
        .value-section {
            background: var(--soft);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 38px;
        }

        .process-card {
            min-height: 280px;
            padding: 28px;
            border: 1px solid var(--line);
            border-radius: 20px;
            background: white;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .process-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
        }

        .process-number {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 14px;
            background: var(--green);
            color: white;
            font-weight: 900;
        }

        .process-card h3 {
            margin: 52px 0 10px;
            color: var(--navy);
            font-size: 22px;
        }

        .process-card p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
        }

        /* ---------- ENGAGEMENT ---------- */
        .models-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 34px;
        }

        .model-card {
            padding: 30px;
            border: 1px solid var(--line);
            border-radius: 20px;
            background: white;
        }

        .model-card.featured {
            background: linear-gradient(135deg, #e7f7ef, #f4fbf8);
            border-color: #cbeadd;
        }

        .model-card h3 {
            margin: 0;
            color: var(--navy);
            font-size: 24px;
        }

        .model-card strong {
            display: block;
            margin: 7px 0;
            color: var(--green);
        }

        .sector-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 44px;
            align-items: start;
            margin-top: 50px;
        }

        .sector-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 10px;
        }

        .sector-list li {
            padding: 15px 18px;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: var(--soft);
        }

        /* ---------- CONTACT ---------- */
        .contact-section {
            padding: 115px 0;
            position: relative;
            overflow: hidden;
            color: white;
            background:
                linear-gradient(90deg, rgba(5, 36, 56, 0.95), rgba(5, 36, 56, 0.72)),
                url('assets/hero-hq.jpg') center / cover no-repeat;
        }

        .contact-section .section-title {
            color: white;
        }

        .contact-section .section-copy {
            color: #cee1eb;
        }

        .contact-grid {
            max-width: 870px;
            margin-top: 34px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .contact-card {
            padding: 18px 20px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(5px);
        }

        .contact-card span {
            display: block;
            color: #9ec3d5;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-size: 11px;
            font-weight: 800;
        }

        .contact-card strong {
            display: block;
            margin-top: 4px;
            font-size: 16px;
        }

        /* ---------- FOOTER ---------- */
        .site-footer {
            padding: 34px 0;
            background: #ffffff !important;
            color: #647787;
            font-size: 13px;
            border-top: 1px solid #dce8ed;
        }

        .footer-wrap {
            display: grid;
            grid-template-columns: 330px 1fr auto;
            align-items: center;
            gap: 38px;
        }

        .footer-brand {
            display: block;
            width: 330px;
            max-width: 100%;
            padding: 0;
            margin: 0;
            background: #ffffff;
            border: 0;
            border-radius: 0;
            box-shadow: none;
        }

        .footer-logo {
            display: block;
            width: 100%;
            height: auto;
            margin: 0;
            padding: 0;
            object-fit: contain;
            background: #ffffff;
            border: 0;
            box-shadow: none;
        }

        .footer-copy {
            display: flex;
            flex-direction: column;
            gap: 5px;
            color: #647787;
            line-height: 1.5;
        }

        .footer-copy strong {
            color: #0a3556;
            font-size: 13px;
            letter-spacing: 0.04em;
        }

        .footer-copy span {
            color: #647787;
        }

        .footer-top-link {
            color: #0a3556;
            font-weight: 700;
            white-space: nowrap;
            transition: color 0.2s ease;
        }

        .footer-top-link:hover {
            color: #27ae7c;
        }

        /* ---------- REVEAL TRANSITIONS ---------- */
        .reveal {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.75s ease, transform 0.75s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ---------- RESPONSIVE ---------- */
        html {
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        body {
            overflow-x: hidden;
        }

        a,
        button {
            -webkit-tap-highlight-color: transparent;
        }

        @media (max-width: 900px) {
            .container {
                width: min(100% - 40px, 1180px);
            }

            .nav-wrap {
                min-height: 76px;
            }

            .logo {
                width: 225px;
            }

            .menu-button {
                display: grid;
                place-items: center;
                flex: 0 0 48px;
                width: 48px;
                height: 48px;
                border-radius: 12px;
                line-height: 1;
            }

            .main-nav {
                position: absolute;
                top: calc(100% + 10px);
                left: 20px;
                right: 20px;
                display: none;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                max-height: calc(100dvh - 100px);
                overflow-y: auto;
                padding: 14px;
                border: 1px solid var(--line);
                border-radius: 18px;
                background: rgba(255, 255, 255, 0.99);
                box-shadow: 0 24px 60px rgba(8, 47, 74, 0.18);
            }

            .main-nav.open {
                display: flex;
            }

            .main-nav a,
            .site-header.scrolled .main-nav a {
                width: 100%;
                min-height: 46px;
                display: flex;
                align-items: center;
                padding: 10px 12px;
                border-radius: 10px;
                color: var(--navy);
                font-size: 15px;
            }

            .main-nav a:hover {
                background: var(--soft);
            }

            .nav-button,
            .site-header.scrolled .nav-button {
                width: 100% !important;
                justify-content: center;
                color: white !important;
                background: var(--navy);
                border-color: var(--navy);
                padding: 11px 14px !important;
            }

            .hero {
                min-height: 760px;
                min-height: 100svh;
            }

            .hero::before {
                background:
                    linear-gradient(90deg, rgba(4, 31, 49, 0.95) 0%, rgba(4, 31, 49, 0.84) 55%, rgba(4, 31, 49, 0.52) 100%),
                    url('assets/hero-hq.jpg') 58% center / cover no-repeat;
            }

            .hero-content {
                width: min(720px, 100%);
                padding-top: 132px;
                padding-bottom: 84px;
            }

            .stats-grid,
            .process-grid,
            .models-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .opportunity-grid,
            .sector-grid {
                grid-template-columns: 1fr;
            }

            .image-break {
                height: min(58vh, 560px);
            }

            .footer-wrap {
                grid-template-columns: minmax(220px, 300px) 1fr;
            }

            .footer-top-link {
                grid-column: 1 / -1;
                justify-self: end;
            }
        }

        @media (max-width: 620px) {
            .container {
                width: min(100% - 32px, 1180px);
            }

            .site-header {
                padding-top: env(safe-area-inset-top);
            }

            .nav-wrap {
                min-height: 70px;
                gap: 12px;
            }

            .logo {
                width: min(190px, calc(100vw - 92px));
                padding: 6px 8px;
                border-radius: 9px;
            }

            .menu-button {
                flex-basis: 44px;
                width: 44px;
                height: 44px;
                font-size: 26px;
            }

            .main-nav {
                left: 16px;
                right: 16px;
                max-height: calc(100dvh - 94px - env(safe-area-inset-top));
            }

            .section {
                padding: 72px 0;
            }

            .hero {
                min-height: 700px;
                min-height: 100svh;
                align-items: flex-end;
            }

            .hero::before {
                background:
                    linear-gradient(180deg, rgba(4, 31, 49, 0.58) 0%, rgba(4, 31, 49, 0.80) 42%, rgba(4, 31, 49, 0.97) 100%),
                    url('assets/hero-hq.jpg') 62% center / cover no-repeat;
                transform: none;
            }

            .hero::after {
                width: 320px;
                height: 320px;
                right: -180px;
                top: 90px;
                opacity: 0.65;
            }

            .hero-content {
                padding-top: calc(112px + env(safe-area-inset-top));
                padding-bottom: calc(58px + env(safe-area-inset-bottom));
            }

            .eyebrow {
                align-items: flex-start;
                gap: 8px;
                margin-bottom: 14px;
                letter-spacing: 0.10em;
                font-size: 10px;
                line-height: 1.5;
            }

            .eyebrow::before {
                flex: 0 0 24px;
                width: 24px;
                margin-top: 7px;
            }

            .hero h1 {
                max-width: 100%;
                font-size: clamp(38px, 11vw, 50px);
                line-height: 1.03;
                letter-spacing: -0.04em;
                overflow-wrap: anywhere;
            }

            .hero h1 span {
                display: block;
                margin-top: 6px;
            }

            .hero-lead {
                margin-top: 20px;
                font-size: 18px;
                line-height: 1.45;
            }

            .hero-copy {
                margin-top: 10px;
                font-size: 15px;
                line-height: 1.65;
            }

            .hero-actions {
                display: grid;
                grid-template-columns: 1fr;
                gap: 10px;
                margin-top: 26px;
            }

            .button {
                width: 100%;
                min-height: 50px;
                padding: 13px 18px;
                font-size: 15px;
            }

            .section-title {
                margin-top: 8px;
                font-size: clamp(32px, 9.2vw, 42px);
                line-height: 1.08;
            }

            .section-copy {
                font-size: 16px;
            }

            .stats-grid,
            .process-grid,
            .models-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                gap: 12px;
                margin-top: 34px;
            }

            .stat-card {
                padding: 24px;
            }

            .stat-number {
                font-size: 36px;
            }

            .opportunity-grid {
                gap: 14px;
                margin-top: 18px;
            }

            .panel {
                padding: 24px 21px;
                border-radius: 18px;
            }

            .check-list {
                gap: 14px;
            }

            .check-list li {
                padding-left: 27px;
                line-height: 1.55;
            }

            .dark-panel {
                min-height: 250px;
            }

            .dark-panel blockquote {
                font-size: 24px;
            }

            .image-break {
                height: 430px;
            }

            .image-break img {
                object-position: 58% center;
            }

            .image-break-title {
                left: 16px;
                right: 16px;
                bottom: 28px;
                font-size: clamp(30px, 9vw, 40px);
                line-height: 1.08;
            }

            .tabs {
                width: calc(100% + 16px);
                margin: 28px -16px 20px 0;
                padding-right: 16px;
                padding-bottom: 10px;
                scroll-snap-type: x proximity;
                overscroll-behavior-inline: contain;
                -webkit-overflow-scrolling: touch;
            }

            .tab-button {
                min-height: 44px;
                scroll-snap-align: start;
                padding: 10px 15px;
            }

            .service-panel {
                min-height: 0;
                padding: 28px 22px;
                border-radius: 20px;
            }

            .service-panel h3 {
                font-size: clamp(28px, 8vw, 36px);
                line-height: 1.1;
            }

            .service-panel p {
                font-size: 16px;
            }

            .process-grid {
                gap: 12px;
                margin-top: 28px;
            }

            .process-card {
                min-height: 0;
                padding: 24px;
            }

            .process-card h3 {
                margin: 30px 0 8px;
                font-size: 23px;
            }

            .process-card p {
                font-size: 15px;
            }

            .models-grid {
                gap: 12px;
                margin-top: 26px;
            }

            .model-card {
                padding: 24px;
            }

            .sector-grid {
                gap: 22px;
                margin-top: 42px;
            }

            .sector-list li {
                padding: 14px 16px;
            }

            .contact-section {
                padding: 78px 0;
                background:
                    linear-gradient(180deg, rgba(5, 36, 56, 0.92), rgba(5, 36, 56, 0.88)),
                    url('assets/hero-hq.jpg') 62% center / cover no-repeat;
            }

            .contact-grid {
                margin-top: 28px;
            }

            .contact-card {
                padding: 17px 18px;
                overflow-wrap: anywhere;
            }

            .site-footer {
                padding: 30px 0 calc(30px + env(safe-area-inset-bottom));
            }

            .footer-wrap {
                grid-template-columns: 1fr;
                justify-items: center;
                text-align: center;
                gap: 18px;
            }

            .footer-brand {
                width: min(320px, 88vw);
            }

            .footer-copy {
                align-items: center;
                max-width: 420px;
            }

            .footer-top-link {
                grid-column: auto;
                justify-self: center;
                min-height: 44px;
                display: inline-flex;
                align-items: center;
            }
        }

        @media (max-width: 380px) {
            .container {
                width: min(100% - 26px, 1180px);
            }

            .logo {
                width: 168px;
            }

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

            .section-title {
                font-size: 31px;
            }

            .panel,
            .service-panel,
            .process-card,
            .model-card {
                padding-left: 19px;
                padding-right: 19px;
            }
        }

        @media (max-height: 520px) and (orientation: landscape) {
            .hero {
                min-height: 640px;
            }

            .hero-content {
                padding-top: 110px;
                padding-bottom: 50px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            .reveal {
                opacity: 1;
                transform: none;
            }
        }
