/* ==========================================================================
   SUTHARTECH CORE THEME & DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-main: #FAFAF9;
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --btn-primary: #1E293B;
    --btn-primary-hover: #0F172A;
    --border-subtle: #E2E8F0;
    --accent-pink: #F4C7D7;
    --accent-blue: #C7DDF4;
    --surface-white: #FFFFFF;
    --text-body: #475569;
    --text-muted: #94A3B8;
    --border-strong: #CBD5E1;
    --accent-blue-strong: #2563EB;
    --accent-pink-strong: #BE185D;
    --accent-sky: #BAE6FD;
    --accent-sky-strong: #0369A1;
}

html {
    background-color: var(--bg-main);
}

body {
    font-family: 'Geist', 'Plus Jakarta Sans', sans-serif;
    background-color: transparent;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-shader-layer {
    z-index: 0;
    pointer-events: none;
}

body>header,
body>main,
body>footer {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   NAVBAR
   -------------------------------------------------------------------------- */
.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
}

.site-navbar.glass-panel {
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0 !important;
}

.site-navbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-navbar-inner>a:first-child {
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.site-navbar-inner>a:first-child>div {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
}

.site-navbar-menu {
    align-items: center;
    gap: 4px;
    padding: 6px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 9999px;
    background: rgba(226, 232, 240, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
}

.site-navbar-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
    color: var(--text-secondary);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-navbar-menu a:hover,
.site-navbar-menu a.navbar-link-current {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.92);
}

.site-navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.55rem 0.5rem 1rem;
    flex-shrink: 0;
}

.site-navbar-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: var(--btn-primary);
    color: #FFFFFF;
    font-size: 0.9rem;
}

/* Mobile menu toggle: ONLY visible on mobile (< 768px) */
#site-mobile-nav-toggle {
    display: none !important;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

#site-mobile-nav-toggle:hover {
    background: #FFFFFF;
    border-color: var(--border-strong);
}

/* Mobile drawer: strictly hidden on all screens by default */
#site-mobile-menu-drawer {
    display: none !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.08);
}

@media (max-width: 767px) {
    .site-navbar-inner {
        min-height: 60px;
        gap: 12px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .site-navbar-menu {
        display: none !important;
    }

    #site-mobile-nav-toggle {
        display: flex !important;
    }

    #site-mobile-menu-drawer.is-open {
        display: block !important;
    }

    .site-navbar-cta {
        display: none !important;
    }

    .site-navbar-cta-icon {
        display: none;
    }
}

@media (min-width: 768px) {
    #site-mobile-nav-toggle {
        display: none !important;
    }

    #site-mobile-menu-drawer,
    #site-mobile-menu-drawer.is-open {
        display: none !important;
    }

    .site-navbar-menu {
        display: inline-flex !important;
    }

    .site-navbar-cta {
        display: inline-flex !important;
    }
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    position: relative;
    width: 100%;
    padding: 4.25rem 0 1.5rem;
    border-top: 1px solid #1f2937;
    background: #111827;
    color: #ffffff;
}

.site-footer-inner {
    row-gap: 3rem;
}

.site-footer-brand-lockup {
    min-height: 2rem;
    line-height: 1;
}

.site-footer-mark {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
}

.site-footer-description {
    max-width: 18rem;
    margin-top: 0.4rem;
    line-height: 1.65;
}

.site-footer-heading {
    color: #f8fafc;
    font-size: 0.63rem;
    letter-spacing: 0.12em;
}

.site-footer-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    color: var(--text-muted);
    line-height: 1.4;
    transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer-link:hover,
.site-footer-link:focus-visible {
    color: #ffffff;
    transform: translateX(3px);
    outline: none;
}

.site-footer-bottom {
    color: #64748b;
    line-height: 1.4;
}

.site-footer-bottom p {
    margin: 0;
}

.site-footer-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.site-footer-status span {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: #34d399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.1);
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 3rem;
    }

    .site-footer-inner {
        row-gap: 2.25rem;
    }

    .site-footer-brand {
        padding-bottom: 0.5rem;
    }

    .site-footer-bottom {
        align-items: flex-start;
        margin-top: 0.5rem;
        padding-top: 1.25rem;
    }
}

/* --------------------------------------------------------------------------
   GLASSMORPHISM & BUTTONS
   -------------------------------------------------------------------------- */
.glass-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
}

.btn-slate-primary {
    background-color: var(--btn-primary);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.btn-slate-primary:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}

.btn-slate-secondary {
    background-color: #FFFFFF;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.btn-slate-secondary:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   AMBIENT 3D GLASS ORBS & CUBES
   -------------------------------------------------------------------------- */
@keyframes floatSlow {

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

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

@keyframes floatReverse {

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

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

.animate-float-slow {
    animation: floatSlow 14s ease-in-out infinite;
}

.animate-float-reverse {
    animation: floatReverse 16s ease-in-out infinite;
}

.animate-float-delayed {
    animation: floatSlow 13s ease-in-out infinite 3s;
}

.glass-orb {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.78) 0 15%, rgba(244, 199, 215, 0.28) 43%, rgba(199, 221, 244, 0.38) 78%, rgba(170, 193, 218, 0.26) 100%);
    box-shadow: inset -2px -3px 6px rgba(133, 164, 198, 0.16), inset 2px 2px 5px rgba(255, 255, 255, 0.66), 0 4px 9px rgba(111, 140, 168, 0.045);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.glass-orb::before {
    content: '';
    position: absolute;
    width: 42%;
    height: 28%;
    top: 12%;
    left: 20%;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.3);
    filter: blur(1px);
    transform: rotate(-28deg);
}

.glass-cube {
    position: relative;
    overflow: hidden;
    clip-path: polygon(28% 0, 100% 14%, 76% 84%, 28% 100%, 0 68%, 6% 17%);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(199, 221, 244, 0.24) 55%, rgba(155, 185, 216, 0.38) 100%);
    box-shadow: inset -2px -2px 5px rgba(112, 148, 185, 0.13), inset 2px 2px 5px rgba(255, 255, 255, 0.62), 0 4px 9px rgba(111, 140, 168, 0.04);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-cube::before {
    inset: 8% 14% 12% 8%;
    clip-path: polygon(28% 0, 100% 16%, 72% 88%, 28% 100%, 0 66%, 7% 18%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(199, 221, 244, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.glass-cube::after {
    width: 38%;
    height: 18%;
    top: 13%;
    left: 23%;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.26);
    filter: blur(2px);
    transform: rotate(13deg);
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* Shared Agency Base Layouts */
.agency-page {
    position: relative;
    z-index: 1;
}

.agency-eyebrow {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.agency-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.agency-section-muted {
    border-top: 1px solid rgba(226, 232, 240, 0.7);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    background: rgba(241, 245, 249, 0.3);
}

.agency-section-heading {
    max-width: 52rem;
    margin-bottom: 2.5rem;
}

.agency-section-title {
    max-width: 48rem;
    color: var(--text-primary);
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.12;
}

@media (max-width: 767px) {
    .agency-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .agency-section-title {
        font-size: 1.7rem;
    }
}

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

    .agency-page *,
    .agency-page *::before,
    .agency-page *::after {
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}