/* Arkatiss + Scyantra — Premium Enterprise Website */
/* All custom styles extracted from original design */

/* Google Fonts loaded via <link> tags in HTML for faster non-blocking loading */

:root {
    --brand-green: #7ACA6D;
    --brand-yellow: #F4BC1E;
    --brand-blue: #5EB2EF;
    --brand-dark: #3C3C4C;
    --primary-bg: #E5E5E1;
    --surface: #FFFFFF;
    --text-primary: #111111;
    --text-secondary: #666666;
    --teal: #7ACA6D;
    --cyan: #F4BC1E;
    --azure: #5EB2EF;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.font-display {
    font-family: 'Space Grotesk', 'Inter', system_ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.enterprise-grid {
    background-image: 
        linear-gradient(rgba(17, 24, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.section-header {
    font-size: 2.75rem;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.premium-shadow {
    box-shadow: 0 10px 30px -15px rgb(0 0 0 / 0.08),
                0 4px 6px -1px rgb(0 0 0 / 0.05);
}

.floating-card {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), 
                box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.2s ease;
}

.floating-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.12);
}

.teal-glow {
    box-shadow: 0 0 0 1px rgba(14, 165, 164, 0.1),
                0 10px 30px -15px rgba(14, 165, 164, 0.15);
}

.teal-glow-hover:hover {
    box-shadow: 0 0 0 1px rgba(14, 165, 164, 0.25),
                0 20px 40px -15px rgba(14, 165, 164, 0.25);
}

.nav-active {
    color: #111111;
    font-weight: 500;
}

.metric-number {
    font-variant-numeric: tabular-nums;
}

.enterprise-divider {
    background: linear-gradient(to right, transparent, #E5E7EB, transparent);
}

.subtle-grid {
    background-image: url('data:image/svg+xml,%3Csvg width=%2260%22 height=%2260%22 viewBox=%220 0 60 60%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill-rule=%22evenodd%22%3E%3Cpath fill=%22%23E5E7EB%22 fill-opacity=%220.06%22 d=%22M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-10V8h-2v16h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 6v-4H4v4H0v2h4v4h2V8h4V6H6z%22/%3E%3C/g%3E%3C/svg%27');
    background-size: 60px 60px;
}

.holographic {
    background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.9) 0%, rgba(240,245,250,0.6) 40%, rgba(200,210,220,0.3) 70%);
    box-shadow: 
        0 0 60px rgba(14, 165, 164, 0.15),
        inset 0 0 40px rgba(255,255,255,0.5),
        0 25px 50px -12px rgb(0 0 0 / 0.15);
}

.neural-line {
    stroke: #7ACA6D;
    stroke-opacity: 0.25;
    stroke-width: 1.5;
    stroke-dasharray: 4 6;
    animation: dataFlow 4s linear infinite;
}

@keyframes dataFlow {
    to {
        stroke-dashoffset: -40;
    }
}

.premium-button {
    transition: all 0.3s cubic-bezier(0.23, 1.0, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.premium-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transition: left 0.7s;
}

.premium-button:hover::after {
    left: 250%;
}

.section-transition {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.modern-accordion {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.capability-icon {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-card:hover .capability-icon {
    transform: scale(1.08) rotate(3deg);
}

.stat-value {
    font-feature-settings: "ss02";
}

.ecosystem-node {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), 
                box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.ecosystem-node:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.intelligence-card {
    transition: all 0.5s cubic-bezier(0.23, 1.0, 0.32, 1);
}

.data-flow-line {
    animation: flowPulse 3s ease-in-out infinite;
}

.marquee {
    animation: marquee 35s linear infinite;
}

.glass-form {
    box-shadow: 0 25px 60px -15px rgb(0 0 0 / 0.12),
                0 0 0 1px rgba(255,255,255,0.6);
}

.nav-scrolled {
    background: rgba(245, 247, 250, 0.95);
    backdrop-filter: blur(20px);
}

.enterprise-text {
    font-feature-settings: "kern" "tnum";
}

/* ============================================
   CURSOR DISTORTION EFFECT (Premium Subtle)
   ============================================ */
#custom-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(14, 165, 164, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out, background-color 0.2s ease;
    mix-blend-mode: difference;
    display: none;
}

#custom-cursor.active {
    background-color: rgba(14, 165, 164, 0.08);
    border-color: rgba(14, 165, 164, 0.6);
    transform: scale(1.6);
}

/* Distortion / 3D Tilt on Floating Cards */
.floating-card {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), 
                box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    contain: layout style;
}

/* ============================================
   LIGHT DOTS / PARTICLES (Hero Background)
   ============================================ */
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at center, rgba(14, 165, 164, 0.12) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    animation: subtleDotShift 25s linear infinite;
}

@keyframes subtleDotShift {
    0% { background-position: 0 0; }
    100% { background-position: 42px 42px; }
}

/* ============================================
   GLOBAL DOTS BACKGROUND (Better Visibility)
   ============================================ */
.dots-bg {
    background-image: 
        radial-gradient(circle at center, rgba(14, 165, 164, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    background-position: 0 0;
    position: relative;
}

.dots-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at center, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 96px 96px;
    pointer-events: none;
    z-index: 0;
}

.page-content {
    display: block;
}

.page-content.hidden {
    display: none !important;
}

.nav-link.active {
    color: #F07A20;
    font-weight: 600;
}

/* Additional responsive and polish styles */
@media (max-width: 768px) {
    .section-header {
        font-size: 2.1rem;
    }
    
    #custom-cursor {
        display: none !important;
    }

    .section-header,
    h1, h2, h3 {
        letter-spacing: -0.02em;
    }

    .font-sze {
        font-size: 12px!important;
    }

    .mt-sm {
        margin-top: 1.5rem!important;
    }

    .mb-10 {
        margin-top: 2.5rem;
    }
} 

/* ============================================
   MARQUEE ANIMATION (for partner logos)
   ============================================ */
.marquee {
    animation: marquee 38s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Additional polish for very small screens */
@media (max-width: 480px) {
    .glass-strong, .floating-card {
        border-radius: 1.5rem;
    }
    
    .premium-button, .glass-form button {
        font-size: 0.95rem;
    }

    .hero-font {
        font-size: 2.3rem!important;
    }

    .about-font{
        font-size: 2.0rem!important;
    }

    .img-height{
        height: 185px!important;
    }

    .mb-12 {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

    .mb-10 {
        margin-top: 2.5rem;
    }

    .font-sze {
        font-size: 12px!important;
    }

    .suite-font {
        font-size: 2.0rem!important;
    }

    .ser-height {
        min-height: 300px !important;
    }
}
/* =========================================================
   Reference Screenshot Theme Override
   Light industrial / editorial / monochrome + orange accent
   ========================================================= */

:root {
    --brand-green: #7ACA6D;
    --brand-yellow: #F4BC1E;
    --brand-blue: #5EB2EF;
    --brand-dark: #3C3C4C;
    --theme-bg: #E5E5E1;
    --theme-surface: #F7F6F3;
    --theme-surface-2: #F0EFEA;
    --theme-text: #111111;
    --theme-muted: #666666;
    --theme-border: #D4D0C8;
    --theme-accent: #7ACA6D;
    --theme-accent-dark: #D86511;
    --theme-accent-soft: #FFF1E6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif !important;
    background-color: var(--theme-bg) !important;
    color: var(--theme-text) !important;
    position: relative;
    isolation: isolate;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        linear-gradient(to right, rgba(17,17,17,0.055) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17,17,17,0.055) 1px, transparent 1px),
        radial-gradient(circle at 18% 12%, rgba(240,122,32,0.06), transparent 28%),
        radial-gradient(circle at 86% 20%, rgba(255,255,255,0.46), transparent 18%);
    background-size: 120px 120px, 120px 120px, auto, auto;
    opacity: 0.9;
}

body::after {
    content: "";
    position: fixed;
    inset: 12px;
    pointer-events: none;
    z-index: -1;
    border: 1px solid rgba(17,17,17,0.08);
}

.font-display,
.section-header,
h1, h2, h3,
.uppercase,
[class*="text-6xl"],
[class*="text-5xl"],
[class*="text-4xl"] {
    font-family: 'Orbitron', 'Inter', system-ui, sans-serif !important;
    /* letter-spacing: -0.08em; */
    text-transform: uppercase;
}

.font-display {
    font-weight: 800 !important;
    line-height: 0.98;
}

h1, h2, h3 {
    color: var(--theme-text) !important;
}

p, li, span, a, button, input, textarea, label, small {
    text-rendering: optimizeLegibility;
}

a {
    transition: color 180ms ease, transform 180ms ease, opacity 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

a:hover {
    color: var(--theme-accent);
}

nav,
footer {
    background: rgba(229,229,225,0.92) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

nav {
    border-bottom: 1px solid rgba(17,17,17,0.08) !important;
    box-shadow: 0 1px 0 rgba(255,255,255,0.65) inset;
}

.nav-scrolled {
    background: rgba(229,229,225,0.96) !important;
}

.bg-white,
.bg-white\/70,
.bg-white\/80,
.bg-white\/85,
.bg-white\/90 {
    background-color: rgba(247,246,243,0.96) !important;
}

.text-white {
    color: #111111 !important;
}

.text-gray-500,
.text-gray-600,
.text-slate-500,
.text-slate-600,

.border-white,
.border-white\/60,
.border-white\/70,
.border-white\/80,
.border-white\/90 {
    border-color: rgba(17,17,17,0.08) !important;
}

.border-black\/10,
.border-black\/5 {
    border-color: rgba(17,17,17,0.10) !important;
}








.glass,
.glass-strong,
.glass-form,
.floating-card,
.premium-shadow,
.ecosystem-node,
.intelligence-card,
.modern-accordion,
.hero-panel,
[data-theme-card="true"] {
    background: rgba(247,246,243,0.96) !important;
    border: 1px solid rgba(17,17,17,0.10) !important;
    box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 22px 40px -30px rgba(0,0,0,0.28) !important;
}

.glass,
.glass-strong,
.glass-form,
.floating-card,
.premium-shadow,
.ecosystem-node,
.intelligence-card,
.modern-accordion {
    border-radius: 18px !important;
}

.floating-card:hover,
.ecosystem-node:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 28px -22px rgba(0,0,0,0.34) !important;
}

.premium-button {
    background: var(--theme-accent) !important;
    color: #111111 !important;
    border: 1px solid rgba(17,17,17,0.10) !important;
    border-radius: 16px !important;
    box-shadow: 0 14px 28px -20px rgba(240,122,32,0.5) !important;
}

.premium-button:hover {
    background: var(--theme-accent-dark) !important;
    color: #111111 !important;
}

.premium-button::after {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent) !important;
}

button,
input,
textarea,
select {
    border-color: rgba(17,17,17,0.12);
}

section,
header,
footer {
    position: relative;
}

section::after,
header::after,
footer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(17,17,17,0.16), transparent);
    pointer-events: none;
}

.enterprise-grid,
.subtle-grid,
.hero-dots {
    background-color: transparent !important;
}

.enterprise-grid {
    background-image:
        linear-gradient(rgba(17,17,17,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,17,17,0.045) 1px, transparent 1px) !important;
    background-size: 120px 120px !important;
}

.subtle-grid {
    background-image:
        linear-gradient(to right, rgba(17,17,17,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17,17,17,0.04) 1px, transparent 1px) !important;
}

.hero-dots {
    background-image: radial-gradient(circle at center, rgba(17,17,17,0.06) 1px, transparent 1px) !important;
}

.hero-dots::before,
.hero-dots::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-dots::before {
    background:
        radial-gradient(circle at 16% 26%, rgba(240,122,32,0.10), transparent 8%),
        radial-gradient(circle at 82% 18%, rgba(255,255,255,0.55), transparent 10%);
}

.nav-link.active {
    /* color: var(--theme-accent) !important; */
    font-weight: 700 !important;
}

.metric-number,
.stat-value {
    font-variant-numeric: tabular-nums;
}

#custom-cursor {
    border-color: rgba(240,122,32,0.45) !important;
    mix-blend-mode: multiply;
}

#custom-cursor.active {
    background-color: rgba(240,122,32,0.10) !important;
    border-color: rgba(240,122,32,0.75) !important;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(17,17,17,0.04);
}

::-webkit-scrollbar-thumb {
    background: rgba(17,17,17,0.25);
    border-radius: 999px;
    border: 2px solid rgba(229,229,225,0.9);
}

@media (max-width: 768px) {
    body::after {
        inset: 8px;
    }

    .font-display,
    .section-header,
    h1, h2, h3 {
        letter-spacing: -0.05em !important;
    }
}

.premium-button,
.premium-button * {
    color: #111111 !important;
}


/* Services page enhancements */
.service-row {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 88px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}

.service-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -20px rgba(0,0,0,.18);
}

.service-name {
    font-family: 'Orbitron', 'Inter', system-ui, sans-serif;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: .92;
    letter-spacing: -0.06em;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    word-break: break-word;
}

.service-preview-panel {
    position: sticky;
    top: 110px;
}

.service-preview-shell {
    min-height: 420px;
}

.service-preview-title {
    font-family: 'Orbitron', 'Inter', system-ui, sans-serif;
    letter-spacing: -0.05em;
}

.service-row.is-active {
    border-color: rgba(94, 178, 239, .45) !important;
    background: rgba(255,255,255,.72);
}

.service-row .service-row-meta {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666666;
    margin-top: 10px;
}

.service-row .service-row-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(60,60,76,.12);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #3C3C4C;
    background: rgba(255,255,255,.65);
}

#drawer-heading {
    font-family: 'Orbitron', 'Inter', system-ui, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    letter-spacing: -0.05em;
}


/* ============================================
   FLIP CARDS (About Us Capabilities)
   ============================================ */
.flip-card {
    perspective: 1600px;
    min-height: 280px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    transform-style: preserve-3d;
    transition: transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

@media (max-width: 768px) {
    .flip-card,
    .flip-card-inner {
        min-height: 240px;
    }
}



/* Request Demo modal */
body.demo-modal-open {
    overflow: hidden;
}

.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.demo-modal.hidden {
    display: none;
}

.demo-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.38);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.demo-modal__panel {
    position: relative;
    width: min(720px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow: auto;
    border-radius: 2rem;
    border: 1px solid rgba(255,255,255,0.8);
    background: rgba(229,229,225,0.98);
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
    padding: 1.5rem;
}

.demo-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.85);
    color: #111111;
}

.demo-modal__eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 0.75rem;
}

.demo-modal__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: #111111;
}

.demo-modal__description {
    margin-top: 0.75rem;
    color: #666666;
    max-width: 46ch;
}

.demo-modal__form {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.demo-modal__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.demo-field {
    display: grid;
    gap: 0.5rem;
}

.demo-field__label {
    font-size: 0.92rem;
    font-weight: 600;
    color: #394155;
}

.demo-field__input {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    background: rgba(255,255,255,0.84);
    padding: 0.9rem 1rem;
    color: #111111;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.demo-field__input:focus {
    border-color: #F07A20;
    box-shadow: 0 0 0 3px rgba(240,122,32,0.15);
}

.demo-field__textarea {
    resize: vertical;
    min-height: 120px;
}

.demo-modal__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    border-radius: 9999px;
    background: #F07A20;
    color: #FFFFFF;
    font-weight: 700;
    padding: 0 1.5rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.demo-modal__submit:hover {
    background: #D86511;
    transform: translateY(-1px);
}

.demo-modal__note {
    font-size: 0.85rem;
    color: #666666;
}

/* Services page shared styles */
html.services-page {
    scrollbar-gutter: stable;
}

body.services-page {
    overflow-y: scroll;
}

.service-list-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-row {
    width: 100%;
    border-radius: 1.75rem;
    border: 1px solid rgba(255,255,255,.84);
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px -18px rgba(0,0,0,.14);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
    overflow: hidden;
    will-change: transform;
}

.service-row:hover,
.service-row:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px -20px rgba(0,0,0,.18);
    border-color: rgba(94,178,239,.25);
}

.service-title {
    font-family: 'Orbitron', 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-size: clamp(2.05rem, 5vw, 4rem);
    line-height: .9;
    letter-spacing: -0.075em;
    text-transform: uppercase;
    font-weight: 700;
    word-break: break-word;
}

.service-mini-label {
    font-size: 11px;
    line-height: 1;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #666666;
}

.service-hover-visual {
    width: min(240px, 24vw);
    height: 138px;
    opacity: 0;
    transform: translateX(10px) scale(.98);
    transition: opacity .22s ease, transform .22s ease;
    pointer-events: none;
}

.service-row:hover .service-hover-visual,
.service-row:focus-visible .service-hover-visual {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.service-hover-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-hover-chip {
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,250,250,.84));
    border: 1px solid rgba(229,231,235,.9);
    box-shadow: 0 14px 32px -24px rgba(0,0,0,.2);
}

.service-drawer-backdrop {
    transition: opacity .28s ease;
}

.service-drawer-card {
    transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .32s ease;
    max-height: calc(100vh - 1rem);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.service-drawer-card-inner {
    max-height: calc(100vh - 1rem);
    overflow: auto;
    scrollbar-width: thin;
}

.service-drawer-title {
    font-family: 'Orbitron', 'Space Grotesk', 'Inter', system-ui, sans-serif;
    letter-spacing: -0.06em;
}

.drawer-service-image {
    min-height: 280px;
}

.mb-10 {
        margin-top: 2.5rem;
    }

/* Suite page shared styles */
.suite-card {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 10px 30px -15px rgb(0 0 0 / 0.08),
                0 4px 6px -1px rgb(0 0 0 / 0.05);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.2s ease;
    contain: layout style;
}

.suite-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.12);
}

.suite-card.is-active {
    border-color: rgba(240, 122, 32, 0.35);
    box-shadow: 0 0 0 1px rgba(240, 122, 32, 0.12), 0 18px 36px -20px rgb(0 0 0 / 0.18);
    transform: translateY(-4px);
}

.suite-float {
    animation: suiteFloat 7s ease-in-out infinite;
}

.suite-float.delay-1 { animation-delay: -1.2s; }
.suite-float.delay-2 { animation-delay: -2.1s; }
.suite-float.delay-3 { animation-delay: -3.3s; }
.suite-float.delay-4 { animation-delay: -4.0s; }

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

.detail-fade {
    animation: detailFade 420ms ease both;
}

@keyframes detailFade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0px); }
}

.soft-grid {
    background-image:
        linear-gradient(rgba(17,24,39,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,24,39,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero-glow {
    background:
        radial-gradient(circle at 20% 20%, rgba(240,122,32,0.15), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.6), transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(240,122,32,0.08), transparent 30%);
}

.mini-scroll {
    scrollbar-width: none;
}
.mini-scroll::-webkit-scrollbar { display: none; }

.suite-pill {
    transition: all 0.28s ease;
}
.suite-pill:hover {
    transform: translateY(-2px);
    background: rgba(240,122,32,0.08);
    border-color: rgba(240,122,32,0.25);
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}
.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 40%, rgba(17,17,17,0.06) 100%);
    pointer-events: none;
}

/* Ecosystem node palette */
.category-badge {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-badge--orange {
    background: rgba(240, 122, 32, 0.15);
    color: #F07A20;
}

.category-badge--soft-orange {
    background: rgba(255, 154, 92, 0.15);
    color: #FF9A5C;
}

.category-badge--burnt-orange {
    background: rgba(200, 97, 16, 0.15);
    color: #C86110;
}

.category-label {
    color: #111111;
}

.request-demo-trigger {
    cursor: pointer;
}

@media (max-width: 1023px) {
    .service-hover-visual {
        display: none !important;
    }

    .service-title {
        font-size: clamp(1.9rem, 8vw, 3.2rem);
    }
}

@media (max-width: 640px) {
    .service-title {
        font-size: clamp(1.65rem, 9vw, 2.55rem);
        line-height: .95;
    }

    .drawer-service-image {
        min-height: 220px;
    }
}



/* Services & Contact spacing fix */
.mb-14{
    margin-top: 3.5rem !important;
}
@media (min-width:768px){
    .md\:mb-14{
        margin-top: 3.5rem !important;
    }
}


.hero-floating-badges {
    filter: drop-shadow(0 10px 20px rgba(17, 17, 17, 0.08));
}

.hero-floating-badge {
    animation: heroFloat 6.5s ease-in-out infinite;
    will-change: transform;
}

.hero-floating-badge--one { animation-delay: 0s; }
.hero-floating-badge--two { animation-delay: 1.2s; }
.hero-floating-badge--three { animation-delay: 2.4s; }
.hero-floating-badge--four { animation-delay: 3.6s; }

.hero-floating-badge__inner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.95rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: #111111;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.hero-floating-badge__inner i {
    font-size: 0.95rem;
    color: #F07A20;
}

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

@media (max-width: 1023px) {
    .hero-floating-badge__inner {
        padding: 0.55rem 0.8rem;
        font-size: 0.72rem;
    }
}

@media (max-width: 640px) {
    .hero-floating-badges {
        transform: scale(0.9);
        transform-origin: center;
    }
}


/* =========================================================
   Responsive refinements for hero badge, typography, footer
   ========================================================= */

/* Bring the IoT badge closer to the globe */
.hero-floating-badge--four {
    right: -4% !important;
    bottom: 10% !important;
    left: auto !important;
}

/* Keep the hero label cluster tighter on medium screens */
@media (max-width: 1023px) {
    .hero-floating-badge--one {
        left: -5% !important;
        top: 9% !important;
    }

    .hero-floating-badge--two {
        right: -7% !important;
        top: 18% !important;
    }

    .hero-floating-badge--three {
        left: -6% !important;
        bottom: 16% !important;
    }

    .hero-floating-badge--four {
        right: -3% !important;
        bottom: 11% !important;
    }

    .hero-floating-badge__inner {
        padding: 0.5rem 0.72rem;
        font-size: 0.7rem;
    }

    .hero-floating-badge__inner i {
        font-size: 0.85rem;
    }
}

/* Gentle global typography scaling for tablet/mobile */
@media (max-width: 1023px) {
    h1 {
        font-size: clamp(2.05rem, 7.5vw, 3.2rem) !important;
        line-height: 1.02 !important;
        letter-spacing: -0.04em !important;
    }

    h2 {
        font-size: clamp(1.7rem, 5.7vw, 2.7rem) !important;
        line-height: 1.06 !important;
        letter-spacing: -0.035em !important;
    }

    h3 {
        font-size: clamp(1.15rem, 4.2vw, 1.7rem) !important;
        line-height: 1.14 !important;
        letter-spacing: -0.03em !important;
    }

    p, li, a, button, input, textarea, label, small {
        font-size: 0.98rem;
    }

    .section-header {
        font-size: clamp(1.9rem, 6vw, 2.55rem) !important;
    }

    .service-name,
    .service-title,
    .service-preview-title {
        font-size: clamp(1.55rem, 6vw, 2.8rem) !important;
        line-height: .96 !important;
        letter-spacing: -0.05em !important;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: clamp(1.95rem, 12vw, 2.8rem) !important;
    }

    h2 {
        font-size: clamp(1.55rem, 8.5vw, 2.25rem) !important;
    }

    h3 {
        font-size: clamp(1.05rem, 6.5vw, 1.45rem) !important;
    }

    .hero-floating-badges {
        transform: scale(0.86);
        transform-origin: center;
    }

    .hero-floating-badge--four {
        right: -1% !important;
        bottom: 10% !important;
    }

    .service-name,
    .service-title,
    .service-preview-title {
        font-size: clamp(1.4rem, 9vw, 2.15rem) !important;
    }
}

/* Footer layout: keep it fluid on tablet and mobile */
footer .max-w-screen-2xl > div:first-child {
    min-width: 0;
}

footer .max-w-screen-2xl > div:first-child > div {
    min-width: 0;
}

@media (max-width: 1023px) {
    footer .max-w-screen-2xl > div:first-child {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 2rem !important;
    }

    footer .mt-16.pt-8.border-t {
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    footer .max-w-screen-2xl {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    footer .max-w-screen-2xl > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
    }

    footer .max-w-screen-2xl > div:first-child > div {
        max-width: 100% !important;
    }

    footer .mt-6.flex.gap-x-4 {
        gap: 0.9rem !important;
        flex-wrap: wrap;
    }

    footer .mt-16.pt-8.border-t {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.8rem !important;
    }

    footer .mt-16.pt-8.border-t > div:last-child {
        flex-wrap: wrap;
        gap: 0.9rem !important;
    }
}

/* Shared Suite-inspired card motion */
.site-card-motion {
    --card-motion-delay: 0s;
    animation: siteCardFloat 7s ease-in-out infinite;
    animation-delay: var(--card-motion-delay);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.2s ease;
    contain: layout style;
}

.site-card-motion:hover,
.site-card-motion:focus-within {
    animation-play-state: paused;
}

.site-card-motion:not(.floating-card):not(.suite-card):hover,
.site-card-motion:not(.floating-card):not(.suite-card):focus-within {
    transform: translateY(-6px);
    border-color: rgba(240,122,32,0.24) !important;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.12) !important;
}

@keyframes siteCardFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -6px; }
}

/* Homepage testimonial carousel */
.testimonial-viewport {
    overflow: hidden;
    padding: 0.6rem 0.2rem 1.4rem;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
}

.testimonial-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    color: #111111;
    background: rgba(247,246,243,0.96);
    border: 1px solid rgba(17,17,17,0.10);
    box-shadow: 0 12px 24px -20px rgba(0,0,0,0.4);
    transition: transform 220ms ease, border-color 220ms ease, color 220ms ease;
}

.testimonial-control:hover,
.testimonial-control:focus-visible {
    color: #F07A20;
    border-color: rgba(240,122,32,0.35);
    transform: translateY(-2px);
}

.testimonial-progress {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    min-height: 0.5rem;
    margin-top: 0.25rem;
}

.testimonial-progress-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(17,17,17,0.16);
    transition: width 300ms ease, background-color 300ms ease;
}

.testimonial-progress-dot.is-active {
    width: 1.5rem;
    background: #F07A20;
}

@media (max-width: 1023px) {
    .testimonial-card {
        flex-basis: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        flex-basis: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-card-motion {
        animation: none !important;
        translate: none !important;
    }

    .testimonial-track {
        transition: none;
    }
}


/* Products Dropdown Nav */
.nav-dropdown-group:hover .nav-dropdown {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}
