
        :root {
            --bg: #05070f;
            --bg-soft: #0b1020;
            --surface: rgba(12, 17, 30, 0.7);
            --surface-solid: #11172a;
            --border: rgba(148, 163, 184, 0.18);
            --text-main: #f8fafc;
            --text-muted: #a6b0c3;
            --accent: #5b7cfa;
            --accent-2: #3fd0ff;
            --glow: rgba(91, 124, 250, 0.28);
            --shadow: 0 30px 80px rgba(5, 8, 18, 0.55);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", sans-serif;
            color: var(--text-main);
            background: radial-gradient(circle at 15% 20%, rgba(91, 124, 250, 0.16), transparent 35%),
                radial-gradient(circle at 85% 10%, rgba(63, 208, 255, 0.12), transparent 40%),
                var(--bg);
            min-height: 100vh;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
            background-size: 36px 36px;
            opacity: 0.25;
            pointer-events: none;
            mix-blend-mode: soft-light;
            z-index: -2;
        }

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

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

        .container {
            width: min(1200px, 100% - 3rem);
            margin: 0 auto;
        }

        .ambient {
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
        }

        .ambient span {
            position: absolute;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.5;
        }

        .ambient .orb-1 {
            top: -80px;
            left: -60px;
            background: rgba(91, 124, 250, 0.35);
        }

        .ambient .orb-2 {
            top: 20%;
            right: -120px;
            background: rgba(63, 208, 255, 0.25);
        }

        .ambient .orb-3 {
            bottom: -140px;
            left: 20%;
            background: rgba(91, 124, 250, 0.25);
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(16px);
            background: rgba(5, 7, 15, 0.7);
            border-bottom: 1px solid var(--border);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            min-height: 80px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand img {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            box-shadow: 0 12px 24px rgba(5, 8, 18, 0.35);
        }

        .brand-name {
            font-family: "Sora", sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            display: block;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .nav-links a {
            transition: color 0.2s ease;
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 22px;
            border-radius: 999px;
            border: 1px solid transparent;
            font-weight: 600;
            font-size: 0.95rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .btn-primary {
            background: linear-gradient(120deg, var(--accent), var(--accent-2));
            color: #081023;
            box-shadow: 0 12px 30px rgba(91, 124, 250, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 40px rgba(91, 124, 250, 0.45);
        }

        .btn-outline {
            border-color: var(--border);
            color: var(--text-main);
            background: rgba(15, 22, 37, 0.5);
            backdrop-filter: blur(12px);
        }

        .btn-outline:hover {
            transform: translateY(-2px);
            border-color: rgba(148, 163, 184, 0.4);
        }

        .cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        main {
            padding-bottom: 5rem;
        }

        section {
            padding: 5rem 0;
            scroll-margin-top: 120px;
        }

        :focus-visible {
            outline: 2px solid rgba(63, 208, 255, 0.6);
            outline-offset: 3px;
        }

        .hero {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 3.5rem;
            align-items: center;
            padding-top: 6rem;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--accent-2);
            font-weight: 600;
        }

        .eyebrow::before {
            content: "";
            width: 14px;
            height: 14px;
            border-radius: 4px;
            background: linear-gradient(120deg, var(--accent), var(--accent-2));
        }

        .hero h1 {
            font-family: "Sora", sans-serif;
            font-size: clamp(2.6rem, 4.8vw, 4.6rem);
            line-height: 1.1;
            margin: 1.2rem 0 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero h1 span {
            background: linear-gradient(120deg, #ffffff, #9fb2ff);
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .hero-tags {
            margin-top: 1.6rem;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .hero-tag {
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid var(--border);
            background: rgba(15, 23, 42, 0.55);
        }

        .waitlist {
            margin-top: 2rem;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            backdrop-filter: blur(18px);
        }

        .waitlist form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .waitlist input {
            flex: 1 1 220px;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid rgba(148, 163, 184, 0.35);
            background: rgba(8, 12, 24, 0.65);
            color: var(--text-main);
            font-size: 0.95rem;
        }

        .waitlist input::placeholder {
            color: rgba(148, 163, 184, 0.6);
        }

        .waitlist small {
            display: block;
            margin-top: 0.8rem;
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .waitlist small a {
            color: var(--accent-2);
        }

        .hero-visual {
            position: relative;
        }

        .device-card {
            background: rgba(16, 22, 40, 0.8);
            border-radius: 22px;
            border: 1px solid rgba(148, 163, 184, 0.2);
            padding: 16px;
            box-shadow: var(--shadow);
            animation: float 8s ease-in-out infinite;
        }

        .device-card img {
            border-radius: 16px;
        }

        .glass-panel {
            position: absolute;
            right: -10%;
            bottom: -12%;
            width: 260px;
            padding: 1.2rem;
            border-radius: 16px;
            background: rgba(12, 17, 30, 0.75);
            border: 1px solid rgba(148, 163, 184, 0.25);
            backdrop-filter: blur(16px);
            box-shadow: 0 20px 45px rgba(6, 10, 22, 0.4);
        }

        .glass-panel h4 {
            font-family: "Sora", sans-serif;
            font-size: 1rem;
            margin-bottom: 0.4rem;
        }

        .section-title {
            font-family: "Sora", sans-serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: "";
            display: block;
            width: 48px;
            height: 4px;
            margin-top: 0.6rem;
            border-radius: 999px;
            background: linear-gradient(120deg, var(--accent), var(--accent-2));
            opacity: 0.7;
        }

        .section-subtitle {
            margin-top: 2.5rem;
            font-family: "Sora", sans-serif;
            font-size: 1.4rem;
        }

        .section-intro {
            color: var(--text-muted);
            max-width: 680px;
        }

        .page-grid {
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.8rem;
        }

        .page-card {
            padding: 2.2rem;
            border-radius: 22px;
            border: 1px solid var(--border);
            background: var(--surface);
            box-shadow: var(--shadow);
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .page-card:hover {
            transform: translateY(-6px);
            border-color: rgba(148, 163, 184, 0.35);
        }

        .page-card h3 {
            font-family: "Sora", sans-serif;
            font-size: 1.4rem;
            margin-bottom: 0.6rem;
        }

        .page-card p {
            color: var(--text-muted);
            margin-bottom: 1.2rem;
        }

        .page-card a {
            color: var(--accent-2);
            font-weight: 600;
        }

        .metric-grid {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
        }

        .metric-card {
            padding: 1.6rem;
            border-radius: 18px;
            border: 1px solid var(--border);
            background: rgba(12, 16, 28, 0.85);
            box-shadow: 0 18px 40px rgba(5, 8, 18, 0.35);
        }

        .metric-card strong {
            display: block;
            font-family: "Sora", sans-serif;
            font-size: 1.8rem;
        }

        .metric-card span {
            display: block;
            margin-top: 0.35rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 0.7rem;
            color: rgba(248, 250, 252, 0.65);
        }

        .metric-card p {
            margin-top: 0.8rem;
            color: var(--text-muted);
            font-size: 0.92rem;
        }

        .split-grid {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;
        }

        .info-grid {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.5rem;
        }

        .info-card {
            padding: 1.6rem;
            border-radius: 18px;
            border: 1px solid var(--border);
            background: rgba(12, 16, 28, 0.85);
        }

        .info-card h4 {
            font-family: "Sora", sans-serif;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
        }

        .info-card p {
            color: var(--text-muted);
        }

        .info-card ul {
            margin-top: 0.8rem;
            padding-left: 1.2rem;
            color: var(--text-muted);
        }

        .info-card li {
            margin-bottom: 0.4rem;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid var(--border);
            background: rgba(15, 23, 42, 0.6);
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .use-case {
            margin-top: 2rem;
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: var(--surface);
            box-shadow: var(--shadow);
        }

        .use-case h3 {
            font-family: "Sora", sans-serif;
            font-size: 1.4rem;
            margin-bottom: 0.6rem;
        }

        .use-case .trigger {
            color: var(--text-muted);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .use-case .steps,
        .use-case .criteria {
            margin-top: 0.8rem;
            padding-left: 1.4rem;
            color: var(--text-muted);
        }

        .use-case .criteria {
            list-style: disc;
        }

        .use-case .steps {
            list-style: decimal;
        }

        .nfr-grid {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
        }

        .feature-grid {
            display: grid;
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .feature {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;
            align-items: center;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            backdrop-filter: blur(16px);
        }

        .feature:hover {
            border-color: rgba(148, 163, 184, 0.32);
        }

        .feature h3 {
            font-family: "Sora", sans-serif;
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
        }

        .feature ul {
            list-style: none;
            margin-top: 1.2rem;
            color: var(--text-muted);
        }

        .feature li {
            margin-bottom: 0.6rem;
        }

        .feature-media {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(148, 163, 184, 0.2);
            background: rgba(8, 12, 24, 0.5);
            box-shadow: 0 18px 40px rgba(5, 8, 18, 0.35);
        }

        .feature.reverse {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .track-section {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            padding: 3.5rem;
            background: radial-gradient(circle at 20% 0%, rgba(91, 124, 250, 0.2), transparent 45%),
                radial-gradient(circle at 80% 20%, rgba(63, 208, 255, 0.18), transparent 40%),
                rgba(8, 12, 22, 0.95);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .track-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
            background-size: 32px 32px;
            opacity: 0.35;
            pointer-events: none;
        }

        .track-section h2 {
            font-family: "Sora", sans-serif;
            font-size: clamp(2.6rem, 4.5vw, 4.2rem);
            line-height: 1.1;
            letter-spacing: -0.02em;
            position: relative;
            z-index: 1;
        }

        .track-section h2 span {
            display: block;
            color: rgba(248, 250, 252, 0.6);
        }

        .track-section p {
            margin-top: 1.4rem;
            max-width: 720px;
            color: var(--text-muted);
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
        }

        .app-card {
            margin-top: 2.5rem;
            padding: 2.5rem;
            border-radius: 24px;
            border: 1px solid var(--border);
            background: var(--surface);
            box-shadow: var(--shadow);
            display: grid;
            grid-template-columns: 90px 1fr;
            gap: 2rem;
            align-items: start;
            position: relative;
            overflow: hidden;
        }

        .app-card > * {
            position: relative;
            z-index: 1;
        }

        .app-card::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(63, 208, 255, 0.2), transparent 70%);
            opacity: 0.6;
            pointer-events: none;
        }

        .app-icon {
            width: 74px;
            height: 74px;
            border-radius: 18px;
            background: linear-gradient(140deg, rgba(91, 124, 250, 0.9), rgba(63, 208, 255, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #081023;
            font-weight: 700;
            font-family: "Sora", sans-serif;
            font-size: 1rem;
            box-shadow: 0 18px 40px rgba(5, 8, 18, 0.4);
        }

        .app-card h3 {
            font-family: "Sora", sans-serif;
            font-size: 1.4rem;
            margin-bottom: 0.4rem;
        }

        .app-card h4 {
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .app-card ul {
            list-style: none;
            margin-top: 1.2rem;
            color: var(--text-muted);
        }

        .app-card li {
            margin-bottom: 0.6rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .app-card li::before {
            content: "-";
            color: var(--accent-2);
            font-size: 1.2rem;
            line-height: 0;
        }

        .why-section {
            margin-top: 4rem;
        }

        .why-head {
            text-align: center;
            margin-bottom: 3rem;
        }

        .why-head .eyebrow {
            justify-content: center;
        }

        .why-head h2 {
            margin-top: 1rem;
        }

        .why-head .section-title::after {
            margin-left: auto;
            margin-right: auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.5rem;
        }

        .why-card {
            padding: 2rem 1.6rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: rgba(12, 16, 28, 0.85);
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .why-card:hover {
            transform: translateY(-6px);
            border-color: rgba(148, 163, 184, 0.35);
        }

        .why-card h3 {
            font-family: "Sora", sans-serif;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }

        .stats-bar {
            margin-top: 2.5rem;
            padding: 1.6rem 2rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: rgba(10, 14, 26, 0.85);
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1rem;
            text-align: center;
            box-shadow: 0 22px 50px rgba(5, 8, 18, 0.35);
        }

        .stats-item strong {
            display: block;
            font-family: "Sora", sans-serif;
            font-size: 1.4rem;
            color: var(--text-main);
        }

        .stats-item span {
            color: var(--text-muted);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .design-section {
            margin-top: 4rem;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
            gap: 2.5rem;
            align-items: center;
        }

        .design-copy p {
            margin-top: 1rem;
            color: var(--text-muted);
        }

        .icon-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.5rem;
        }

        .icon-card {
            padding: 1.5rem;
            border-radius: 24px;
            border: 1px solid var(--border);
            background: var(--surface);
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .icon-card:hover {
            transform: translateY(-6px);
            border-color: rgba(148, 163, 184, 0.35);
        }

        .icon-card img {
            width: 100%;
            height: auto;
            border-radius: 18px;
            filter: drop-shadow(0 18px 30px rgba(5, 8, 18, 0.35));
        }

        .icon-label {
            margin-top: 0.8rem;
            display: block;
            color: var(--text-muted);
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .flow-card {
            margin-top: 2.5rem;
            padding: 2.5rem;
            border-radius: 24px;
            background: var(--surface);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            backdrop-filter: blur(14px);
            position: relative;
            overflow: hidden;
        }

        .flow-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(91, 124, 250, 0.12), transparent 50%);
            opacity: 0.7;
            pointer-events: none;
        }

        .flow-line {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            font-family: "JetBrains Mono", monospace;
            font-size: 0.9rem;
            color: var(--text-muted);
            letter-spacing: 0.03em;
            position: relative;
            z-index: 1;
        }

        .flow-item {
            padding: 8px 14px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.35);
            background: rgba(8, 12, 24, 0.7);
            color: var(--text-main);
        }

        .flow-note {
            margin-top: 1.5rem;
            color: var(--text-muted);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        .compliance-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .compliance-card {
            padding: 1.8rem;
            border-radius: 18px;
            border: 1px solid var(--border);
            background: rgba(10, 15, 28, 0.7);
            backdrop-filter: blur(12px);
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .compliance-card:hover {
            transform: translateY(-4px);
            border-color: rgba(148, 163, 184, 0.34);
        }

        .compliance-card h3 {
            font-family: "Sora", sans-serif;
            margin-bottom: 0.6rem;
            font-size: 1.2rem;
        }

        .legal-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .legal-links {
            margin-top: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.6rem;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .legal-links a {
            color: var(--accent-2);
        }

        .legal-card {
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: var(--surface-solid);
        }

        .legal-card h3 {
            font-family: "Sora", sans-serif;
            margin-bottom: 0.8rem;
        }

        .legal-card ul {
            list-style: none;
            margin-top: 1rem;
            color: var(--text-muted);
        }

        .legal-card li {
            margin-bottom: 0.6rem;
        }

        .policy-meta {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .policy-content {
            margin-top: 1.5rem;
            color: var(--text-muted);
            font-size: 0.92rem;
        }

        .policy-content h4,
        .policy-content h5 {
            color: var(--text-main);
            margin-top: 1.6rem;
            font-family: "Sora", sans-serif;
        }

        .policy-content h5 {
            font-size: 1rem;
        }

        .policy-content p {
            margin-top: 0.8rem;
        }

        .policy-content ul,
        .policy-content ol {
            margin-top: 0.6rem;
            padding-left: 1.4rem;
        }

        .policy-content ul {
            list-style: disc;
        }

        .policy-content ol {
            list-style: decimal;
        }

        .policy-content li {
            margin-bottom: 0.4rem;
        }

        footer {
            border-top: 1px solid var(--border);
            padding: 3rem 0;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-brand img {
            width: 36px;
            height: 36px;
            border-radius: 10px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .footer-links a {
            color: var(--accent-2);
        }

        .footer-disclaimer {
            margin-top: 1.5rem;
            color: var(--text-muted);
            font-size: 0.75rem;
            line-height: 1.7;
        }

        .footer-disclaimer .container {
            border-top: 1px solid var(--border);
            padding-top: 1.5rem;
        }

        .footer-disclaimer p + p {
            margin-top: 0.6rem;
        }

        .footer-meta {
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(148, 163, 184, 0.9);
        }

        .reveal {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .js .reveal {
            opacity: 0;
            transform: translateY(20px);
        }

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

        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }
        }

        @media (max-width: 1200px) {
            .page-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 980px) {
            .nav {
                flex-wrap: wrap;
                justify-content: center;
                padding-bottom: 1rem;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                order: -1;
            }

            .glass-panel {
                position: static;
                margin-top: 1.5rem;
                width: 100%;
            }

            .feature {
                grid-template-columns: 1fr;
            }

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

            .metric-grid {
                grid-template-columns: 1fr;
            }

            .split-grid {
                grid-template-columns: 1fr;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .nfr-grid {
                grid-template-columns: 1fr;
            }

            .compliance-grid {
                grid-template-columns: 1fr;
            }

            .legal-grid {
                grid-template-columns: 1fr;
            }

            .app-card {
                grid-template-columns: 1fr;
            }

            .app-icon {
                width: 64px;
                height: 64px;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

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

            .design-section {
                grid-template-columns: 1fr;
            }

            .icon-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                flex-direction: column;
                align-items: flex-start;
            }
        }
    
