:root {
    --bg: #f8f7f3;
    --surface: #ffffff;
    --surface-2: #f3f1ec;
    --border: rgba(15, 23, 42, 0.10);
    --border-highlight: rgba(139, 92, 246, 0.26);

    --text: #10111a;
    --text-muted: #667085;

    --core: #050507;
    --core-dark: #000000;

    --monarch: #8b5cf6;
    --trident: #8b5cf6;
    --accent: #8b5cf6;
    --accent-soft: rgba(139, 92, 246, 0.12);
    --accent-glow: rgba(139, 92, 246, 0.32);

    --alerts: #ef4444;

    --font: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

.ops-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.ops-header p {
    margin-top: 18px;
    font-size: 18px;
    color: var(--text-muted);
}

.ops-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 64px;
    align-items: start;
}

.ops-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ops-right {
    display: flex;
    justify-content: center;
}

.ops-stat {
    display: flex;
    gap: 22px;
    padding: 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 12px 34px rgba(15, 23, 42, .05);
}

.ops-stat-value {
    width: 82px;
    flex-shrink: 0;
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text);
}

.ops-stat-text strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.ops-stat-text span {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

.control-panel {
    overflow: hidden;
    border-radius: 26px;
    background: #071018;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .35),
        inset 0 1px 0 rgba(255, 255, 255, .05);
}

.control-topbar {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.control-dots {
    display: flex;
    gap: 8px;
}

.control-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
}

.control-title {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
}

.control-status {
    font-size: 12px;
    font-weight: 700;
    color: #4ade80;
}

.control-body {
    display: flex;
}

.control-sidebar {
    width: 74px;
    border-right: 1px solid rgba(255, 255, 255, .06);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.side-pill {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
}

.side-pill.active {
    background: rgba(14, 165, 233, .18);
    border: 1px solid rgba(14, 165, 233, .4);
}

.control-main {
    flex: 1;
    padding: 24px;
}

.signal-block {
    position: relative;
    height: 170px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, .14);
    background:
        linear-gradient(to bottom, rgba(14, 165, 233, .08), transparent),
        #09131d;
}

.signal-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);

    background-size: 32px 32px;
}

.signal-line {
    position: absolute;
    bottom: 36px;
    left: 0;
    width: 100%;
    height: 60px;
    background:
        url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 30" xmlns="http://www.w3.org/2000/svg"><path d="M0 15 C10 15 15 5 25 5 C35 5 40 24 50 24 C60 24 65 10 75 10 C85 10 90 18 100 18" fill="none" stroke="%230ea5e9" stroke-width="2"/></svg>') no-repeat;
    background-size: 100% 100%;
}

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

.telemetry-card {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
}

.telemetry-card span {
    display: block;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    margin-bottom: 10px;
}

.telemetry-card strong {
    display: block;
    color: white;
    font-size: 28px;
    margin-bottom: 6px;
}

.telemetry-card small {
    color: rgba(255, 255, 255, .45);
}

.terminal-feed {
    margin-top: 18px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(0, 0, 0, .34);
    border: 1px solid rgba(255, 255, 255, .05);
    font-family: monospace;
    font-size: 13px;
    color: #67e8f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .05);
    border: 1px solid rgba(15, 23, 42, .08);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.asset-flow {
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr;
    align-items: center;
    margin-bottom: 36px;
}

.asset-node {
    position: relative;
    min-height: 190px;
    padding: 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .7);
}

.asset-node span {
    display: inline-flex;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
}

.asset-node strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 10px;
}

.asset-node p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.flow-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(15, 23, 42, .08), rgba(14, 165, 233, .55), rgba(15, 23, 42, .08));
    position: relative;
}

.flow-line::after {
    content: "";
    position: absolute;
    right: -3px;
    top: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--trident);
    box-shadow: 0 0 18px rgba(14, 165, 233, .7);
}

.asset-cards {
    margin-top: 24px;
}

@media (max-width: 900px) {
    .asset-flow {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .flow-line {
        height: 34px;
        width: 1px;
        margin: 0 auto;
        background: linear-gradient(180deg, rgba(15, 23, 42, .08), rgba(14, 165, 233, .55), rgba(15, 23, 42, .08));
    }
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -5;

    background:
        radial-gradient(circle at 80% 40%, rgba(0, 150, 255, 0.08), transparent 40%),
        radial-gradient(circle at 20% 70%, rgba(0, 200, 150, 0.06), transparent 45%),
        #f8f7f3;

    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;

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

    background-size: 40px 40px;
    opacity: 0.4;

    pointer-events: none;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    z-index: 999;
}

/* Auras & Background Accents */
.bg-accents {
    position: fixed;
    inset: 0;
    z-index: -6;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.5;
}

.bg-accents::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.04) 1px, transparent 0);
    background-size: 60px 60px;
}

.acc-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    height: 1px;
    width: 100%;
}

.acc-line-1 {
    top: 20%;
    transform: rotate(-5deg);
    animation: line-scan 15s infinite linear;
}

.acc-line-2 {
    top: 70%;
    transform: rotate(3deg);
    animation: line-scan 20s infinite linear reverse;
}

@keyframes line-scan {
    from {
        transform: translateX(-100%) rotate(-5deg);
    }

    to {
        transform: translateX(100%) rotate(-5deg);
    }
}



.acc-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--trident);
    border-radius: 50%;
    opacity: 0.2;
}

.acc-dot-1 {
    top: 15%;
    left: 10%;
    animation: float-dot 10s infinite alternate;
}

.acc-dot-2 {
    top: 60%;
    right: 15%;
    animation: float-dot 12s infinite alternate-reverse;
}

.acc-dot-3 {
    bottom: 20%;
    left: 40%;
    animation: float-dot 15s infinite alternate;
}

@keyframes float-dot {
    0% {
        transform: translate(0, 0);
        opacity: 0.1;
    }

    100% {
        transform: translate(30px, 30px);
        opacity: 0.3;
    }
}

.aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

.aura-hero {
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: aura-pulse 10s infinite alternate ease-in-out;
}

.aura-ecosystem {
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes aura-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.5;
    }
}

.contact-section {
    padding: 120px 0;
    background:
        linear-gradient(to bottom,
            transparent,
            rgba(0, 0, 0, .03));
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;

    padding: 54px;

    border-radius: 34px;

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

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

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .08);

    backdrop-filter: blur(20px);
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 14px;

    border-radius: 999px;

    background: rgba(0, 0, 0, .05);

    color: #666;

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

    margin-bottom: 24px;
}

.contact-left h2 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: .95;
    letter-spacing: -.06em;

    margin-bottom: 24px;
}

.contact-left p {
    max-width: 560px;

    color: #666;

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

.contact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 34px;
}

.contact-points span {
    padding: 12px 16px;

    border-radius: 999px;

    background: rgba(0, 0, 0, .04);

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

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

    color: #444;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 12px;
    font-weight: 800;
    color: #666;
}

.phone-group .iti {
    width: 100%;
}

.phone-group input[type="tel"] {
    width: 100%;
    height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.75);
    padding-left: 105px !important;
    font-size: 15px;
    outline: none;
}

.phone-group .iti__selected-country {
    height: 54px;
    border-radius: 16px 0 0 16px;
    padding: 0 14px;
    background: #111;
    color: #fff;
}

.phone-group .iti__selected-country-primary {
    padding: 0;
}

.phone-group .iti__arrow {
    border-top-color: #fff;
}

.phone-group .iti__country-list {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
    overflow: hidden;
    z-index: 9999;
}

.input-group input,
.input-group select {
    height: 54px;

    border-radius: 16px;

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

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

    padding: 0 16px;

    font: inherit;
}

.contact-form button {
    height: 56px;

    border: 0;
    border-radius: 16px;

    background: #111;
    color: white;

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

    cursor: pointer;

    margin-top: 10px;

    transition: .2s ease;
}

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

@media (max-width: 960px) {
    .contact-box {
        grid-template-columns: 1fr;
    }
}

/* Card Enhancements */
.hero-card,
.asset-node,
.card {
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.5) !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease !important;
}

.asset-node:hover {
    transform: translateY(-4px) !important;
}


@keyframes status-pulse-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.34);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

#nav-logo-canvas {
    width: 32px;
    height: 32px;
    display: block;
}

.logo-mark {
    padding: 8px 12px;
    background: var(--core);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
}

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

.nav-links a:not(.btn) {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: var(--font);
}

.btn-primary {
    background: var(--core);
    color: #ffffff;
}

.btn-primary:hover {
    background: #333333;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-glow {
    position: relative;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.btn-glow::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to bottom right, rgba(14, 165, 233, 0.5), transparent, rgba(139, 92, 246, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.2);
    transform: translateY(-2px);
}

.btn-glow:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-highlight);
}

.w-100 {
    width: 100%;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
}

h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.text-gradient {
    color: var(--core);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--core);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

/* Hero */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -3;
    background: transparent;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-card {
    display: grid;
    grid-template-columns: 1.8fr 0.6fr;
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-card-left {
    background: var(--surface);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-right {
    background: black;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-text h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Canvas Animation */
.hero-canvas-container {
    width: 100%;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#c {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.active-clients-section {
    width: 100%;
    max-width: 920px;
    margin-top: 64px;
}

.clients-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.clients-eyebrow span {
    width: 54px;
    height: 1px;
    background: rgba(15, 23, 42, .16);
}

.clients-proof {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: stretch;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    background: rgba(255, 255, 255, .48);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 50px rgba(15, 23, 42, .05);
}

.clients-copy {
    padding: 10px 8px;
}

.clients-copy h2 {
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -.8px;
    margin-bottom: 10px;
}

.clients-copy p {
    max-width: 520px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

@keyframes status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(82, 201, 127, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(82, 201, 127, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(82, 201, 127, 0);
    }
}

.client-proof-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.client-proof-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.client-proof-text strong {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text);
}

.client-proof-text span {
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
}

.client-proof-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    min-height: 120px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 247, 243, .82));
    border: 1px solid rgba(139, 92, 246, .14);
    box-shadow:
        0 18px 44px rgba(15, 23, 42, .08),
        inset 0 1px 0 rgba(255, 255, 255, .8);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.client-proof-card:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, .30);
    box-shadow:
        0 24px 64px rgba(15, 23, 42, .11),
        0 0 0 4px rgba(139, 92, 246, .045),
        inset 0 1px 0 rgba(255, 255, 255, .86);
}

.client-proof-card::after {
    content: '';
    position: absolute;
    top: 24px;
    right: 50px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.34);
    animation: status-pulse-purple 2.4s infinite;
}

@keyframes status-pulse-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.34);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

.client-proof-card svg {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

/* Ecosystem Section */
.ecosystem {
    padding: 120px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
    margin-top: 16px;
}

.grid {
    display: grid;
    gap: 30px;
}

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

.card {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.5);
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--core);
    opacity: 0;
    transition: opacity 0.4s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--border-highlight);
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.7);
}

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

.monarch-card:hover::before {
    background: var(--monarch);
}

.trident-card:hover::before {
    background: var(--trident);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.icon-core {
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.63), rgb(0, 255, 170));
    box-shadow: 0 10px 20px rgb(0, 255, 170);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.icon-monarch {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
    transform: rotate(45deg);
}

.icon-monarch i {
    transform: rotate(-45deg);
}

.icon-trident {
    background: linear-gradient(135deg, #0369a1, #0284c7);
    box-shadow: 0 10px 20px rgba(3, 105, 161, 0.3);
    border-radius: 50%;
}

.card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Features */
.features {
    padding: 120px 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.05), transparent 50%), var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.feature-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.li-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--core);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.li-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--text);
}

.li-text span {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.5;
}

/* Mockup Vetrina */
.feature-visual {
    position: relative;
}

.interactive-hint {
    position: absolute;
    top: -20px;
    right: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 99px;
    color: var(--monarch);
    font-size: 13px;
    font-weight: 600;
    pointer-events: none;
    animation: float-hint 3s infinite ease-in-out;
}

.interactive-hint i {
    width: 14px;
    height: 14px;
}

@keyframes float-hint {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.dashboard-mockup {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-highlight);
    border-radius: 16px;
    height: 440px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    height: 40px;
    background: rgba(30, 41, 59, 0.8);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    position: relative;
}

.mockup-header i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #475569;
}

.mockup-header i:nth-child(1) {
    background: #ef4444;
}

.mockup-header i:nth-child(2) {
    background: #eab308;
}

.mockup-header i:nth-child(3) {
    background: #22c55e;
}

.mockup-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.mockup-body {
    display: flex;
    flex: 1;
}

.mockup-sidebar {
    width: 80px;
    background: rgba(30, 41, 59, 0.5);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 16px;
}

.side-item {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface-2);
    border: 1px solid transparent;
}

.side-item.active {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
}

.mockup-main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mockup-top {
    height: 140px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.1), transparent);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.graph-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 40" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,40 L0,20 C10,20 15,35 25,35 C35,35 40,10 50,10 C60,10 65,25 75,25 C85,25 90,5 100,5 L100,40 Z" fill="rgba(16,185,129,0.2)" stroke="%2310b981" stroke-width="2"/></svg>') no-repeat;
    background-size: 100% 100%;
}

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

.m-card {
    height: 90px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 16px;
}

.side-item {
    cursor: pointer;
    color: rgba(255, 255, 255, .65);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 15px;
}

.mockup-fade-in {
    animation: mockupFade .28s ease both;
}

@keyframes mockupFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.history-view {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.history-bars {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    padding: 24px;
}

.history-bars span {
    flex: 1;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, rgba(14, 165, 233, .95), rgba(14, 165, 233, .18));
    box-shadow: 0 0 24px rgba(14, 165, 233, .25);
}

.users-view {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.user-row {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(15, 23, 42, .45);
    border: 1px solid rgba(255, 255, 255, .05);
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(14, 165, 233, .16);
    border: 1px solid rgba(14, 165, 233, .35);
    color: #38bdf8;
    font-weight: 800;
}

.user-row strong {
    display: block;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
}

.user-row small {
    color: rgba(255, 255, 255, .45);
}

.user-row em {
    font-style: normal;
    font-size: 12px;
    color: #22c55e;
}

.m-value {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--core);
}

.monarch-text {
    color: var(--monarch);
}

.alert-text {
    color: var(--alerts);
}

.highlight-text {
    color: var(--core);
}

.trident-text {
    color: var(--trident);
}

.m-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact */
.contact {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.aura-contact {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 70%);
}

.contact-box {
    position: relative;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 42px;
    padding: 80px;
    box-shadow:
        0 40px 100px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.glow-contact {
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    opacity: 0.4;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.contact-header h2 {
    font-size: 48px;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.contact-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    color: var(--accent);
    display: grid;
    place-items: center;
}

.item-icon i {
    width: 22px;
    height: 22px;
}

.item-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 4px;
}

.item-text span {
    font-size: 15px;
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    padding: 16px 20px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
}

.input-group textarea {
    resize: none;
}

.form-msg {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #22c55e;
    margin-top: 10px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 0;
    background: var(--surface);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

    .hero-content p {
        margin: 0 auto 40px;
    }

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

    .hero-card-left {
        padding: 60px 40px;
        text-align: center;
    }

    .hero-card-right {
        padding: 40px;
    }

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

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

    h1 {
        font-size: 52px;
    }

    .contact-box {
        padding: 40px 30px;
    }
}

@media (max-width: 960px) {
    .contact-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 60px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 101;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .clients-proof {
        grid-template-columns: 1fr;
    }

    .clients-copy {
        text-align: center;
    }

    .clients-copy p {
        margin: 0 auto;
    }

    .asset-flow {
        flex-direction: column;
        gap: 20px;
    }

    .flow-line {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }

    .dashboard-mockup {
        height: 380px;
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

    .mockup-cards {
        grid-template-columns: 1fr;
    }

    .contact-left h2 {
        font-size: 36px;
    }

    .contact-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-card-left {
        padding: 40px 20px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .client-proof-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .client-proof-card svg {
        top: 10px;
        right: 10px;
    }

    .feature-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: modalSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.modal-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.modal-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-direction: column;
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
}

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

.phone-group {
    position: relative;
}

.phone-group .iti {
    display: block !important;
    width: 100% !important;
}

.phone-group .iti input,
.phone-group input#phone {
    width: 100% !important;
    height: 54px !important;
    box-sizing: border-box !important;

    border-radius: 16px !important;
    border: 1px solid rgba(15, 23, 42, 0.14) !important;
    background: rgba(255, 255, 255, 0.78) !important;

    padding-left: 96px !important;
    padding-right: 18px !important;

    font-size: 15px !important;
    color: #111 !important;
}

/* bottone prefisso */
.phone-group .iti__selected-country {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;

    width: 82px !important;
    height: 54px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: none !important;
    border-radius: 16px 0 0 16px !important;

    background: #111 !important;
    color: #fff !important;

    box-shadow: none !important;
    transform: none !important;
}

/* elimina stili strani ereditati dai button globali */
.phone-group .iti button {
    box-sizing: border-box !important;
    cursor: pointer !important;
}

/* poi ricostruisci il bottone */
.phone-group .iti button.iti__selected-country {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;

    width: 82px !important;
    height: 54px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;

    border-radius: 16px 0 0 16px !important;
    background: #111 !important;
    color: #fff !important;
}

/* dropdown */
.phone-group .iti__dropdown-content,
.phone-group .iti__country-list {
    z-index: 99999 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
}