/* ==========================================================================
   TITAN CMS
   PRODUCT WEBSITE
   Main Stylesheet
   ========================================================================== */

:root {
    --bg: #05080d;
    --bg-soft: #080d14;
    --bg-card: #0c121b;
    --bg-card-hover: #101925;

    --text: #f4f7fb;
    --text-soft: #c1c9d6;
    --muted: #7f8b9e;
    --muted-dark: #5e6979;

    --blue: #3182ff;
    --blue-light: #69a5ff;
    --blue-dark: #1764d5;

    --green: #42d392;

    --border: rgba(255, 255, 255, 0.075);
    --border-light: rgba(255, 255, 255, 0.12);
    --border-blue: rgba(49, 130, 255, 0.25);

    --container: 1240px;
    --radius: 18px;
    --radius-small: 11px;

    --shadow:
        0 30px 90px rgba(0, 0, 0, 0.42);

    --shadow-blue:
        0 25px 70px rgba(49, 130, 255, 0.15);

    --transition:
        220ms cubic-bezier(.2, .7, .2, 1);
}


/* ==========================================================================
   RESET
   ========================================================================== */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;

    scroll-padding-top: 90px;
}

html {
    background: #05080d;
}

body {
    margin: 0;
    padding: 0;

    min-width: 320px;

    background: #05080d !important;
    color: #f4f7fb;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

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

::selection {
    background: rgba(49, 130, 255, 0.35);
    color: #fff;
}


/* ==========================================================================
   CONTAINER
   ========================================================================== */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 78px;

    border-bottom: 1px solid var(--border);

    background:
        rgba(5, 8, 13, 0.78);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.header-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* --------------------------------------------------------------------------
   BRAND
   -------------------------------------------------------------------------- */

.brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}

.brand-mark {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--blue-light),
            var(--blue-dark)
        );

    color: #fff;

    font-size: 15px;
    font-weight: 900;

    letter-spacing: -0.05em;

    box-shadow:
        0 10px 28px rgba(49, 130, 255, 0.28);
}

.brand-text {
    color: #fff;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: -0.035em;
}

.brand-text strong {
    color: var(--blue-light);
}


/* --------------------------------------------------------------------------
   MAIN NAV
   -------------------------------------------------------------------------- */

.main-nav {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: auto;
}

.main-nav a,
.header-link {
    color: var(--muted);

    font-size: 13px;
    font-weight: 600;

    transition:
        color var(--transition);
}

.main-nav a:hover,
.header-link:hover {
    color: #fff;
}


/* --------------------------------------------------------------------------
   HEADER ACTIONS
   -------------------------------------------------------------------------- */

.header-actions {
    display: flex;
    align-items: center;

    gap: 18px;
}


/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */

.button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding:
        0 20px;

    border-radius:
        var(--radius-small);

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background:
        linear-gradient(
            135deg,
            var(--blue-light),
            var(--blue)
        );

    color: #fff;

    box-shadow:
        0 15px 35px rgba(49, 130, 255, 0.22);
}

.button-primary:hover {
    background:
        linear-gradient(
            135deg,
            #82b5ff,
            var(--blue-light)
        );

    box-shadow:
        0 18px 42px rgba(49, 130, 255, 0.30);
}

.button-outline {
    border:
        1px solid var(--border-light);

    background:
        rgba(255, 255, 255, 0.025);

    color: #fff;
}

.button-outline:hover {
    border-color:
        rgba(49, 130, 255, 0.4);

    background:
        rgba(49, 130, 255, 0.07);
}

.button-small {
    min-height: 40px;

    padding:
        0 15px;

    border-radius: 9px;

    background: var(--blue);

    color: #fff;

    box-shadow:
        0 8px 24px rgba(49, 130, 255, 0.18);
}

.button-small:hover {
    background: var(--blue-light);
}

.button-full {
    width: 100%;
}


/* ==========================================================================
   MOBILE MENU
   ========================================================================== */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.025);

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 18px;
    height: 2px;

    margin: 4px auto;

    border-radius: 2px;

    background: #fff;

    transition:
        transform var(--transition),
        opacity var(--transition);
}


/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    padding:
        105px 0
        100px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            #000,
            transparent 85%
        );

    pointer-events: none;
}

.hero-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(5px);
}

.hero-glow-one {
    width: 650px;
    height: 650px;

    top: -320px;
    left: 50%;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(49, 130, 255, 0.18),
            transparent 68%
        );
}

.hero-glow-two {
    width: 400px;
    height: 400px;

    right: -220px;
    bottom: -200px;

    background:
        radial-gradient(
            circle,
            rgba(49, 130, 255, 0.08),
            transparent 68%
        );
}

.hero-grid {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 75px;

    align-items: center;
}


/* --------------------------------------------------------------------------
   HERO CONTENT
   -------------------------------------------------------------------------- */

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 24px;

    padding:
        7px 11px;

    border:
        1px solid
        rgba(49, 130, 255, 0.22);

    border-radius: 999px;

    background:
        rgba(49, 130, 255, 0.06);

    color:
        var(--blue-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.10em;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--blue-light);

    box-shadow:
        0 0 13px
        rgba(49, 130, 255, 0.9);
}

.eyebrow-badge {
    margin-left: 4px;

    padding:
        3px 6px;

    border-radius: 5px;

    background:
        rgba(49, 130, 255, 0.12);

    color:
        #9cc4ff;

    font-size: 8px;
    letter-spacing: 0.06em;
}

.hero h1 {
    max-width: 700px;

    margin: 0;

    font-size:
        clamp(48px, 6vw, 78px);

    line-height: 0.99;

    letter-spacing:
        -0.065em;

    font-weight: 900;
}

.hero h1 span {
    display: block;

    margin-top: 8px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #79adff 48%,
            #3182ff 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-text {
    max-width: 625px;

    margin:
        27px 0 0;

    color:
        var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 0;

    margin-top: 45px;
}

.hero-meta > div {
    min-width: 125px;

    padding:
        0 25px;

    border-left:
        1px solid
        var(--border);
}

.hero-meta > div:first-child {
    padding-left: 0;

    border-left: 0;
}

.hero-meta strong {
    display: block;

    color: #dce3ed;

    font-size: 12px;
    font-weight: 700;
}

.hero-meta span {
    display: block;

    margin-top: 2px;

    color:
        var(--muted-dark);

    font-size: 10px;
}


/* ==========================================================================
   DASHBOARD PREVIEW
   ========================================================================== */

.hero-preview {
    position: relative;

    perspective: 1400px;
}

.preview-glow {
    position: absolute;

    width: 80%;
    height: 80%;

    top: 10%;
    left: 10%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(49, 130, 255, 0.18),
            transparent 65%
        );

    filter: blur(30px);
}

.dashboard-window {
    position: relative;
    z-index: 1;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 20px;

    background:
        #0b111a;

    box-shadow:
        var(--shadow),
        var(--shadow-blue);

    transform:
        perspective(1500px)
        rotateY(-4deg)
        rotateX(2deg);

    transition:
        transform 500ms ease;
}

.dashboard-window:hover {
    transform:
        perspective(1500px)
        rotateY(-1deg)
        rotateX(1deg)
        translateY(-5px);
}


/* --------------------------------------------------------------------------
   WINDOW BAR
   -------------------------------------------------------------------------- */

.window-bar {
    height: 42px;

    display: flex;
    align-items: center;

    position: relative;

    padding:
        0 15px;

    border-bottom:
        1px solid
        var(--border);

    background:
        rgba(0, 0, 0, 0.18);
}

.window-dots {
    display: flex;

    gap: 6px;
}

.window-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.18);
}

.window-title {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    color:
        var(--muted-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .05em;
}


/* --------------------------------------------------------------------------
   DASHBOARD
   -------------------------------------------------------------------------- */

.dashboard {
    display: grid;

    grid-template-columns:
        145px
        minmax(0, 1fr);

    min-height: 410px;
}

.dashboard-sidebar {
    padding:
        18px 11px;

    border-right:
        1px solid
        var(--border);

    background:
        rgba(255, 255, 255, 0.012);
}

.sidebar-logo {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    margin:
        0 7px 22px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            var(--blue-light),
            var(--blue-dark)
        );

    color: #fff;

    font-size: 11px;
    font-weight: 900;
}

.sidebar-item {
    display: flex;
    align-items: center;

    gap: 8px;

    padding:
        9px 8px;

    margin-bottom: 4px;

    border-radius: 7px;

    color:
        #6d788a;

    font-size: 9px;
    font-weight: 600;
}

.sidebar-item span {
    width: 14px;

    color:
        #586375;

    text-align: center;

    font-size: 10px;
}

.sidebar-item.active {
    background:
        rgba(49, 130, 255, 0.11);

    color:
        #79adff;
}

.sidebar-item.active span {
    color:
        #79adff;
}


/* --------------------------------------------------------------------------
   DASHBOARD MAIN
   -------------------------------------------------------------------------- */

.dashboard-main {
    min-width: 0;

    padding:
        22px;
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;
}

.dashboard-label {
    display: block;

    margin-bottom: 2px;

    color:
        #596679;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .12em;
}

.dashboard-top h3 {
    margin: 0;

    color: #edf2f8;

    font-size: 17px;
    font-weight: 800;

    letter-spacing: -.025em;
}

.dashboard-avatar {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #75adff,
            #256bd5
        );

    color: #fff;

    font-size: 9px;
    font-weight: 800;
}


/* --------------------------------------------------------------------------
   STAT CARDS
   -------------------------------------------------------------------------- */

.stat-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;
}

.stat-card {
    padding:
        13px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.018);
}

.stat-card > span {
    display: block;

    color:
        #606c7e;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .06em;
}

.stat-card strong {
    display: block;

    margin-top: 5px;

    color:
        #eaf0f8;

    font-size: 19px;
    font-weight: 800;

    letter-spacing: -.04em;
}

.stat-card small {
    display: block;

    margin-top: 3px;

    color:
        #5fca91;

    font-size: 7px;
}


/* --------------------------------------------------------------------------
   CHART
   -------------------------------------------------------------------------- */

.dashboard-chart {
    margin-top: 10px;

    padding:
        13px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.014);
}

.chart-header {
    display: flex;
    justify-content: space-between;

    color:
        #657184;

    font-size: 7px;
    font-weight: 600;
}

.chart-area {
    position: relative;

    height: 95px;

    margin-top: 8px;

    overflow: hidden;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px
        );

    background-size:
        35px 25px;
}

.chart-line {
    position: absolute;

    width: 120%;
    height: 70%;

    left: -10%;
    bottom: 10%;

    border-top:
        2px solid
        var(--blue);

    border-radius: 50%;

    transform:
        rotate(-4deg)
        skewX(-13deg);

    box-shadow:
        0 0 18px
        rgba(49, 130, 255, .45);
}

.chart-bar {
    position: absolute;

    bottom: 0;

    width: 7px;

    border-radius:
        4px 4px 0 0;

    background:
        rgba(49, 130, 255, .25);
}

.bar-one {
    left: 12%;
    height: 25%;
}

.bar-two {
    left: 24%;
    height: 45%;
}

.bar-three {
    left: 36%;
    height: 32%;
}

.bar-four {
    left: 48%;
    height: 62%;
}

.bar-five {
    left: 60%;
    height: 48%;
}

.bar-six {
    left: 72%;
    height: 74%;
}

.bar-seven {
    left: 84%;
    height: 65%;
}


/* --------------------------------------------------------------------------
   DASHBOARD BOTTOM
   -------------------------------------------------------------------------- */

.dashboard-bottom {
    display: grid;

    grid-template-columns:
        1.4fr
        .8fr;

    gap: 10px;

    margin-top: 10px;
}

.activity-card,
.server-card {
    padding:
        12px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.014);
}

.activity-title {
    display: block;

    margin-bottom: 8px;

    color:
        #5d697b;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .06em;
}

.activity-row {
    display: flex;
    align-items: center;

    gap: 8px;

    min-width: 0;

    padding:
        6px 0;

    color:
        #8d99aa;

    font-size: 8px;
}

.activity-row > span:nth-child(2) {
    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.activity-row small {
    margin-left: auto;

    color:
        #596577;

    font-size: 7px;
}

.activity-icon {
    width: 17px;
    height: 17px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 5px;

    background:
        rgba(49, 130, 255, .09);

    color:
        #76aaff;

    font-size: 7px;
    font-weight: 800;
}

.server-status {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-top: 17px;

    color:
        #9aa5b5;

    font-size: 8px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--green);

    box-shadow:
        0 0 12px
        rgba(66, 211, 146, .55);
}


/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
    border-top:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

    background:
        rgba(255, 255, 255, 0.012);
}

.trust-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.trust-item {
    padding:
        23px 20px;

    text-align: center;

    border-right:
        1px solid
        var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;

    color:
        #dbe2ec;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .08em;
}

.trust-item span {
    display: block;

    margin-top: 2px;

    color:
        var(--muted-dark);

    font-size: 10px;
}


/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
    position: relative;

    padding:
        115px 0;
}

.section-dark {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .012),
            rgba(255, 255, 255, .018)
        );

    border-top:
        1px solid
        rgba(255, 255, 255, .025);

    border-bottom:
        1px solid
        rgba(255, 255, 255, .025);
}

.section-heading {
    max-width: 720px;

    margin-bottom: 52px;
}

.section-heading.centered {
    margin-inline: auto;

    text-align: center;
}

.section-label {
    display: block;

    margin-bottom: 13px;

    color:
        var(--blue-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;

    color:
        #f3f6fa;

    font-size:
        clamp(33px, 4.2vw, 51px);

    line-height: 1.08;

    letter-spacing: -.055em;

    font-weight: 850;
}

.section-heading p {
    max-width: 670px;

    margin:
        18px 0 0;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

.centered p {
    margin-inline: auto;
}


/* ==========================================================================
   FEATURE GRID
   ========================================================================== */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.feature-card {
    position: relative;

    min-height: 270px;

    display: flex;
    flex-direction: column;

    padding:
        27px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .032),
            rgba(255, 255, 255, .012)
        );

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.feature-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -100px;
    right: -90px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(49, 130, 255, .14),
            transparent 70%
        );

    opacity: 0;

    transition:
        opacity var(--transition);
}

.feature-card:hover {
    transform:
        translateY(-6px);

    border-color:
        var(--border-blue);

    background:
        var(--bg-card-hover);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    border:
        1px solid
        rgba(49, 130, 255, .15);

    border-radius: 12px;

    background:
        rgba(49, 130, 255, .07);

    color:
        #7db0ff;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .04em;
}

.feature-card h3 {
    margin: 0;

    color:
        #edf2f8;

    font-size: 17px;
    font-weight: 750;

    letter-spacing: -.025em;
}

.feature-card p {
    margin:
        10px 0 0;

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.75;
}

.feature-card a {
    display: inline-block;

    margin-top: auto;
    padding-top: 20px;

    color:
        #78aaff;

    font-size: 11px;
    font-weight: 700;

    transition:
        color var(--transition);
}

.feature-card a:hover {
    color: #a5c7ff;
}


/* ==========================================================================
   MODULE SECTION
   ========================================================================== */

.module-layout {
    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 90px;

    align-items: center;
}

.module-content {
    max-width: 530px;
}

.module-content h2 {
    margin: 0;

    font-size:
        clamp(35px, 4.5vw, 52px);

    line-height: 1.06;

    letter-spacing: -.055em;
}

.module-content p {
    margin:
        20px 0 28px;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

.module-list {
    display: grid;

    gap: 9px;
}

.module-row {
    display: flex;
    align-items: center;

    gap: 16px;

    padding:
        15px 17px;

    border:
        1px solid
        var(--border);

    border-radius:
        12px;

    background:
        rgba(255, 255, 255, .018);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.module-row:hover {
    transform:
        translateX(5px);

    border-color:
        var(--border-blue);

    background:
        rgba(49, 130, 255, .035);
}

.module-number {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        rgba(49, 130, 255, .08);

    color:
        #6ea5ff;

    font-size: 9px;
    font-weight: 800;
}

.module-row strong {
    display: block;

    color:
        #e3e9f1;

    font-size: 13px;
}

.module-row span {
    display: block;

    margin-top: 2px;

    color:
        var(--muted-dark);

    font-size: 10px;
}


/* ==========================================================================
   TITAN ECOSYSTEM
   ========================================================================== */

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 14px;
}

.ecosystem-card {
    position: relative;

    min-height: 240px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 30px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            #101721,
            #080d14
        );

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

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

    border-color:
        rgba(49, 130, 255, .35);

    background:
        linear-gradient(
            145deg,
            #121c29,
            #090f17
        );
}

.ecosystem-card::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -160px;
    right: -130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(49, 130, 255, .16),
            transparent 68%
        );

    pointer-events: none;
}

.ecosystem-main {
    grid-row: span 2;
    min-height: 494px;
}

.ecosystem-icon {
    position: absolute;

    top: 30px;
    left: 30px;

    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(49, 130, 255, .20);

    border-radius: 13px;

    background:
        rgba(49, 130, 255, .08);

    color: #78aaff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .04em;

    z-index: 2;
}

.ecosystem-content {
    position: relative;
    z-index: 3;
}

.ecosystem-content > span {
    display: block;

    margin-bottom: 8px;

    color: #6fa4f5;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;
}

.ecosystem-content h3 {
    margin: 0;

    color: #f0f4f9;

    font-size: 21px;
    line-height: 1.15;

    letter-spacing: -.035em;
}

.ecosystem-content p {
    max-width: 440px;

    margin: 10px 0 0;

    color: #7f8b9d;

    font-size: 11px;
    line-height: 1.7;
}


/* ==========================================================================
   ECOSYSTEM RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {

    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecosystem-main {
        grid-column: span 2;
        grid-row: auto;
        min-height: 300px;
    }

}

@media (max-width: 600px) {

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

    .ecosystem-main {
        grid-column: auto;
        min-height: 280px;
    }

    .ecosystem-card {
        min-height: 230px;
        padding: 25px;
    }

    .ecosystem-icon {
        top: 25px;
        left: 25px;
    }

}


/* ==========================================================================
   TITAN CMS SHOWCASE
   ========================================================================== */

.showcase-section {
    position: relative;
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 80px;
    align-items: center;
}


/* ==========================================================================
   SHOWCASE PREVIEW
   ========================================================================== */

.showcase-preview {
    position: relative;
    width: 100%;
    min-width: 0;
}

.showcase-window {
    position: relative;

    width: 100%;
    min-height: 430px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;

    background: #090e15;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, .45),
        0 0 80px rgba(49, 130, 255, .06);
}


/* ==========================================================================
   WINDOW HEADER
   ========================================================================== */

.showcase-window-header {
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .06);

    background:
        #0d131c;

    color:
        #8c98a8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .06em;
}

.showcase-window-header span:first-child {
    color: #e8edf4;
}


/* ==========================================================================
   SHOWCASE CONTENT
   ========================================================================== */

.showcase-content {
    display: flex;

    width: 100%;
    min-height: 382px;

    background: #080d14;
}


/* ==========================================================================
   SIDEBAR
   ========================================================================== */

.showcase-sidebar {
    flex: 0 0 76px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 16px;

    padding:
        18px 0;

    border-right:
        1px solid
        rgba(255, 255, 255, .055);

    background:
        #070b11;
}

.showcase-sidebar-logo {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    margin-bottom: 8px;

    border:
        1px solid
        rgba(80, 145, 255, .30);

    border-radius: 9px;

    background:
        rgba(49, 130, 255, .10);

    color:
        #79aaff;

    font-size: 13px;
    font-weight: 900;

    box-shadow:
        0 0 20px
        rgba(49, 130, 255, .08);
}


/* Sidebar fake navigation */

.showcase-sidebar-line {
    width: 34px;
    height: 8px;

    border-radius: 4px;

    background:
        #18212d;

    opacity: .85;

    transition:
        .2s ease;
}

.showcase-sidebar-line.active {
    width: 40px;

    background:
        rgba(77, 145, 255, .55);

    box-shadow:
        0 0 14px
        rgba(49, 130, 255, .15);
}


/* ==========================================================================
   MAIN PREVIEW
   ========================================================================== */

.showcase-main {
    position: relative;

    flex: 1;

    min-width: 0;

    padding: 25px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #0b1119,
            #080d14
        );
}


/* ==========================================================================
   FAKE DASHBOARD HEADING
   ========================================================================== */

.fake-heading {
    position: relative;

    width: 42%;
    height: 13px;

    margin-bottom: 24px;

    border-radius: 5px;

    background:
        #d7dee8;

    opacity: .88;
}

.fake-heading::after {
    content: "";

    position: absolute;

    left: 0;
    top: 22px;

    width: 62%;
    height: 6px;

    border-radius: 3px;

    background:
        #293443;
}


/* ==========================================================================
   FAKE STAT GRID
   ========================================================================== */

.fake-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

    margin-top: 30px;
}

.fake-grid > div {
    position: relative;

    height: 85px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, .06);

    border-radius: 10px;

    background:
        #101720;
}

.fake-grid > div::before {
    content: "";

    position: absolute;

    left: 14px;
    top: 15px;

    width: 35%;
    height: 5px;

    border-radius: 3px;

    background:
        #465364;
}

.fake-grid > div::after {
    content: "";

    position: absolute;

    left: 14px;
    bottom: 16px;

    width: 48%;
    height: 17px;

    border-radius: 4px;

    background:
        #d5dce6;

    opacity: .75;
}


/* ==========================================================================
   LARGE CHART
   ========================================================================== */

.fake-large {
    position: relative;

    height: 125px;

    margin-top: 14px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, .06);

    border-radius: 10px;

    background:
        #0f161f;
}


/* Chart grid */

.fake-large::before {
    content: "";

    position: absolute;

    inset: 20px;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, .045) 0,
            rgba(255, 255, 255, .045) 1px,
            transparent 1px,
            transparent 25px
        );
}


/* Chart line */

.fake-large::after {
    content: "";

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 27px;

    height: 70px;

    background:
        linear-gradient(
            150deg,
            transparent 0 10%,
            rgba(74, 142, 255, .9) 10% 11%,
            transparent 11% 25%,
            rgba(74, 142, 255, .9) 25% 26%,
            transparent 26% 40%,
            rgba(74, 142, 255, .9) 40% 41%,
            transparent 41% 56%,
            rgba(74, 142, 255, .9) 56% 57%,
            transparent 57% 72%,
            rgba(74, 142, 255, .9) 72% 73%,
            transparent 73% 87%,
            rgba(74, 142, 255, .9) 87% 88%,
            transparent 88%
        );

    opacity: .65;
}


/* ==========================================================================
   FAKE CONTENT LINES
   ========================================================================== */

.fake-lines {
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-top: 14px;
}

.fake-lines span {
    display: block;

    height: 7px;

    border-radius: 4px;

    background:
        #1c2632;
}

.fake-lines span:nth-child(1) {
    width: 82%;
}

.fake-lines span:nth-child(2) {
    width: 65%;
}

.fake-lines span:nth-child(3) {
    width: 74%;
}

.fake-lines span:nth-child(4) {
    width: 48%;
}


/* ==========================================================================
   SHOWCASE GLOW
   ========================================================================== */

.showcase-preview::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: 15%;
    top: 10%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(49, 130, 255, .10),
            transparent 68%
        );

    filter: blur(10px);

    pointer-events: none;

    z-index: -1;
}


/* ==========================================================================
   SHOWCASE TEXT
   ========================================================================== */

.showcase-content-text {
    position: relative;

    max-width: 520px;
}

.showcase-content-text h2 {
    margin:
        14px 0 20px;

    color:
        #f1f5fa;

    font-size:
        clamp(32px, 4vw, 50px);

    line-height: 1.05;

    letter-spacing:
        -.045em;
}

.showcase-content-text p {
    margin:
        0 0 16px;

    color:
        #8a96a6;

    font-size:
        14px;

    line-height:
        1.8;
}


/* ==========================================================================
   CHECK LIST
   ========================================================================== */

.check-list {
    display: flex;

    flex-direction: column;

    gap: 13px;

    margin-top: 28px;
}

.check-list > div {
    display: flex;

    align-items: center;

    gap: 12px;

    color:
        #cbd3dd;

    font-size:
        12px;

    font-weight:
        600;
}

.check-list > div > span {
    width: 24px;
    height: 24px;

    display: grid;
    place-items: center;

    flex: 0 0 24px;

    border:
        1px solid
        rgba(74, 142, 255, .22);

    border-radius: 7px;

    background:
        rgba(49, 130, 255, .08);

    color:
        #70a4ff;

    font-size:
        12px;

    font-weight:
        900;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1000px) {

    .showcase-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .showcase-content-text {
        max-width: 700px;
    }

}


@media (max-width: 650px) {

    .showcase-window {
        min-height: 350px;
    }

    .showcase-content {
        min-height: 302px;
    }

    .showcase-sidebar {
        flex-basis: 55px;
    }

    .showcase-sidebar-line {
        width: 25px;
    }

    .showcase-sidebar-line.active {
        width: 30px;
    }

    .showcase-main {
        padding: 17px;
    }

    .fake-grid {
        gap: 7px;
    }

    .fake-grid > div {
        height: 65px;
    }

    .fake-large {
        height: 100px;
    }

}


/* --------------------------------------------------------------------------
   SHOWCASE TEXT
   -------------------------------------------------------------------------- */

.showcase-content-text h2 {
    margin: 0;

    font-size:
        clamp(34px, 4.2vw, 49px);

    line-height: 1.08;

    letter-spacing: -.05em;
}

.showcase-content-text p {
    margin:
        18px 0 0;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.check-list {
    display: grid;

    gap: 9px;

    margin-top: 28px;
}

.check-list div {
    display: flex;
    align-items: center;

    gap: 9px;

    color:
        #b8c2d0;

    font-size: 11px;
    font-weight: 600;
}

.check-list span {
    width: 19px;
    height: 19px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(49, 130, 255, .10);

    color:
        #78aaff;

    font-size: 9px;
    font-weight: 900;
}


/* ==========================================================================
   SECURITY
   ========================================================================== */

.security-box {
    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 80px;

    padding:
        60px;

    border:
        1px solid
        rgba(49, 130, 255, .15);

    border-radius:
        23px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(49, 130, 255, .12),
            transparent 45%
        ),
        #0a1018;

    box-shadow:
        var(--shadow);
}

.security-content h2 {
    margin: 0;

    font-size:
        clamp(31px, 4vw, 47px);

    line-height: 1.08;

    letter-spacing: -.05em;
}

.security-content p {
    margin:
        18px 0 0;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.security-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 9px;

    align-content: center;
}

.security-item {
    min-height: 53px;

    display: flex;
    align-items: center;

    padding:
        0 15px;

    border:
        1px solid
        var(--border);

    border-radius:
        10px;

    background:
        rgba(255,255,255,.018);

    color:
        #aeb8c7;

    font-size: 10px;
    font-weight: 600;
}

.security-item strong {
    margin-right: 8px;

    color:
        #69a5ff;

    font-size: 12px;
}


/* ==========================================================================
   PRICING
   ========================================================================== */

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    align-items: stretch;
}

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding:
        31px 27px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.028),
            rgba(255,255,255,.012)
        );
}

.pricing-featured {
    border-color:
        rgba(49, 130, 255, .35);

    background:
        linear-gradient(
            145deg,
            rgba(49,130,255,.08),
            rgba(255,255,255,.015)
        );

    box-shadow:
        0 25px 70px
        rgba(49,130,255,.08);
}

.popular {
    position: absolute;

    top: 18px;
    right: 18px;

    padding:
        5px 8px;

    border-radius: 6px;

    background:
        rgba(49,130,255,.12);

    color:
        #7db0ff;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .08em;
}

.pricing-label {
    color:
        #6d9de6;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.pricing-card h3 {
    margin:
        10px 0 0;

    color:
        #eef3f8;

    font-size: 23px;

    letter-spacing: -.035em;
}

.price {
    display: flex;
    align-items: baseline;

    margin-top: 18px;
}

.price strong {
    color:
        #fff;

    font-size: 43px;
    line-height: 1;

    letter-spacing: -.06em;
}

.price span {
    margin-left: 5px;

    color:
        var(--muted);

    font-size: 13px;
}

.pricing-card > p {
    min-height: 42px;

    margin:
        13px 0 20px;

    color:
        var(--muted);

    font-size: 11px;

    line-height: 1.65;
}

.pricing-card ul {
    display: grid;

    gap: 10px;

    margin:
        0 0 28px;

    padding: 0;

    list-style: none;
}

.pricing-card li {
    color:
        #aab4c3;

    font-size: 11px;
}

.pricing-card .button {
    margin-top: auto;
}


/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
    padding:
        90px 0
        115px;

    overflow: hidden;
}

.cta-box {
    position: relative;

    padding:
        85px 35px;

    text-align: center;

    border:
        1px solid
        rgba(49, 130, 255, .18);

    border-radius:
        25px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(49, 130, 255, .20),
            transparent 55%
        ),
        #0a1018;

    overflow: hidden;

    box-shadow:
        var(--shadow);
}

.cta-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 0;

    transform:
        translate(-50%, -70%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(49, 130, 255, .15),
            transparent 70%
        );

    pointer-events: none;
}

.cta-box > *:not(.cta-glow) {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    margin: 0;

    font-size:
        clamp(35px, 5vw, 57px);

    line-height: 1.04;

    letter-spacing: -.055em;
}

.cta-box h2 span {
    display: block;

    background:
        linear-gradient(
            135deg,
            #fff,
            #6da7ff,
            #3182ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.cta-box p {
    max-width: 620px;

    margin:
        18px auto 0;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.cta-box .hero-actions {
    justify-content: center;

    margin-top: 30px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    border-top:
        1px solid
        var(--border);

    background:
        #04070b;
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.8fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding:
        65px 0
        55px;
}

.footer-brand p {
    margin:
        15px 0 0;

    color:
        var(--muted);

    font-size: 11px;
}

.copyright {
    display: block;

    margin-top: 28px;

    color:
        #4e5969;

    font-size: 9px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 9px;
}

.footer-column strong {
    margin-bottom: 7px;

    color:
        #dce3ec;

    font-size: 11px;
}

.footer-column a {
    color:
        #687385;

    font-size: 10px;

    transition:
        color var(--transition);
}

.footer-column a:hover {
    color:
        #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding:
        19px 0;

    border-top:
        1px solid
        rgba(255,255,255,.045);

    color:
        #485363;

    font-size: 9px;
}


/* ==========================================================================
   RESPONSIVE – 1100 PX
   ========================================================================== */

@media (max-width: 1100px) {

    .main-nav {
        gap: 18px;
    }

    .header-link {
        display: none;
    }

    .hero-grid {
        gap: 45px;
    }

    .module-layout {
        gap: 50px;
    }

    .showcase-grid {
        gap: 50px;
    }

    .security-box {
        gap: 45px;

        padding: 45px;
    }

}


/* ==========================================================================
   RESPONSIVE – 900 PX
   ========================================================================== */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .header-actions {
        margin-left: auto;
    }

    .hero {
        padding:
            80px 0;
    }

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

        gap: 60px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-preview {
        max-width: 760px;

        margin-inline: auto;
    }

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

    .module-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .module-content {
        max-width: 700px;
    }

    .ecosystem-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .ecosystem-main {
        grid-row: auto;

        min-height: 300px;

        grid-column:
            span 2;
    }

    .showcase-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .showcase-content-text {
        max-width: 700px;
    }

    .security-box {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;

        max-width: 650px;

        margin-inline: auto;
    }

    .pricing-card {
        min-height: auto;
    }

    .footer-main {
        grid-template-columns:
            1.5fr
            1fr
            1fr;
    }

    .footer-brand {
        grid-row:
            span 2;
    }

}


/* ==========================================================================
   MOBILE MENU OPEN STATE
   ========================================================================== */

@media (max-width: 760px) {

    .site-header {
        height: 70px;
    }

    .header-actions {
        display: none;
    }

    .main-nav {
        position: fixed;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        top: 70px;
        left: 0;
        right: 0;

        padding:
            15px 24px 25px;

        border-bottom:
            1px solid
            var(--border);

        background:
            rgba(5, 8, 13, .97);

        backdrop-filter:
            blur(25px);

        transform:
            translateY(-120%);

        opacity: 0;

        pointer-events: none;

        transition:
            transform 300ms ease,
            opacity 300ms ease;
    }

    body.menu-open .main-nav {
        transform:
            translateY(0);

        opacity: 1;

        pointer-events: auto;
    }

    .main-nav a {
        padding:
            14px 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.04);

        color:
            #aeb8c6;

        font-size: 14px;
    }

    body.menu-open .mobile-menu-button span:nth-child(1) {
        transform:
            translateY(6px)
            rotate(45deg);
    }

    body.menu-open .mobile-menu-button span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .mobile-menu-button span:nth-child(3) {
        transform:
            translateY(-6px)
            rotate(-45deg);
    }

    .container {
        width:
            min(
                calc(100% - 30px),
                var(--container)
            );
    }

    .hero {
        min-height: auto;

        padding:
            72px 0
            70px;
    }

    .hero h1 {
        font-size:
            clamp(42px, 12vw, 62px);
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-meta {
        gap: 18px;
    }

    .hero-meta > div {
        padding:
            0 15px;
    }

    .hero-preview {
        width: 100%;
    }

    .dashboard-window {
        transform: none;
    }

    .dashboard-window:hover {
        transform:
            translateY(-3px);
    }

    .section {
        padding:
            80px 0;
    }

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

    .feature-card {
        min-height: auto;
    }

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

    .ecosystem-main {
        grid-column: auto;

        min-height: 270px;
    }

    .showcase-content {
        grid-template-columns:
            85px
            1fr;
    }

    .showcase-main {
        padding: 18px;
    }

    .security-box {
        padding: 30px;
    }

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

    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px;
    }

    .footer-brand {
        grid-row: auto;

        grid-column:
            span 2;
    }

}


/* ==========================================================================
   MOBILE – 600 PX
   ========================================================================== */

@media (max-width: 600px) {

    .brand-text {
        font-size: 14px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .hero-meta {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;
    }

    .hero-meta > div {
        padding: 0;

        border-left: 0;
    }

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

    .dashboard-sidebar {
        display: none;
    }

    .dashboard-main {
        padding: 16px;
    }

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

    .dashboard-bottom {
        grid-template-columns: 1fr;
    }

    .chart-area {
        height: 75px;
    }

    .trust-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .trust-item {
        padding:
            20px 10px;
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n+2) {
        border-bottom:
            1px solid
            var(--border);
    }

    .module-row {
        align-items: flex-start;
    }

    .module-number {
        width: 32px;
        height: 32px;
    }

    .showcase-sidebar {
        display: none;
    }

    .showcase-content {
        grid-template-columns: 1fr;
    }

    .showcase-window-header {
        padding:
            0 12px;
    }

    .pricing-card {
        padding:
            27px 22px;
    }

    .cta-box {
        padding:
            60px 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

}


/* ==========================================================================
   MOBILE – 420 PX
   ========================================================================== */

@media (max-width: 420px) {

    .container {
        width:
            calc(100% - 24px);
    }

    .hero {
        padding-top:
            55px;
    }

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

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

    .hero-meta > div {
        padding-bottom:
            12px;

        border-bottom:
            1px solid
            var(--border);
    }

    .hero-meta > div:last-child {
        border-bottom: 0;
    }

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

    .trust-item {
        border-right: 0 !important;

        border-bottom:
            1px solid
            var(--border);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .security-box {
        padding:
            25px 20px;
    }

}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;
    }

}

/* ==========================================================================
   TITAN CMS — FEATURES PAGE
   ========================================================================== */


/* ==========================================================================
   PAGE HERO
   ========================================================================== */

.page-hero {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;

    padding:
        120px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(49, 130, 255, .10),
            transparent 35%
        ),
        #05080d;
}

.page-hero-content {
    position: relative;

    max-width: 820px;

    z-index: 2;
}

.page-hero-content h1 {
    max-width: 850px;

    margin:
        22px 0;

    color:
        #f3f6fa;

    font-size:
        clamp(46px, 7vw, 82px);

    line-height:
        .98;

    letter-spacing:
        -.065em;
}

.page-hero-content h1 span {
    display: block;

    color:
        #6ea4ff;
}

.page-hero-content p {
    max-width: 650px;

    margin: 0;

    color:
        #8995a5;

    font-size:
        16px;

    line-height:
        1.8;
}


/* ==========================================================================
   FEATURE NAVIGATION
   ========================================================================== */

.feature-nav {
    position: sticky;

    top: 0;

    z-index: 50;

    border-top:
        1px solid
        rgba(255, 255, 255, .04);

    border-bottom:
        1px solid
        rgba(255, 255, 255, .06);

    background:
        rgba(5, 8, 13, .88);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}

.feature-nav-inner {
    display: flex;

    align-items: center;

    gap: 8px;

    overflow-x: auto;

    scrollbar-width: none;
}

.feature-nav-inner::-webkit-scrollbar {
    display: none;
}

.feature-nav-inner a {
    display: inline-flex;

    align-items: center;

    min-height: 58px;

    padding:
        0 18px;

    white-space: nowrap;

    color:
        #778394;

    font-size:
        11px;

    font-weight:
        700;

    text-decoration:
        none;

    letter-spacing:
        .04em;

    transition:
        color .2s ease,
        background .2s ease;
}

.feature-nav-inner a:hover {
    color:
        #dce5f0;

    background:
        rgba(255, 255, 255, .035);
}


/* ==========================================================================
   FEATURE SECTION LAYOUT
   ========================================================================== */

.feature-section-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap:
        80px;

    align-items:
        center;
}

.feature-section-grid.reverse {
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, .9fr);
}

.feature-section-grid.reverse .feature-ui {
    order: 1;
}

.feature-section-grid.reverse .feature-section-content {
    order: 2;
}

.feature-section-content {
    max-width:
        560px;
}

.feature-section-content h2 {
    margin:
        15px 0 22px;

    color:
        #f1f5f9;

    font-size:
        clamp(34px, 4vw, 54px);

    line-height:
        1.03;

    letter-spacing:
        -.05em;
}

.feature-section-content > p {
    margin:
        0;

    color:
        #8793a3;

    font-size:
        14px;

    line-height:
        1.85;
}


/* ==========================================================================
   FEATURE POINTS
   ========================================================================== */

.feature-points {
    display:
        flex;

    flex-direction:
        column;

    gap:
        18px;

    margin-top:
        32px;
}

.feature-points > div {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        14px;
}

.feature-points > div > span {
    width:
        28px;

    height:
        28px;

    flex:
        0 0 28px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        rgba(70, 140, 255, .20);

    border-radius:
        8px;

    background:
        rgba(49, 130, 255, .08);

    color:
        #6ea4ff;

    font-size:
        12px;

    font-weight:
        900;
}

.feature-points strong {
    display:
        block;

    margin-bottom:
        4px;

    color:
        #dce4ed;

    font-size:
        12px;

    font-weight:
        700;
}

.feature-points small {
    display:
        block;

    color:
        #687587;

    font-size:
        11px;

    line-height:
        1.5;
}


/* ==========================================================================
   FEATURE UI
   ========================================================================== */

.feature-ui {
    position:
        relative;

    min-width:
        0;
}

.feature-ui-window {
    position:
        relative;

    width:
        100%;

    min-height:
        400px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(255, 255, 255, .08);

    border-radius:
        18px;

    background:
        #080d14;

    box-shadow:
        0 35px 90px
        rgba(0, 0, 0, .42);
}

.feature-ui-header {
    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding:
        0 18px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .055);

    background:
        #0d131c;

    color:
        #7f8c9d;

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        .07em;
}

.feature-ui-header span:first-child {
    color:
        #e2e8ef;
}

.feature-ui-body {
    display:
        flex;

    min-height:
        352px;
}

.feature-ui-sidebar {
    flex:
        0 0 74px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        15px;

    padding:
        18px 0;

    border-right:
        1px solid
        rgba(255, 255, 255, .05);

    background:
        #070b11;
}

.feature-ui-logo {
    width:
        34px;

    height:
        34px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        8px;

    border:
        1px solid
        rgba(70, 140, 255, .25);

    border-radius:
        9px;

    background:
        rgba(49, 130, 255, .08);

    color:
        #76a7ff;

    font-size:
        12px;

    font-weight:
        900;
}

.feature-ui-sidebar > span {
    width:
        32px;

    height:
        8px;

    border-radius:
        4px;

    background:
        #18212d;
}

.feature-ui-sidebar > span.active {
    width:
        39px;

    background:
        rgba(76, 143, 255, .55);
}

.feature-ui-main {
    flex:
        1;

    min-width:
        0;

    padding:
        24px;

    background:
        linear-gradient(
            145deg,
            #0b1119,
            #080d14
        );
}

.ui-title {
    width:
        36%;

    height:
        13px;

    margin-bottom:
        24px;

    border-radius:
        5px;

    background:
        #d7dee8;

    opacity:
        .85;
}

.ui-toolbar {
    display:
        flex;

    gap:
        8px;

    margin-bottom:
        18px;
}

.ui-toolbar span {
    width:
        70px;

    height:
        24px;

    border:
        1px solid
        rgba(255, 255, 255, .06);

    border-radius:
        6px;

    background:
        #111923;
}

.ui-toolbar span:first-child {
    background:
        rgba(49, 130, 255, .13);

    border-color:
        rgba(49, 130, 255, .20);
}

.ui-table {
    overflow:
        hidden;

    border:
        1px solid
        rgba(255, 255, 255, .055);

    border-radius:
        10px;

    background:
        #0e151e;
}

.ui-table-row {
    display:
        grid;

    grid-template-columns:
        1.5fr
        1fr
        .5fr;

    gap:
        14px;

    align-items:
        center;

    min-height:
        55px;

    padding:
        0 16px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .045);
}

.ui-table-row:last-child {
    border-bottom:
        0;
}

.ui-table-row span {
    display:
        block;

    height:
        7px;

    border-radius:
        4px;

    background:
        #263241;
}

.ui-table-row span:nth-child(1) {
    width:
        70%;
}

.ui-table-row span:nth-child(2) {
    width:
        55%;
}

.ui-table-row span:nth-child(3) {
    width:
        35%;
}

.ui-table-row.heading {
    min-height:
        42px;

    background:
        #101720;
}

.ui-table-row.heading span {
    height:
        5px;

    background:
        #596575;
}


/* ==========================================================================
   COMMUNITY FEATURE CARDS
   ========================================================================== */

.feature-card-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        14px;

    margin-top:
        50px;
}

.feature-card.large {
    min-height:
        270px;

    padding:
        30px;
}


/* ==========================================================================
   SERVER PREVIEW
   ========================================================================== */

.server-preview {
    overflow:
        hidden;

    border:
        1px solid
        rgba(255, 255, 255, .08);

    border-radius:
        18px;

    background:
        #080d14;

    box-shadow:
        0 35px 90px
        rgba(0, 0, 0, .42);
}

.server-preview-header {
    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding:
        0 18px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .055);

    background:
        #0d131c;

    color:
        #7e8b9b;

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        .07em;
}

.server-preview-header span:first-child {
    color:
        #e2e8ef;
}

.server-preview-body {
    padding:
        28px;
}

.server-title {
    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    margin-bottom:
        25px;
}

.server-title span {
    color:
        #778496;

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        .12em;
}

.server-title strong {
    color:
        #e4eaf1;

    font-size:
        32px;

    line-height:
        1;
}

.server-list {
    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;
}

.server-preview-row {
    display:
        grid;

    grid-template-columns:
        1.2fr
        .8fr
        .6fr;

    align-items:
        center;

    gap:
        12px;

    min-height:
        58px;

    padding:
        0 16px;

    border:
        1px solid
        rgba(255, 255, 255, .045);

    border-radius:
        9px;

    background:
        #0f161f;
}

.server-game {
    color:
        #d6dee8;

    font-size:
        11px;

    font-weight:
        700;
}

.server-online,
.server-offline {
    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        .08em;
}

.server-online {
    color:
        #6ee39a;
}

.server-offline {
    color:
        #7e8793;
}

.server-preview-row strong {
    color:
        #7e8b9b;

    font-size:
        10px;

    font-weight:
        600;

    text-align:
        right;
}


/* ==========================================================================
   ADMINISTRATION
   ========================================================================== */

.admin-feature-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        14px;

    margin-top:
        50px;
}

.admin-feature {
    position:
        relative;

    min-height:
        220px;

    padding:
        28px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(255, 255, 255, .065);

    border-radius:
        14px;

    background:
        #0b1119;

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.admin-feature:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(70, 140, 255, .24);
}

.admin-feature-number {
    margin-bottom:
        48px;

    color:
        #4d83d7;

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        .08em;
}

.admin-feature h3 {
    margin:
        0 0 10px;

    color:
        #e2e8ef;

    font-size:
        18px;

    letter-spacing:
        -.025em;
}

.admin-feature p {
    margin:
        0;

    color:
        #738092;

    font-size:
        11px;

    line-height:
        1.7;
}


/* ==========================================================================
   FEATURE CARD IMPROVEMENTS
   ========================================================================== */

.feature-card {
    position:
        relative;

    overflow:
        hidden;

    border:
        1px solid
        rgba(255, 255, 255, .065);

    border-radius:
        14px;

    background:
        #0b1119;

    transition:
        transform .25s ease,
        border-color .25s ease;
}

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

    border-color:
        rgba(70, 140, 255, .25);
}

.feature-card .feature-icon {
    width:
        48px;

    height:
        48px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        30px;

    border:
        1px solid
        rgba(70, 140, 255, .18);

    border-radius:
        11px;

    background:
        rgba(49, 130, 255, .07);

    color:
        #76a7ff;

    font-size:
        9px;

    font-weight:
        900;

    letter-spacing:
        .04em;
}

.feature-card h3 {
    margin:
        0 0 12px;

    color:
        #e2e8ef;

    font-size:
        18px;

    letter-spacing:
        -.025em;
}

.feature-card p {
    margin:
        0;

    color:
        #758294;

    font-size:
        11px;

    line-height:
        1.75;
}


/* ==========================================================================
   SECURITY SECTION
   ========================================================================== */

.security-box {
    position:
        relative;

    display:
        grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap:
        70px;

    padding:
        55px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(255, 255, 255, .07);

    border-radius:
        18px;

    background:
        linear-gradient(
            145deg,
            #0c131c,
            #080d14
        );
}

.security-box::before {
    content:
        "";

    position:
        absolute;

    width:
        420px;

    height:
        420px;

    top:
        -220px;

    right:
        -120px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(49, 130, 255, .12),
            transparent 68%
        );

    pointer-events:
        none;
}

.security-content {
    position:
        relative;

    z-index:
        2;
}

.security-content h2 {
    margin:
        14px 0 18px;

    color:
        #eef3f8;

    font-size:
        clamp(30px, 4vw, 48px);

    line-height:
        1.05;

    letter-spacing:
        -.045em;
}

.security-content p {
    max-width:
        470px;

    margin:
        0;

    color:
        #7f8b9b;

    font-size:
        13px;

    line-height:
        1.8;
}

.security-grid {
    position:
        relative;

    z-index:
        2;

    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        10px;
}

.security-item {
    min-height:
        52px;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        0 14px;

    border:
        1px solid
        rgba(255, 255, 255, .055);

    border-radius:
        9px;

    background:
        rgba(255, 255, 255, .018);

    color:
        #aeb9c7;

    font-size:
        10px;

    font-weight:
        600;
}

.security-item strong {
    color:
        #6ea4ff;

    font-size:
        12px;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1000px) {

    .feature-section-grid,
    .feature-section-grid.reverse {
        grid-template-columns:
            1fr;

        gap:
            50px;
    }

    .feature-section-grid.reverse .feature-ui {
        order:
            2;
    }

    .feature-section-grid.reverse .feature-section-content {
        order:
            1;
    }

    .feature-section-content {
        max-width:
            720px;
    }

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

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

    .security-box {
        grid-template-columns:
            1fr;

        gap:
            40px;
    }

}


@media (max-width: 700px) {

    .page-hero {
        min-height:
            500px;

        padding:
            100px 0 75px;
    }

    .page-hero-content h1 {
        font-size:
            clamp(40px, 12vw, 62px);
    }

    .page-hero-content p {
        font-size:
            14px;
    }

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

    .feature-ui-window {
        border-radius:
            13px;
    }

    .feature-ui-sidebar {
        flex-basis:
            55px;
    }

    .feature-ui-sidebar > span {
        width:
            25px;
    }

    .feature-ui-sidebar > span.active {
        width:
            30px;
    }

    .feature-ui-main {
        padding:
            17px;
    }

    .security-box {
        padding:
            30px 22px;
    }

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

}


@media (max-width: 480px) {

    .server-preview-body {
        padding:
            18px;
    }

    .server-preview-row {
        grid-template-columns:
            1fr auto;

        padding:
            10px 12px;
    }

    .server-online,
    .server-offline {
        text-align:
            right;
    }

    .server-preview-row strong {
        grid-column:
            2;

        text-align:
            right;
    }

    .feature-ui-header,
    .server-preview-header {
        padding:
            0 13px;

        font-size:
            8px;
    }

}



/* =========================================================
   TITAN CMS
   PRICING PAGE
========================================================= */

.pricing-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.08), transparent 38%),
        #05080d;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.pricing-hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    left: 50%;
    top: -500px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255,255,255,.055);
    filter: blur(100px);
    pointer-events: none;
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.pricing-hero-content h1 {
    margin: 22px 0 25px;
    font-size: clamp(46px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 900;
}

.pricing-hero-content h1 span {
    display: block;
    background: linear-gradient(
        90deg,
        #ffffff,
        #8b96a8
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing-hero-content p {
    max-width: 700px;
    margin: 0 auto;
    color: #8e98a8;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   PRICING INTRO
========================================================= */

.pricing-intro {
    background: #080c12;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.pricing-intro-inner {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.pricing-intro-inner > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pricing-intro-label {
    color: #6f7a8c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.pricing-intro-inner strong {
    color: #fff;
    font-size: 22px;
}

.pricing-intro-inner p {
    margin: 0;
    max-width: 520px;
    color: #7f8999;
    line-height: 1.7;
}


/* =========================================================
   PRICING GRID
========================================================= */

.pricing-page-section {
    background: #080c12;
}

.pricing-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.pricing-page-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 38px;
    min-height: 650px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );
    box-shadow:
        0 25px 80px rgba(0,0,0,.22);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.pricing-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.16);
    box-shadow:
        0 35px 90px rgba(0,0,0,.32);
}

.pricing-page-featured {
    border-color: rgba(255,255,255,.22);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,255,255,.09),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.012)
        );
}

.pricing-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 7px 15px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: #111720;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.pricing-page-card-top {
    min-height: 125px;
}

.pricing-card-label {
    display: block;
    margin-bottom: 13px;
    color: #778294;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.pricing-page-card h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 30px;
    letter-spacing: -.8px;
}

.pricing-page-card-top p {
    margin: 0;
    color: #7d8797;
    font-size: 14px;
    line-height: 1.6;
}

.pricing-page-price {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    margin: 28px 0 2px;
}

.pricing-page-price strong {
    color: #fff;
    font-size: 64px;
    line-height: .9;
    letter-spacing: -3px;
    font-weight: 900;
}

.pricing-page-price span {
    padding-bottom: 5px;
    color: #8993a3;
    font-size: 22px;
    font-weight: 700;
}

.pricing-price-note {
    min-height: 35px;
    margin-bottom: 25px;
    padding-top: 8px;
    color: #697485;
    font-size: 12px;
}

.pricing-page-card .button {
    margin-top: 0;
}

.pricing-divider {
    height: 1px;
    margin: 30px 0 25px;
    background: rgba(255,255,255,.07);
}

.pricing-includes {
    margin-bottom: 17px;
    color: #aeb7c5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pricing-feature-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #8993a2;
    font-size: 13px;
    line-height: 1.5;
}

.pricing-feature-list li span {
    flex: 0 0 auto;
    color: #dce2ea;
    font-weight: 800;
}


/* =========================================================
   COMPARISON
========================================================= */

.pricing-comparison-section {
    background: #05080d;
}

.comparison-table {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    background: rgba(255,255,255,.015);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    min-height: 66px;
    border-bottom: 1px solid rgba(255,255,255,.055);
}

.comparison-row:last-child {
    border-bottom: 0;
}

.comparison-row > div {
    display: flex;
    align-items: center;
    padding: 15px 22px;
    color: #8b95a5;
    font-size: 13px;
}

.comparison-row > div:not(:first-child) {
    justify-content: center;
    text-align: center;
}

.comparison-header {
    background: rgba(255,255,255,.035);
}

.comparison-header > div {
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comparison-check {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800;
}

.comparison-muted {
    color: #555f6d !important;
    font-size: 12px !important;
}


/* =========================================================
   LICENSE INFO
========================================================= */

.license-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.license-info-card {
    position: relative;
    padding: 35px;
    min-height: 280px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    background: rgba(255,255,255,.018);
}

.license-info-number {
    margin-bottom: 55px;
    color: #505b6a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.license-info-card h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -.5px;
}

.license-info-card p {
    margin: 0;
    color: #7d8797;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   PRICING FAQ
========================================================= */

.pricing-faq-section {
    background: #080c12;
}

.pricing-faq {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,.07);
}

.pricing-faq-item {
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.pricing-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.pricing-faq-item summary::-webkit-details-marker {
    display: none;
}

.pricing-faq-item summary span {
    flex: 0 0 auto;
    color: #768193;
    font-size: 22px;
    font-weight: 400;
    transition: transform .2s ease;
}

.pricing-faq-item[open] summary span {
    transform: rotate(45deg);
}

.pricing-faq-item p {
    max-width: 760px;
    margin: -5px 0 25px;
    padding: 0 5px;
    color: #7d8797;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   BUTTON ALIGNMENT
========================================================= */

.button-full {
    width: 100%;
    justify-content: center;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .pricing-page-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .pricing-page-card {
        min-height: auto;
    }

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

}


@media (max-width: 800px) {

    .pricing-hero {
        padding: 120px 0 75px;
    }

    .pricing-hero-content h1 {
        letter-spacing: -2px;
    }

    .pricing-intro-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 0;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-row {
        min-width: 720px;
    }

}


@media (max-width: 600px) {

    .pricing-page-card {
        padding: 28px;
    }

    .pricing-page-price strong {
        font-size: 54px;
    }

    .license-info-card {
        padding: 28px;
    }

    .license-info-number {
        margin-bottom: 35px;
    }

    .pricing-faq-item summary {
        font-size: 14px;
    }

}


/* =========================================================
   TITAN CMS
   DOWNLOAD PAGE
========================================================= */

.download-hero {
    position: relative;
    overflow: hidden;
    padding: 145px 0 95px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,255,255,.08),
            transparent 42%
        ),
        #05080d;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.download-hero-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    left: 50%;
    top: -500px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    filter: blur(100px);
    pointer-events: none;
}

.download-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.download-hero-content h1 {
    margin: 22px 0 25px;
    font-size: clamp(46px, 6vw, 80px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 900;
}

.download-hero-content h1 span {
    display: block;
    background: linear-gradient(
        90deg,
        #fff,
        #8d98a8
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-hero-content p {
    max-width: 650px;
    margin: 0 auto;
    color: #8993a3;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   DOWNLOAD MAIN
========================================================= */

.download-section {
    background: #080c12;
}

.download-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, .9fr);
    gap: 22px;
    align-items: stretch;
}

.download-main-card,
.requirements-card {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );
}

.download-main-card {
    overflow: hidden;
}

.download-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 35px 38px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.download-label {
    display: block;
    color: #727d8e;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.download-card-header h2 {
    margin: 10px 0 0;
    color: #fff;
    font-size: 30px;
}

.version-badge {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(255,255,255,.035);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.download-card-body {
    padding: 35px 38px 40px;
}

.download-card-body > p {
    max-width: 650px;
    margin: 0 0 30px;
    color: #8791a1;
    line-height: 1.8;
}

.download-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 35px;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.download-meta-grid > div {
    padding: 22px 15px;
    border-right: 1px solid rgba(255,255,255,.06);
}

.download-meta-grid > div:last-child {
    border-right: 0;
}

.download-meta-grid span {
    display: block;
    margin-bottom: 7px;
    color: #646e7d;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.download-meta-grid strong {
    color: #e8ecf1;
    font-size: 13px;
}

.download-button {
    min-height: 52px;
}

.download-note {
    display: block;
    margin-top: 13px;
    color: #5f6978;
    font-size: 11px;
}


/* =========================================================
   REQUIREMENTS
========================================================= */

.requirements-card {
    padding: 35px;
}

.requirements-card h3 {
    margin: 12px 0 30px;
    color: #fff;
    font-size: 25px;
}

.requirement-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.requirement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: rgba(255,255,255,.025);
    color: #aab3c0;
    font-size: 9px;
    font-weight: 900;
}

.requirement-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.requirement-item strong {
    color: #dfe4ea;
    font-size: 12px;
}

.requirement-item span:not(.requirement-icon) {
    color: #687383;
    font-size: 11px;
}

.requirements-card > a {
    display: block;
    margin-top: 30px;
    color: #aeb7c4;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.requirements-card > a:hover {
    color: #fff;
}


/* =========================================================
   DOWNLOAD STEPS
========================================================= */

.download-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.download-step {
    position: relative;
    padding: 32px;
    min-height: 230px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    background: rgba(255,255,255,.018);
}

.download-step > span {
    display: block;
    margin-bottom: 55px;
    color: #535e6d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.download-step h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 19px;
}

.download-step p {
    margin: 0;
    color: #788292;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   LICENSE BOX
========================================================= */

.download-license-box {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    padding: 55px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(255,255,255,.045),
            transparent 45%
        ),
        rgba(255,255,255,.015);
}

.download-license-box h2 {
    max-width: 550px;
    margin: 18px 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.download-license-box p {
    max-width: 620px;
    margin: 0;
    color: #7e8898;
    line-height: 1.8;
}

.license-points {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.license-points > div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.license-points > div:last-child {
    border-bottom: 0;
}

.license-points strong {
    color: #505b6a;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.license-points span {
    color: #c5ccd5;
    font-size: 13px;
}


/* =========================================================
   HELP CARDS
========================================================= */

.download-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.download-help-card {
    display: block;
    padding: 32px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    background: rgba(255,255,255,.018);
    text-decoration: none;
    transition:
        transform .25s ease,
        border-color .25s ease;
}

.download-help-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.15);
}

.download-help-card > span {
    display: block;
    margin-bottom: 30px;
    color: #667181;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.download-help-card strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 20px;
}

.download-help-card p {
    margin: 0 0 22px;
    color: #778191;
    font-size: 13px;
    line-height: 1.7;
}

.download-help-card b {
    color: #aeb7c4;
    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .download-layout {
        grid-template-columns: 1fr;
    }

    .download-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-license-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


@media (max-width: 750px) {

    .download-hero {
        padding: 115px 0 75px;
    }

    .download-card-header {
        padding: 28px;
    }

    .download-card-body {
        padding: 28px;
    }

    .download-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-meta-grid > div:nth-child(2) {
        border-right: 0;
    }

    .download-meta-grid > div:nth-child(3),
    .download-meta-grid > div:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.06);
    }

    .requirements-card {
        padding: 28px;
    }

    .download-help-grid {
        grid-template-columns: 1fr;
    }

    .download-license-box {
        padding: 32px;
    }

}


@media (max-width: 550px) {

    .download-steps {
        grid-template-columns: 1fr;
    }

    .download-meta-grid {
        grid-template-columns: 1fr 1fr;
    }

    .download-hero-content h1 {
        letter-spacing: -2px;
    }

}


/* =========================================================
   TITAN CMS
   DOCUMENTATION
========================================================= */

.docs-hero {
    position: relative;
    overflow: hidden;
    padding: 145px 0 90px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,255,255,.07),
            transparent 42%
        ),
        #05080d;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.docs-hero-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    left: 50%;
    top: -520px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    filter: blur(100px);
    pointer-events: none;
}

.docs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.docs-hero-content h1 {
    margin: 22px 0;
    color: #fff;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 900;
}

.docs-hero-content h1 span {
    display: block;
    color: #7d8795;
}

.docs-hero-content p {
    max-width: 680px;
    margin: auto;
    color: #8993a3;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   DOCUMENTATION LAYOUT
========================================================= */

.docs-section {
    background: #080c12;
}

.docs-layout {
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 65px;
    align-items: start;
}

.docs-sidebar {
    position: sticky;
    top: 110px;
}

.docs-sidebar-inner {
    display: flex;
    flex-direction: column;
    padding: 22px 0;
    border-right: 1px solid rgba(255,255,255,.07);
}

.docs-sidebar-title {
    margin: 0 20px 13px;
    color: #525d6c;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.docs-sidebar a {
    padding: 10px 20px;
    border-left: 2px solid transparent;
    color: #788393;
    font-size: 12px;
    text-decoration: none;
    transition: .2s ease;
}

.docs-sidebar a:hover,
.docs-sidebar a.active {
    border-left-color: #fff;
    color: #fff;
    background: rgba(255,255,255,.025);
}

.docs-sidebar-spacer {
    margin-top: 32px;
}


/* =========================================================
   CONTENT
========================================================= */

.docs-content {
    min-width: 0;
}

.docs-block {
    padding: 0 0 75px;
    margin-bottom: 75px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.docs-number {
    display: block;
    margin-bottom: 15px;
    color: #4e5968;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.docs-block h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.docs-block > p {
    max-width: 780px;
    margin: 0 0 18px;
    color: #7d8796;
    line-height: 1.85;
    font-size: 14px;
}


/* =========================================================
   INFO
========================================================= */

.docs-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
    padding: 22px 24px;
    border-left: 2px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.025);
}

.docs-info strong {
    color: #e5e9ee;
    font-size: 12px;
}

.docs-info span {
    color: #727d8c;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   TABLE
========================================================= */

.docs-table {
    margin-top: 35px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    overflow: hidden;
}

.docs-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.docs-table-row:last-child {
    border-bottom: 0;
}

.docs-table-row span,
.docs-table-row strong {
    padding: 17px 20px;
    font-size: 12px;
}

.docs-table-row span {
    color: #788292;
}

.docs-table-row strong {
    color: #dbe0e7;
}

.docs-table-head {
    background: rgba(255,255,255,.025);
}

.docs-table-head span {
    color: #566170;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}


/* =========================================================
   STEPS
========================================================= */

.docs-step-list {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}

.docs-step-list > div {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.docs-step-list > div > span {
    color: #505b69;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.docs-step-list section strong {
    display: block;
    margin-bottom: 7px;
    color: #e5e9ee;
    font-size: 14px;
}

.docs-step-list section p {
    margin: 0;
    color: #727d8c;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   SMALL CARDS
========================================================= */

.docs-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.docs-small-card {
    padding: 25px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 13px;
    background: rgba(255,255,255,.018);
}

.docs-small-card > span {
    display: block;
    margin-bottom: 30px;
    color: #505b69;
    font-size: 10px;
    font-weight: 900;
}

.docs-small-card strong {
    display: block;
    margin-bottom: 9px;
    color: #e5e9ee;
    font-size: 14px;
}

.docs-small-card p {
    margin: 0;
    color: #717c8b;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   MODULES
========================================================= */

.docs-module-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 35px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 13px;
    background: rgba(255,255,255,.06);
}

.docs-module-list > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 25px;
    background: #0a0e14;
}

.docs-module-list strong {
    color: #e3e7ec;
    font-size: 13px;
}

.docs-module-list span {
    color: #6f7a89;
    font-size: 11px;
}


/* =========================================================
   SECURITY
========================================================= */

.docs-security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.docs-security-grid > div {
    padding: 25px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 13px;
    background: rgba(255,255,255,.018);
}

.docs-security-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #e3e7ec;
    font-size: 12px;
    letter-spacing: 1px;
}

.docs-security-grid span {
    color: #717c8b;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   NEXT
========================================================= */

.docs-next {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: rgba(255,255,255,.02);
}

.docs-next div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.docs-next span {
    color: #596473;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.docs-next strong {
    color: #e7ebef;
    font-size: 15px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .docs-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .docs-sidebar {
        position: static;
    }

    .docs-sidebar-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
        padding-bottom: 20px;
    }

    .docs-sidebar-title {
        grid-column: 1 / -1;
    }

    .docs-sidebar-spacer {
        grid-column: 1 / -1;
    }

}


@media (max-width: 600px) {

    .docs-hero {
        padding: 115px 0 70px;
    }

    .docs-hero-content h1 {
        letter-spacing: -2px;
    }

    .docs-card-grid,
    .docs-module-list,
    .docs-security-grid {
        grid-template-columns: 1fr;
    }

    .docs-table-row {
        grid-template-columns: 1fr;
    }

    .docs-table-row strong {
        padding-top: 0;
    }

    .docs-next {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   TITAN CMS
   FAQ
========================================================= */

.faq-hero {
    position: relative;
    overflow: hidden;
    padding: 145px 0 90px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,255,255,.07),
            transparent 42%
        ),
        #05080d;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.faq-hero-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    left: 50%;
    top: -520px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    filter: blur(100px);
    pointer-events: none;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.faq-hero-content h1 {
    margin: 22px 0;
    color: #fff;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 900;
}

.faq-hero-content h1 span {
    display: block;
    color: #737e8d;
}

.faq-hero-content p {
    max-width: 650px;
    margin: auto;
    color: #8993a3;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   FAQ LAYOUT
========================================================= */

.faq-section {
    background: #080c12;
}

.faq-layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-sidebar > span {
    margin: 0 15px 12px;
    color: #505b69;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.faq-sidebar a {
    padding: 11px 15px;
    border-left: 2px solid transparent;
    color: #707b8a;
    font-size: 12px;
    text-decoration: none;
    transition: .2s ease;
}

.faq-sidebar a:hover {
    border-left-color: #fff;
    color: #fff;
    background: rgba(255,255,255,.025);
}


/* =========================================================
   FAQ GROUP
========================================================= */

.faq-group {
    margin-bottom: 85px;
    scroll-margin-top: 110px;
}

.faq-group-heading {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.faq-group-heading > span {
    padding-top: 8px;
    color: #4d5866;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.faq-group-heading strong {
    display: block;
    margin-bottom: 8px;
    color: #566171;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.faq-group-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    border-top: 1px solid rgba(255,255,255,.07);
}

.faq-list details {
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.faq-list summary {
    position: relative;
    padding: 24px 55px 24px 0;
    color: #dfe4ea;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 5px;
    top: 19px;
    color: #687483;
    font-size: 22px;
    font-weight: 400;
    transition: transform .2s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
    color: #fff;
}

.faq-answer {
    max-width: 800px;
    padding: 0 45px 25px 0;
}

.faq-answer p {
    margin: 0 0 14px;
    color: #747f8e;
    font-size: 13px;
    line-height: 1.8;
}

.faq-answer p:last-of-type {
    margin-bottom: 0;
}

.faq-answer a {
    display: inline-block;
    margin-top: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .faq-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .faq-sidebar > span {
        grid-column: 1 / -1;
    }

}


@media (max-width: 600px) {

    .faq-hero {
        padding: 115px 0 70px;
    }

    .faq-hero-content h1 {
        letter-spacing: -2px;
    }

    .faq-group-heading {
        gap: 15px;
    }

    .faq-group-heading h2 {
        font-size: 29px;
    }

    .faq-list summary {
        padding-right: 40px;
    }

    .faq-answer {
        padding-right: 10px;
    }

}





/* =========================================================
   TITAN CMS
   SUPPORT
========================================================= */

.support-hero {
    position: relative;
    overflow: hidden;
    padding: 145px 0 90px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,255,255,.07),
            transparent 42%
        ),
        #05080d;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.support-hero-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    left: 50%;
    top: -520px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    filter: blur(100px);
    pointer-events: none;
}

.support-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.support-hero-content h1 {
    margin: 22px 0;
    color: #fff;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 900;
}

.support-hero-content h1 span {
    display: block;
    color: #737e8d;
}

.support-hero-content p {
    max-width: 680px;
    margin: auto;
    color: #8993a3;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   SUPPORT CARDS
========================================================= */

.support-section {
    background: #080c12;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.support-card {
    position: relative;
    padding: 32px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 15px;
    background: rgba(255,255,255,.018);
    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.15);
    background: rgba(255,255,255,.03);
}

.support-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 35px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    color: #dce1e7;
    background: rgba(255,255,255,.025);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.support-card-label {
    display: block;
    margin-bottom: 10px;
    color: #535e6d;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.support-card h3 {
    margin: 0 0 14px;
    color: #e6eaf0;
    font-size: 21px;
    letter-spacing: -.5px;
}

.support-card p {
    min-height: 105px;
    margin: 0 0 25px;
    color: #737e8c;
    font-size: 12px;
    line-height: 1.8;
}

.support-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: #e0e5eb;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.support-card-link span {
    color: #727d8c;
    font-size: 17px;
    transition: transform .2s ease;
}

.support-card-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TECHNICAL SUPPORT
========================================================= */

.support-technical {
    background: #05080d;
}

.support-technical-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 90px;
    align-items: center;
}

.support-technical-content h2 {
    max-width: 600px;
    margin: 20px 0 25px;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.support-technical-content h2 span {
    display: block;
    color: #737e8d;
}

.support-technical-content p {
    max-width: 620px;
    margin: 0 0 18px;
    color: #747f8e;
    font-size: 14px;
    line-height: 1.85;
}

.support-technical-content .button {
    margin-top: 20px;
}

.support-checklist {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,.07);
}

.support-check-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.support-check-item > span {
    color: #4f5a68;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.support-check-item strong {
    display: block;
    margin-bottom: 6px;
    color: #dfe4ea;
    font-size: 13px;
}

.support-check-item p {
    margin: 0;
    color: #6f7a89;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   SUPPORT PROCESS
========================================================= */

.support-process-section {
    background: #080c12;
}

.support-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 45px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 15px;
    background: rgba(255,255,255,.06);
}

.support-process-card {
    min-height: 190px;
    padding: 28px;
    background: #0a0e14;
}

.support-process-card > span {
    display: block;
    margin-bottom: 45px;
    color: #4f5a68;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.support-process-card strong {
    display: block;
    margin-bottom: 10px;
    color: #e1e6ec;
    font-size: 13px;
}

.support-process-card p {
    margin: 0;
    color: #707b89;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   STATUS
========================================================= */

.support-status-box {
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    background: rgba(255,255,255,.018);
    overflow: hidden;
}

.support-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.support-status-header h2 {
    margin: 10px 0 0;
    color: #fff;
    font-size: 27px;
    letter-spacing: -1px;
}

.support-status-online {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #8993a0;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.support-status-online span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8c96a4;
    box-shadow: 0 0 12px rgba(255,255,255,.35);
}

.support-status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.support-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 30px;
    border-right: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.support-status-item:nth-child(2n) {
    border-right: 0;
}

.support-status-item:nth-last-child(-n+2) {
    border-bottom: 0;
}

.support-status-item strong {
    display: block;
    margin-bottom: 5px;
    color: #dce1e7;
    font-size: 12px;
}

.support-status-item span {
    color: #626d7b;
    font-size: 10px;
}

.support-status-indicator {
    color: #8993a0;
    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

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

    .support-card p {
        min-height: 0;
    }

    .support-technical-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .support-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .support-hero {
        padding: 115px 0 70px;
    }

    .support-hero-content h1 {
        letter-spacing: -2px;
    }

    .support-status-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .support-status-grid {
        grid-template-columns: 1fr;
    }

    .support-status-item,
    .support-status-item:nth-child(2n) {
        border-right: 0;
    }

    .support-status-item:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .support-status-item:last-child {
        border-bottom: 0;
    }

}


@media (max-width: 550px) {

    .support-process-grid {
        grid-template-columns: 1fr;
    }

    .support-process-card {
        min-height: auto;
    }

    .support-process-card > span {
        margin-bottom: 25px;
    }

    .support-check-item {
        grid-template-columns: 35px 1fr;
        gap: 12px;
    }

}


/* =========================================================
   TITAN CMS
   LEGAL PAGES
========================================================= */

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 145px 0 85px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,255,255,.06),
            transparent 42%
        ),
        #05080d;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.legal-hero-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.legal-hero-content h1 {
    margin: 20px 0;
    color: #fff;
    font-size: clamp(45px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -3px;
    font-weight: 900;
}

.legal-hero-content p {
    max-width: 650px;
    margin: auto;
    color: #7d8795;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   LEGAL LAYOUT
========================================================= */

.legal-section {
    background: #080c12;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 80px;
    align-items: start;
}

.legal-content {
    max-width: 850px;
}

.legal-content > .section-label {
    display: block;
    margin-bottom: 15px;
}

.legal-content h2 {
    margin: 0 0 35px;
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.legal-content h3 {
    margin: 42px 0 14px;
    color: #e1e6ec;
    font-size: 17px;
    line-height: 1.4;
}

.legal-content p {
    margin: 0 0 18px;
    color: #788391;
    font-size: 13px;
    line-height: 1.9;
}

.legal-content strong {
    color: #dce2e8;
}

.legal-content a {
    color: #8f9aaa;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: #fff;
}


/* =========================================================
   LEGAL SIDEBAR
========================================================= */

.legal-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    background: rgba(255,255,255,.018);
}

.legal-sidebar > span {
    margin-bottom: 12px;
    color: #4f5967;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.legal-sidebar a {
    display: block;
    padding: 12px 10px;
    border-radius: 8px;
    color: #717c8a;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition:
        color .2s ease,
        background .2s ease;
}

.legal-sidebar a:hover,
.legal-sidebar a.active {
    color: #e1e6ec;
    background: rgba(255,255,255,.05);
}


/* =========================================================
   LEGAL NOTE
========================================================= */

.legal-note {
    margin-top: 40px !important;
    padding: 22px 24px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: rgba(255,255,255,.025);
}

.legal-note strong {
    display: block;
    margin-bottom: 10px;
    color: #dce2e8;
    font-size: 12px;
}

.legal-note p {
    margin: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .legal-sidebar {
        position: static;
        order: -1;
    }

}


@media (max-width: 600px) {

    .legal-hero {
        padding: 115px 0 70px;
    }

    .legal-hero-content h1 {
        letter-spacing: -2px;
    }

    .legal-content h2 {
        font-size: 30px;
    }

}



/* =========================================================
   TITAN PRODUCTS PAGE
========================================================= */

.products-hero {
    position: relative;
    overflow: hidden;
    padding: 160px 0 110px;
    background: #05080d;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.products-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.products-hero h1 {
    margin: 22px 0;
    color: #fff;
    font-size: clamp(46px, 7vw, 82px);
    line-height: 1;
    letter-spacing: -4px;
    font-weight: 900;
}

.products-hero h1 span {
    color: #697485;
}

.products-hero p {
    max-width: 680px;
    margin: 0 auto 35px;
    color: #788391;
    font-size: 16px;
    line-height: 1.85;
}

.products-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.products-hero-glow-one {
    width: 400px;
    height: 400px;
    top: -220px;
    left: 10%;
    background: rgba(255,255,255,.035);
}

.products-hero-glow-two {
    width: 350px;
    height: 350px;
    right: 5%;
    bottom: -220px;
    background: rgba(255,255,255,.025);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.products-section {
    background: #080c12;
}

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

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    background: rgba(255,255,255,.018);
    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.025);
}

.product-card-main {
    border-color: rgba(255,255,255,.12);
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255,255,255,.055),
            transparent 42%
        ),
        rgba(255,255,255,.025);
}

.product-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.product-status {
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 5px;
    color: #aab3bf;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-status-development {
    color: #626d7b;
}

.product-category {
    display: block;
    margin-bottom: 10px;
    color: #4f5967;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.product-card h3 {
    margin: 0 0 14px;
    color: #e1e6ec;
    font-size: 27px;
    letter-spacing: -.8px;
}

.product-card p {
    max-width: 500px;
    margin: 0;
    color: #737e8c;
    font-size: 13px;
    line-height: 1.8;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 25px;
}

.product-tags span {
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 5px;
    color: #5f6977;
    font-size: 8px;
}

.product-card-footer {
    margin-top: auto;
    padding-top: 30px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #9ca6b3;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.product-link:hover {
    color: #fff;
}

.product-link span {
    font-size: 15px;
}


/* =========================================================
   ECOSYSTEM FLOW
========================================================= */

.ecosystem-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ecosystem-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    text-align: center;
}

.ecosystem-flow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    color: #dce2e8;
    font-size: 11px;
    font-weight: 900;
}

.ecosystem-flow-item strong {
    margin-bottom: 5px;
    color: #cbd2da;
    font-size: 11px;
}

.ecosystem-flow-item span {
    color: #596473;
    font-size: 9px;
}

.ecosystem-flow-line {
    width: 65px;
    height: 1px;
    background: rgba(255,255,255,.09);
}


/* =========================================================
   PRODUCT BENEFITS
========================================================= */

.products-benefit-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.products-benefit-content h2 {
    margin: 18px 0 25px;
    color: #fff;
    font-size: clamp(34px, 5vw, 55px);
    line-height: 1.08;
    letter-spacing: -2.5px;
}

.products-benefit-content p {
    margin-bottom: 18px;
    color: #737e8c;
    font-size: 14px;
    line-height: 1.85;
}

.products-benefit-content .button {
    margin-top: 15px;
}

.products-benefit-list {
    border-top: 1px solid rgba(255,255,255,.07);
}

.benefit-row {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.benefit-number {
    color: #4e5866;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.benefit-row strong {
    display: block;
    margin-bottom: 7px;
    color: #d3d9e0;
    font-size: 13px;
}

.benefit-row span {
    display: block;
    color: #687381;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

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

    .products-benefit-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .ecosystem-flow {
        flex-wrap: wrap;
    }

    .ecosystem-flow-line {
        width: 30px;
    }

}


@media (max-width: 600px) {

    .products-hero {
        padding: 125px 0 80px;
    }

    .products-hero h1 {
        letter-spacing: -2.5px;
    }

    .product-card {
        min-height: 350px;
        padding: 25px;
    }

    .ecosystem-flow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
    }

    .ecosystem-flow-line {
        display: none;
    }

}



.footer-visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: rgba(255,255,255,.025);
    font-size: 13px;
}

.footer-visitor-counter .visitor-counter-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    opacity: .55;
}

.footer-visitor-counter strong {
    font-size: 14px;
    font-weight: 800;
}

.footer-visitor-counter > span:last-child {
    opacity: .45;
}