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

:root {
    --bg: #040816;
    --bg-2: #091425;
    --bg-3: #0c1020;
    --bg-4: #050916;
    --text: #eef4ff;
    --muted: rgba(238, 244, 255, 0.74);
    --muted-2: rgba(238, 244, 255, 0.52);
    --line: rgba(255, 255, 255, 0.09);
    --line-soft: rgba(255, 255, 255, 0.05);
    --blue: #20d2ff;
    --blue-2: #7feaff;
    --purple: #8f46ff;
    --purple-2: #c89dff;
    --gold: #f1c98a;
    --glass: rgba(255, 255, 255, 0.045);
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
    --container: 1240px;
    --radius-xl: 30px;
    --radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 10%, rgba(32, 210, 255, 0.14), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(143, 70, 255, 0.16), transparent 22%),
        radial-gradient(circle at 50% 82%, rgba(32, 210, 255, 0.08), transparent 30%),
        linear-gradient(135deg, #02040c 0%, #07111d 44%, #04050d 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        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: 58px 58px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    pointer-events: none;
    opacity: 0.18;
    z-index: 0;
}

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

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

body.is-loaded .site-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(32,210,255,0.08), transparent 28%),
        linear-gradient(180deg, rgba(4,8,22,0.96), rgba(4,8,22,0.98));
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader-mark {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 0 60px rgba(32,210,255,0.10),
        0 0 100px rgba(143,70,255,0.08);
    animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader-mark img {
    width: 72%;
    height: auto;
    object-fit: contain;
}

.loader-line {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    border-top-color: rgba(32,210,255,0.7);
    animation: loaderSpin 1.3s linear infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes loaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 20% 20%, #fff 0.6px, transparent 0.7px),
        radial-gradient(circle at 80% 30%, #fff 0.6px, transparent 0.7px),
        radial-gradient(circle at 40% 80%, #fff 0.6px, transparent 0.7px),
        radial-gradient(circle at 70% 70%, #fff 0.6px, transparent 0.7px);
    background-size: 180px 180px;
}

.page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.34;
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-a {
    width: 340px;
    height: 340px;
    top: 7%;
    left: 5%;
    background: rgba(32, 210, 255, 0.18);
}

.orb-b {
    width: 420px;
    height: 420px;
    top: 14%;
    right: 6%;
    background: rgba(143, 70, 255, 0.18);
    animation-delay: 2s;
}

.orb-c {
    width: 280px;
    height: 280px;
    bottom: 8%;
    left: 46%;
    background: rgba(32, 210, 255, 0.12);
    animation-delay: 4s;
}

.orb-d {
    width: 220px;
    height: 220px;
    bottom: 18%;
    right: 16%;
    background: rgba(200, 157, 255, 0.10);
    animation-delay: 5s;
}

.bg-beam {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.10;
    mix-blend-mode: screen;
}

.beam-a {
    top: 0;
    left: -8%;
    background: radial-gradient(circle, rgba(32,210,255,0.9), transparent 60%);
}

.beam-b {
    top: -4%;
    right: -10%;
    background: radial-gradient(circle, rgba(143,70,255,0.9), transparent 60%);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.12;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-28px) scale(1.06);
    }
}

.cursor-glow {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(32, 210, 255, 0.18) 0%, rgba(32, 210, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    transition: transform 0.08s linear;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), #58bdff, var(--purple));
    z-index: 100;
    box-shadow: 0 0 18px rgba(32, 210, 255, 0.6);
}

.container {
    width: min(calc(100% - 34px), var(--container));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.glass {
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header {
    padding-top: 14px;
    position: sticky;
    top: 0;
    z-index: 30;
}

.navbar {
    min-height: 82px;
    border-radius: 26px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 210px;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 0 20px rgba(32, 210, 255, 0.14))
        drop-shadow(0 0 34px rgba(143, 70, 255, 0.08));
    transition: transform 0.28s ease, filter 0.28s ease;
}

.logo img:hover {
    transform: scale(1.04);
}

.logo-xl img {
    height: 86px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 999px;
    transition: 0.25s ease;
}

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

.nav a {
    color: rgba(238, 244, 255, 0.78);
    font-size: 0.94rem;
    font-weight: 600;
    transition: 0.25s ease;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    transition: width 0.25s ease;
}

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

.nav a:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    will-change: transform;
    cursor: pointer;
    letter-spacing: -0.01em;
    font-size: 0.96rem;
}

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

.btn-primary {
    color: white;
    background: linear-gradient(135deg, #35cfff 0%, #5da8ff 36%, #8f46ff 100%);
    box-shadow:
        0 16px 34px rgba(96, 93, 255, 0.24),
        0 0 24px rgba(53, 207, 255, 0.10);
}

.btn-secondary {
    background: rgba(255,255,255,0.035);
    border-color: var(--line);
    color: var(--text);
}

.btn-full {
    width: 100%;
    margin-top: 22px;
}

.hero {
    min-height: calc(100vh - 92px);
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 58px;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 34px;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #b8ebff;
    font-size: 0.71rem;
    font-weight: 700;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 0 18px rgba(32, 210, 255, 0.8);
}

.hero-copy h1 {
    margin-top: 16px;
    font-size: clamp(2.45rem, 4vw, 4.3rem);
    line-height: 1;
    letter-spacing: -0.07em;
    max-width: 11.5ch;
    text-wrap: balance;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #8fe8ff 35%, #c7a3ff 70%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    margin-top: 24px;
    max-width: 58ch;
    color: rgba(238, 244, 255, 0.76);
    line-height: 1.85;
    font-size: 0.98rem;
}

.hero-text strong {
    color: var(--text);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.proof-item {
    padding: 19px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
}

.proof-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(32,210,255,0.05), transparent 45%, rgba(143,70,255,0.05));
    pointer-events: none;
}

.proof-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.proof-item span {
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 650px;
}

.logo-stage {
    width: min(100%, 670px);
    border-radius: 34px;
    overflow: hidden;
    transform-style: preserve-3d;
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.logo-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(32,210,255,0.08), transparent 40%, rgba(143,70,255,0.08));
    pointer-events: none;
}

.logo-stage-top {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(255,255,255,0.025);
}

.logo-stage-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
}

.logo-stage-body {
    padding: 28px;
}

.logo-spotlight {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 40%, transparent 70%);
    border: 1px solid var(--line-soft);
}

.logo-spotlight-xl {
    min-height: 430px;
}

.halo {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.35;
    z-index: 0;
}

.halo-a {
    width: 230px;
    height: 230px;
    background: rgba(32, 210, 255, 0.22);
    animation: haloFloat 5s ease-in-out infinite;
}

.halo-b {
    width: 320px;
    height: 320px;
    background: rgba(143, 70, 255, 0.18);
    animation: haloFloat 7s ease-in-out infinite reverse;
}

@keyframes haloFloat {
    0%, 100% { transform: scale(1) translateY(0px); }
    50% { transform: scale(1.08) translateY(-8px); }
}

.logo-core {
    position: relative;
    z-index: 3;
    width: 180px;
    height: 180px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:
        0 0 60px rgba(32, 210, 255, 0.14),
        0 0 90px rgba(143, 70, 255, 0.09),
        inset 0 1px 0 rgba(255,255,255,0.08);
    animation: pulseCore 4.5s ease-in-out infinite;
}

.logo-core-xl {
    width: 290px;
    height: 290px;
    border-radius: 40px;
}

.logo-core img {
    width: 78%;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 0 18px rgba(32, 210, 255, 0.22))
        drop-shadow(0 0 30px rgba(143, 70, 255, 0.14));
}

@keyframes pulseCore {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.03);
    }
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.09);
    z-index: 1;
}

.ring-1 {
    width: 270px;
    height: 270px;
    animation: spinSlow 18s linear infinite;
}

.ring-2 {
    width: 360px;
    height: 360px;
    border-style: dashed;
    animation: spinReverse 24s linear infinite;
}

.ring-3 {
    width: 470px;
    height: 470px;
    opacity: 0.6;
    animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.floating-badge {
    position: absolute;
    padding: 10px 15px;
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--text);
    z-index: 4;
    white-space: nowrap;
    animation: floatBadge 5s ease-in-out infinite;
}

.badge-a {
    top: 18%;
    left: 8%;
}

.badge-b {
    top: 26%;
    right: 7%;
    animation-delay: 1s;
}

.badge-c {
    bottom: 18%;
    left: 16%;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.visual-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.mini-panel {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.mini-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.10);
}

.mini-panel em {
    font-style: normal;
    color: #b8ebff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.mini-panel h3 {
    margin-top: 9px;
    font-size: 0.98rem;
    line-height: 1.2;
}

.mini-panel p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.89rem;
    line-height: 1.55;
}

.floating-metric {
    position: absolute;
    z-index: 4;
    padding: 15px 17px;
    border-radius: 20px;
    min-width: 175px;
    animation: metricFloat 6s ease-in-out infinite;
}

.metric-a {
    top: 7%;
    right: -2%;
}

.metric-b {
    bottom: 8%;
    left: -4%;
    animation-delay: 1.2s;
}

.floating-metric strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.floating-metric span {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

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

.section {
    padding: 84px 0;
}

.stats-section {
    padding-top: 10px;
}

.stats-bar {
    border-radius: 28px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.stat-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--line-soft);
}

.stat-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.96rem;
}

.stat-item span {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.58;
}

.section-head {
    max-width: 860px;
    margin-bottom: 34px;
}

.section-head h2 {
    margin-top: 12px;
    font-size: clamp(1.7rem, 3vw, 2.65rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    max-width: 17ch;
}

.section-head p {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.82;
    max-width: 72ch;
    font-size: 0.97rem;
}

.hero-copy h1,
.section-head h2,
.price {
    text-wrap: balance;
}

.cards-grid,
.pricing-grid,
.faq-grid {
    display: grid;
    gap: 16px;
}

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

.cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    padding: 24px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.09);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32,210,255,0.06), transparent 40%, rgba(143,70,255,0.06));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: white;
    background: linear-gradient(135deg, rgba(32,210,255,0.18), rgba(143,70,255,0.18));
    border: 1px solid rgba(255,255,255,0.08);
}

.service-card h3 {
    font-size: 1.02rem;
    line-height: 1.3;
}

.service-card p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.93rem;
}

/* EXAMPLES */

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

.example-card {
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    position: relative;
}

.example-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.10);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(255,255,255,0.03);
}

.example-preview {
    position: relative;
    padding: 16px;
    min-height: 360px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

.example-preview-luxury {
    background:
        radial-gradient(circle at 18% 18%, rgba(241, 201, 138, 0.20), transparent 30%),
        radial-gradient(circle at 82% 20%, rgba(143, 70, 255, 0.14), transparent 28%),
        linear-gradient(135deg, #151008 0%, #0b111d 100%);
}

.example-preview-corporate {
    background:
        radial-gradient(circle at 20% 20%, rgba(32,210,255,0.18), transparent 30%),
        radial-gradient(circle at 85% 18%, rgba(143,70,255,0.10), transparent 28%),
        linear-gradient(135deg, #07101b 0%, #101a30 100%);
}

.example-preview-creative {
    background:
        radial-gradient(circle at 22% 18%, rgba(200,157,255,0.20), transparent 28%),
        radial-gradient(circle at 80% 82%, rgba(32,210,255,0.12), transparent 26%),
        linear-gradient(135deg, #09111f 0%, #131327 100%);
}

.example-browser-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.example-browser-bar span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,0.42);
}

.example-navbar,
.example-hero,
.example-centered-hero,
.example-feature-row,
.example-stat-row,
.example-mini-cards {
    position: relative;
    z-index: 2;
}

.example-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 14px;
}

.example-logo-chip {
    width: 78px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0.88), rgba(255,255,255,0.24));
}

.example-nav-links {
    display: flex;
    gap: 8px;
}

.example-nav-links span {
    width: 34px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
}

.example-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px;
    padding: 15px;
    border-radius: 22px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.07);
}

.example-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.example-kicker {
    width: 72px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    margin-bottom: 12px;
}

.example-title {
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.24));
    margin-bottom: 9px;
}

.example-text {
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    margin-bottom: 8px;
}

.w-90 { width: 90%; }
.w-88 { width: 88%; }
.w-80 { width: 80%; }
.w-78 { width: 78%; }
.w-76 { width: 76%; }
.w-72 { width: 72%; }
.w-70 { width: 70%; }
.w-62 { width: 62%; }
.w-58 { width: 58%; }
.w-54 { width: 54%; }
.w-44 { width: 44%; }

.example-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.example-actions span {
    width: 84px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.07);
}

.media-luxury {
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
        radial-gradient(circle at 50% 25%, rgba(241, 201, 138, 0.22), transparent 45%),
        linear-gradient(135deg, #241a0e 0%, #151926 100%);
    border: 1px solid rgba(255,255,255,0.08);
    min-height: 182px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.example-feature-row,
.example-stat-row,
.example-mini-cards {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.example-feature-row,
.example-stat-row {
    grid-template-columns: repeat(3, 1fr);
}

.example-mini-cards {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 14px;
}

.example-feature-row span,
.example-stat-row span,
.example-mini-cards span {
    min-height: 58px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.example-dashboard {
    border-radius: 20px;
    padding: 14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    min-height: 182px;
}

.dashboard-top {
    width: 72%;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    margin-bottom: 14px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.dashboard-grid span {
    min-height: 64px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.example-centered-hero {
    padding: 18px 16px 14px;
    border-radius: 22px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.07);
    text-align: center;
}

.portrait-ring {
    width: 104px;
    height: 104px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
    box-shadow:
        0 0 0 10px rgba(255,255,255,0.025),
        0 0 0 22px rgba(255,255,255,0.012);
}

.portrait-core {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 30%, rgba(255,255,255,0.32), transparent 48%),
        linear-gradient(135deg, rgba(32,210,255,0.20), rgba(143,70,255,0.20));
    border: 1px solid rgba(255,255,255,0.08);
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.center-actions {
    justify-content: center;
}

.example-content {
    padding: 22px;
}

.example-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.example-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #b8ebff;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.example-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: rgba(255,255,255,0.56);
    letter-spacing: 0.14em;
}

.example-content h3 {
    font-size: 1.05rem;
    line-height: 1.3;
}

.example-content p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.93rem;
}

.example-list {
    list-style: none;
    margin-top: 16px;
    display: grid;
    gap: 9px;
}

.example-list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.62;
}

.example-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 0 14px rgba(32, 210, 255, 0.45);
}

.examples-note {
    margin-top: 20px;
    padding: 22px 24px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.examples-note h3 {
    margin-top: 12px;
    font-size: 1.03rem;
    line-height: 1.42;
    max-width: 48ch;
}

.examples-note p {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 72ch;
    font-size: 0.94rem;
}

.showcase-section {
    padding-top: 0;
}

.section-showcase {
    padding: 30px;
    border-radius: 34px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.showcase-copy h2 {
    margin-top: 12px;
    font-size: clamp(1.7rem, 2.8vw, 2.45rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    max-width: 16ch;
}

.showcase-copy p {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.84;
    max-width: 60ch;
    font-size: 0.96rem;
}

.showcase-stack {
    display: grid;
    gap: 14px;
}

.stack-card {
    padding: 20px;
    border-radius: 24px;
}

.stack-card span {
    display: inline-block;
    color: #b8ebff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    margin-bottom: 8px;
}

.stack-card strong {
    font-size: 1rem;
    line-height: 1.3;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.timeline-card {
    padding: 22px;
    border-radius: 24px;
    position: relative;
    transition: transform 0.25s ease;
}

.timeline-card:hover {
    transform: translateY(-4px);
}

.timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 0.86rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.timeline-card h3 {
    font-size: 1rem;
    line-height: 1.3;
}

.timeline-card p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.72;
    font-size: 0.92rem;
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

.maintenance-grid {
    margin-top: 18px;
}

.pricing-card {
    position: relative;
    padding: 26px;
    border-radius: 28px;
    transition: transform 0.28s ease, border-color 0.28s ease;
}

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

.pricing-card.featured {
    border-color: rgba(32, 210, 255, 0.22);
    transform: translateY(-8px);
    box-shadow:
        0 24px 70px rgba(0,0,0,0.32),
        0 0 0 1px rgba(32, 210, 255, 0.06);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 7px 11px;
    border-radius: 999px;
}

.pricing-name {
    display: inline-block;
    color: #b8ebff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    margin-bottom: 12px;
}

.price {
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 800;
}

.pricing-desc {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.93rem;
}

.pricing-card ul {
    list-style: none;
    margin-top: 18px;
}

.pricing-card li {
    position: relative;
    padding-left: 18px;
    margin-top: 9px;
    color: var(--muted);
    line-height: 1.68;
    font-size: 0.92rem;
}

.pricing-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #b8ebff;
    font-weight: 900;
}

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

.faq-card,
.contact-card {
    padding: 24px;
    border-radius: 26px;
}

.faq-card h3,
.contact-card h3 {
    font-size: 1rem;
    line-height: 1.3;
}

.faq-card p,
.contact-card p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.78;
    font-size: 0.93rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
    align-items: start;
}

.contact-side {
    display: grid;
    gap: 16px;
}

.contact-intro {
    margin-top: 10px;
}

.contact-form {
    margin-top: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-group {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.form-group label {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border-radius: 18px;
    padding: 15px 16px;
    outline: none;
    font-family: inherit;
    font-size: 0.94rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 48px;
    background-image:
        linear-gradient(45deg, transparent 50%, #9fe8ff 50%),
        linear-gradient(135deg, #9fe8ff 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.form-group select option,
.form-group select optgroup {
    background: #0a1426;
    color: #eef4ff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(32, 210, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(32, 210, 255, 0.08);
    transform: translateY(-1px);
}

.form-group select::-ms-expand {
    display: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b8ebff;
    font-weight: 600;
}

.text-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

.footer {
    padding: 24px 0 18px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    border-top: 1px solid var(--line-soft);
    margin-top: 12px;
}

.footer-brand {
    display: grid;
    gap: 10px;
}

.footer-brand img {
    height: 46px;
    width: auto;
}

.footer p {
    color: var(--muted-2);
    line-height: 1.7;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

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

.reveal-card {
    opacity: 0;
    transform: translateY(22px);
}

.reveal.visible .reveal-card {
    animation: cardRise 0.75s ease forwards;
}

.reveal.visible .reveal-card:nth-child(2) {
    animation-delay: 0.08s;
}

.reveal.visible .reveal-card:nth-child(3) {
    animation-delay: 0.16s;
}

@keyframes cardRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.maintenance-note {
    margin-top: 20px;
    margin-bottom: 22px;
    padding: 22px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.maintenance-note::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32,210,255,0.05), transparent 45%, rgba(143,70,255,0.05));
    pointer-events: none;
}

.maintenance-note h3 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 10px;
}

.maintenance-note p {
    color: var(--muted);
    line-height: 1.78;
    font-size: 0.93rem;
    margin-top: 8px;
}

.maintenance-note strong {
    color: var(--text);
}

@media (max-width: 1180px) {
    .hero,
    .cards-grid,
    .cards-grid-3,
    .pricing-grid,
    .pricing-grid-2,
    .process-timeline,
    .faq-grid,
    .stats-bar,
    .contact-layout,
    .form-grid,
    .section-showcase,
    .examples-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof,
    .visual-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        min-height: auto;
        padding-top: 34px;
    }

    .hero-copy h1,
    .section-head h2,
    .showcase-copy h2 {
        max-width: none;
    }

    .floating-metric {
        display: none;
    }

    .examples-note {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 880px) {
    .menu-toggle {
        display: inline-flex;
    }

    .nav,
    .nav-cta {
        display: none;
    }

    .navbar.menu-open .nav {
        display: flex;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(11,18,34,0.96), rgba(7,12,24,0.98));
        border: 1px solid rgba(255,255,255,0.07);
        box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    }

    .navbar.menu-open .nav a {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .navbar.menu-open .nav a:hover {
        background: rgba(255,255,255,0.03);
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 22px), var(--container));
    }

    .navbar {
        position: relative;
        min-height: 74px;
        padding: 12px 14px;
    }

    .logo {
        min-width: auto;
    }

    .logo img,
    .logo-xl img {
        height: 60px;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 8vw, 3.05rem);
        line-height: 1.02;
    }

    .hero-proof,
    .visual-card-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 62px 0;
    }

    .logo-stage-body,
    .service-card,
    .timeline-card,
    .pricing-card,
    .faq-card,
    .contact-card,
    .section-showcase,
    .example-content {
        padding: 20px;
    }

    .logo-spotlight,
    .logo-spotlight-xl {
        min-height: 320px;
    }

    .logo-core {
        width: 150px;
        height: 150px;
    }

    .logo-core-xl {
        width: 210px;
        height: 210px;
    }

    .ring-1 {
        width: 210px;
        height: 210px;
    }

    .ring-2 {
        width: 280px;
        height: 280px;
    }

    .ring-3 {
        width: 360px;
        height: 360px;
    }

    .floating-badge {
        font-size: 0.68rem;
        padding: 8px 10px;
    }

    .example-preview {
        min-height: auto;
        padding: 14px;
    }

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

    .example-feature-row,
    .example-stat-row,
    .example-mini-cards,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

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

    .cursor-glow {
        display: none;
    }
}

.site-flash {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 120;
    padding: 14px 18px;
    border-radius: 16px;
    min-width: min(92vw, 520px);
    text-align: center;
    font-size: 0.94rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.site-flash-success {
    background: rgba(95, 224, 139, 0.12);
    color: #d7ffe4;
}

.site-flash-error {
    background: rgba(255, 124, 124, 0.12);
    color: #ffd8d8;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
}
