﻿/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
    --navy: #050d1a;
    --navy-mid: #0b1a2e;
    --navy-card: #0e2040;
    --navy-border: #1a3560;
    --blue: #2563eb;
    --blue-light: #3b82f6;
    --blue-glow: #60a5fa;
    --cyan: #06b6d4;
    --green: #10b981;
    --green-dim: #059669;
    --amber: #f59e0b;
    --white: #f8fafc;
    --muted: #94a3b8;
    --muted-dark: #64748b;
    --gradient-hero: linear-gradient(135deg, #050d1a 0%, #0b1a2e 50%, #0c1f3f 100%);
    --gradient-card: linear-gradient(145deg, rgba(14,32,64,0.9), rgba(11,26,46,0.6));
    --gradient-blue: linear-gradient(135deg, #2563eb, #06b6d4);
    --gradient-green: linear-gradient(135deg, #10b981, #06b6d4);
    --shadow-blue: 0 0 40px rgba(37,99,235,0.25);
    --shadow-glow: 0 0 80px rgba(37,99,235,0.15);
    --radius: 16px;
    --radius-sm: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-border);
    border-radius: 3px;
}

/* ─── GRID NOISE OVERLAY ─────────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(37,99,235,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

    #navbar.scrolled {
        background: rgba(5,13,26,0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--navy-border);
    }

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-blue);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

    .logo-text span {
        color: var(--blue-light);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--white);
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

    .btn-ghost:hover {
        color: var(--white);
        background: rgba(255,255,255,0.05);
    }

.btn-primary-nav {
    background: var(--gradient-blue);
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(37,99,235,0.35);
}

    .btn-primary-nav:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 30px rgba(37,99,235,0.5);
        color: #fff;
    }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 900px;
        height: 900px;
        background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.3);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-glow);
    margin-bottom: 28px;
    width: fit-content;
}

    .hero-badge .dot {
        width: 8px;
        height: 8px;
        background: var(--green);
        border-radius: 50%;
        animation: pulse-dot 2s ease-in-out infinite;
    }

@@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

    .hero-title .highlight {
        background: var(--gradient-blue);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-title .highlight-green {
        background: var(--gradient-green);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-desc {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-blue);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(37,99,235,0.45);
    transition: all 0.25s;
}

    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 40px rgba(37,99,235,0.55);
        color: #fff;
    }

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--navy-border);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s;
}

    .btn-hero-secondary:hover {
        background: rgba(255,255,255,0.08);
        border-color: var(--blue-light);
        color: var(--white);
    }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
}

    .trust-item i {
        color: var(--green);
        font-size: 0.9rem;
    }

/* Hero visual */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glow), 0 40px 80px rgba(0,0,0,0.5);
    position: relative;
}

.mockup-bar {
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid var(--navy-border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-r {
    background: #ff5f57;
}

.dot-y {
    background: #ffbd2e;
}

.dot-g {
    background: #28c840;
}

.mockup-url {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 5px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0 12px;
}

.mockup-body {
    padding: 24px;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mockup-title {
    font-size: 0.9rem;
    font-weight: 700;
}

.mockup-badge {
    background: rgba(16,185,129,0.15);
    color: var(--green);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.72rem;
    font-weight: 600;
}

.mockup-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.metric-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.metric-val {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

    .metric-val.blue {
        color: var(--blue-glow);
    }

    .metric-val.green {
        color: var(--green);
    }

    .metric-val.amber {
        color: var(--amber);
    }

.metric-label {
    font-size: 0.7rem;
    color: var(--muted);
}

.mockup-progress {
    margin-bottom: 16px;
}

.progress-item {
    margin-bottom: 10px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 5px;
}

.progress-bar {
    height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--gradient-blue);
}

    .progress-fill.green {
        background: var(--gradient-green);
    }

    .progress-fill.amber {
        background: linear-gradient(135deg, #f59e0b, #fbbf24);
    }

.mockup-controls {
    display: flex;
    gap: 8px;
}

.ctrl-btn {
    flex: 1;
    background: rgba(37,99,235,0.1);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 8px;
    padding: 8px;
    font-size: 0.7rem;
    color: var(--blue-glow);
    text-align: center;
    font-weight: 600;
}

    .ctrl-btn.active {
        background: var(--gradient-blue);
        border-color: transparent;
        color: #fff;
    }

/* Floating cards */
.float-card {
    position: absolute;
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    white-space: nowrap;
}

.float-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.float-card .fc-label {
    font-size: 0.7rem;
    color: var(--muted);
}

.float-card .fc-val {
    font-size: 0.85rem;
    font-weight: 700;
}

.fc-top {
    top: -20px;
    right: 20px;
    animation: float-y 4s ease-in-out infinite;
}

.fc-bottom {
    bottom: -16px;
    left: 10px;
    animation: float-y 4s ease-in-out infinite 2s;
}

@@keyframes float-y {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ─── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
    background: rgba(14,32,64,0.4);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-cell {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid var(--navy-border);
}

    .stat-cell:last-child {
        border-right: none;
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted);
}

/* ─── SECTION SHARED ──────────────────────────────────────── */
.section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-light);
    margin-bottom: 16px;
}

    .section-tag::before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 2px;
        background: var(--gradient-blue);
        border-radius: 2px;
    }

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ─── FRAMEWORKS ──────────────────────────────────────────── */
.frameworks {
    background: rgba(11,26,46,0.3);
}

.framework-search-bar {
    display: flex;
    align-items: center;
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 12px;
    padding: 12px 20px;
    gap: 12px;
    margin-bottom: 40px;
    transition: border-color 0.2s;
}

    .framework-search-bar:focus-within {
        border-color: var(--blue-light);
    }

    .framework-search-bar i {
        color: var(--muted);
        font-size: 1rem;
    }

    .framework-search-bar input {
        background: none;
        border: none;
        outline: none;
        color: var(--white);
        font-size: 0.95rem;
        font-family: 'Inter', sans-serif;
        flex: 1;
    }

        .framework-search-bar input::placeholder {
            color: var(--muted-dark);
        }

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.filter-tab {
    background: transparent;
    border: 1px solid var(--navy-border);
    color: var(--muted);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

    .filter-tab:hover, .filter-tab.active {
        background: rgba(37,99,235,0.15);
        border-color: var(--blue-light);
        color: var(--blue-glow);
    }

.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.framework-card {
    background: var(--gradient-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.25s;
    cursor: default;
}

    .framework-card:hover {
        border-color: var(--blue-light);
        background: rgba(37,99,235,0.05);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(37,99,235,0.1);
    }

/* ── Linked framework cards (logged-in users) ─────────────── */
a.framework-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

    a.framework-card::after {
        content: 'Details →';
        position: absolute;
        bottom: 10px;
        right: 14px;
        font-size: .7rem;
        font-weight: 700;
        color: var(--blue-glow);
        opacity: 0;
        transition: opacity .2s;
        letter-spacing: .03em;
        text-transform: uppercase;
    }

    a.framework-card:hover {
        border-color: var(--blue-light);
        background: rgba(37,99,235,0.08);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(37,99,235,0.18);
    }

        a.framework-card:hover::after {
            opacity: 1;
        }

.fw-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

    .fw-icon.blue {
        background: rgba(37,99,235,0.15);
        color: var(--blue-glow);
    }

    .fw-icon.green {
        background: rgba(16,185,129,0.15);
        color: var(--green);
    }

    .fw-icon.cyan {
        background: rgba(6,182,212,0.15);
        color: var(--cyan);
    }

    .fw-icon.amber {
        background: rgba(245,158,11,0.15);
        color: var(--amber);
    }

    .fw-icon.purple {
        background: rgba(139,92,246,0.15);
        color: #a78bfa;
    }

.fw-info {
    flex: 1;
    min-width: 0;
}

.fw-name {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.fw-desc {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.5;
}

.fw-tag {
    display: inline-block;
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.2);
    color: var(--blue-glow);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 8px;
}

    .fw-tag.green-tag {
        background: rgba(16,185,129,0.12);
        border-color: rgba(16,185,129,0.2);
        color: var(--green);
    }

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

    .steps-grid::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 60px;
        right: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
    }

.step-card {
    background: var(--gradient-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: all 0.25s;
}

    .step-card:hover {
        border-color: var(--blue-light);
        transform: translateY(-4px);
        box-shadow: var(--shadow-blue);
    }

.step-number {
    width: 52px;
    height: 52px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 0 24px rgba(37,99,235,0.4);
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── FEATURES ────────────────────────────────────────────── */
.features-alt {
    background: rgba(11,26,46,0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feat-card {
    background: var(--gradient-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

    .feat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gradient-blue);
        transform: scaleX(0);
        transition: transform 0.3s;
        transform-origin: left;
    }

    .feat-card:hover::before {
        transform: scaleX(1);
    }

    .feat-card:hover {
        border-color: rgba(37,99,235,0.3);
        transform: translateY(-4px);
        box-shadow: var(--shadow-blue);
    }

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

    .feat-icon.blue {
        background: rgba(37,99,235,0.12);
        color: var(--blue-glow);
    }

    .feat-icon.green {
        background: rgba(16,185,129,0.12);
        color: var(--green);
    }

    .feat-icon.cyan {
        background: rgba(6,182,212,0.12);
        color: var(--cyan);
    }

    .feat-icon.amber {
        background: rgba(245,158,11,0.12);
        color: var(--amber);
    }

    .feat-icon.purple {
        background: rgba(139,92,246,0.12);
        color: #a78bfa;
    }

    .feat-icon.pink {
        background: rgba(236,72,153,0.12);
        color: #f472b6;
    }

.feat-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feat-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
}

.feat-list {
    list-style: none;
    margin-top: 16px;
}

    .feat-list li {
        font-size: 0.82rem;
        color: var(--muted);
        padding: 4px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .feat-list li i {
            color: var(--green);
            font-size: 0.75rem;
        }

/* ─── EVIDENCE / AI SECTION ───────────────────────────────── */
.ai-section {
    overflow: hidden;
}

.ai-terminal {
    background: #0a0e1a;
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: var(--shadow-glow);
}

.terminal-bar {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--navy-border);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .terminal-bar span {
        font-size: 0.75rem;
        color: var(--muted);
        margin-left: auto;
    }

.terminal-body {
    padding: 24px;
    font-size: 0.78rem;
    line-height: 2;
}

.t-prompt {
    color: var(--green);
}

.t-cmd {
    color: var(--white);
}

.t-comment {
    color: var(--muted-dark);
}

.t-string {
    color: #fbbf24;
}

.t-key {
    color: var(--blue-glow);
}

.t-val {
    color: var(--cyan);
}

.t-result {
    color: var(--green);
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--green);
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.ai-features-list {
    list-style: none;
    margin-top: 32px;
}

.ai-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--navy-border);
}

    .ai-feat-item:last-child {
        border-bottom: none;
    }

.ai-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ai-feat-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ai-feat-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── PRICING ─────────────────────────────────────────────── */
.pricing {
    background: rgba(11,26,46,0.2);
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 100px;
    padding: 6px 20px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
}

    .toggle-label.active {
        color: var(--white);
    }

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
}

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: 0.3s;
}

    .toggle-slider::before {
        content: '';
        position: absolute;
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background: var(--white);
        border-radius: 50%;
        transition: 0.3s;
    }

input:checked + .toggle-slider {
    background: var(--gradient-blue);
}

    input:checked + .toggle-slider::before {
        transform: translateX(20px);
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    background: var(--gradient-card);
    border: 1px solid var(--navy-border);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    text-align:center;
}

    .price-card.featured {
        background: linear-gradient(145deg, rgba(37,99,235,0.15), rgba(6,182,212,0.08));
        border-color: var(--blue-light);
        box-shadow: var(--shadow-blue), 0 0 0 1px rgba(37,99,235,0.1);
    }

    .price-card:hover {
        transform: translateY(-6px);
    }

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.plan-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-glow);
    margin-bottom: 8px;
}

.plan-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.plan-subtitle {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 24px;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
    align-items: baseline;
    gap: 4px;
    text-align:center;
}

    .plan-price .currency {
        font-size: 1.2rem;
        margin-top: 8px;
    }

    .plan-price .period {
        font-size: 0.9rem;
        color: var(--muted);
        font-weight: 400;
    }

.plan-savings {
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 28px;
}

.plan-divider {
    height: 1px;
    background: var(--navy-border);
    margin: 24px 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

    .plan-features li {
        font-size: 0.875rem;
        color: var(--muted);
        padding: 7px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .plan-features li i.bi-check2 {
            color: var(--green);
        }

        .plan-features li i.bi-dash {
            color: var(--muted-dark);
        }

        .plan-features li.included {
            color: var(--white);
        }

.btn-plan {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}

.btn-plan-primary {
    background: var(--gradient-blue);
    color: #fff;
    box-shadow: 0 0 24px rgba(37,99,235,0.35);
}

    .btn-plan-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 32px rgba(37,99,235,0.5);
        color: #fff;
    }

.btn-plan-outline {
    background: transparent;
    border: 1px solid var(--navy-border);
    color: var(--white);
}

    .btn-plan-outline:hover {
        border-color: var(--blue-light);
        background: rgba(37,99,235,0.05);
        color: var(--white);
    }

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
    background: rgba(11,26,46,0.4);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.25s;
}

    .testimonial-card:hover {
        border-color: rgba(37,99,235,0.3);
        transform: translateY(-2px);
    }

.t-stars {
    color: var(--amber);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.t-quote {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.t-name {
    font-size: 0.875rem;
    font-weight: 700;
}

.t-role {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(6,182,212,0.08));
    border: 1px solid rgba(37,99,235,0.25);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-box::before {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 400px;
        background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
        pointer-events: none;
    }

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
    background: rgba(5,13,26,0.8);
    border-top: 1px solid var(--navy-border);
    padding: 72px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--navy-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

    .social-link:hover {
        background: rgba(37,99,235,0.15);
        border-color: var(--blue-light);
        color: var(--blue-glow);
    }

.footer-col h5 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            font-size: 0.83rem;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
        }

            .footer-col ul li a:hover {
                color: var(--white);
            }

.footer-bottom {
    border-top: 1px solid var(--navy-border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

    .footer-bottom p {
        font-size: 0.8rem;
        color: var(--muted-dark);
    }

.footer-legal {
    display: flex;
    gap: 20px;
}

    .footer-legal a {
        font-size: 0.8rem;
        color: var(--muted-dark);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-legal a:hover {
            color: var(--white);
        }

/* ─── SCROLL TOP ──────────────────────────────────────────── */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(37,99,235,0.4);
    z-index: 999;
}

    #scroll-top.visible {
        opacity: 1;
        pointer-events: all;
    }

/* ─── FLOWS SECTION ─────────────────────────────────────────── */
.flows-section {
    background: rgba(11,26,46,0.2);
}

.flow-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--navy-border);
    border-radius: 14px;
    padding: 5px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.flow-tab-btn {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

    .flow-tab-btn:hover {
        background: rgba(255,255,255,0.04);
    }

    .flow-tab-btn.active {
        background: var(--navy-card);
        border: 1px solid var(--navy-border);
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }

.flow-tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.flow-tab-label {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
}

.flow-tab-name {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.2;
}

.flow-tab-btn.active .flow-tab-name {
    color: var(--white);
}

.flow-tab-badge {
    margin-left: auto;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.25);
    color: var(--blue-glow);
    border-radius: 100px;
    padding: 2px 9px;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Flow pane */
.flow-pane {
    display: none;
}

    .flow-pane.active {
        display: block;
    }

/* Flow steps row */
.flow-steps {
    display: flex;
    gap: 0;
    align-items: flex-start;
    margin-bottom: 48px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 140px;
    position: relative;
    text-align: center;
}

    .flow-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 24px;
        left: calc(50% + 24px);
        right: calc(-50% + 24px);
        height: 2px;
        background: linear-gradient(90deg, var(--blue-light), var(--cyan));
        opacity: 0.3;
    }

.flow-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 14px;
    box-shadow: 0 0 20px rgba(37,99,235,0.35);
    flex-shrink: 0;
}

.flow-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.flow-step-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.flow-step-desc {
    font-size: 0.74rem;
    color: var(--muted);
    line-height: 1.5;
    padding: 0 8px;
}

/* Flow preview panel */
.flow-preview {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.fp-bar {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--navy-border);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fp-body {
    padding: 24px;
}

/* Flow 1 preview: questionnaire */
.fq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.fq-question {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.fq-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fq-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--navy-border);
    border-radius: 7px;
    padding: 8px 12px;
    font-size: 0.73rem;
    color: var(--muted);
}

    .fq-opt.selected {
        border-color: var(--green);
        background: rgba(16,185,129,0.08);
        color: var(--white);
    }

    .fq-opt.ai-pick {
        border-color: var(--amber);
        background: rgba(245,158,11,0.06);
    }

.fq-radio {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--navy-border);
    flex-shrink: 0;
}

.fq-opt.selected .fq-radio {
    border-color: var(--green);
    background: var(--green);
}

.fq-ai-tag {
    margin-left: auto;
    font-size: 0.62rem;
    background: rgba(245,158,11,0.15);
    color: var(--amber);
    border-radius: 10px;
    padding: 1px 7px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Flow 2 preview: evidence */
.fev-drop {
    border: 2px dashed var(--navy-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 14px;
}

    .fev-drop i {
        font-size: 1.5rem;
        color: var(--muted);
        display: block;
        margin-bottom: 6px;
    }

    .fev-drop p {
        font-size: 0.72rem;
        color: var(--muted);
    }

.fev-files {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.fev-file {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--navy-border);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

    .fev-file .fef-icon {
        font-size: 1.3rem;
        display: block;
        margin-bottom: 4px;
    }

    .fev-file .fef-name {
        font-size: 0.62rem;
        color: var(--muted);
        word-break: break-all;
    }

    .fev-file .fef-badge {
        font-size: 0.58rem;
        background: rgba(16,185,129,0.15);
        color: var(--green);
        border-radius: 4px;
        padding: 1px 5px;
        margin-top: 4px;
        display: inline-block;
    }

.fev-ai-result {
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 10px;
    padding: 12px 14px;
}

    .fev-ai-result .far-title {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--blue-glow);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .fev-ai-result .far-row {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.7rem;
        color: var(--muted);
        padding: 4px 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }

        .fev-ai-result .far-row:last-child {
            border-bottom: none;
        }

        .fev-ai-result .far-row i.ok {
            color: var(--green);
        }

        .fev-ai-result .far-row i.warn {
            color: var(--amber);
        }

    .fev-ai-result .far-ctrl {
        font-size: 0.65rem;
        background: rgba(255,255,255,0.06);
        border-radius: 4px;
        padding: 1px 6px;
        margin-left: auto;
        color: var(--muted);
    }

/* Flow 3 preview: compliance hub */
.fhub-layout {
    display: flex;
    gap: 0;
    height: 280px;
}

.fhub-sidebar {
    width: 160px;
    border-right: 1px solid var(--navy-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
}

.fhub-sb-hdr {
    background: linear-gradient(135deg, rgba(37,99,235,0.3), rgba(6,182,212,0.15));
    padding: 10px 12px;
    border-bottom: 1px solid var(--navy-border);
}

    .fhub-sb-hdr span {
        font-size: 0.7rem;
        font-weight: 700;
    }

.fhub-fw-item {
    padding: 7px 12px;
    font-size: 0.7rem;
    color: var(--muted);
    border-left: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .fhub-fw-item.active {
        color: var(--blue-glow);
        border-left-color: var(--blue-light);
        background: rgba(37,99,235,0.06);
        font-weight: 600;
    }

.fhub-ctrl {
    padding: 6px 12px 6px 22px;
    font-size: 0.65rem;
    color: var(--muted-dark);
    border-left: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .fhub-ctrl.active {
        color: var(--blue-glow);
        border-left-color: var(--blue-light);
        background: rgba(37,99,235,0.04);
    }

.fhub-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fhub-tabs {
    display: flex;
    border-bottom: 1px solid var(--navy-border);
    background: rgba(255,255,255,0.02);
}

.fhub-tab {
    padding: 8px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--muted-dark);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .fhub-tab.active {
        color: var(--blue-glow);
        border-bottom-color: var(--blue-light);
    }

.fhub-content {
    flex: 1;
    padding: 12px 14px;
    overflow: hidden;
}

.fhub-gap-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    padding: 5px 8px;
    border-radius: 6px;
    margin-bottom: 5px;
}

    .fhub-gap-item.red {
        background: rgba(239,68,68,0.08);
        color: #fca5a5;
        border-left: 3px solid #ef4444;
    }

    .fhub-gap-item.amber {
        background: rgba(245,158,11,0.08);
        color: #fcd34d;
        border-left: 3px solid #f59e0b;
    }

    .fhub-gap-item.ok {
        background: rgba(16,185,129,0.08);
        color: #6ee7b7;
        border-left: 3px solid #10b981;
    }

.fhub-mini-score {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--navy-border);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.fhub-score-ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: conic-gradient(var(--blue-light) 75%, rgba(255,255,255,0.08) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

    .fhub-score-ring::before {
        content: '';
        position: absolute;
        inset: 5px;
        border-radius: 50%;
        background: var(--navy-card);
    }

.fhub-score-val {
    position: relative;
    z-index: 1;
    font-size: 0.6rem;
    font-weight: 800;
}

.fhub-score-info .fsi-title {
    font-size: 0.7rem;
    font-weight: 700;
}

.fhub-score-info .fsi-sub {
    font-size: 0.62rem;
    color: var(--muted);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .steps-grid::before {
            display: none;
        }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta .btn-ghost {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-cell {
        border-right: none;
        border-bottom: 1px solid var(--navy-border);
        padding: 20px;
    }

        .stat-cell:last-child {
            border-bottom: none;
        }

    .steps-grid, .features-grid, .pricing-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .flow-tabs {
        flex-direction: column;
    }

    .flow-tab-btn {
        min-width: 0;
    }

    .flow-steps {
        flex-direction: column;
        align-items: center;
    }

    .flow-step::after {
        display: none;
    }

    .fhub-layout {
        flex-direction: column;
        height: auto;
    }

    .fhub-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--navy-border);
        flex-direction: row;
        overflow-x: auto;
        max-height: 80px;
    }

    .fev-files {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tighter navbar + roomier tap targets on phones */
    .nav-inner {
        padding: 14px 18px;
    }

    /* Cards no longer need 3-col padding once stacked full-width */
    .feat-card {
        padding: 26px 22px;
    }

    .price-card {
        padding: 30px 24px;
    }

    /* A featured card lifts on hover on desktop — on mobile keep it inline
       with the others so it doesn't overlap neighbours when stacked. */
    .price-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        padding: 12px 14px;
    }

    /* Keep the hamburger + Get Started reachable; drop the logo word-mark's
       second half is unnecessary — just tighten spacing. */
    .nav-cta {
        gap: 8px;
    }

    .btn-primary-nav {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .feat-card,
    .price-card {
        padding: 24px 18px;
    }

    .feat-title {
        font-size: 1.05rem;
    }
}

/* ─── AOS OVERRIDES ───────────────────────────────────────── */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}