/* ==========================================================================
   site-2027.css — shared design system + site chrome
   --------------------------------------------------------------------------
   Loaded on EVERY page. Contains the token layer, the nav/drawer/footer
   chrome, buttons, focus treatment, and the scroll-reveal utility.

   Everything is namespaced (--cy27-* tokens, .cy27-* classes) so it cannot
   collide with the legacy cascade (css/global.css -> css/home.css ->
   css/dark-redesign.css, which repaints them with ~1,600 !important rules).
   Interior pages keep their existing body treatment; only the chrome changes.

   Page-specific styling for the home page lives in css/home-2027.css.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Brand webfont
   --------------------------------------------------------------------------
   MUST live here. The 2027 pages deliberately dropped css/global.css, which
   was the only place @font-face was declared — without this the whole site
   silently falls back to Segoe UI/Arial while still preloading (and then
   discarding) the woff2.
   -------------------------------------------------------------------------- */

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('../assets/fonts/plus-jakarta-sans-latin-var.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('../assets/fonts/plus-jakarta-sans-latin-ext-var.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    /* Colour */
    --cy27-bg: #07090d;
    --cy27-text: #e8eef6;
    --cy27-heading: #ffffff;
    --cy27-body: #9aa7b8;
    --cy27-body-strong: #c3ceda;
    --cy27-muted: #8fa2b6;
    --cy27-subtle: #6f7d90;
    --cy27-accent: #00c0fa;
    --cy27-accent-deep: #015eea;
    --cy27-placeholder-ink: #7d8b9e;

    /* Gradient is for primary buttons only. Accent text stays flat. */
    --cy27-grad: linear-gradient(135deg, #00c0fa, #015eea);

    /* Hairlines */
    --cy27-line: rgba(255, 255, 255, .08);
    --cy27-line-soft: rgba(255, 255, 255, .06);
    --cy27-line-strong: rgba(255, 255, 255, .1);

    /* Type */
    --cy27-sans: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
    --cy27-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

    /* Motion */
    --cy27-ease: cubic-bezier(.22, .61, .36, 1);
    --cy27-ease-rise: cubic-bezier(.19, 1, .22, 1);

    /* Layout */
    --cy27-container: 1200px;
    --cy27-gutter: 32px;
}

@media (max-width: 760px) {
    :root {
        --cy27-gutter: 20px;
    }
}

/* --------------------------------------------------------------------------
   Shared primitives
   -------------------------------------------------------------------------- */

.cy27-container {
    max-width: var(--cy27-container);
    margin: 0 auto;
    padding: 0 var(--cy27-gutter);
}

/* Monospace carries every label, caption, price and legal line. It does a lot
   of the "premium" work in this design — do not substitute the sans. */
.cy27-eyebrow {
    font-family: var(--cy27-mono);
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cy27-accent);
}

.cy27-sublabel {
    font-family: var(--cy27-mono);
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--cy27-subtle);
}

.cy27-mono {
    font-family: var(--cy27-mono);
}

/* Focus treatment is global — it is an accessibility improvement everywhere. */
.cy27-nav a:focus-visible,
.cy27-nav button:focus-visible,
.cy27-drawer a:focus-visible,
.cy27-drawer button:focus-visible,
.cy27-footer a:focus-visible,
.cy27-page a:focus-visible,
.cy27-page button:focus-visible,
.cy27-page [tabindex]:focus-visible {
    outline: 3px solid rgba(0, 192, 250, .75);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.cy27-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: var(--cy27-sans);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s var(--cy27-ease), box-shadow .25s ease,
                background .25s ease, border-color .25s ease, color .25s ease;
}

.cy27-btn--primary {
    background: var(--cy27-grad);
    color: #fff;
    box-shadow: 0 14px 34px rgba(0, 150, 250, .28);
}

.cy27-btn--primary:hover {
    color: #fff;
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 20px 44px rgba(0, 150, 250, .38);
}

.cy27-btn--ghost {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .16);
    color: var(--cy27-text);
}

.cy27-btn--ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .26);
    transform: translate3d(0, -2px, 0);
}

.cy27-btn--lg {
    padding: 17px 34px;
    font-size: 1rem;
}

.cy27-btn--nav {
    padding: 11px 22px;
    border-radius: 10px;
    font-size: .88rem;
}

.cy27-btn--block {
    width: 100%;
}

/* --------------------------------------------------------------------------
   Border beam — rotating conic highlight on hero frame, estimator, final CTA
   -------------------------------------------------------------------------- */

@property --cy27-beam {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.cy27-beam {
    position: relative;
    isolation: isolate;
}

.cy27-beam::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    pointer-events: none;
    background: conic-gradient(from var(--cy27-beam, 0deg), transparent 58%,
        rgba(0, 192, 250, .85) 80%, rgba(1, 94, 234, .9) 92%, transparent 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask-composite: exclude;
    animation: cy27-beam-spin 7s linear infinite;
}

@keyframes cy27-beam-spin {
    to { --cy27-beam: 360deg; }
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

[data-cy27-reveal] {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity .85s var(--cy27-ease), transform .85s var(--cy27-ease);
    transition-delay: var(--cy27-reveal-delay, 0ms);
}

[data-cy27-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

/* With JS disabled nothing may stay hidden. */
.no-js [data-cy27-reveal] {
    opacity: 1;
    transform: none;
}

/* --------------------------------------------------------------------------
   Skip link
   -------------------------------------------------------------------------- */

.cy27-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1200;
    padding: 12px 20px;
    background: #0b0f17;
    border: 1px solid var(--cy27-accent);
    border-radius: 0 0 10px 0;
    color: var(--cy27-text);
    font-weight: 700;
    text-decoration: none;
}

.cy27-skip:focus {
    left: 0;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.cy27-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 9, 13, .72);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
            backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--cy27-line-soft);
    transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.cy27-nav__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: var(--cy27-container);
    margin: 0 auto;
    padding: 14px var(--cy27-gutter);
    transition: padding .35s ease;
}

.cy27-nav.is-condensed {
    background: rgba(6, 8, 12, .9);
    border-bottom-color: var(--cy27-line-strong);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
}

.cy27-nav.is-condensed .cy27-nav__inner {
    padding-top: 9px;
    padding-bottom: 9px;
}

.cy27-nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cy27-nav__logo img {
    height: 34px;
    width: auto;
    display: block;
}

.cy27-nav__links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-right: auto;
}

.cy27-nav__links a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--cy27-body);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
}

.cy27-nav__links a:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--cy27-text);
}

.cy27-nav__links a.is-current {
    color: var(--cy27-text);
}

.cy27-nav__cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.cy27-nav__phone {
    font-family: var(--cy27-mono);
    font-size: .82rem;
    color: var(--cy27-body);
    text-decoration: none;
    transition: color .25s ease;
}

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

/* Scroll progress — 2px strip along the bottom edge of the nav. */
.cy27-nav__progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #00c0fa, #015eea);
    transition: width .12s linear;
}

.cy27-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    color: var(--cy27-text);
    font-size: 1.05rem;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease;
}

.cy27-burger:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .22);
}

@media (max-width: 1000px) {
    .cy27-nav__links,
    .cy27-nav__phone {
        display: none;
    }

    .cy27-burger {
        display: inline-flex;
    }

    .cy27-nav__inner {
        gap: 16px;
        justify-content: space-between;
    }

    .cy27-nav__cta {
        margin-left: auto;
        gap: 12px;
    }
}

@media (max-width: 560px) {
    .cy27-nav__cta .cy27-btn--nav {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Mobile drawer
   -------------------------------------------------------------------------- */

.cy27-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    width: min(86vw, 340px);
    padding: 24px;
    background: #0b0f17;
    border-left: 1px solid var(--cy27-line);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    transition: transform .35s var(--cy27-ease), visibility .35s;
    overflow-y: auto;
}

.cy27-drawer.is-open {
    transform: none;
    visibility: visible;
}

.cy27-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.cy27-drawer__label {
    font-family: var(--cy27-mono);
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--cy27-subtle);
}

.cy27-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    color: var(--cy27-text);
    font-size: 1.05rem;
    cursor: pointer;
}

.cy27-drawer__links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cy27-drawer__links a {
    display: block;
    padding: 15px 12px;
    border-bottom: 1px solid var(--cy27-line-soft);
    color: var(--cy27-text);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
}

.cy27-drawer__links a:hover,
.cy27-drawer__links a.is-current {
    color: var(--cy27-accent);
}

.cy27-drawer__foot {
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
}

.cy27-drawer__backdrop {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(4, 6, 10, .72);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s;
}

.cy27-drawer__backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

body.cy27-scroll-locked {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.cy27-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: rgba(9, 12, 18, .6);
    padding: 64px var(--cy27-gutter) 32px;
    font-family: var(--cy27-sans);
}

.cy27-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: var(--cy27-container);
    margin: 0 auto;
}

.cy27-footer__logo {
    height: 32px;
    width: auto;
    display: block;
    margin-bottom: 18px;
}

.cy27-footer__blurb {
    max-width: 320px;
    color: var(--cy27-body);
    font-size: .95rem;
    line-height: 1.7;
    margin: 0 0 22px;
}

.cy27-footer__social {
    display: flex;
    gap: 12px;
}

.cy27-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    color: var(--cy27-body-strong);
    font-size: 1rem;
    text-decoration: none;
    transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.cy27-footer__social a:hover {
    border-color: var(--cy27-accent);
    color: var(--cy27-accent);
    background: rgba(0, 192, 250, .08);
}

.cy27-footer__heading {
    font-family: var(--cy27-mono);
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--cy27-subtle);
    margin: 0 0 18px;
}

.cy27-footer__list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cy27-footer__list a {
    color: var(--cy27-body-strong);
    font-size: .95rem;
    text-decoration: none;
    transition: color .25s ease;
}

.cy27-footer__list a:hover {
    color: var(--cy27-accent);
}

.cy27-footer__list a.cy27-footer__phone {
    font-family: var(--cy27-mono);
    font-size: .9rem;
}

.cy27-footer__list a.cy27-footer__cta {
    color: var(--cy27-accent);
    font-weight: 700;
}

.cy27-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    max-width: var(--cy27-container);
    margin: 48px auto 0;
    padding: 24px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: var(--cy27-subtle);
    font-size: .85rem;
}

.cy27-footer__bottom p {
    margin: 0;
}

@media (max-width: 1000px) {
    .cy27-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 760px) {
    .cy27-footer {
        padding-top: 48px;
    }

    .cy27-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ==========================================================================
   SHARED PAGE LAYER — used by every page
   Promoted out of home-2027.css so all eight pages share one vocabulary.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

html {
    background: var(--cy27-bg);
    scroll-behavior: smooth;
}

body.cy27-page {
    margin: 0;
    /* No background here on purpose. A block-level element's background paints
       AFTER its negative-z-index children, so an opaque fill on <body> hides
       the aurora in body::before/::after (z-index:-3). The page colour is
       carried by <html> above, which paints to the canvas first. */
    background: transparent;
    color: var(--cy27-text);
    font-family: var(--cy27-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.cy27-page *,
.cy27-page *::before,
.cy27-page *::after {
    box-sizing: border-box;
}

/* The element reset is wrapped in :where() so it carries ZERO specificity.
   Written plainly (`.cy27-page p`) it scores 0,1,1 and silently beats every
   single-class rule below it — which collapses the whole spacing scale. */
:where(.cy27-page) :where(h1, h2, h3, h4, p, ul, figure) {
    margin: 0;
    padding: 0;
}

:where(.cy27-page) :where(ul) {
    list-style: none;
}

:where(.cy27-page) :where(a) {
    color: var(--cy27-accent);
    text-decoration: none;
}

:where(.cy27-page) :where(a):hover {
    color: #fff;
}

:where(.cy27-page) :where(img) {
    max-width: 100%;
}

/* Ambient background — fixed, non-interactive, behind everything. This is
   what makes the page read as one continuous field rather than stacked
   boxes. Keep it. */
body.cy27-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(46% 38% at 14% 8%, rgba(0, 192, 250, .14), transparent 62%),
        radial-gradient(44% 40% at 86% 24%, rgba(1, 94, 234, .16), transparent 62%),
        radial-gradient(58% 50% at 52% 70%, rgba(0, 150, 234, .10), transparent 64%),
        radial-gradient(54% 48% at 90% 94%, rgba(1, 94, 234, .12), transparent 62%);
}

body.cy27-page::after {
    content: "";
    position: fixed;
    inset: -25%;
    z-index: -3;
    pointer-events: none;
    filter: blur(6px);
    background:
        radial-gradient(38% 34% at 28% 30%, rgba(0, 192, 250, .10), transparent 60%),
        radial-gradient(36% 32% at 72% 64%, rgba(1, 94, 234, .11), transparent 60%);
    animation: cy27-aurora 34s ease-in-out infinite alternate;
}

@keyframes cy27-aurora {
    0%   { transform: translate3d(-4%, -3%, 0) scale(1); }
    100% { transform: translate3d(5%, 4%, 0) scale(1.14); }
}

/* --------------------------------------------------------------------------
   Type scale
   -------------------------------------------------------------------------- */

.cy27-page h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.025em;
    color: var(--cy27-heading);
    text-wrap: pretty;
}

.cy27-page h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--cy27-heading);
}

.cy27-page h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cy27-heading);
}

.cy27-page h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cy27-heading);
}

.cy27-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--cy27-body);
}

/* --------------------------------------------------------------------------
   Sections & surfaces
   -------------------------------------------------------------------------- */

.cy27-section {
    padding-bottom: 130px;
}

.cy27-section--tight {
    padding-bottom: 110px;
}

.cy27-card {
    background: linear-gradient(160deg, rgba(20, 27, 40, .66), rgba(11, 16, 25, .55));
    border: 1px solid var(--cy27-line);
    border-radius: 16px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .42);
}

.cy27-card--recessed {
    background: linear-gradient(160deg, rgba(20, 27, 40, .5), rgba(11, 16, 25, .42));
    border: 1px solid var(--cy27-line-soft);
    border-radius: 14px;
    box-shadow: none;
}

.cy27-card--feature {
    background:
        radial-gradient(120% 160% at 0% 0%, rgba(0, 192, 250, .12), transparent 58%),
        linear-gradient(160deg, rgba(20, 27, 40, .72), rgba(11, 16, 25, .6));
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .5);
}

/* --------------------------------------------------------------------------
   Screenshot slots
   -------------------------------------------------------------------------- */

.cy27-shot {
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background:
        repeating-linear-gradient(135deg,
            rgba(255, 255, 255, .05) 0 12px,
            rgba(255, 255, 255, .02) 12px 24px),
        rgba(12, 17, 26, .8);
}

/* App/console slots read cyan so they are distinguishable from site slots. */
.cy27-shot--cyan {
    background:
        repeating-linear-gradient(135deg,
            rgba(0, 192, 250, .1) 0 12px,
            rgba(0, 192, 250, .03) 12px 24px),
        rgba(9, 18, 28, .85);
}

.cy27-shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Captions sit top-left so an overlapping frame can never cover them. */
.cy27-shot__caption {
    padding: 22px 24px;
    max-width: 60%;
    font-family: var(--cy27-mono);
    font-size: .72rem;
    letter-spacing: .06em;
    color: var(--cy27-placeholder-ink);
}


/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .cy27-beam::after {
        animation: none;
    }

    [data-cy27-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .cy27-btn,
    .cy27-nav,
    .cy27-nav__inner,
    .cy27-drawer,
    .cy27-drawer__backdrop {
        transition: none;
    }

    .cy27-btn:hover {
        transform: none;
    }
}

/* ==========================================================================
   SHARED COMPONENTS — interior pages
   Page-agnostic patterns from the handoff: page heroes, hairline rows,
   filter chips, accordion, sticky jump bar, segmented tabs, form controls.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Interior page hero
   -------------------------------------------------------------------------- */

.cy27-phero {
    padding: 172px var(--cy27-gutter) 0;
}

.cy27-phero__inner {
    max-width: var(--cy27-container);
    margin: 0 auto;
    padding-bottom: 120px;
}

.cy27-phero__eyebrow {
    display: block;
    margin-bottom: 18px;
}

.cy27-phero h1 {
    margin-bottom: 22px;
}

.cy27-phero__lead {
    max-width: 640px;
    font-size: 1.14rem;
    line-height: 1.7;
    color: var(--cy27-body);
    text-wrap: pretty;
}

/* Two-column hero (About): copy left, hairline panel right. */
.cy27-phero--split .cy27-phero__inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: start;
}

.cy27-phero__aside {
    padding: 28px 30px;
    border: 1px solid var(--cy27-line);
    border-radius: 16px;
}

/* --------------------------------------------------------------------------
   Hairline rows — the default for lists. Prefer these to cards.
   -------------------------------------------------------------------------- */

.cy27-rows {
    display: grid;
}

.cy27-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.cy27-rows > .cy27-row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.cy27-row--plain {
    grid-template-columns: 1fr;
    gap: 8px;
}

.cy27-row--split {
    grid-template-columns: .32fr 1fr;
    gap: 32px;
}

.cy27-row__num,
.cy27-row__label {
    font-family: var(--cy27-mono);
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cy27-accent);
    padding-top: .3em;
}

.cy27-row__label {
    color: var(--cy27-subtle);
}

.cy27-row h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.cy27-row p {
    font-size: .97rem;
    line-height: 1.7;
    color: var(--cy27-body);
}

/* --------------------------------------------------------------------------
   Chips — filters, tap-to-select inputs
   -------------------------------------------------------------------------- */

.cy27-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cy27-chip {
    min-height: 44px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    color: var(--cy27-body-strong);
    font-family: var(--cy27-mono);
    font-size: .82rem;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease,
                color .25s ease, box-shadow .25s ease;
}

.cy27-chip:hover {
    border-color: rgba(255, 255, 255, .26);
    color: #fff;
}

.cy27-chip[aria-pressed="true"],
.cy27-chip[aria-checked="true"],
.cy27-chip[aria-selected="true"],
.cy27-chip.is-active {
    background: rgba(0, 192, 250, .14);
    border-color: rgba(0, 192, 250, .5);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 150, 250, .22);
}

/* Filter bar: chips left, mono result count right. */
.cy27-filterbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.cy27-count {
    font-family: var(--cy27-mono);
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cy27-subtle);
}

/* --------------------------------------------------------------------------
   Tags and badges
   -------------------------------------------------------------------------- */

.cy27-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cy27-tags span {
    padding: 6px 11px;
    border: 1px solid var(--cy27-line-strong);
    border-radius: 6px;
    font-family: var(--cy27-mono);
    font-size: .7rem;
    color: var(--cy27-muted);
}

.cy27-badge {
    align-self: flex-start;
    padding: 6px 12px;
    background: rgba(0, 192, 250, .14);
    border: 1px solid rgba(0, 192, 250, .28);
    border-radius: 6px;
    font-family: var(--cy27-mono);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cy27-accent);
}

/* --------------------------------------------------------------------------
   Accordion (FAQ)
   -------------------------------------------------------------------------- */

.cy27-acc__item {
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.cy27-acc__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.cy27-acc__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: 0;
    color: var(--cy27-heading);
    font-family: var(--cy27-sans);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.cy27-acc__trigger i {
    flex-shrink: 0;
    font-size: .8rem;
    color: var(--cy27-accent);
    transition: transform .3s var(--cy27-ease);
}

.cy27-acc__trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.cy27-acc__panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s var(--cy27-ease);
}

.cy27-acc__panel > div {
    padding: 0 0 24px;
    max-width: 72ch;
    font-size: .97rem;
    line-height: 1.75;
    color: var(--cy27-body);
}

/* --------------------------------------------------------------------------
   Sticky jump bar (Services)
   -------------------------------------------------------------------------- */

.cy27-jump {
    position: sticky;
    top: 64px;
    z-index: 900;
    margin-bottom: 80px;
    background: rgba(7, 9, 13, .82);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
            backdrop-filter: blur(14px) saturate(140%);
    border-top: 1px solid var(--cy27-line-soft);
    border-bottom: 1px solid var(--cy27-line-soft);
}

.cy27-jump__inner {
    display: flex;
    gap: 6px;
    max-width: var(--cy27-container);
    margin: 0 auto;
    padding: 10px var(--cy27-gutter);
    overflow-x: auto;
    scrollbar-width: none;
}

.cy27-jump__inner::-webkit-scrollbar {
    display: none;
}

.cy27-jump a {
    flex-shrink: 0;
    padding: 10px 14px;
    border-radius: 8px;
    font-family: var(--cy27-mono);
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cy27-subtle);
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
}

.cy27-jump a:hover,
.cy27-jump a.is-active {
    background: rgba(255, 255, 255, .06);
    color: var(--cy27-text);
}

/* --------------------------------------------------------------------------
   Segmented switcher (Pricing tabs)
   -------------------------------------------------------------------------- */

.cy27-seg {
    display: inline-flex;
    gap: 4px;
    max-width: 100%;
    padding: 5px;
    border: 1px solid var(--cy27-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .02);
    overflow-x: auto;
    scrollbar-width: none;
}

.cy27-seg::-webkit-scrollbar {
    display: none;
}

.cy27-seg button {
    flex-shrink: 0;
    min-height: 44px;
    padding: 11px 20px;
    border: 0;
    border-radius: 9px;
    background: none;
    color: var(--cy27-body);
    font-family: var(--cy27-mono);
    font-size: .8rem;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}

.cy27-seg button[aria-selected="true"] {
    background: rgba(0, 192, 250, .14);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(0, 192, 250, .4);
}

/* --------------------------------------------------------------------------
   Pricing tiers
   -------------------------------------------------------------------------- */

.cy27-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cy27-tier {
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
}

.cy27-tier__price {
    margin: 12px 0 6px;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--cy27-heading);
}

.cy27-tier__list {
    display: grid;
    gap: 11px;
    margin: 22px 0 26px;
}

.cy27-tier__list li {
    display: flex;
    gap: 11px;
    font-size: .95rem;
    line-height: 1.6;
    color: var(--cy27-body-strong);
}

.cy27-tier__list i {
    flex-shrink: 0;
    margin-top: .35em;
    font-size: .76rem;
    color: var(--cy27-accent);
}

.cy27-tier .cy27-btn {
    margin-top: auto;
}

/* --------------------------------------------------------------------------
   Form controls (Contact)
   -------------------------------------------------------------------------- */

.cy27-field {
    display: grid;
    gap: 9px;
    margin-bottom: 20px;
}

.cy27-field > label {
    font-family: var(--cy27-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cy27-subtle);
}

.cy27-input,
.cy27-textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    color: var(--cy27-text);
    font-family: var(--cy27-sans);
    font-size: .97rem;
    transition: border-color .25s ease, background .25s ease;
}

.cy27-textarea {
    min-height: 140px;
    line-height: 1.6;
    resize: vertical;
}

.cy27-input::placeholder,
.cy27-textarea::placeholder {
    color: var(--cy27-subtle);
}

.cy27-input:focus,
.cy27-textarea:focus {
    outline: none;
    border-color: rgba(0, 192, 250, .5);
    background: rgba(0, 192, 250, .05);
}

.cy27-input:focus-visible,
.cy27-textarea:focus-visible {
    outline: 3px solid rgba(0, 192, 250, .75);
    outline-offset: 3px;
}

/* Search field with a leading icon. */
.cy27-search {
    position: relative;
}

.cy27-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cy27-subtle);
    font-size: .85rem;
    pointer-events: none;
}

.cy27-search .cy27-input {
    padding-left: 42px;
}

.cy27-empty {
    padding: 40px 0;
    font-family: var(--cy27-mono);
    font-size: .84rem;
    color: var(--cy27-subtle);
}

/* --------------------------------------------------------------------------
   Generic card hover lift
   -------------------------------------------------------------------------- */

.cy27-lift {
    transition: transform .3s var(--cy27-ease), border-color .3s ease, box-shadow .3s ease;
}

.cy27-lift:hover {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(0, 192, 250, .35);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}

/* --------------------------------------------------------------------------
   Interior responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
    .cy27-phero {
        padding-top: 126px;
    }

    .cy27-phero--split .cy27-phero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cy27-tiers {
        grid-template-columns: 1fr;
    }

    .cy27-row--split {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 760px) {
    .cy27-phero__inner {
        padding-bottom: 84px;
    }

    .cy27-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cy27-row__num,
    .cy27-row__label {
        padding-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cy27-lift,
    .cy27-acc__panel,
    .cy27-acc__trigger i {
        transition: none;
    }

    .cy27-lift:hover {
        transform: none;
    }
}

/* ==========================================================================
   CHAT WIDGET
   --------------------------------------------------------------------------
   Re-skin of the old css/chatbot.css onto the dark system. Markup is injected
   by js/chat-2027.js, so no page carries chat HTML of its own.

   Accent discipline: the gradient appears ONLY on the launcher, the send
   button, and the visitor's own bubbles. Everything else is flat cyan.
   ========================================================================== */

.cy27-chat {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1300;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    font-family: var(--cy27-sans);
}

/* --------------------------------------------------------------------------
   Launcher — a rounded square, so it reads as a button, not its own style
   -------------------------------------------------------------------------- */

.cy27-chat__launcher {
    position: relative;
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 18px;
    background: var(--cy27-grad);
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(0, 150, 250, .34);
    transition: transform .25s var(--cy27-ease), box-shadow .25s ease;
}

.cy27-chat__launcher:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 22px 52px rgba(0, 150, 250, .44);
}

.cy27-chat__launcher i {
    position: relative;
    z-index: 1;
}

/* Slow ping behind the launcher while there is something unread. */
.cy27-chat__ping {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: rgba(0, 192, 250, .5);
    animation: cy27-chat-ping 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes cy27-chat-ping {
    0%        { transform: scale(1);   opacity: .55; }
    70%, 100% { transform: scale(1.9); opacity: 0; }
}

.cy27-chat__badge {
    position: absolute;
    top: -6px;
    right: -6px;
    z-index: 2;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #7ce0a1;
    color: #07120c;
    font-family: var(--cy27-mono);
    font-size: .7rem;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Panel
   -------------------------------------------------------------------------- */

.cy27-chat__panel {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 620px;
    max-height: calc(100vh - 130px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background:
        radial-gradient(120% 90% at 50% 0%, rgba(0, 192, 250, .13), transparent 60%),
        linear-gradient(160deg, rgba(16, 22, 33, .96), rgba(9, 13, 20, .96));
    -webkit-backdrop-filter: blur(18px) saturate(140%);
            backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    transform-origin: bottom right;
    transition: opacity .26s ease, transform .26s var(--cy27-ease);
}

/* Closed state is only ever painted for the duration of the exit transition;
   js removes the node afterwards. */
.cy27-chat__panel[data-state="closed"] {
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(.96);
}

.cy27-chat__panel[data-state="open"] {
    opacity: 1;
    transform: none;
    transition: opacity .34s ease, transform .34s var(--cy27-ease);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.cy27-chat__head {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--cy27-line);
    background: rgba(6, 9, 14, .6);
}

.cy27-chat__avatar {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 192, 250, .28);
    border-radius: 12px;
    background: rgba(0, 192, 250, .1);
}

.cy27-chat__avatar img {
    width: 26px;
    height: 26px;
    display: block;
    object-fit: contain;
}

.cy27-chat__ident {
    flex: 1;
    min-width: 0;
}

.cy27-chat__name {
    display: block;
    color: var(--cy27-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.cy27-chat__status {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 3px;
    font-family: var(--cy27-mono);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cy27-subtle);
}

.cy27-chat__dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #7ce0a1;
}

.cy27-chat__close {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
    color: var(--cy27-body);
    font-size: .85rem;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}

.cy27-chat__close:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--cy27-text);
}

/* --------------------------------------------------------------------------
   Thread
   -------------------------------------------------------------------------- */

.cy27-chat__thread {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px 20px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.cy27-chat__day {
    padding: 6px 0 10px;
    text-align: center;
    font-family: var(--cy27-mono);
    font-size: .66rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #5f6d80;
}

.cy27-chat__msg {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.cy27-chat__msg--user {
    flex-direction: row-reverse;
}

.cy27-chat__msgav {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 192, 250, .28);
    border-radius: 9px;
    background: rgba(0, 192, 250, .12);
    color: var(--cy27-accent);
    font-size: .72rem;
}

.cy27-chat__msgav img {
    width: 19px;
    height: 19px;
    display: block;
    object-fit: contain;
}

.cy27-chat__msg--user .cy27-chat__msgav {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    color: var(--cy27-body);
}

.cy27-chat__bubble {
    max-width: 78%;
    padding: 13px 16px;
    border-radius: 14px;
    font-size: .95rem;
    line-height: 1.6;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.cy27-chat__msg--bot .cy27-chat__bubble {
    /* Assistant replies are rendered from an HTML allowlist, so let the markup
       control line breaks rather than preserving source whitespace. */
    white-space: normal;
    border: 1px solid var(--cy27-line);
    border-bottom-left-radius: 5px;
    background: linear-gradient(160deg, rgba(20, 27, 40, .9), rgba(11, 16, 25, .8));
    color: var(--cy27-body-strong);
}

.cy27-chat__bubble strong,
.cy27-chat__bubble b {
    color: var(--cy27-heading);
    font-weight: 700;
}

.cy27-chat__bubble p {
    margin: 0 0 10px;
}

.cy27-chat__bubble p:last-child {
    margin-bottom: 0;
}

.cy27-chat__bubble ul,
.cy27-chat__bubble ol {
    margin: 8px 0;
    padding-left: 20px;
    list-style: disc;
}

.cy27-chat__bubble ol {
    list-style: decimal;
}

.cy27-chat__bubble li {
    margin-bottom: 5px;
}

.cy27-chat__bubble code {
    font-family: var(--cy27-mono);
    font-size: .88em;
}

.cy27-chat__msg--bot .cy27-chat__bubble a {
    color: var(--cy27-accent);
}

.cy27-chat__msg--user .cy27-chat__bubble {
    border-bottom-right-radius: 5px;
    background: var(--cy27-grad);
    color: #fff;
}

.cy27-chat__bubble a {
    color: inherit;
    text-decoration: underline;
}

/* Typing indicator */
.cy27-chat__typing {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.cy27-chat__dots {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid var(--cy27-line);
    border-radius: 14px;
    border-bottom-left-radius: 5px;
    background: linear-gradient(160deg, rgba(20, 27, 40, .9), rgba(11, 16, 25, .8));
}

.cy27-chat__dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cy27-accent);
    animation: cy27-chat-bounce 1.3s infinite;
}

.cy27-chat__dots span:nth-child(2) { animation-delay: .18s; }
.cy27-chat__dots span:nth-child(3) { animation-delay: .36s; }

@keyframes cy27-chat-bounce {
    0%, 60%, 100% { transform: translateY(0);    opacity: .55; }
    30%           { transform: translateY(-6px); opacity: 1; }
}

/* --------------------------------------------------------------------------
   Suggestion chips — one scrolling line, never wrapping
   -------------------------------------------------------------------------- */

.cy27-chat__chips {
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
    padding: 12px 20px 0;
    border-top: 1px solid var(--cy27-line);
    overflow-x: auto;
    scrollbar-width: none;
}

.cy27-chat__chips::-webkit-scrollbar {
    display: none;
}

.cy27-chat__chip {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    background: rgba(255, 255, 255, .03);
    color: var(--cy27-body-strong);
    font-family: var(--cy27-mono);
    font-size: .72rem;
    letter-spacing: .03em;
    white-space: nowrap;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.cy27-chat__chip:hover {
    border-color: rgba(0, 192, 250, .5);
    color: #fff;
}

/* --------------------------------------------------------------------------
   Composer
   -------------------------------------------------------------------------- */

.cy27-chat__form {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 16px;
}

.cy27-chat__inputwrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.cy27-chat__input {
    width: 100%;
    min-height: 48px;
    padding: 13px 58px 13px 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    color: var(--cy27-text);
    font-family: var(--cy27-sans);
    font-size: .97rem;
    outline: none;
    transition: border-color .25s ease, background .25s ease;
}

.cy27-chat__input::placeholder {
    color: var(--cy27-subtle);
}

.cy27-chat__input:focus {
    border-color: rgba(0, 192, 250, .5);
    background: rgba(0, 192, 250, .05);
}

.cy27-chat__counter {
    position: absolute;
    right: 14px;
    font-family: var(--cy27-mono);
    font-size: .68rem;
    color: var(--cy27-subtle);
    pointer-events: none;
}

.cy27-chat__counter[data-near="true"] {
    color: var(--cy27-accent);
}

.cy27-chat__send {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    background: var(--cy27-grad);
    color: #fff;
    font-size: .95rem;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(0, 150, 250, .32);
    transition: transform .25s var(--cy27-ease), opacity .25s ease;
}

.cy27-chat__send:hover:not(:disabled) {
    transform: translate3d(0, -2px, 0);
}

.cy27-chat__send:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.cy27-chat__error {
    margin: 0 20px 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 140, 140, .3);
    border-radius: 10px;
    background: rgba(255, 90, 90, .08);
    color: #ffb4b4;
    font-size: .85rem;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Mobile — full-width sheet
   -------------------------------------------------------------------------- */

@media (max-width: 760px) {
    .cy27-chat {
        right: 16px;
        bottom: 16px;
        left: 16px;
        align-items: flex-end;
    }

    .cy27-chat__panel {
        width: 100%;
        height: min(78vh, 620px);
        max-height: calc(100vh - 110px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cy27-chat__panel,
    .cy27-chat__launcher,
    .cy27-chat__send {
        transition: none;
    }

    .cy27-chat__panel[data-state="closed"] {
        transform: none;
    }

    .cy27-chat__ping,
    .cy27-chat__dots span {
        animation: none;
    }

    .cy27-chat__launcher:hover,
    .cy27-chat__send:hover:not(:disabled) {
        transform: none;
    }
}
