@font-face {
    font-family: 'IRANSansX';
    src: url('../fonts/iranSansX/woff2/IRANSansXFaNum_Light.woff2') format('woff2'),
         url('../fonts/iranSansX/woff/IRANSansXFaNum_Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansX';
    src: url('../fonts/iranSansX/woff2/IRANSansXFaNum_Regular.woff2') format('woff2'),
         url('../fonts/iranSansX/woff/IRANSansXFaNum_Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansX';
    src: url('../fonts/iranSansX/woff2/IRANSansXFaNum_Medium.woff2') format('woff2'),
         url('../fonts/iranSansX/woff/IRANSansXFaNum_Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansX';
    src: url('../fonts/iranSansX/woff2/IRANSansXFaNum_DemiBold.woff2') format('woff2'),
         url('../fonts/iranSansX/woff/IRANSansXFaNum_DemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansX';
    src: url('../fonts/iranSansX/woff2/IRANSansXFaNum_Bold.woff2') format('woff2'),
         url('../fonts/iranSansX/woff/IRANSansXFaNum_Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansX';
    src: url('../fonts/iranSansX/woff2/IRANSansXFaNum_ExtraBold.woff2') format('woff2'),
         url('../fonts/iranSansX/woff/IRANSansXFaNum_ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansX';
    src: url('../fonts/iranSansX/woff2/IRANSansXFaNum_Black.woff2') format('woff2'),
         url('../fonts/iranSansX/woff/IRANSansXFaNum_Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #11B9A4;
    --primary-2: #38D9C5;
    --accent: #1E3A5F;
    --accent-2: #355E93;
    --bg: #F7FAFC;
    --surface: rgba(255, 255, 255, .72);
    --surface-solid: #fff;
    --text: #07131C;
    --muted: #5f7284;
    --dark: #07131C;
    --dark-2: #0F172A;
    --line: rgba(17, 185, 164, .18);
    --shadow: 0 30px 90px rgba(30, 58, 95, .16);
    --radius: 28px;
    --font: 'IRANSansX', Tahoma, Arial, sans-serif;
}

[data-theme="dark"] {
    --bg: #07131C;
    --surface: rgba(15, 23, 42, .68);
    --surface-solid: #0F172A;
    --text: #F7FAFC;
    --muted: #b6c5d4;
    --line: rgba(56, 217, 197, .18);
    --shadow: 0 30px 90px rgba(0, 0, 0, .35)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
    transition: background .45s ease, color .45s ease
}

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

button,
input,
textarea,
select {
    font-family: inherit
}

.skip-link {
    position: fixed;
    top: -60px;
    right: 16px;
    background: var(--primary);
    color: white;
    padding: 12px 16px;
    border-radius: 999px;
    z-index: 9999
}

.skip-link:focus {
    top: 16px
}

.container {
    max-width: 1180px
}

.center {
    text-align: center
}

.narrow {
    max-width: 920px
}

.section-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 130px 0
}

.dark-section {
    background: linear-gradient(180deg, var(--dark), var(--dark-2));
    color: #fff
}

.label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(17, 185, 164, .1);
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 18px
}

.label:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 22px var(--primary)
}

.label.muted {
    color: #cceee9;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12)
}

.section-title {
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.08;
    letter-spacing: -.055em;
    font-weight: 900;
    margin: 0 0 24px
}

.section-head {
    margin-bottom: 56px
}

.section-head.center {
    max-width: 860px;
    margin-inline: auto;
    text-align: center
}

.section-head p, .story-copy p, .network p, .analytics p, .final-cta p {
    font-size: clamp(17px, 2vw, 22px);
    line-height: 2;
    color: var(--muted)
}

.dark-section p {
    color: rgba(255, 255, 255, .72)
}

.preloader {
    position: fixed;
    inset: 0;
    background: #07131C;
    z-index: 10000;
    display: grid;
    place-items: center;
    color: #fff;
    overflow: hidden
}

.preloader__orb {
    position: absolute;
    width: 55vw;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #38D9C5, transparent 26%), radial-gradient(circle at 60% 65%, #355E93, transparent 34%);
    filter: blur(24px);
    opacity: .55;
    animation: pulse 3s ease-in-out infinite
}

.preloader__content {
    position: relative;
    width: min(420px, 80vw);
    text-align: center
}

.preloader__eyebrow {
    display: block;
    color: #38D9C5;
    font-weight: 900;
    font-size: 26px;
    margin-bottom: 12px
}

.preloader__content strong {
    font-size: 20px
}

.preloader__bar {
    height: 4px;
    background: rgba(255, 255, 255, .12);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 22px
}

.preloader__bar span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    border-radius: 999px
}

@keyframes pulse {
    50% {
        transform: scale(1.12);
        opacity: .8
    }
}

.cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    display: none
}

.cursor-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary)
}

.cursor-ring {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(17, 185, 164, .5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, border-color .2s
}

.cursor-ring.is-hover {
    width: 62px;
    height: 62px;
    border-color: rgba(56, 217, 197, .8)
}

/*@media (hover: hover) and (pointer: fine) {*/
/*    .cursor {*/
/*        display: block*/
/*    }*/

/*    body {*/
/*        cursor: none*/
/*    }*/

/*    a, button {*/
/*        cursor: none*/
/*    }*/
/*}*/

.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    z-index: 9997;
    background: transparent
}

.scroll-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent-2))
}

#aurora-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    opacity: .42
}

.site-header {
    position: fixed;
    top: 18px;
    left: 24px;
    right: 24px;
    z-index: 999;
    transition: .35s ease
}

.ejaaze-nav {
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .54);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    box-shadow: 0 18px 60px rgba(30, 58, 95, .08)
}

[data-theme="dark"] .ejaaze-nav {
    background: rgba(7, 19, 28, .6);
    border-color: rgba(255, 255, 255, .12)
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900
}

.brand-logo {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 auto
}

.brand-text {
    font-size: 20px
}

.nav-pill {
    gap: 4px;
    background: rgba(255, 255, 255, .38);
    padding: 5px;
    border-radius: 999px;
    border: 1px solid rgba(30, 58, 95, .08)
}

[data-theme="dark"] .nav-pill {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .08)
}

.nav-link {
    border-radius: 999px !important;
    padding: 8px 15px !important;
    color: var(--muted) !important;
    font-weight: 700;
    font-size: 14px
}

.nav-link:hover, .nav-link.active {
    background: var(--surface-solid);
    color: var(--text) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--surface-solid);
    color: var(--text);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08)
}

.btn-ejaaze, .btn-hero {
    border: 0 !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 900;
    box-shadow: 0 18px 48px rgba(17, 185, 164, .26)
}

.navbar-toggler {
    border: 0 !important;
    box-shadow: none !important
}

.navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px;
    border-radius: 2px
}

.hero {
    isolation: isolate;
    overflow: hidden;
    padding-top: 160px
}

/*.hero:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: radial-gradient(circle at 15% 12%, rgba(17, 185, 164, .24), transparent 34%), radial-gradient(circle at 85% 22%, rgba(30, 58, 95, .16), transparent 35%), linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(247, 250, 252, 0));*/
/*    z-index: -1*/
/*}*/

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url('../images/noise.svg');
    opacity: .24;
    mix-blend-mode: multiply;
    z-index: -1
}

.hero-grid {
    display: grid;
    grid-template-columns:1fr minmax(420px, 560px);
    gap: 70px;
    align-items: center
}

.hero-title {
    font-size: clamp(43.2px, 6.8vw, 92.8px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -.075em;
    margin: 0 0 26px;
    background: linear-gradient(135deg, var(--text), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero-lead {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 2;
    color: var(--muted);
    max-width: 660px
}

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

.btn-ghost {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 22px;
    background: var(--surface);
    color: var(--text);
    font-weight: 900;
    backdrop-filter: blur(16px)
}

.hero-stage {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    perspective: 1400px
}

.product-shell, .dashboard-device {
    position: relative;
    width: 100%;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .5));
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: var(--shadow);
    backdrop-filter: blur(26px);
    transform-style: preserve-3d;
    overflow: hidden
}

[data-theme="dark"] .product-shell, [data-theme="dark"] .dashboard-device {
    background: linear-gradient(180deg, rgba(15, 23, 42, .85), rgba(15, 23, 42, .55));
    border-color: rgba(255, 255, 255, .12)
}

.product-shell {
    padding: 18px;
    transform: rotateY(-10deg) rotateX(6deg)
}

.window-bar {
    display: flex;
    gap: 7px;
    margin-bottom: 16px
}

.window-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d7e1ea
}

.dashboard-preview {
    display: grid;
    grid-template-columns:150px 1fr;
    min-height: 385px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(247, 250, 252, .8)
}

[data-theme="dark"] .dashboard-preview {
    background: rgba(7, 19, 28, .72)
}

.dashboard-preview aside {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 22px;
    border-left: 1px solid var(--line);
    background: rgba(17, 185, 164, .06)
}

.mini-logo {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--primary), var(--accent))
}

.dashboard-preview aside span {
    color: var(--muted);
    font-weight: 700
}

.dashboard-preview section {
    padding: 22px
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.preview-header button {
    border: 0;
    border-radius: 999px;
    background: rgba(17, 185, 164, .12);
    color: var(--primary);
    padding: 7px 13px;
    font-weight: 900
}

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

.metric, .chart {
    background: var(--surface-solid);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    min-height: 116px
}

.metric small {
    color: var(--muted)
}

.metric b {
    display: block;
    font-size: 32px;
    margin-top: 8px
}

.wide {
    grid-column: span 2
}

.chart {
    grid-column: span 2;
    height: 120px;
    display: flex;
    align-items: end;
    gap: 10px
}

.chart i {
    display: block;
    flex: 1;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary-2), var(--accent-2));
    height: 40%
}

.chart i:nth-child(2) {
    height: 72%
}

.chart i:nth-child(3) {
    height: 52%
}

.chart i:nth-child(4) {
    height: 88%
}

.chart i:nth-child(5) {
    height: 62%
}

.floating-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .55);
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 40px rgba(30, 58, 95, .15);
    font-weight: 900
}

.chip-1 {
    top: 64px;
    right: -10px
}

.chip-2 {
    bottom: 110px;
    left: -18px
}

.chip-3 {
    bottom: 44px;
    right: 45px
}

.scroll-cue {
    position: absolute;
    bottom: 34px;
    right: 50%;
    transform: translateX(50%);
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px
}

.scroll-cue span {
    width: 24px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    position: relative
}

.scroll-cue span:before {
    content: '';
    position: absolute;
    top: 7px;
    right: 50%;
    width: 4px;
    height: 8px;
    border-radius: 4px;
    background: var(--primary);
    transform: translateX(50%);
    animation: wheel 1.4s infinite
}

@keyframes wheel {
    50% {
        transform: translate(50%, 12px);
        opacity: .3
    }
}

.problem {
    overflow: hidden
}

.problem-words {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px
}

.problem-words span {
    font-size: clamp(36px, 7vw, 32px);
    font-weight: 900;
    letter-spacing: -.06em;
    color: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    padding: .1em .38em;
    background: rgba(255, 255, 255, .03)
}

.story-layout {
    display: grid;
    grid-template-columns:minmax(300px, 430px) 1fr;
    gap: 72px;
    align-items: center
}

.dashboard-device {
    padding: 20px;
    /*min-height: 540px*/
}

.device-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, var(--primary), transparent 58%);
    filter: blur(60px);
    opacity: .25
}

.device-screen {
    position: relative;
    border-radius: 24px;
    background: var(--surface-solid);
    border: 1px solid var(--line);
    padding: 22px;
    /*min-height: 500px*/
}

.screen-top {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    margin-bottom: 18px
}

.bento-grid {
    display: grid;
    grid-template-columns:1.2fr 1fr 1fr;
    grid-auto-rows: 142px;
    gap: 14px
}

.bento {
    position: relative;
    background: linear-gradient(180deg, rgba(17, 185, 164, .09), rgba(30, 58, 95, .04));
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    overflow: hidden
}

.bento small {
    color: var(--muted);
    font-weight: 800
}

.bento strong {
    display: block;
    font-size: 40px;
    margin-top: 14px
}

.bento.large {
    grid-row: span 2
}

.bento.tall {
    grid-row: span 1
}

.bento.wide {
    grid-column: span 2
}

.spark {
    position: absolute;
    right: 20px;
    left: 20px;
    bottom: 24px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(17, 185, 164, .16));
    border-radius: 18px
}

.avatar-line {
    display: flex;
    gap: 8px;
    margin: 22px 0
}

.avatar-line i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    border: 3px solid var(--surface-solid)
}

.line-chart {
    position: absolute;
    inset: auto 20px 22px 20px;
    height: 80px
}

.line-chart span {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 45%, var(--primary) 45% 49%, transparent 49%), linear-gradient(45deg, transparent 45%, var(--accent-2) 45% 49%, transparent 49%);
    opacity: .7
}

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

.step-card, .feature-card, .stat-card, .faq-item, .testimonial-swiper blockquote {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 18px 60px rgba(30, 58, 95, .07);
    backdrop-filter: blur(22px)
}

.step-card span {
    color: var(--primary);
    font-weight: 900;
    font-size: 14px
}

.step-card h3, .feature-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin: 18px 0 12px
}

.step-card p, .feature-card p {
    color: var(--muted);
    line-height: 1.9
}

.network-grid {
    display: grid;
    grid-template-columns:420px 1fr;
    gap: 80px;
    align-items: center
}

.network-map svg {
    width: 100%;
    filter: drop-shadow(0 30px 80px rgba(17, 185, 164, .18))
}

.net-line {
    stroke: url(#netg);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 10 10;
    animation: dash 16s linear infinite
}

.node {
    fill: #102A43;
    stroke: #38D9C5;
    stroke-width: 3
}

.main-node {
    fill: url(#netg);
    stroke: white
}

@keyframes dash {
    to {
        stroke-dashoffset: -220
    }
}

.horizontal-showcase {
    overflow: hidden
}

.horizontal-pin {
    width: 100%
}

.horizontal-intro {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
    padding-inline: 24px
}

.horizontal-intro h2 {
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 900;
    letter-spacing: -.06em
}

.feature-rail {
    display: flex;
    gap: 22px;
    padding-inline: calc((100vw - 1180px) / 2);
    will-change: transform
}

.feature-card {
    min-width: 360px;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.feature-card i {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 32px
}

.analytics-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    align-items: center
}

.stat-cards {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

.stat-card span {
    display: block;
    font-size: 54px;
    font-weight: 900;
    letter-spacing: -.05em
}

.stat-card small {
    color: var(--muted);
    font-weight: 800
}

.stat-graph {
    grid-column: span 2;
    height: 230px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    align-items: end;
    gap: 14px;
    padding: 28px;
    box-shadow: var(--shadow)
}

.stat-graph i {
    flex: 1;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary-2), var(--accent-2));
    height: 35%
}

.stat-graph i:nth-child(2) {
    height: 62%
}

.stat-graph i:nth-child(3) {
    height: 48%
}

.stat-graph i:nth-child(4) {
    height: 88%
}

.stat-graph i:nth-child(5) {
    height: 70%
}

.stat-graph i:nth-child(6) {
    height: 96%
}

.compare-orbit {
    position: relative;
    display: grid;
    grid-template-columns:1fr auto 1fr;
    gap: 28px;
    align-items: center;
    margin-top: 40px
}

.compare-card {
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
    border-radius: 32px;
    padding: 34px;
    min-height: 220px
}

.compare-card h3 {
    font-weight: 900
}

.compare-core {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 20%, var(--primary-2), var(--primary) 45%, var(--accent));
    box-shadow: 0 0 90px rgba(17, 185, 164, .45);
    font-size: 32px;
    font-weight: 900
}

.testimonial-swiper {
    padding: 20px 10px 58px
}

.testimonial-swiper blockquote {
    min-height: 240px;
    margin: 0;
    font-size: 24px;
    line-height: 2
}

.testimonial-swiper cite {
    display: block;
    margin-top: 26px;
    color: var(--primary);
    font-style: normal;
    font-weight: 900
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important
}

.faq-grid {
    display: grid;
    grid-template-columns:400px 1fr;
    gap: 70px
}

.faq-list {
    display: grid;
    gap: 14px
}

.faq-item {
    padding: 0;
    overflow: hidden
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 26px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 19px;
    font-weight: 900;
    text-align: right
}

.faq-item i {
    transition: .25s
}

.faq-item div {
    display: grid;
    grid-template-rows:0fr;
    transition: grid-template-rows .35s ease
}

.faq-item p {
    overflow: hidden;
    margin: 0;
    padding: 0 26px;
    color: var(--muted);
    line-height: 2
}

.faq-item.active div {
    grid-template-rows:1fr
}

.faq-item.active p {
    padding-bottom: 24px
}

.faq-item.active i {
    transform: rotate(45deg)
}

.final-cta h2 {
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 900;
    letter-spacing: -.07em;
    line-height: 1.05;
    margin-bottom: 22px
}

.final-cta p {
    max-width: 720px;
    margin: 0 auto 34px
}

.site-footer {
    padding: 70px 0 24px;
    background: var(--surface-solid);
    border-top: 1px solid var(--line)
}

.footer-grid {
    display: grid;
    grid-template-columns:1.6fr 1fr 1fr;
    gap: 40px
}

.footer-grid a {
    display: block;
    color: var(--muted);
    margin-top: 12px
}

.footer-brand {
    margin-bottom: 12px;
    color: var(--text)
}

.footer-brand .brand-logo {
    width: 48px;
    height: 48px
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 50px;
    padding-top: 22px;
    color: var(--muted);
    font-size: 14px
}

.ripple {
    position: relative;
    overflow: hidden
}

.ripple span.ripple-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple .55s linear;
    background: rgba(255, 255, 255, .5);
    pointer-events: none
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0
    }
}

@media (max-width: 991px) {
    .site-header {
        left: 12px;
        right: 12px
    }

    .ejaaze-nav {
        border-radius: 20px
    }

    .navbar-collapse {
        padding-top: 18px
    }

    .nav-pill {
        display: block;
        background: transparent;
        border: 0
    }

    .nav-actions {
        margin-top: 10px
    }

    .hero-grid, .story-layout, .network-grid, .analytics-grid, .faq-grid {
        grid-template-columns:1fr;
        gap: 42px
    }

    .hero-stage {
        min-height: 470px
    }

    .product-shell {
        transform: none
    }

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

    .bento-grid {
        grid-template-columns:1fr 1fr
    }

    .bento.large, .bento.tall, .bento.wide {
        grid-column: auto;
        grid-row: auto
    }

    .compare-orbit {
        grid-template-columns:1fr
    }

    .compare-core {
        margin: auto;
        order: -1
    }

    .feature-rail {
        padding-inline: 24px;
        overflow-x: auto;
        scroll-snap-type: x mandatory
    }

    .feature-card {
        scroll-snap-align: center;
        min-width: 80vw
    }

    .section-full {
        padding: 100px 0
    }

    .cursor {
        display: none !important
    }

    body {
        cursor: auto
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 54px
    }

    .section-title {
        font-size: 42px
    }

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

    .dashboard-preview aside {
        display: none
    }

    .preview-grid, .stat-cards {
        grid-template-columns:1fr
    }

    .wide, .chart, .stat-graph {
        grid-column: auto
    }

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

    .stats-row {
        display: block
    }

    .floating-chip {
        display: none
    }

    .product-shell, .dashboard-device {
        border-radius: 24px
    }

    .hero-actions {
        display: grid
    }

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

    .problem-words span {
        font-size: 34px
    }

    .feature-card {
        min-width: 86vw
    }

    .site-header {
        top: 10px
    }

    .hero {
        padding-top: 140px
    }
}

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

    .cursor {
        display: none !important
    }
}
