/* =========================================
   SIEITZ – Premium Design System
   Stack: HTML5 + CSS3 + Vanilla JS + PHP
   ========================================= */

/* ----- Tokens ----- */
:root {
    --bg:           #0a0b0d;
    --surface:      #111216;
    --card:         #16181d;
    --border:       rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --blue:         #0077b6;
    --blue-hover:   #0096e1;
    --blue-glow:    rgba(0, 119, 182, 0.25);
    --pale:         #d9f1ff;
    --text:         #f5f7fa;
    --muted:        #8e9ba5;
    --r-xl:         1.5rem;
    --r-lg:         1rem;
    --r-md:         0.75rem;
    --ease:         cubic-bezier(0.2, 0, 0, 1);
    --container:    1280px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

.cursor-aura {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 30;
    transition: opacity 0.25s ease;
    mix-blend-mode: screen;
}

.cursor-aura__glow,
.cursor-aura__ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.cursor-aura__glow {
    width: 180px;
    height: 180px;
    background:
        radial-gradient(circle, rgba(0, 119, 182, 0.22) 0%, rgba(0, 119, 182, 0.08) 42%, rgba(0, 119, 182, 0) 72%);
    filter: blur(14px);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.cursor-aura__ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(217, 241, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 119, 182, 0.12);
    transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), background 0.24s var(--ease);
}

.has-cursor-aura .cursor-aura {
    opacity: 1;
}

body.has-cursor-aura.cursor-aura--active .cursor-aura__glow {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 1;
}

body.has-cursor-aura.cursor-aura--active .cursor-aura__ring {
    transform: translate(-50%, -50%) scale(1.28);
    border-color: rgba(217, 241, 255, 0.82);
    background: rgba(0, 119, 182, 0.12);
}

@media (pointer: coarse), (max-width: 1024px), (prefers-reduced-motion: reduce) {
    .cursor-aura {
        display: none;
    }
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
picture { display: block; }

/* ----- Utility ----- */
.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--pale));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center !important; }
.text-blue  { color: var(--blue); }
.text-pale  { color: var(--pale); }
.text-muted { color: var(--muted) !important; }
.bg-surface { background: var(--surface); }
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ----- Layout ----- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 120px 0; position: relative; overflow: hidden; }
.section--alt { background: var(--surface); }

/* --- Spacing Utilities --- */
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.split-grid--hero { gap: 4rem; }
.split-grid--section { gap: 5rem; }

.stats-grid,
.form-grid,
.footer__grid {
    display: grid;
}

.stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* ----- Glow Orbs ----- */
.orb {
    position: absolute;
    border-radius: 50%;
    background: var(--blue-glow);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.orb--hero-l  { width: 700px; height: 700px; top: -200px; left: -200px; }
.orb--hero-r  { width: 500px; height: 500px; bottom: -150px; right: -150px; opacity:.6; }
.orb--mid     { width: 600px; height: 400px; top: 0; left: 50%; transform: translateX(-50%); opacity:.5; }

/* All direct children of section relative */
.section > * { position: relative; z-index: 1; }

/* ----- Navbar (Floating Pill) ----- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 1.75rem 0;
    background: transparent;
    transition: all 0.4s var(--ease);
}

.navbar .container {
    display: flex;
    justify-content: center;
}

.navbar.scrolled {
    padding-top: 0.5rem;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1240px;
    padding: 0.72rem 1.7rem 0.72rem 2rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 18, 18, 0.08);
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.navbar__brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 10rem;
}

.navbar__brand-logo {
    display: block;
    height: 2.8rem;
    width: auto;
}

.navbar__links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 2.25rem;
    list-style: none;
    margin: 0 1.5rem;
}

.navbar__links a {
    font-size: 0.96rem;
    font-weight: 500;
    color: rgba(18, 18, 18, 0.72);
    transition: color .25s var(--ease);
}
.navbar__links a:hover,
.navbar__links a.active { color: #121212; }

/* Mobile toggle */
.navbar__toggle {
    display: none;
    background: rgba(18,18,18,0.04);
    border: 1px solid rgba(18,18,18,0.1);
    color: #121212;
    padding: .5rem .8rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: var(--r-lg);
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1rem;
}

.btn--primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.15);
}
.btn--primary:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 119, 182, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.05);
    border-color: var(--text);
    transform: translateY(-2px);
}

/* ----- Hero ----- */
.hero {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .85rem;
    color: var(--pale);
    margin-bottom: 2rem;
    background: rgba(255,255,255,.03);
}
.hero__eyebrow span { color: var(--blue); font-weight: 600; }

.hero__title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.75rem;
}

.hero__sub {
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__trust {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.hero__trust-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; }
.hero__trust-icons { display: flex; gap: 2.5rem; align-items: center; opacity: .4; }
.hero__trust-icons i { font-size: 1.5rem; }

.hero__visual {
    position: relative;
}
.hero__mockup {
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.6);
}
.hero__mockup img { width: 100%; display: block; }

/* Floating stat cards */
.hero__stat {
    position: absolute;
    padding: 1rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    backdrop-filter: blur(10px);
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    animation: float 4s ease-in-out infinite;
}
.hero__stat--tl { top: -1.5rem; left: -2rem; animation-delay: 0s; }
.hero__stat--br { bottom: 2rem; right: -2rem; animation-delay: 2s; }
.hero__stat__num { font-size: 1.5rem; font-weight: 800; color: var(--blue); display: block; }
.hero__stat__lbl { font-size: .75rem; color: var(--muted); }

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

/* ----- Section Headers ----- */
.sec-head { text-align: center; margin-bottom: 4rem; }
.sec-head__tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .9rem;
    border: 1px solid rgba(0,119,182,.3);
    border-radius: 100px;
    font-size: .8rem;
    color: var(--pale);
    background: rgba(0,119,182,.06);
    margin-bottom: 1.25rem;
}
.sec-head__title { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1rem; }
.sec-head__sub { font-size: 1.1rem; color: var(--muted); max-width: 640px; margin: 0 auto; }

/* ----- Cards ----- */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover {
    transform: translateY(-6px);
    border-color: var(--blue);
    box-shadow: 0 16px 48px var(--blue-glow);
}

.card__icon {
    width: 52px; height: 52px;
    background: rgba(0,119,182,.1);
    border: 1px solid rgba(0,119,182,.2);
    border-radius: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    transition: background .3s var(--ease), color .3s var(--ease);
}
.card:hover .card__icon {
    background: var(--blue);
    color: #fff;
}

.card__title { font-size: 1.25rem; margin-bottom: .75rem; }
.card__body { font-size: .95rem; color: var(--muted); margin-bottom: 1.5rem; }
.card__link { font-size: .9rem; color: var(--blue); font-weight: 600; transition: gap .2s; display: inline-flex; align-items: center; gap: .4rem; }
.card__link:hover { gap: .7rem; }

/* ----- Grid ----- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ----- Why Section Numbers ----- */
.why-card { position: relative; }
.why-card__num {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0,119,182,.08);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: .5rem;
}

/* ----- Comparison Table ----- */
.table-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; }
thead tr { background: #1a1a1a; }
th {
    padding: 1.25rem 1.75rem;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
td {
    padding: 1.25rem 1.75rem;
    font-size: .95rem;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,.015); }
.td-product { color: var(--text); font-weight: 600; }
.td-badge {
    display: inline-block;
    padding: .25rem .85rem;
    border-radius: 100px;
    border: 1px solid rgba(0,119,182,.3);
    color: var(--pale);
    font-size: .8rem;
    background: rgba(0,119,182,.06);
}

/* ----- CTA Banner ----- */
.cta-banner {
    background: linear-gradient(135deg, #0f1f2e 0%, #0a1520 100%);
    border: 1px solid rgba(0,119,182,.2);
    border-radius: var(--r-xl);
    padding: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,119,182,.15) 0%, transparent 70%);
}

/* ----- Divider Line ----- */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ----- Footer ----- */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}
.footer__brand { margin-bottom: 1rem; display: inline-flex; align-items: center; }
.footer__brand-logo { display: block; height: 2rem; width: auto; }
.footer__desc { font-size: .9rem; color: var(--muted); max-width: 280px; margin-bottom: 1.5rem; }
.footer__socials { display: flex; gap: 1rem; }
.footer__social {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: .5rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    font-size: .9rem;
    transition: color .2s, border-color .2s;
}
.footer__social:hover { color: var(--blue); border-color: var(--blue); }
.footer__heading { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 1.25rem; font-weight: 700; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer__links a { font-size: .9rem; color: var(--muted); transition: color .2s; }
.footer__links a:hover { color: var(--text); }
.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1rem;
}
.footer__legal a {
    font-size: .9rem;
    color: var(--muted);
    transition: color .2s;
}
.footer__legal a:hover {
    color: var(--text);
}
.footer__bottom {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .85rem;
    color: var(--muted);
}

/* ----- Reveal Animations ----- */
.reveal {
    opacity: 1;
    transform: none;
}

.js-enhanced .reveal {
    transition: all 0.8s var(--ease);
}

.js-enhanced .reveal.reveal-pending {
    opacity: 0;
    transform: translateY(20px);
}

.js-enhanced .reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.grid { display: grid; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 3rem; }
.align-items-center { align-items: center; }

/* ----- Breadcrumb ----- */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--muted); margin-bottom: 2rem; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb__sep { opacity: .4; }
.breadcrumb__cur { color: var(--text); }

/* ----- Policy Pages ----- */
.policy-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1200;
}

.policy-progress__bar {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #0077b6, #55c7ff);
    box-shadow: 0 0 18px rgba(0, 119, 182, 0.45);
    transition: width 0.15s linear;
}

.policy-hero {
    padding: 140px 0 32px;
}

.policy-breadcrumb {
    margin-bottom: 1.5rem;
}

.policy-hero__content {
    max-width: 900px;
}

.policy-kicker {
    font-size: .82rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
}

.policy-hero__updated {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
}

.policy-layout {
    padding: 0 0 120px;
}

.policy-layout__grid {
    display: grid;
    grid-template-columns: minmax(0, 900px) 280px;
    gap: 3rem;
    align-items: start;
}

.policy-main {
    min-width: 0;
}

.policy-document {
    background: #ffffff;
    color: #333333;
    border: 1px solid #e5e7eb;
    border-radius: 1.75rem;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.policy-document__intro,
.policy-document__paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
}

.policy-document__intro + .policy-document__intro,
.policy-document__paragraph + .policy-document__paragraph {
    margin-top: 1rem;
}

.policy-section {
    scroll-margin-top: 110px;
}

.policy-section + .policy-section {
    margin-top: 3rem;
}

.policy-section__title {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 1.25rem;
}

.policy-document__list,
.policy-document__ordered-list {
    margin: 1rem 0 0;
    padding-left: 1.35rem;
    display: grid;
    gap: .75rem;
    color: #333333;
}

.policy-document__list + .policy-document__paragraph,
.policy-document__ordered-list + .policy-document__paragraph {
    margin-top: 1rem;
}

.policy-document__list li,
.policy-document__ordered-list li {
    line-height: 1.8;
}

.policy-inline-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.policy-inline-link:hover {
    color: #0077b6;
}

.policy-sidebar {
    position: sticky;
    top: 110px;
}

.policy-toc {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(18px);
}

.policy-toc__eyebrow {
    font-size: .8rem;
    color: rgba(255,255,255,0.72);
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-toc__list {
    list-style: none;
    display: grid;
    gap: .65rem;
}

.policy-toc__link {
    display: block;
    padding: .7rem .8rem;
    border-radius: .9rem;
    color: rgba(255,255,255,0.74);
    font-size: .92rem;
    line-height: 1.45;
    transition: background .2s ease, color .2s ease;
}

.policy-toc__link:hover,
.policy-toc__link.is-active {
    background: rgba(0, 119, 182, 0.16);
    color: #ffffff;
}

.policy-mobile-nav {
    display: none;
    margin-bottom: 1.25rem;
}

.policy-mobile-nav__label {
    display: block;
    margin-bottom: .5rem;
    font-size: .85rem;
    color: rgba(255,255,255,0.72);
}

.policy-mobile-nav__select {
    width: 100%;
    padding: .95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(17, 18, 22, 0.96);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
}

.policy-mobile-nav__select:focus-visible,
.policy-toc__link:focus-visible {
    outline: 2px solid rgba(85, 199, 255, 0.8);
    outline-offset: 2px;
}

/* ----- Product Page ----- */
.product-hero { padding: 160px 0 100px; position: relative; overflow: hidden; }
.product-tag { display: inline-block; padding: .35rem .9rem; border-radius: 100px; border: 1px solid rgba(0,119,182,.3); color: var(--pale); font-size: .85rem; background: rgba(0,119,182,.06); margin-bottom: 1.5rem; }
.product-title { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 1rem; }
.product-tagline { font-size: 1.2rem; color: var(--blue); font-weight: 600; margin-bottom: 2rem; }

.problem-solution { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.p-s-card { padding: 2rem; border-radius: var(--r-xl); background: var(--card); border-left: 4px solid; }
.p-s-card--problem { border-color: #ef4444; }
.p-s-card--solution { border-color: #22c55e; }
.p-s-card__label { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: .75rem; }
.p-s-card--problem .p-s-card__label { color: #ef4444; }
.p-s-card--solution .p-s-card__label { color: #22c55e; }
.p-s-card p { font-size: .95rem; color: var(--muted); }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.feature-item {
    display: flex;
    align-items: center;
    gap: .875rem;
    padding: 1rem 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    font-size: .9rem;
    transition: border-color .25s;
}
.feature-item:hover { border-color: var(--blue); }
.feature-item i { color: var(--blue); font-size: .9rem; flex-shrink: 0; }

.for-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.for-list li { display: flex; align-items: center; gap: 1rem; font-size: 1rem; color: var(--muted); }
.for-list li::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

.pricing-card {
    text-align: center;
    padding: 3.5rem;
    max-width: 520px;
    margin: 0 auto;
}
.pricing-pill {
    display: inline-block;
    padding: .75rem 2.5rem;
    border-radius: 100px;
    background: rgba(0,119,182,.08);
    border: 1px solid rgba(0,119,182,.2);
    color: var(--pale);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

/* ----- Contact ----- */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: .5rem; }
.form-input, .form-textarea {
    width: 100%;
    padding: .9rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    transition: border-color .25s;
    outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--blue); }
.form-textarea { resize: vertical; min-height: 150px; }
.form-dropdown {
    position: relative;
}
.form-dropdown::before {
    content: "";
    position: absolute;
    top: 50%;
    right: .8rem;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: .95rem;
    transform: translateY(-50%);
    background: linear-gradient(180deg, rgba(13, 36, 53, 0.95), rgba(9, 24, 35, 0.95));
    border: 1px solid rgba(111, 201, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 22px rgba(0, 0, 0, 0.22);
    pointer-events: none;
    z-index: 2;
}
.form-dropdown::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.7rem;
    width: .55rem;
    height: .55rem;
    border-right: 2px solid #bce7ff;
    border-bottom: 2px solid #bce7ff;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
    z-index: 2;
}
.form-dropdown.is-open::after {
    transform: translateY(-30%) rotate(-135deg);
}
.form-dropdown__trigger {
    width: 100%;
    min-height: 56px;
    padding: .65rem 4.4rem .65rem 1.1rem;
    background:
        linear-gradient(180deg, rgba(18, 25, 33, 0.98), rgba(12, 16, 22, 0.98));
    border: 1px solid rgba(0, 119, 182, 0.55);
    border-radius: var(--r-lg);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 0 1px rgba(0, 119, 182, 0.08);
    color: var(--text);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: .2rem;
    text-align: left;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.form-dropdown__trigger:hover {
    border-color: rgba(90, 196, 255, 0.72);
}
.form-dropdown__trigger:focus-visible,
.form-dropdown.is-open .form-dropdown__trigger {
    border-color: #38bdf8;
    box-shadow:
        0 0 0 4px rgba(56, 189, 248, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.06);
}
.form-dropdown__label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #7ea8c3;
}
.form-dropdown__value {
    font-size: .95rem;
    font-weight: 500;
    color: #f8fbff;
    line-height: 1.35;
    padding-right: .5rem;
}
.form-dropdown.is-placeholder .form-dropdown__value {
    color: #d5d9e1;
}
.form-dropdown__menu {
    position: absolute;
    top: calc(100% + .8rem);
    left: 0;
    right: 0;
    z-index: 15;
    padding: .8rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(106, 196, 255, 0.18);
    background: linear-gradient(180deg, rgba(11, 17, 24, 0.98), rgba(15, 20, 28, 0.98));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.form-dropdown__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.form-dropdown__option {
    width: 100%;
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: .9rem;
    align-items: center;
    padding: .72rem .95rem;
    border: 1px solid transparent;
    border-radius: .95rem;
    background: transparent;
    color: #f8fbff;
    text-align: left;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s;
}
.form-dropdown__option:hover,
.form-dropdown__option:focus-visible {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.18);
    transform: translateX(3px);
    outline: none;
}
.form-dropdown__option.is-selected {
    background: linear-gradient(180deg, rgba(0, 119, 182, 0.16), rgba(14, 77, 112, 0.14));
    border-color: rgba(84, 193, 255, 0.34);
}
.form-dropdown__option-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: .75rem;
    background: rgba(255,255,255,0.05);
    color: #8fb7ce;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
}
.form-dropdown__option-text {
    font-size: .95rem;
    line-height: 1.25;
}
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }
.form-alert {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--r-lg);
    border: 1px solid transparent;
    font-size: .95rem;
    line-height: 1.6;
}
.form-alert--success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.35);
    color: #d1fae5;
}
.form-alert--error {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.35);
    color: #fecaca;
}
.form-meta {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.6;
}
.contact-success__hero {
    text-align: center;
    max-width: 900px;
}
.contact-success__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    background: rgba(0, 119, 182, 0.12);
    border: 1px solid rgba(0, 119, 182, 0.2);
    color: #8bd4ff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.contact-success__title {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
}
.contact-success__sub {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.contact-success__panel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.contact-success__icon {
    width: 72px;
    height: 72px;
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,119,182,0.22), rgba(41,182,246,0.14));
    color: #7dd3fc;
    font-size: 1.6rem;
    box-shadow: 0 18px 40px rgba(0, 119, 182, 0.18);
}
.contact-success__lead {
    margin: 0 0 .6rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
}
.contact-success__copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}
.contact-success__copy a {
    color: #8bd4ff;
    text-decoration: none;
}
.contact-success__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
.contact-success__link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--pale);
    font-weight: 600;
    text-decoration: none;
}
.contact-success__link:hover {
    gap: .8rem;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.contact-item__icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(0,119,182,.1);
    border-radius: .75rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
}
.contact-item__title { font-size: .9rem; font-weight: 600; margin-bottom: .25rem; }
.contact-item__val { font-size: .9rem; color: var(--muted); }

/* ----- Product Rows (Alternating) ----- */
.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
}

.product-row:last-child {
    margin-bottom: 0;
}

.product-row:nth-child(even) .product-row__text {
    order: 2;
}

.product-row__img {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.product-row__img img {
    width: 100%;
    display: block;
    transition: transform 0.5s var(--ease);
}

.product-row:hover .product-row__img img {
    transform: scale(1.05);
}

.product-row__tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 1rem;
    display: block;
}

.product-logo-badge {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(236,244,250,0.94));
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 0 8px rgba(0, 119, 182, 0.06);
    overflow: hidden;
    flex-shrink: 0;
}

.product-logo-badge__img {
    width: 72%;
    height: 72%;
    object-fit: contain;
    display: block;
}

.product-logo-badge--ghost {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 6rem;
    height: 6rem;
    opacity: 0.14;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
}

.product-logo-badge--ghost .product-logo-badge__img {
    width: 68%;
    height: 68%;
    opacity: 0.75;
}

.product-row__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.product-row__desc {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* ----- Advanced Layout Components ----- */
.adv-container {
    position: relative;
    padding: 140px 0;
}

.adv-row {
    display: flex;
    align-items: center;
    gap: 8rem;
    margin-bottom: 180px;
}

.adv-row:last-child { margin-bottom: 0; }
.adv-row--reverse { flex-direction: row-reverse; }

.adv-visual {
    flex: 1.2;
    position: relative;
    perspective: 1200px;
}

.adv-image-container {
    transform: rotateY(-12deg) rotateX(4deg);
    transition: transform 0.8s var(--ease);
    transform-style: preserve-3d;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #121212;
    aspect-ratio: 16 / 10;
    box-shadow: 
        -20px 20px 60px rgba(0,0,0,0.5),
        1px 1px 0 rgba(255,255,255,0.1);
}

.adv-row:hover .adv-image-container {
    transform: rotateY(0) rotateX(0);
}

.adv-image-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.85;
}

.adv-glass-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    padding: 0 4rem;
    z-index: 2;
}

.adv-row--reverse .adv-glass-overlay {
    justify-content: flex-start;
}

.adv-feature-card {
    background: rgba(31, 31, 31, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--r-xl);
    max-width: 420px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    pointer-events: auto;
}

.adv-number {
    position: absolute;
    top: -60px;
    left: -40px;
    font-size: 12rem;
    font-weight: 800;
    color: rgba(255,255,255,0.02);
    font-family: 'Outfit';
    z-index: -1;
    user-select: none;
}

.adv-row--reverse .adv-number {
    left: auto;
    right: -40px;
}

.floating-badge {
    position: absolute;
    padding: 0.75rem 1.25rem;
    background: var(--blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    top: -15px;
    right: -15px;
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.4);
}

/* ----- Product Deep-Dive (Console) ----- */
.product-console {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, rgba(0, 119, 182, 0.05), transparent 40%);
    border-bottom: 1px solid var(--border);
}

.console-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 119, 182, 0.1);
    border: 1px solid rgba(0, 119, 182, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
    margin-bottom: 2rem;
}

.console-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.console-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.console-mockup {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.console-mockup img {
    width: 100%;
    display: block;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.capability-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--r-lg);
    transition: all 0.4s var(--ease);
}

.capability-card:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
    background: rgba(0, 119, 182, 0.03);
}

.capability-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 119, 182, 0.1);
    color: var(--blue);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.spec-sheet {
    background: rgba(31, 31, 31, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: var(--r-xl);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.spec-item:last-child { border-bottom: none; }
.spec-label { color: var(--muted); font-size: 0.9rem; }
.spec-value { color: white; font-weight: 600; font-size: 0.9rem; }

/* ----- Suite Page ----- */
.suite-hero {
    padding: 180px 0 110px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 119, 182, 0.14), transparent 35%),
        radial-gradient(circle at 85% 40%, rgba(0, 119, 182, 0.08), transparent 30%);
}

.suite-hero--centered {
    padding-bottom: 90px;
}

.suite-hero__beam {
    position: absolute;
    inset: 110px 50% auto auto;
    width: 360px;
    height: 720px;
    transform: translateX(50%);
    background: linear-gradient(180deg, rgba(0, 119, 182, 0.5) 0%, rgba(0, 119, 182, 0.18) 38%, rgba(0, 119, 182, 0) 100%);
    filter: blur(70px);
    opacity: 0.8;
    pointer-events: none;
}

.suite-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.suite-hero__title {
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    line-height: 0.96;
    margin: 1.5rem 0;
    max-width: 10ch;
}

.suite-hero__body {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 58ch;
    line-height: 1.8;
}

.suite-hero__intro {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.suite-hero__eyebrow {
    margin: 0 auto;
    justify-content: center;
}

.suite-hero__title--compact {
    max-width: 9ch;
    margin-left: auto;
    margin-right: auto;
}

.suite-hero__body--compact {
    max-width: 46ch;
    margin: 0 auto;
}

.suite-hero__actions,
.product-spotlight__actions,
.suite-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.suite-hero__actions { margin-top: 2rem; }

.suite-hero__actions--centered {
    justify-content: center;
}

.suite-hero__micro {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.suite-hero__micro i {
    color: var(--blue);
    margin-right: 0.4rem;
}

.suite-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.suite-metric {
    background: rgba(26, 26, 26, 0.78);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    padding: 1.3rem 1.25rem;
    backdrop-filter: blur(18px);
}

.suite-metric__value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.suite-metric__label {
    font-size: 0.85rem;
    color: var(--muted);
}

.suite-stage {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 3.5rem auto 0;
}

.suite-stage__screen {
    position: relative;
    padding: 1.4rem;
    background: linear-gradient(180deg, rgba(15, 17, 24, 0.96) 0%, rgba(8, 18, 29, 0.97) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 32px;
    box-shadow: 0 45px 120px rgba(0,0,0,0.55);
}

.suite-stage__screen-top,
.suite-stage__stats,
.suite-stage__cards,
.suite-trust__row,
.suite-highlights__grid {
    display: flex;
}

.suite-stage__screen-top {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.suite-stage__dots {
    display: flex;
    gap: 0.45rem;
}

.suite-stage__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
}

.suite-stage__dots span:first-child { background: #ff5f57; }
.suite-stage__dots span:nth-child(2) { background: #febc2e; }
.suite-stage__dots span:last-child { background: #28c840; }

.suite-stage__screen-label,
.suite-stage__float-label {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.suite-stage__stats {
    gap: 1rem;
    margin-bottom: 1rem;
}

.suite-stage__stat,
.suite-stage__card,
.suite-highlight-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
}

.suite-stage__stat {
    flex: 1;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.suite-stage__stat-icon,
.suite-highlight-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 119, 182, 0.14);
    color: var(--blue);
    flex-shrink: 0;
}

.suite-stage__stat strong {
    display: block;
    margin-bottom: 0.15rem;
}

.suite-stage__stat p,
.suite-stage__card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.suite-stage__graph {
    position: relative;
    height: 300px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background:
        linear-gradient(180deg, rgba(0, 119, 182, 0.05), rgba(0, 0, 0, 0)),
        rgba(8, 11, 17, 0.92);
}

.suite-stage__graph-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 100% 20%, 10% 100%;
    opacity: 0.55;
}

.suite-stage__graph-line {
    position: absolute;
    inset: 0;
}

.suite-stage__graph-line::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 28%;
    bottom: 14%;
    border-radius: 999px;
}

.suite-stage__graph-line--one::before {
    border-bottom: 4px solid rgba(0, 119, 182, 0.9);
    clip-path: polygon(0 82%, 10% 78%, 21% 74%, 32% 69%, 43% 71%, 55% 58%, 67% 62%, 79% 35%, 90% 38%, 100% 20%, 100% 100%, 0 100%);
    box-shadow: 0 0 18px rgba(0, 119, 182, 0.45);
}

.suite-stage__graph-line--two::before {
    border-bottom: 3px dashed rgba(255,255,255,0.45);
    clip-path: polygon(0 88%, 14% 80%, 28% 72%, 42% 66%, 56% 60%, 70% 52%, 84% 42%, 100% 30%, 100% 100%, 0 100%);
    opacity: 0.75;
}

.suite-stage__cards {
    gap: 1rem;
    margin-top: 1rem;
}

.suite-stage__card {
    flex: 1;
    padding: 1rem 1.1rem;
}

.suite-stage__card-kicker {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
}

.suite-stage__card h2 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.suite-stage__float {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(13, 20, 31, 0.84);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.32);
}

.suite-stage__float strong {
    display: block;
    margin: 0.35rem 0;
}

.suite-stage__float p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.suite-stage__float--left {
    left: -70px;
}

.suite-stage__float--right {
    right: -70px;
}

.suite-console {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.9) 0%, rgba(12, 21, 32, 0.92) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 1.25rem;
    box-shadow: 0 40px 120px rgba(0,0,0,0.5);
    position: relative;
}

.suite-console__header,
.suite-console__footer,
.suite-console__card-top,
.ecosystem-card__top,
.ecosystem-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.suite-console__dots {
    display: flex;
    gap: 0.45rem;
}

.suite-console__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.24);
}

.suite-console__dots span:first-child { background: #ff5f57; }
.suite-console__dots span:nth-child(2) { background: #febc2e; }
.suite-console__dots span:last-child { background: #28c840; }

.suite-console__label,
.suite-console__meta-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.suite-console__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.suite-console__card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 1.2rem;
}

.suite-console__icon,
.ecosystem-card__icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 119, 182, 0.05);
    color: var(--blue);
    border: 1px solid rgba(0, 119, 182, 0.3);
    box-shadow: 0 0 15px rgba(0, 119, 182, 0.4);
    text-shadow: 0 0 8px rgba(0, 119, 182, 0.6);
}

.suite-console__eyebrow,
.ecosystem-card__fit,
.ecosystem-card__purpose {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.suite-console__card h2 {
    font-size: 1.25rem;
    margin: 1rem 0 0.45rem;
}

.suite-console__card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.suite-console__footer {
    align-items: flex-end;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.suite-console__footer strong {
    display: block;
    margin-top: 0.35rem;
    max-width: 28ch;
}

.suite-console__link {
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
}

.suite-principles {
    border-top: 1px solid rgba(255,255,255,0.04);
}

.suite-trust {
    padding: 34px 0 22px;
}

.suite-trust__label {
    margin-bottom: 1rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.suite-trust__row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    color: rgba(255,255,255,0.78);
    font-weight: 600;
    text-align: center;
}

.suite-highlights__grid {
    gap: 1.5rem;
}

.suite-highlight-card {
    flex: 1;
    padding: 1.7rem;
}

.suite-highlight-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0 0.6rem;
}

.suite-highlight-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.suite-principles__grid,
.suite-flow__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.suite-principle,
.suite-flow__card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 2rem;
}

.suite-principle__kicker,
.suite-cta__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
}

.suite-principle h2,
.suite-flow__card h3 {
    font-size: 1.55rem;
    margin-bottom: 1rem;
}

.suite-principle p,
.suite-flow__card p,
.suite-cta__content p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

.product-spotlight__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.product-spotlight__tab {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    border-radius: 999px;
    padding: 0.9rem 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font: inherit;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.product-spotlight__tab:hover,
.product-spotlight__tab.is-active {
    color: var(--text);
    border-color: rgba(0, 119, 182, 0.35);
    background: rgba(0, 119, 182, 0.12);
    transform: translateY(-1px);
}

.product-spotlight__panel {
    display: none;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
    background: linear-gradient(180deg, rgba(20,20,20,0.92), rgba(14,21,30,0.92));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.product-spotlight__panel.is-active {
    display: grid;
}

.product-spotlight__media {
    position: relative;
}

.product-spotlight__image {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    min-height: 460px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.product-spotlight__image img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
}

.product-spotlight__signal {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    max-width: 260px;
    background: rgba(15, 23, 33, 0.84);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem 1.15rem;
    backdrop-filter: blur(18px);
}

.product-spotlight__signal-label,
.product-mini-card__label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
}

.product-spotlight__signal strong {
    line-height: 1.5;
}

.product-spotlight__eyebrow {
    margin-bottom: 1rem;
}

.product-spotlight__eyebrow span {
    display: inline-flex;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 119, 182, 0.08);
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 700;
}

.product-spotlight__content h3 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 0.65rem;
}

.product-spotlight__tagline {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.product-spotlight__summary {
    color: var(--muted);
    line-height: 1.8;
    max-width: 60ch;
}

.product-spotlight__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.product-mini-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    padding: 1.1rem 1.15rem;
}

.product-mini-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.product-spotlight__feature-list,
.ecosystem-card__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.feature-pill,
.ecosystem-card__signals span {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-size: 0.84rem;
}

.product-spotlight__actions {
    margin-top: 1.75rem;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.ecosystem-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 26px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.ecosystem-card--visual {
    overflow: hidden;
}

.ecosystem-card__visual {
    margin: -1.5rem -1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    height: 220px;
    overflow: hidden;
}

.ecosystem-card__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ecosystem-card h3 {
    font-size: 1.6rem;
    margin: 1.2rem 0 0.45rem;
}

.ecosystem-card__tagline {
    color: var(--text);
    margin-bottom: 0.85rem;
}

.ecosystem-card__body {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.ecosystem-card__footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    align-items: flex-start;
}

.suite-flow__step {
    display: inline-flex;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    color: rgba(0, 119, 182, 0.28);
}

.suite-matrix__table {
    box-shadow: 0 30px 90px rgba(0,0,0,0.28);
}

.suite-cta {
    padding: 4.5rem;
}

.suite-cta__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.suite-cta__content h2 {
    font-size: clamp(2.3rem, 4.8vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1.2rem;
}

.products-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-cta__sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.home-cta__sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ----- Advanced SaaS Visuals ----- */
.glow-portal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.interactive-hero {
    --hero-shift-x: 0px;
    --hero-shift-y: 0px;
}

.hero-bg-shift {
    background-repeat: no-repeat;
    background-size: cover;
    background-position:
        calc(var(--hero-bg-x, 50%) + var(--hero-shift-x))
        calc(var(--hero-bg-y, 50%) + var(--hero-shift-y));
    transition: background-position 0.24s var(--ease);
}

[data-hero-layer] {
    --layer-x: 0px;
    --layer-y: 0px;
    will-change: transform;
    transition: transform 0.24s var(--ease);
}

.glow-portal[data-hero-layer] {
    transform: translate(
        calc(-50% + var(--layer-x)),
        calc(-50% + var(--layer-y))
    );
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.bento-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.bento-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 4px;
    opacity: 0.3;
    pointer-events: none;
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--blue);
    box-shadow: 0 0 40px rgba(0, 119, 182, 0.2);
    transform: translateY(-5px);
}

.bento-item--large { grid-column: span 8; }
.bento-item--medium { grid-column: span 4; }
.bento-item--small { grid-column: span 6; }

@media (max-width: 1024px) {
    .bento-item { grid-column: span 12 !important; }
}

.glass-panel {
    background: rgba(31, 31, 31, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.fact-panel {
    padding: 3rem;
    border-radius: 2rem;
}

.fact-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    background: rgba(0, 119, 182, 0.12);
    border: 1px solid rgba(0, 119, 182, 0.2);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fact-list {
    display: grid;
    gap: 1rem;
    margin: 0;
}

.fact-list__item {
    padding: 1.2rem 0 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fact-list__item:first-child {
    border-top: 0;
    padding-top: 0;
}

.fact-list dt {
    margin-bottom: 0.35rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fact-list dd {
    margin: 0;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.6;
}

.floating-object {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    animation: drift 6s ease-in-out infinite alternate;
}

@keyframes drift {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(-30px) rotate(5deg); }
}

.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: block;
    transform: translateY(100%);
    animation: textUp 0.8s var(--ease) forwards;
}

@keyframes textUp {
    to { transform: translateY(0); }
}

/* ----- Hero Advanced (Seamless) ----- */
.hero--advanced {
    padding: 260px 0 160px;
    overflow: hidden;
    position: relative;
    background-color: #030508;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(0, 119, 182, 0.08) 0%, transparent 60%);
}

.stars-container {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.9) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 90% 10%, rgba(0, 119, 182, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.7) 1px, transparent 1px),
        radial-gradient(circle at 15% 80%, rgba(0, 119, 182, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 75% 45%, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 200px 200px;
    opacity: 0;
    z-index: 1;
}

/* ----- Neon Motion Blobs ----- */
.neon-motion-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.neon-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: orb-drift 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 119, 182, 0.3); /* Primary Blue */
    top: -100px;
    left: -100px;
    animation-duration: 25s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(46, 188, 201, 0.25); /* Teal/Cyan */
    bottom: 10%;
    right: -50px;
    animation-duration: 22s;
    animation-direction: alternate-reverse;
}

.orb-3 {
    width: 700px;
    height: 700px;
    background: rgba(15, 30, 80, 0.4); /* Deep Purple/Blue */
    top: 30%;
    left: 40%;
    transform: translateX(-50%);
    animation-duration: 30s;
}

@keyframes orb-drift {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}


.hero-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.products-hero__copy {
    max-width: 560px;
}

.products-hero__title {
    display: inline-flex;
    flex-direction: column;
    gap: 0.04em;
    max-width: none;
    font-size: clamp(2.9rem, 5vw, 4.25rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.products-hero__title-line {
    display: block;
    white-space: nowrap;
}

.hero--advanced .hero__sub {
    margin-left: 0;
}

.hero__visual-wrap {
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.laptop-container {
    position: relative;
    perspective: 2500px;
    transform-style: preserve-3d;
}

.centered-laptop-wrap {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 4rem auto -140px auto;
    perspective: 2500px;
}

.centered-laptop-wrap .laptop-img {
    width: 100%;
    transform: rotateX(5deg) scale(1.05);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: rotateX(5deg) scale(1.05) translateY(0); }
    50% { transform: rotateX(5deg) scale(1.05) translateY(-15px); }
}

/* Holographic Screen Projection */
.laptop-composite {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hologram-icon {
    position: absolute;
    color: var(--blue);
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 119, 182, 0.8));
    opacity: 0;
    z-index: 20;
    animation: hologram-float 4s infinite ease-in-out alternate;
}

.hologram-icon.icon-1 { top: 15%; left: 35%; font-size: 3rem; animation-delay: 0s; color: #00b4d8; }
.hologram-icon.icon-2 { top: 5%; left: 60%; font-size: 2rem; animation-delay: 1s; color: #fff; }
.hologram-icon.icon-3 { top: 25%; left: 50%; font-size: 4rem; animation-delay: 2.5s; color: var(--blue); }
.hologram-icon.icon-4 { top: 15%; left: 70%; font-size: 2.5rem; animation-delay: 1.5s; color: #48cae4; }
.hologram-icon.icon-5 { top: 30%; left: 25%; font-size: 2rem; animation-delay: 3s; color: #fff; }

@keyframes hologram-float {
    0% { transform: translateY(0) translateZ(0) scale(1); opacity: 0.6; }
    100% { transform: translateY(-40px) translateZ(50px) scale(1.2); opacity: 1; filter: drop-shadow(0 0 25px rgba(0, 119, 182, 1)); }
}

.laptop-img {
    width: 110%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
    transform: rotateY(-20deg) rotateX(10deg) scale(1.1);
    transition: transform 1.2s var(--ease);
    box-shadow: 
        -30px 50px 100px rgba(0,0,0,0.7),
        0 0 40px rgba(0, 119, 182, 0.2);
}

.hero-img-right {
    width: 100%;
    height: auto;
    display: block;
    transform: scaleX(-1); /* 180 degrees horizontal flip */
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
    z-index: 10;
    position: relative;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6; 
}

.dgfy-hero {
    isolation: isolate;
    background:
        radial-gradient(circle at 18% 16%, rgba(0, 150, 255, 0.22) 0%, rgba(0, 150, 255, 0) 34%),
        radial-gradient(circle at 82% 20%, rgba(0, 119, 182, 0.24) 0%, rgba(0, 119, 182, 0) 38%),
        radial-gradient(circle at 50% 78%, rgba(0, 86, 179, 0.18) 0%, rgba(0, 86, 179, 0) 42%),
        linear-gradient(180deg, #04070d 0%, #02050a 55%, #010308 100%),
        url('../images/dgfy-herobg.png');
    background-repeat: no-repeat;
    background-size: auto, auto, auto, auto, cover;
    background-position:
        18% 16%,
        82% 20%,
        50% 78%,
        center,
        calc(var(--hero-bg-x, 50%) + var(--hero-shift-x))
        calc(var(--hero-bg-y, 50%) + var(--hero-shift-y));
}

.dgfy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 28px, 28px 100%;
    opacity: 0.18;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.dgfy-hero__grid {
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -4%;
    height: 58%;
    background:
        linear-gradient(rgba(0, 180, 216, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.15) 1px, transparent 1px);
    background-size: 100% 44px, 44px 100%;
    transform-origin: bottom center;
    transform: perspective(1100px) rotateX(72deg);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent 84%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.dgfy-hero__beam {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.dgfy-hero__grid[data-hero-layer] {
    transform:
        translate3d(var(--layer-x), var(--layer-y), 0)
        perspective(1100px)
        rotateX(72deg);
}

.dgfy-hero__beam[data-hero-layer],
.dgfy-hero__ring[data-hero-layer] {
    transform: translate3d(var(--layer-x), var(--layer-y), 0);
}

.dgfy-hero__beam--left {
    top: 18%;
    left: -4%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.28) 0%, rgba(0, 180, 216, 0) 72%);
}

.dgfy-hero__beam--right {
    right: 8%;
    bottom: 12%;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.24) 0%, rgba(0, 119, 182, 0) 74%);
}

.dgfy-hero__rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.dgfy-hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 180, 216, 0.22);
    box-shadow:
        0 0 24px rgba(0, 180, 216, 0.1),
        inset 0 0 24px rgba(0, 180, 216, 0.05);
}

.dgfy-hero__ring--one {
    width: 420px;
    height: 420px;
    top: 12%;
    right: 10%;
}

.dgfy-hero__ring--two {
    width: 250px;
    height: 250px;
    top: 26%;
    right: 19%;
}

.dgfy-hero__ring--three {
    width: 110px;
    height: 110px;
    top: 10%;
    left: 15%;
    border-color: rgba(217, 241, 255, 0.16);
}

.dgfy-hero .container,
.dgfy-hero .hero-split,
.dgfy-hero .reveal,
.dgfy-hero__visual {
    position: relative;
    z-index: 1;
}

.dgfy-hero__visual::before {
    content: "";
    position: absolute;
    inset: 8% 6% 10%;
    background:
        radial-gradient(circle at 50% 50%, rgba(72, 202, 228, 0.22) 0%, rgba(72, 202, 228, 0.08) 38%, transparent 74%);
    filter: blur(28px);
    z-index: -1;
}

.dgfy-hero .hero-img-right {
    filter:
        drop-shadow(0 0 18px rgba(0, 180, 216, 0.22))
        drop-shadow(0 26px 70px rgba(0, 0, 0, 0.42));
}

.skupervisor-hero {
    --hero-bg-x: 50%;
    --hero-bg-y: 62%;
    background-size: min(1240px, 92vw) auto;
}

.skupervisor-hero__copy {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.skupervisor-hero__copy .console-title,
.skupervisor-hero__copy .h4,
.skupervisor-hero__copy .text-muted {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.skupervisor-hero__actions {
    justify-content: center;
}

.proventous-hero {
    background:
        linear-gradient(180deg, rgba(6, 9, 14, 0.58) 0%, rgba(6, 9, 14, 0.76) 48%, rgba(6, 9, 14, 0.9) 100%),
        url('../images/proventous-herobg.png');
    background-repeat: no-repeat;
    background-size: auto, cover;
    background-position:
        center,
        calc(var(--hero-bg-x, 50%) + var(--hero-shift-x))
        calc(var(--hero-bg-y, 50%) + var(--hero-shift-y));
}

.proventous-hero .hero-split {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0;
}

.proventous-hero__copy {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.proventous-hero__copy .console-title,
.proventous-hero__copy .h4,
.proventous-hero__copy .text-muted {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.proventous-hero__actions {
    justify-content: center;
    flex-wrap: wrap;
}

.proventous-hero__visual {
    display: none;
}

.hero--advanced {
    position: relative;
    overflow: hidden;
}

.hero__visual-wrap--clean[data-hero-layer],
.proventous-hero__visual[data-hero-layer] {
    transform: translate3d(var(--layer-x), var(--layer-y), 0);
}

.horizon-glow[data-hero-layer] {
    transform: translate(
        calc(-50% + var(--layer-x)),
        var(--layer-y)
    );
}

.hero--advanced:hover .laptop-img {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.05);
}

.laptop-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    .products-hero__copy {
        max-width: 100%;
        margin: 0 auto;
    }
    .products-hero__title {
        font-size: clamp(2.2rem, 6vw, 3.4rem);
        margin-left: auto;
        margin-right: auto;
    }
    .hero--advanced .hero__sub { margin-left: auto; }
    .laptop-img { width: 100%; transform: rotateX(10deg); }
    .dgfy-hero__ring--one {
        width: 320px;
        height: 320px;
        right: 4%;
    }
    .dgfy-hero__ring--two {
        width: 180px;
        height: 180px;
        right: 16%;
    }
    .skupervisor-hero {
        --hero-bg-y: 68%;
        background-size: min(1080px, 118vw) auto;
    }
}

/* Fix global spacing */
.section {
    padding: 140px 0;
}

.section--alt {
    background: #0f1115;
}

/* ----- Services ----- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .hero { padding: 140px 0 80px; }
    .hero__title { font-size: 3.5rem; }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-dropdown__menu { position: static; margin-top: .8rem; }
    .form-dropdown__option { grid-template-columns: 2rem 1fr; padding: .7rem .85rem; }
    .contact-success__panel { grid-template-columns: 1fr; }
    .contact-success__actions { align-items: stretch; }
    .contact-success__actions .btn,
    .contact-success__link { justify-content: center; }
    .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .suite-hero__layout,
    .product-spotlight__panel { grid-template-columns: 1fr; }
    .suite-hero__metrics,
    .suite-principles__grid,
    .suite-flow__grid,
    .ecosystem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .suite-console__grid,
    .product-spotlight__cards { grid-template-columns: 1fr; }
    .product-spotlight__image,
    .product-spotlight__image img { min-height: 360px; }
    .suite-stage__float { display: none; }
    .suite-stage__cards,
    .suite-highlights__grid { flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .navbar {
        padding-top: 0.6rem;
    }
    .navbar .container {
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
    .navbar__inner {
        max-width: none;
        padding: 0.7rem 0.9rem 0.7rem 1rem;
        position: relative;
    }
    .btn-lg {
        padding: 0.95rem 1.45rem !important;
        font-size: 0.95rem;
    }
    .gsap-hero-section .hero__sub {
        color: rgba(255, 255, 255, 0.92) !important;
    }
}

/* ----- Products Page Enhancements ----- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.bento-item {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--blue);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.bento-item--large { grid-column: span 8; }
.bento-item--medium { grid-column: span 6; }
.bento-item--small { grid-column: span 4; }

@media (max-width: 1024px) {
    .bento-item--large, .bento-item--medium, .bento-item--small {
        grid-column: span 12;
    }
}

.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.capability-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(0, 119, 182, 0.1);
    border: 1px solid rgba(0, 119, 182, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--blue);
}

/* Intelligence Table */
.table-wrap table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-wrap th {
    padding: 1.5rem;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-wrap td {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.3s var(--ease);
}

.table-wrap tr:last-child td { border-bottom: none; }

.table-wrap tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

.td-product {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text);
    font-size: 1.1rem;
}

.td-badge {
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
    .navbar__links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        margin: 0;
        padding: 1.25rem;
        gap: 1rem;
        background: rgba(255,255,255,0.98);
        border: 1px solid rgba(18,18,18,0.08);
        border-radius: 24px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.2);
    }
    .navbar__links.open { display: flex; }
    .navbar__toggle { display: block; }
    .hero { padding: 120px 0 60px; }
    .hero__title { font-size: 2.75rem; }
    .hero__stat { display: none; }
    .split-grid,
    .stats-grid,
    .form-grid,
    .footer__grid { grid-template-columns: 1fr; }
    .grid--3, .grid--2 { grid-template-columns: 1fr; }
    .grid--4 { grid-template-columns: 1fr; }
    .problem-solution { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .section { padding: 70px 0; }
    .cta-banner { padding: 3rem 2rem; }
    th, td { padding: 1rem; }
    .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .suite-hero { padding: 140px 0 80px; }
    .suite-hero__beam {
        width: 220px;
        height: 560px;
        inset: 100px 50% auto auto;
    }
    .hero-split {
        gap: 3rem;
    }
    .dgfy-hero__grid {
        height: 42%;
        background-size: 100% 30px, 30px 100%;
        opacity: 0.4;
    }
    .dgfy-hero__beam {
        width: 220px;
        height: 220px;
        filter: blur(70px);
    }
    .dgfy-hero__ring--one {
        width: 220px;
        height: 220px;
        top: 54%;
        right: -8%;
    }
    .dgfy-hero__ring--two {
        width: 120px;
        height: 120px;
        top: 62%;
        right: 10%;
    }
    .dgfy-hero__ring--three {
        top: 12%;
        left: 6%;
    }
    .skupervisor-hero {
        --hero-bg-y: 72%;
        background-size: min(900px, 150vw) auto;
    }
    .skupervisor-hero__actions {
        flex-wrap: wrap;
    }
    .products-hero__title {
        font-size: clamp(1.6rem, 7vw, 2.35rem);
    }
    .suite-hero__title { max-width: 12ch; }
    .suite-hero__metrics,
    .suite-principles__grid,
    .suite-flow__grid,
    .ecosystem-grid { grid-template-columns: 1fr; }
    .suite-console__grid { grid-template-columns: 1fr; }
    .suite-console__footer,
    .ecosystem-card__footer { flex-direction: column; align-items: flex-start; }
    .product-spotlight__nav { gap: 0.6rem; }
    .product-spotlight__tab {
        width: 100%;
        justify-content: center;
    }
    .product-spotlight__panel { padding: 1.25rem; }
    .product-spotlight__image,
    .product-spotlight__image img { min-height: 280px; }
    .product-spotlight__signal {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }
    .suite-cta { padding: 3rem 2rem; }
    .suite-hero__micro,
    .suite-trust__row { gap: 0.9rem 1.25rem; }
    .suite-stage {
        margin-top: 2.5rem;
    }
    .suite-stage__screen {
        padding: 1rem;
        border-radius: 24px;
    }
    .suite-stage__stats,
    .suite-stage__cards,
    .suite-highlights__grid {
        flex-direction: column;
    }
    .suite-stage__graph {
        height: 220px;
        border-radius: 22px;
    }
    .suite-highlight-card {
        padding: 1.4rem;
    }
    .policy-layout__grid {
        grid-template-columns: 1fr;
    }
    .policy-sidebar {
        display: none;
    }
    .policy-mobile-nav {
        display: block;
    }
    .footer__legal {
        flex-direction: column;
        gap: .75rem;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        padding-top: 120px;
    }
    .policy-document {
        padding: 2rem 1.25rem;
        border-radius: 1.35rem;
    }
    .policy-hero__title {
        font-size: 2rem;
    }
    .policy-section__title {
        font-size: 1.25rem;
    }
}
.horizon-glow {
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 160%;
    height: 350px;
    background: radial-gradient(ellipse at center bottom, rgba(46, 188, 201, 0.5) 0%, rgba(0, 119, 182, 0.4) 30%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    border-radius: 50% 50% 0 0;
    opacity: 0;
}
.stat-mini {
    position: relative;
    padding-left: 1.5rem;
}
.stat-mini::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: 1.5rem;
    background: var(--blue);
    border-radius: 2px;
}
.orbit-circle {
    animation: slowOrbit 20s linear infinite;
}
@keyframes slowOrbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
.intro-visual-wrap img {
    transition: transform 0.8s var(--ease);
}
.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 119, 182, 0.3);
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.benefit-card:hover .capability-icon {
    background: var(--blue);
    color: white;
    transform: scale(1.1);
}

/* ════════════════════════════════════════════════════
   11. TARGET AUDIENCE FAN LAYOUT (COVER FLOW)
   ════════════════════════════════════════════════════ */
.audience-fan {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 450px;
    margin-top: 4rem;
    margin-bottom: 2rem;
    perspective: 1000px;
}

.audience-card {
    position: absolute;
    width: 280px;
    height: 380px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.5rem;
    text-align: left;
    cursor: pointer;
    background-image: var(--audience-bg, radial-gradient(circle at top, rgba(0, 119, 182, 0.28), rgba(7, 10, 16, 0.94) 55%, rgba(7, 10, 16, 1) 100%));
    background-size: var(--audience-bg-size, cover);
    background-position: var(--audience-bg-position, center);
    background-repeat: no-repeat;
    background-color: rgba(10, 14, 22, 0.98);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    outline: none;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(180deg, rgba(7, 10, 16, 0.04) 0%, rgba(7, 10, 16, 0.3) 42%, rgba(7, 10, 16, 0.92) 100%),
        linear-gradient(90deg, rgba(7, 10, 16, 0.14) 0%, rgba(7, 10, 16, 0.02) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.audience-card > * {
    position: relative;
    z-index: 2;
}

.audience-card h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.audience-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    opacity: 1;
    transform: none;
    line-height: 1.65;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: color 0.3s ease, opacity 0.3s ease;
}

/* 4 Cards Configuration */
.audience-fan[data-count="4"] .audience-card {
    transform: translateX(var(--audience-x, 0px)) translateY(var(--audience-y, 0px)) scale(var(--audience-scale, 0.9)) rotate(var(--audience-rotate, 0deg));
    z-index: var(--audience-z, 1);
    opacity: var(--audience-opacity, 0.92);
}

.audience-fan[data-count="4"] .audience-card.is-active {
    transform: translateX(var(--audience-x, 0px)) translateY(var(--audience-active-lift, -20px)) scale(var(--audience-active-scale, 0.98)) rotate(0deg);
    z-index: 10;
    opacity: 1;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.48);
    border-color: rgba(102, 188, 255, 0.7);
}

.audience-fan[data-count="4"] .audience-card.is-active::before {
    opacity: 0.88;
}

.audience-fan[data-count="4"] .audience-card.is-active p {
    color: rgba(230, 242, 255, 0.92);
}

.audience-card:focus-visible {
    border-color: rgba(102, 188, 255, 0.72);
    box-shadow: 0 0 0 2px rgba(102, 188, 255, 0.18), 0 16px 32px rgba(0, 0, 0, 0.42);
}

/* Responsive adjustments for Mobile */
@media (max-width: 991px) {
    .audience-fan {
        height: clamp(320px, 82vw, 390px);
        margin-top: 2.5rem;
        margin-bottom: 0.5rem;
        perspective: none;
        overflow: visible;
    }
    .audience-card {
        width: clamp(185px, 56vw, 250px);
        height: clamp(250px, 74vw, 320px);
        padding: 1.35rem 1.15rem;
        border-radius: 1.25rem;
    }
    .audience-card::before {
        background:
            linear-gradient(180deg, rgba(7, 10, 16, 0.02) 0%, rgba(7, 10, 16, 0.22) 40%, rgba(7, 10, 16, 0.95) 100%),
            linear-gradient(90deg, rgba(7, 10, 16, 0.12) 0%, rgba(7, 10, 16, 0.03) 100%);
    }
    .audience-card h4 {
        font-size: 1.15rem;
    }
    .audience-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .audience-fan[data-count="4"] .audience-card {
        transform: translateX(var(--audience-x, 0px)) translateY(var(--audience-y, 0px)) scale(var(--audience-scale, 0.88)) rotate(var(--audience-rotate, 0deg));
    }
    .audience-fan[data-count="4"] .audience-card.is-active {
        transform: translateX(var(--audience-x, 0px)) translateY(var(--audience-active-lift, -10px)) scale(var(--audience-active-scale, 0.95)) rotate(0deg);
    }
}

/* Click-to-focus states (Desktop Only) */
@media (min-width: 992px) {
    .audience-fan .audience-card:not(.is-active):hover {
        border-color: rgba(255, 255, 255, 0.18);
    }
}

/* ----- Modernized Product Sections ----- */
/* Overview Section */
.overview-bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}
@media(max-width: 992px) {
    .overview-bento { grid-template-columns: 1fr; }
}
.bento-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.15);
}
.bento-card--accent {
    background: linear-gradient(135deg, rgba(0,119,182,0.05) 0%, transparent 100%);
    border-color: rgba(0,119,182,0.2);
}
.bento-card__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,119,182,0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    pointer-events: none;
}
.bento-icon-ring {
    width: 64px; height: 64px;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: var(--pale);
    background: rgba(255,255,255,0.03);
    margin-bottom: 2rem;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.01);
}
.overview-title { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; margin-bottom: 1.5rem; font-weight: 700; font-family: 'Outfit', sans-serif;}
.overview-text { font-size: 1.15rem; color: var(--muted); line-height: 1.8; margin-bottom: 0; }

/* Problem & Solution Panel */
.ps-dynamic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}
@media(max-width: 992px) {
    .ps-dynamic { grid-template-columns: 1fr; gap: 3rem; }
}
.ps-panel {
    border-radius: var(--r-xl);
    padding: 4.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
}
.ps-panel--problem {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.03) 0%, var(--card) 100%);
}
.ps-panel--problem:hover { border-color: rgba(239, 68, 68, 0.2); background: linear-gradient(180deg, rgba(239, 68, 68, 0.06) 0%, var(--card) 100%); }
.ps-panel--solution {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.03) 0%, var(--card) 100%);
}
.ps-panel--solution:hover { border-color: rgba(34, 197, 94, 0.2); background: linear-gradient(180deg, rgba(34, 197, 94, 0.06) 0%, var(--card) 100%); }

.ps-icon-wrapper {
    width: 64px; height: 64px;
    border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}
.ps-panel--problem .ps-icon-wrapper { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.ps-panel--solution .ps-icon-wrapper { background: rgba(34, 197, 94, 0.1); color: #22c55e; }

.ps-title { font-size: 2.25rem; margin-bottom: 1.25rem; color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.15; }
.ps-text { font-size: 1.1rem; color: var(--muted); line-height: 1.7; margin-bottom: 0; }

.ps-connector {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    color: var(--muted);
    font-size: 1.25rem;
    box-shadow: 0 0 0 12px var(--bg);
    transition: transform 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.ps-dynamic:hover .ps-connector {
    transform: translate(-50%, -50%) rotate(90deg);
    color: var(--blue);
    border-color: rgba(0,119,182,0.3);
}
@media(max-width: 992px) {
    .ps-connector {
        position: relative;
        top: auto;
        left: auto;
        transform: rotate(90deg);
        justify-self: center;
        margin: -1.35rem auto;
        box-shadow: 0 0 0 10px var(--bg);
    }
    .ps-dynamic:hover .ps-connector {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .overview-bento {
        gap: 1rem;
    }
    .bento-card {
        padding: 2.4rem 1.7rem;
        border-radius: 1.7rem;
    }
    .bento-icon-ring,
    .ps-icon-wrapper {
        width: 58px;
        height: 58px;
        margin-bottom: 1.5rem;
    }
    .overview-title {
        font-size: clamp(1.85rem, 8vw, 2.6rem);
        margin-bottom: 1rem;
    }
    .overview-text {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 22ch;
    }
    .ps-dynamic {
        gap: 1.75rem;
    }
    .ps-panel {
        padding: 2.5rem 1.7rem;
        border-radius: 1.7rem;
    }
    .ps-title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    .ps-text {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 22ch;
    }
    .ps-connector {
        width: 54px;
        height: 54px;
        font-size: 1rem;
        margin: -1rem auto;
        box-shadow: 0 0 0 8px var(--bg);
    }
}

@media (max-width: 480px) {
    .bento-card {
        padding: 2.1rem 1.35rem;
        border-radius: 1.45rem;
    }
    .overview-title {
        font-size: clamp(1.7rem, 8.6vw, 2.2rem);
    }
    .overview-text {
        max-width: none;
    }
    .ps-panel {
        padding: 2.2rem 1.35rem;
        border-radius: 1.45rem;
    }
    .ps-title {
        font-size: clamp(1.7rem, 8.6vw, 2.2rem);
    }
    .ps-text {
        max-width: none;
    }
}
