/* ===== Base layout & typography ===== */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

/* ===== Smooth scrolling (native + Lenis overrides) ===== */
html {
    scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* ===== Shared visual helpers ===== */
.gradient-text {
    background: linear-gradient(to right, #60a5fa, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Shared lift for controls that are visually presented as buttons. */
.blue-cta,
.mobile-nav-cta,
.lang-switcher__button,
[data-mobile-menu-toggle],
[data-scroll-top],
nav a.inline-flex[class*="bg-"],
main a.rounded-xl {
    transition-property: transform, background-color, border-color, color, box-shadow;
    transition-duration: 180ms;
    transition-timing-function: ease;
}

@media (hover: hover) and (pointer: fine) {
    .blue-cta:hover,
    .mobile-nav-cta:hover,
    .lang-switcher__button:hover,
    [data-mobile-menu-toggle]:hover,
    [data-scroll-top]:hover,
    nav a.inline-flex[class*="bg-"]:hover,
    main a.rounded-xl:hover {
        transform: translateY(-3px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .blue-cta,
    .mobile-nav-cta,
    .lang-switcher__button,
    [data-mobile-menu-toggle],
    [data-scroll-top],
    nav a.inline-flex[class*="bg-"],
    main a.rounded-xl {
        transition: none;
    }
}

.hero-glow {
    background: radial-gradient(
        circle at center,
        rgba(99, 102, 241, 0.15) 0%,
        rgba(15, 23, 42, 0) 70%
    );
}

.name-en-muted {
    display: block;
    margin-top: 0.1rem;
    color: rgba(148, 163, 184, 0.75);
    font-size: 0.82em;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.name-stack-inline {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.08;
}

.name-stack-centered {
    align-items: center;
}

.text-center .name-stack-inline {
    align-items: center;
}

/* Mobile nav helpers */
.mobile-nav {
    padding-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(203 213 225);
}

.mobile-nav-link {
    white-space: nowrap;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    background: rgb(15 23 42);
    transition: color 180ms ease;
}

.mobile-nav-link:hover {
    color: #fff;
}

.mobile-nav-link.is-active {
    background: rgb(30 41 59);
    color: #fff;
}

.mobile-nav-cta {
    white-space: nowrap;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    background: rgb(99 102 241);
    color: #fff;
    transition: background-color 180ms ease;
}

.mobile-nav-cta:hover {
    background: rgb(129 140 248);
}

/* Language switcher */
.lang-switcher {
    position: relative;
    flex-shrink: 0;
}

.lang-switcher__select {
    appearance: none;
    cursor: pointer;
    min-width: 10.5rem;
    max-width: 14rem;
    height: 2.5rem;
    padding: 0 2rem 0 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgb(51 65 85);
    background-color: rgb(15 23 42);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
    color: rgb(226 232 240);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25rem;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.lang-switcher__select:hover,
.lang-switcher__select:focus {
    border-color: rgb(99 102 241);
    background-color: rgb(30 41 59);
    outline: none;
}

.lang-switcher__select--mobile {
    width: 100%;
    max-width: none;
    margin-bottom: 0.25rem;
    background-color: rgb(30 41 59);
}

.lang-switcher__native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lang-switcher__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-width: 10.5rem;
    height: 2.65rem;
    padding: 0 0.75rem 0 0.9rem;
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: 0.85rem;
    background: rgb(15 23 42 / 0.72);
    color: rgb(241 245 249);
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 0.08),
        0 8px 22px rgb(2 6 23 / 0.16);
    font-size: 0.875rem;
    font-weight: 650;
    line-height: 1;
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lang-switcher__label,
.lang-switcher__option-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.lang-flag {
    width: 1.35rem;
    height: 0.9rem;
    flex: 0 0 auto;
    border: 1px solid rgb(15 23 42 / 0.14);
    border-radius: 0.18rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 1px 3px rgb(15 23 42 / 0.14);
}

.lang-flag--ru { background-image: url("assets/flags/ru.svg"); }
.lang-flag--gb { background-image: url("assets/flags/gb.svg"); }
.lang-flag--sa { background-image: url("assets/flags/sa.svg"); }
.lang-flag--es { background-image: url("assets/flags/es.svg"); }
.lang-flag--fr { background-image: url("assets/flags/fr.svg"); }

.lang-switcher__button:hover,
.lang-switcher__button[aria-expanded="true"] {
    border-color: rgb(148 163 184 / 0.5);
    background: rgb(30 41 59 / 0.92);
}

.lang-switcher__button:focus-visible {
    outline: 3px solid rgb(99 102 241 / 0.25);
    outline-offset: 2px;
}

.lang-switcher__chevron {
    width: 0.5rem;
    height: 0.5rem;
    flex: 0 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.62;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
}

.lang-switcher__button[aria-expanded="true"] .lang-switcher__chevron {
    transform: translateY(2px) rotate(225deg);
}

.lang-switcher__menu {
    position: absolute;
    z-index: 70;
    top: calc(100% + 0.55rem);
    right: 0;
    width: max-content;
    min-width: 12rem;
    padding: 0.4rem;
    border: 1px solid rgb(255 255 255 / 0.16);
    border-radius: 1rem;
    background: rgb(15 23 42 / 0.94);
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 0.08),
        0 22px 54px rgb(2 6 23 / 0.3);
    backdrop-filter: blur(22px) saturate(130%);
    -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.lang-switcher__menu[hidden] {
    display: none;
}

.lang-switcher__option {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 2.45rem;
    padding: 0.55rem 0.7rem;
    border: 0;
    border-radius: 0.7rem;
    background: transparent;
    color: rgb(203 213 225);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease;
}

.lang-switcher__option:hover,
.lang-switcher__option:focus-visible {
    background: rgb(51 65 85 / 0.72);
    color: #fff;
    outline: none;
}

.lang-switcher__option[aria-selected="true"] {
    background: rgb(99 102 241 / 0.2);
    color: rgb(199 210 254);
}

.lang-switcher--mobile .lang-switcher__button,
.lang-switcher--mobile .lang-switcher__menu {
    width: 100%;
}

.lang-switcher--mobile .lang-switcher__menu {
    position: static;
    margin: 0.4rem 0 0.25rem;
}

html[lang="ar"] .lang-switcher__select {
    padding: 0 0.75rem 0 2rem;
    background-position: left 0.5rem center;
}

html[lang="ar"] .lang-switcher__select option {
    direction: ltr;
}

html[lang="ar"] .lang-switcher__menu {
    right: auto;
    left: 0;
}

html[lang="ar"] .lang-switcher__option {
    direction: ltr;
    text-align: left;
}

.mobile-menu-icon {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-icon span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

[data-mobile-menu-toggle][aria-expanded="true"] .mobile-menu-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

[data-mobile-menu-toggle][aria-expanded="true"] .mobile-menu-icon span:nth-child(2) {
    opacity: 0;
}

[data-mobile-menu-toggle][aria-expanded="true"] .mobile-menu-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Glass cards per-page look */
body.page-index .glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-about .glass-card,
body.page-products .glass-card,
body.page-talkbox .glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-features .glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* About page avatars: smooth reveal on image load */
.team-avatar {
    opacity: 0;
    transform: scale(0.96);
    filter: saturate(0.9);
    transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
}

.team-avatar.is-loaded {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
}

/* Products page ambient motion */
.products-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.12);
    animation: products_orbit 18s linear infinite;
}

.products-orbit--a {
    width: 18rem;
    height: 18rem;
    top: 12%;
    left: 12%;
    border-color: rgba(129, 140, 248, 0.25);
}

.products-orbit--b {
    width: 26rem;
    height: 26rem;
    top: 8%;
    right: 6%;
    border-color: rgba(56, 189, 248, 0.2);
    animation-duration: 26s;
}

.products-orbit--c {
    width: 22rem;
    height: 22rem;
    bottom: 6%;
    left: 42%;
    border-color: rgba(165, 180, 252, 0.2);
    animation-duration: 22s;
    animation-direction: reverse;
}

@keyframes products_orbit {
    0% {
        transform: rotate(0deg);
        opacity: 0.35;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.35;
    }
}

.products-flow {
    position: absolute;
    left: 50%;
    bottom: 8%;
    width: min(900px, 80vw);
    height: 120px;
    transform: translateX(-50%);
    pointer-events: none;
}

.products-flow-track {
    position: relative;
    width: 100%;
    height: 100%;
    border-top: 1px solid rgba(129, 140, 248, 0.18);
    border-bottom: 1px solid rgba(129, 140, 248, 0.08);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0), rgba(99, 102, 241, 0.16), rgba(15, 23, 42, 0));
    overflow: hidden;
}

.products-flow-dot {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-radius: 999px;
    background: rgba(165, 180, 252, 0.7);
    box-shadow: 0 0 14px rgba(129, 140, 248, 0.5);
    animation: products_dot_pulse 4.6s ease-in-out infinite;
}

.products-flow-dot:nth-child(1) { left: 8%; }
.products-flow-dot:nth-child(2) { left: 28%; animation-delay: 0.3s; }
.products-flow-dot:nth-child(3) { left: 50%; animation-delay: 0.6s; }
.products-flow-dot:nth-child(4) { left: 72%; animation-delay: 0.9s; }
.products-flow-dot:nth-child(5) { left: 92%; animation-delay: 1.2s; }

.products-flow-glow {
    position: absolute;
    top: 50%;
    left: -20%;
    width: 24%;
    height: 26px;
    margin-top: -13px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0), rgba(129, 140, 248, 0.5), rgba(99, 102, 241, 0));
    filter: blur(2px);
    animation: products_flow_glide 6.8s ease-in-out infinite;
}

@keyframes products_dot_pulse {
    0%, 100% {
        opacity: 0.45;
        transform: scale(0.85);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes products_flow_glide {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
    }
    85% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(520%);
        opacity: 0;
    }
}

/* Products page: animated product badges (TT / SD / AD) */
.product-badge {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.product-badge-text {
    position: relative;
    z-index: 2;
    letter-spacing: 0.04em;
}

.product-badge .badge-orbit,
.product-badge .badge-ping,
.product-badge .badge-divider,
.product-badge .badge-scan,
.product-badge .badge-bars,
.product-badge .badge-frame {
    position: absolute;
    pointer-events: none;
}

.product-badge--tt .badge-orbit {
    inset: 7px;
    border-radius: 0.7rem;
    border: 1px solid rgb(129 140 248 / 0.56);
    box-shadow: inset 0 0 0 1px rgb(199 210 254 / 0.24), 0 0 8px rgb(129 140 248 / 0.28);
    animation: badge_tt_orbit 2.8s ease-in-out infinite;
}

.product-badge--tt .badge-ping {
    top: 50%;
    left: 50%;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 999px;
    background: rgb(199 210 254 / 0.5);
    box-shadow: 0 0 0 0 rgb(129 140 248 / 0.66);
    transform: translate(-50%, -50%);
    animation: badge_tt_ping 2.2s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
}

.product-badge--sd .badge-divider {
    inset: 7px;
    border-radius: 0.7rem;
    border: 1px solid rgb(110 231 183 / 0.56);
    box-shadow: inset 0 0 0 1px rgb(167 243 208 / 0.2), 0 0 8px rgb(52 211 153 / 0.22);
    animation: badge_sd_divider 2.4s ease-in-out infinite;
}

.product-badge--sd .badge-scan {
    --sd-scan-h: 2px;
    --sd-zone-h: 22px;
    --sd-zone-top: calc(50% - (var(--sd-zone-h) / 2));
    left: 50%;
    width: 1.55em;
    right: auto;
    top: var(--sd-zone-top);
    height: var(--sd-scan-h);
    border-radius: 999px;
    background: linear-gradient(90deg, rgb(16 185 129 / 0), rgb(167 243 208 / 1), rgb(16 185 129 / 0));
    box-shadow: 0 0 12px rgb(52 211 153 / 0.82);
    transform: translateX(-50%);
    z-index: 1;
    animation: badge_sd_scan 1.9s ease-in-out infinite;
}

.product-badge--ad .badge-frame {
    inset: 7px;
    border-radius: 0.7rem;
    overflow: visible;
}

.product-badge--ad .badge-frame svg {
    display: block;
    width: 100%;
    height: 100%;
}

.product-badge--ad .badge-frame rect {
    fill: none;
    stroke-width: 1.6;
    vector-effect: non-scaling-stroke;
}

.product-badge--ad .badge-frame .frame-track {
    stroke: rgb(34 211 238 / 0.28);
}

.product-badge--ad .badge-frame .frame-pulse {
    stroke: rgb(165 243 252 / 0.98);
    stroke-linecap: round;
    filter: drop-shadow(0 0 4px rgb(103 232 249 / 0.55));
    stroke-dasharray: 24 160;
    stroke-dashoffset: 0;
    animation: badge_ad_frame_flow 2.1s linear infinite;
}

@keyframes badge_ad_frame_flow {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -184;
    }
}

@keyframes badge_tt_orbit {
    0%,
    100% {
        transform: scale(0.94);
        opacity: 0.68;
    }
    50% {
        transform: scale(1);
        opacity: 0.95;
    }
}

@keyframes badge_tt_ping {
    0% {
        transform: translate(-50%, -50%) scale(0.25);
        opacity: 0.9;
        box-shadow: 0 0 0 0 rgb(129 140 248 / 0.72);
    }
    70% {
        transform: translate(-50%, -50%) scale(1.35);
        opacity: 0;
        box-shadow: 0 0 0 12px rgb(129 140 248 / 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.25);
        opacity: 0;
        box-shadow: 0 0 0 0 rgb(129 140 248 / 0);
    }
}

@keyframes badge_sd_scan {
    0% {
        transform: translateX(-50%) translateY(0) scaleX(0.9);
        opacity: 0.64;
    }
    50% {
        transform: translateX(-50%) translateY(calc(var(--sd-zone-h) - var(--sd-scan-h))) scaleX(1);
        opacity: 0.9;
    }
    100% {
        transform: translateX(-50%) translateY(0) scaleX(0.9);
        opacity: 0.64;
    }
}

@keyframes badge_sd_divider {
    0%,
    100% {
        opacity: 0.58;
    }
    50% {
        opacity: 0.94;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-badge .badge-orbit,
    .product-badge .badge-ping,
    .product-badge .badge-divider,
    .product-badge .badge-scan,
    .product-badge .badge-frame,
    .product-badge .badge-frame .frame-pulse {
        animation: none;
    }

    .team-avatar {
        transition: none;
    }
}

/* ===== Sections layout ===== */
/* По умолчанию все секции (кроме первой) — на весь экран */
.section:not(:first-of-type) {
    min-height: 100vh;
    height: auto;
}

.section {
    overflow-x: clip;
}

/* Mobile: let sections grow by content to prevent overlap */
@media (max-width: 767px) {
    .section {
        min-height: auto;
        height: auto;
    }
}

/* Features page follows same fullscreen section behavior as index */
body.page-features .section {
    min-height: 100vh;
    height: auto;
}

/* Но отдельные секции (например демо) могут быть по высоте контента */
body.page-features .section.section-auto {
    min-height: auto;
    height: auto;
}

body.page-about .section.section-auto,
body.page-products .section.section-auto,
body.page-index .section.section-auto,
body.page-talkbox .section.section-auto {
    min-height: auto;
    height: auto;
}

/* Slightly smaller team cards in About Us on index */
body.page-index .section:last-of-type .glass-card {
    transform: scale(0.92);
    transform-origin: top center;
}

/* ===== Icon / loader animations ===== */
.loading svg polyline {
    fill: none;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.loading svg polyline#back {
    stroke: rgba(129, 140, 248, 0.24);
}

.loading svg polyline#front {
    stroke: #818cf8;
    stroke-dasharray: 48, 144;
    stroke-dashoffset: 192;
    animation: dash_682 1.4s linear infinite;
}

.realtime-loading svg polyline#back {
    stroke: rgb(168 85 247 / 0.2);
}

.realtime-loading svg polyline#front {
    stroke: rgb(192 132 252 / 1);
}

@keyframes dash_682 {
    72.5% {
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.file-bars rect {
    transform-box: fill-box;
    transform-origin: center bottom;
    animation: file_bars_pulse 1.1s ease-in-out infinite;
    opacity: 0.75;
}

.file-bars .bar-1 { animation-delay: 0s; }
.file-bars .bar-2 { animation-delay: 0.16s; }
.file-bars .bar-3 { animation-delay: 0.32s; }

@keyframes file_bars_pulse {
    0%, 100% {
        transform: scaleY(0.55);
        opacity: 0.65;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.shield-anim {
    transform-origin: center;
    animation: shield_pulse 2.2s ease-in-out infinite;
}

.shield-anim .shield-check {
    stroke-dasharray: 12;
    stroke-dashoffset: 12;
    animation: shield_check_draw 2.2s ease-in-out infinite;
}

@keyframes shield_pulse {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.85;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shield_check_draw {
    0%, 15% {
        stroke-dashoffset: 12;
        opacity: 0.6;
    }
    40%, 100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* ===== Features workflow icon animations ===== */
.workflow-icon {
    overflow: visible;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workflow-source-icon .wf-source-ring {
    transform-origin: center;
    animation: wf_source_ring 2.6s ease-in-out infinite;
}

.workflow-source-icon .wf-source-ring-2 {
    animation-delay: 0.35s;
}

.workflow-source-icon .wf-source-ring-3 {
    animation-delay: 0.7s;
}

.workflow-source-icon .wf-source-dot {
    animation: wf_source_dot 2.1s ease-in-out infinite;
}

@keyframes wf_source_ring {
    0% {
        opacity: 0.2;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.65;
        transform: scale(1.02);
    }
    100% {
        opacity: 0.2;
        transform: scale(1.08);
    }
}

@keyframes wf_source_dot {
    0%, 100% {
        opacity: 0.7;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.workflow-clean-icon .wf-clean-line {
    stroke-dasharray: 12 10;
    animation: wf_clean_shift 2s linear infinite;
}

.workflow-clean-icon .wf-clean-line-2 {
    animation-delay: 0.18s;
}

.workflow-clean-icon .wf-clean-line-3 {
    animation-delay: 0.36s;
}

.workflow-clean-icon .wf-clean-spark {
    transform-origin: 16px 9.6px;
    animation: wf_clean_spark 2.2s ease-in-out infinite;
}

@keyframes wf_clean_shift {
    0% {
        opacity: 0.45;
        stroke-dashoffset: 22;
    }
    50% {
        opacity: 1;
        stroke-dashoffset: 11;
    }
    100% {
        opacity: 0.45;
        stroke-dashoffset: 0;
    }
}

@keyframes wf_clean_spark {
    0% {
        opacity: 0.4;
        transform: scale(0.86) rotate(0deg);
    }
    50% {
        opacity: 0.95;
        transform: scale(1) rotate(20deg);
    }
    100% {
        opacity: 0.4;
        transform: scale(0.86) rotate(40deg);
    }
}

.workflow-analysis-icon .wf-analysis-grid {
    opacity: 0.5;
}

.workflow-analysis-icon .wf-analysis-scan {
    transform-origin: center;
    animation: wf_analysis_scan 2.8s linear infinite;
}

.workflow-analysis-icon .wf-analysis-core {
    animation: wf_analysis_core 2s ease-in-out infinite;
}

@keyframes wf_analysis_scan {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes wf_analysis_core {
    0%, 100% {
        opacity: 0.6;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.workflow-control-icon .wf-control-ring {
    transform-origin: center;
}

.workflow-control-icon .wf-control-ring-outer {
    animation: wf_control_outer 2.8s ease-in-out infinite;
}

.workflow-control-icon .wf-control-ring-mid {
    animation: wf_control_mid 2.2s ease-in-out infinite;
}

.workflow-control-icon .wf-control-dot {
    animation: wf_control_dot 1.8s ease-in-out infinite;
}

.workflow-control-icon .wf-control-cross {
    opacity: 0.75;
}

@keyframes wf_control_outer {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.03);
    }
}

@keyframes wf_control_mid {
    0%, 100% {
        opacity: 0.55;
        transform: scale(1.02);
    }
    50% {
        opacity: 1;
        transform: scale(0.95);
    }
}

@keyframes wf_control_dot {
    0%, 100% {
        transform: scale(0.92);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.workflow-result-icon .wf-result-ring {
    animation: wf_result_ring 2.4s ease-in-out infinite;
}

.workflow-result-icon .wf-result-check {
    stroke-dasharray: 11;
    stroke-dashoffset: 11;
    animation: wf_result_check 2.4s ease-in-out infinite;
}

.workflow-result-icon .wf-result-glow {
    transform-origin: center;
    animation: wf_result_glow 2.4s ease-in-out infinite;
}

@keyframes wf_result_ring {
    0%, 100% {
        opacity: 0.55;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

@keyframes wf_result_check {
    0%, 22% {
        stroke-dashoffset: 11;
        opacity: 0.45;
    }
    52%, 100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes wf_result_glow {
    0%, 100% {
        opacity: 0.22;
        transform: scale(0.96);
    }
    50% {
        opacity: 0.42;
        transform: scale(1.06);
    }
}

/* ===== Features flow arrow ===== */
.workflow-grid-stage {
    position: relative;
    --wf-arrow-duration: 4.2s;
    --wf-arrow-ease: cubic-bezier(0.42, 0.0, 0.2, 1);
    --wf-head-w: 102px;
    --wf-head-h: 84px;
    --wf-tail-h: 54px;
    --wf-lane-h: 120px;
    --wf-mobile-lane-w: 120px;
    --wf-mobile-arrow-w: 84px;
    --wf-mobile-head-h: 102px;
    --wf-mobile-tail-w: 54px;
}

.workflow-flow-indicator {
    margin-top: 2.25rem;
    padding: 0 0.25rem;
}

.workflow-flow-indicator--backdrop {
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 6rem);
    transform: translate(-50%, -50%);
    margin-top: 0;
    padding: 0;
    z-index: 0;
    pointer-events: none;
}

.workflow-flow-lane {
    position: relative;
    width: 100%;
    height: var(--wf-lane-h);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 999px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.workflow-flow-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: var(--wf-head-h);
    transform: translate(0, -50%);
    animation: wf_arrow_slide var(--wf-arrow-duration) var(--wf-arrow-ease) infinite;
    filter: drop-shadow(0 0 8px rgb(129 140 248 / 0.3));
}

.workflow-flow-tail {
    position: absolute;
    left: 0;
    top: 50%;
    width: calc(100% - var(--wf-head-w));
    height: var(--wf-tail-h);
    transform: translateY(-50%);
    transform-origin: left center;
    border-radius: 999px;
    background: linear-gradient(90deg, rgb(99 102 241 / 0.22), rgb(165 180 252 / 0.65), rgb(99 102 241 / 0.22));
    background-size: 200% 100%;
    animation: wf_tail_chase var(--wf-arrow-duration) var(--wf-arrow-ease) infinite;
}

.workflow-flow-head {
    position: absolute;
    left: 0;
    top: 50%;
    width: var(--wf-head-w);
    height: var(--wf-head-h);
    transform: translateY(-50%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: linear-gradient(90deg, rgb(199 210 254 / 0.9), rgb(99 102 241 / 0.78));
    background-size: 100% 100%;
    animation: wf_head_chase var(--wf-arrow-duration) var(--wf-arrow-ease) infinite;
}

@keyframes wf_head_chase {
    0% {
        left: 0;
        opacity: 0;
    }
    10% {
        opacity: 0.92;
    }
    52% {
        left: calc(100% - var(--wf-head-w));
        opacity: 0.92;
    }
    100% {
        left: calc(100% - var(--wf-head-w));
        opacity: 0.92;
    }
}

@keyframes wf_tail_chase {
    0% {
        transform: translateY(-50%) scaleX(0);
        transform-origin: left center;
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    52% {
        transform: translateY(-50%) scaleX(1);
        transform-origin: left center;
        opacity: 0.9;
    }
    100% {
        transform: translateY(-50%) scaleX(1);
        transform-origin: left center;
        opacity: 0.9;
    }
}

@keyframes wf_arrow_slide {
    0%,
    56% {
        transform: translate(0, -50%);
    }
    100% {
        transform: translate(100%, -50%);
    }
}

@media (max-width: 767px) {
    .workflow-flow-indicator--backdrop {
        position: absolute;
        left: 50%;
        top: -22px;
        bottom: -22px;
        width: calc(100% + 1.5rem);
        transform: translateX(-50%);
        margin-top: 0;
    }

    .workflow-flow-indicator {
        margin-top: 0;
        display: block;
    }

    .workflow-flow-lane {
        width: var(--wf-mobile-lane-w);
        height: 100%;
    }

    .workflow-flow-arrow {
        left: 50%;
        top: 0;
        width: var(--wf-mobile-arrow-w);
        height: 100%;
        transform: translate(-50%, 0);
        animation: wf_arrow_slide_mobile var(--wf-arrow-duration) var(--wf-arrow-ease) infinite;
    }

    .workflow-flow-tail {
        left: 50%;
        top: 0;
        width: var(--wf-mobile-tail-w);
        height: calc(100% - var(--wf-mobile-head-h));
        transform: translateX(-50%) scaleY(0);
        transform-origin: top center;
        background: linear-gradient(180deg, rgb(99 102 241 / 0.22), rgb(165 180 252 / 0.65), rgb(99 102 241 / 0.22));
        animation: wf_tail_chase_mobile var(--wf-arrow-duration) var(--wf-arrow-ease) infinite;
    }

    .workflow-flow-head {
        left: 50%;
        top: 0;
        width: var(--wf-mobile-arrow-w);
        height: var(--wf-mobile-head-h);
        transform: translateX(-50%);
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        background: linear-gradient(180deg, rgb(199 210 254 / 0.9), rgb(99 102 241 / 0.78));
        animation: wf_head_chase_mobile var(--wf-arrow-duration) var(--wf-arrow-ease) infinite;
    }
}

@keyframes wf_head_chase_mobile {
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 0.92;
    }
    52% {
        top: calc(100% - var(--wf-mobile-head-h));
        opacity: 0.92;
    }
    100% {
        top: calc(100% - var(--wf-mobile-head-h));
        opacity: 0.92;
    }
}

@keyframes wf_tail_chase_mobile {
    0% {
        transform: translateX(-50%) scaleY(0);
        transform-origin: top center;
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    52% {
        transform: translateX(-50%) scaleY(1);
        transform-origin: top center;
        opacity: 0.9;
    }
    100% {
        transform: translateX(-50%) scaleY(1);
        transform-origin: top center;
        opacity: 0.9;
    }
}

@keyframes wf_arrow_slide_mobile {
    0%,
    56% {
        transform: translate(-50%, 0);
    }
    100% {
        transform: translate(-50%, 100%);
    }
}

/* ===== Arabic (RTL) locale ===== */
html[lang="ar"] body {
    font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

html[lang="ar"] .flex.items-start > .mr-3 {
    margin-right: 0;
    margin-left: 0.75rem;
}

html[lang="ar"] .feature-block > .absolute.top-3.right-3 {
    right: auto;
    left: 0.75rem;
}

html[lang="ar"] [data-scroll-top] {
    right: auto;
    left: 1.25rem;
}

html[lang="ar"] .name-stack-inline {
    align-items: flex-end;
}

html[lang="ar"] .text-center .name-stack-inline {
    align-items: center;
}

/* Latin product names in RTL locales */
html[lang="ar"] .brand-en,
html[lang="ar"] .name-en-muted {
    unicode-bidi: embed;
    direction: ltr;
}

html[lang="ar"] h3 .brand-en {
    display: inline-block;
}

/* ===== 2026 landing refresh inspired by product-led SaaS pages ===== */
body.page-site-refresh {
    font-family: 'Inter', sans-serif;
    background:
        linear-gradient(180deg, #f7f8fb 0%, #ffffff 42%, #f7f8fb 100%);
    color: #0f172a;
}

body.page-site-refresh .section:not(:first-of-type),
body.page-site-refresh .section {
    min-height: auto;
    height: auto;
}

body.page-site-refresh .hero-title {
    font-family: 'EB Garamond', Georgia, serif;
    letter-spacing: 0;
    text-shadow: 0 1px 20px rgb(15 23 42 / 0.18);
}

body.page-site-refresh .name-stack-inline {
    vertical-align: middle;
}

body.page-site-refresh .name-en-muted {
    color: rgb(100 116 139 / 0.78);
    font-weight: 650;
    letter-spacing: 0.01em;
}

body.page-site-refresh .name-pair-inline {
    display: inline;
    white-space: nowrap;
    vertical-align: baseline;
}

body.page-site-refresh .name-pair-inline span:first-child {
    display: inline;
}

body.page-site-refresh .name-pair-inline span:last-child {
    display: inline-flex;
    align-items: center;
    margin-left: 0.34em;
    border-radius: 999px;
    padding: 0.12em 0.38em 0.14em;
    background: rgb(226 232 240 / 0.75);
    color: rgb(71 85 105);
    font-size: 0.42em;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    transform: translateY(-0.08em);
}

.security-card .name-pair-inline span:last-child {
    font-size: 0.58em;
}

.hero-refresh .name-en-muted,
.product-card-blue .name-en-muted {
    color: rgb(255 255 255 / 0.74);
}

.desktop-topbar .name-stack-inline {
    line-height: 1;
}

.desktop-topbar .name-en-muted {
    margin-top: 0.03rem;
    font-size: 0.76em;
    color: rgb(100 116 139 / 0.78);
}

footer .name-stack-inline {
    line-height: 1.02;
}

footer .name-en-muted {
    font-size: 0.72em;
}

.hero-refresh .hero-title + p {
    color: rgb(255 255 255 / 0.98) !important;
    text-shadow: 0 1px 18px rgb(15 23 42 / 0.22);
}

body.page-site-refresh .blue-cta {
    background: linear-gradient(180deg, var(--home-accent-hover), var(--home-accent));
    color: var(--home-accent-ink);
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 0.42),
        0 18px 36px rgb(253 159 99 / 0.34);
}

body.page-site-refresh .blue-cta:hover {
    background: linear-gradient(180deg, #FFC28B, var(--home-accent-hover));
}

body.page-site-refresh nav {
    top: 0.5rem;
    right: auto;
    left: 50%;
    width: calc(100% - 1.5rem);
    max-width: 80rem;
    transform: translateX(-50%);
    border: 1px solid rgb(255 255 255 / 0.7) !important;
    border-radius: 1.15rem;
    border-bottom: 1px solid rgb(226 232 240 / 0.78) !important;
    background: rgb(255 255 255 / 0.68) !important;
    backdrop-filter: blur(18px);
    box-shadow:
        0 14px 42px rgb(80 46 27 / 0.1),
        inset 0 1px 0 rgb(255 255 255 / 0.88);
}

body.page-site-refresh nav img[src*="logo-no-fon"] {
    filter: invert(1);
    width: 3.25rem !important;
    height: 3.25rem !important;
}

body.page-site-refresh nav a,
body.page-site-refresh nav span {
    color: #0f172a !important;
}

body.page-site-refresh nav a[aria-current="page"] {
    color: var(--home-accent-strong) !important;
}

body.page-site-refresh nav .text-blue-600 {
    color: var(--home-accent-strong) !important;
}

body.page-site-refresh nav .bg-indigo-500,
body.page-site-refresh .mobile-nav-cta {
    background: linear-gradient(180deg, var(--home-accent-hover), var(--home-accent)) !important;
    color: var(--home-accent-ink) !important;
    box-shadow: 0 16px 34px rgb(253 159 99 / 0.28);
}

body.page-site-refresh .lang-switcher__select {
    border-color: rgb(226 232 240);
    background-color: rgb(255 255 255 / 0.78);
    color: rgb(15 23 42);
    box-shadow: 0 1px 2px rgb(15 23 42 / 0.06);
}

body.page-site-refresh .lang-switcher__select:hover,
body.page-site-refresh .lang-switcher__select:focus {
    border-color: rgb(253 159 99 / 0.72);
    background-color: #fff;
}

body.page-site-refresh .lang-switcher__button {
    border-color: rgb(255 255 255 / 0.76);
    background: rgb(255 255 255 / 0.58);
    color: #0f172a;
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 0.92),
        0 10px 26px rgb(51 65 85 / 0.1);
    backdrop-filter: blur(16px) saturate(125%);
    -webkit-backdrop-filter: blur(16px) saturate(125%);
}

body.page-site-refresh .lang-switcher__button:hover,
body.page-site-refresh .lang-switcher__button[aria-expanded="true"] {
    border-color: rgb(255 255 255 / 0.98);
    background: rgb(255 255 255 / 0.84);
    box-shadow:
        inset 0 1px 0 #fff,
        0 14px 32px rgb(51 65 85 / 0.14);
}

body.page-site-refresh .lang-switcher__menu {
    border-color: rgb(255 255 255 / 0.82);
    background: rgb(255 255 255 / 0.88);
    box-shadow:
        inset 0 1px 0 #fff,
        0 24px 60px rgb(51 65 85 / 0.18);
}

body.page-site-refresh .lang-switcher__option {
    color: #475569;
}

body.page-site-refresh .lang-switcher__option:hover,
body.page-site-refresh .lang-switcher__option:focus-visible {
    background: rgb(253 159 99 / 0.16);
    color: #8f4424;
}

body.page-site-refresh .lang-switcher__option[aria-selected="true"] {
    background: rgb(253 159 99 / 0.24);
    color: #8f4424;
}

body.page-site-refresh .lang-switcher__button:focus-visible {
    outline-color: rgb(253 159 99 / 0.32);
}

body.page-site-refresh .mobile-nav-link {
    background: rgb(248 250 252);
    color: rgb(51 65 85);
}

body.page-site-refresh .mobile-nav-link.is-active,
body.page-site-refresh .mobile-nav-link:hover {
    background: rgb(253 159 99 / 0.16);
    color: var(--home-accent-strong);
}

body.page-site-refresh .mobile-nav-cta {
    background: linear-gradient(180deg, var(--home-accent-hover), var(--home-accent));
    color: var(--home-accent-ink);
}

body.page-site-refresh {
    --home-accent: #FD9F63;
    --home-accent-hover: #FFB476;
    --home-accent-strong: #A94F28;
    --home-accent-ink: #352117;
    --home-accent-soft: #FFF3E6;
}

body.page-site-refresh .blue-cta,
body.page-site-refresh .mobile-nav-cta {
    background: linear-gradient(180deg, var(--home-accent-hover) 0%, var(--home-accent) 100%) !important;
    color: var(--home-accent-ink) !important;
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 0.42),
        0 18px 36px rgb(253 159 99 / 0.34) !important;
}

body.page-site-refresh .blue-cta:hover,
body.page-site-refresh .mobile-nav-cta:hover {
    background: linear-gradient(180deg, #FFC28B 0%, var(--home-accent-hover) 100%) !important;
}

body.page-site-refresh nav a[aria-current="page"],
body.page-site-refresh nav .text-blue-600,
body.page-site-refresh .text-blue-700 {
    color: var(--home-accent-strong) !important;
}

body.page-site-refresh .text-blue-100 {
    color: #543224 !important;
}

body.page-site-refresh .text-blue-50\/85 {
    color: rgb(68 40 28 / 0.82) !important;
}

body.page-site-refresh .border-blue-100,
body.page-site-refresh .border-blue-200,
body.page-site-refresh .border-blue-300,
body.page-site-refresh .border-blue-500\/30 {
    border-color: rgb(253 159 99 / 0.56) !important;
}

body.page-site-refresh .bg-blue-50,
body.page-site-refresh .bg-blue-100,
body.page-site-refresh .bg-blue-500\/10 {
    background-color: rgb(253 159 99 / 0.16) !important;
}

body.page-site-refresh .shadow-blue-600\/20,
body.page-site-refresh .shadow-blue-700\/25 {
    --tw-shadow-color: rgb(253 159 99 / 0.34) !important;
    --tw-shadow: var(--tw-shadow-colored) !important;
}

.hero-refresh {
    min-height: 100vh;
    padding-top: 5.5rem !important;
    padding-bottom: 2.5rem;
}

.hero-title__line {
    display: block;
    white-space: nowrap;
}

@media (max-width: 639px) {
    .hero-refresh .hero-title {
        font-size: clamp(1.7rem, 8.5vw, 3.1rem) !important;
    }
}

.hero-sky {
    position: absolute;
    inset: 0 0 -1px;
    background: linear-gradient(180deg, #FD9F63 0%, #FFC985 45%, #FFE2A8 76%, #ffffff 100%);
}

.hero-sky::before,
.hero-sky::after {
    content: none;
}

.hero-device {
    transform-origin: center top;
    margin-top: 2rem !important;
    max-width: 58rem !important;
}

.desktop-shell {
    position: relative;
    overflow: hidden;
    border-radius: 1.65rem;
    border: 1px solid rgb(255 255 255 / 0.5);
    background: rgb(248 250 252 / 0.84);
    box-shadow:
        0 36px 80px rgb(15 23 42 / 0.28),
        inset 0 1px 0 rgb(255 255 255 / 0.7);
}

.desktop-shell > img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.desktop-topbar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    height: 2.4rem;
    padding: 0 1rem;
    color: rgb(71 85 105);
    font-size: 0.78rem;
    font-weight: 700;
    background: linear-gradient(180deg, #ffffff 0%, #eef3fb 100%);
    border-bottom: 1px solid rgb(203 213 225 / 0.7);
}

.desktop-topbar span {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    background: #ff5f57;
}

.desktop-topbar span:nth-child(2) {
    background: #febc2e;
}

.desktop-topbar span:nth-child(3) {
    background: #28c840;
    margin-right: 0.4rem;
}

.assistant-float {
    position: absolute;
    right: 5%;
    top: 24%;
    width: min(25rem, 42%);
    border: 1px solid rgb(255 255 255 / 0.24);
    border-radius: 1.2rem;
    padding: 1rem;
    color: #fff;
    background: rgb(15 23 42 / 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgb(15 23 42 / 0.34);
}

.assistant-float p {
    margin-top: 0.7rem;
    font-size: 0.98rem;
    line-height: 1.55;
}

.assistant-pill {
    width: fit-content;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    background: linear-gradient(180deg, #3478ff, #1557e8);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.page-site-refresh .assistant-pill {
    background: linear-gradient(180deg, var(--home-accent-hover), var(--home-accent));
    color: var(--home-accent-ink);
}

.assistant-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.assistant-actions span {
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    background: rgb(255 255 255 / 0.12);
    color: rgb(255 255 255 / 0.9);
    font-size: 0.78rem;
    font-weight: 700;
}

.workflow-strip {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgb(226 232 240);
    border-radius: 1.5rem;
    background: rgb(226 232 240);
    box-shadow: 0 18px 54px rgb(15 23 42 / 0.06);
}

.workflow-step {
    padding: clamp(1.35rem, 3vw, 1.9rem);
    background:
        radial-gradient(circle at 88% 18%, rgb(59 130 246 / 0.1), transparent 9rem),
        #fff;
}

.workflow-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 900;
}

.workflow-step h3 {
    margin-top: 1rem;
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 850;
}

.workflow-step p {
    margin-top: 0.65rem;
    color: #64748b;
    line-height: 1.65;
}

@media (min-width: 768px) {
    .workflow-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-card,
.security-card,
.case-card,
.metric-tile {
    border-radius: 1.45rem;
}

.product-card {
    min-height: 34rem;
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-shadow: 0 24px 70px rgb(15 23 42 / 0.09);
}

.product-card-blue {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 78% 72%, rgb(255 255 255 / 0.22), transparent 17rem),
        linear-gradient(145deg, #77a6ff 0%, #5c8df5 58%, #3b72e8 100%);
}

body.page-site-refresh .product-card-blue {
    background:
        radial-gradient(circle at 78% 72%, rgb(255 255 255 / 0.24), transparent 17rem),
        linear-gradient(145deg, #FD9F63 0%, #FFC985 56%, #FFE2A8 100%);
    color: #352117;
    box-shadow: 0 24px 70px rgb(253 159 99 / 0.28);
}

body.page-site-refresh .hero-title,
body.page-site-refresh .hero-refresh .hero-title + p {
    color: #352117 !important;
    text-shadow: none !important;
}

body.page-site-refresh .product-card-blue h3,
body.page-site-refresh .product-card-blue p,
body.page-site-refresh .product-card-blue .recording-timer,
body.page-site-refresh .product-card-blue .recording-timer strong,
body.page-site-refresh .product-card-blue .recording-timer span {
    color: #352117 !important;
}

body.page-site-refresh .product-card-blue .meeting-widget {
    background: rgb(255 255 255 / 0.3);
}

body.page-site-refresh .product-card-blue .meeting-wave span {
    background: rgb(53 33 23 / 0.46);
}

body.page-site-refresh .product-card-blue .meeting-wave span:nth-child(n + 13):nth-child(-n + 24) {
    background: rgb(53 33 23 / 0.68);
}

body.page-site-refresh .product-card-blue .meeting-wave span.is-quiet {
    background: rgb(53 33 23 / 0.28);
}

body.page-site-refresh .hero-refresh .anim-fade.inline-flex,
body.page-site-refresh .hero-refresh .anim-slide-up > a:not(.blue-cta) {
    border-color: rgb(255 255 255 / 0.72) !important;
    background: rgb(255 255 255 / 0.42) !important;
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 0.72),
        0 12px 32px rgb(97 52 24 / 0.08);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
}

body.page-site-refresh .hero-refresh .anim-slide-up > a:not(.blue-cta) {
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

body.page-site-refresh .hero-refresh .anim-slide-up > a:not(.blue-cta):hover {
    border-color: rgb(255 255 255 / 0.96) !important;
    background: rgb(255 255 255 / 0.76) !important;
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 0.96),
        0 16px 38px rgb(97 52 24 / 0.14);
    transform: translateY(-2px);
}

body.page-site-refresh .desktop-shell {
    border-color: rgb(255 255 255 / 0.76);
    background: rgb(255 255 255 / 0.58);
    box-shadow:
        0 36px 80px rgb(75 42 23 / 0.2),
        inset 0 1px 0 rgb(255 255 255 / 0.9);
    backdrop-filter: blur(26px) saturate(130%);
    -webkit-backdrop-filter: blur(26px) saturate(130%);
}

body.page-site-refresh section.bg-white {
    background: linear-gradient(180deg, rgb(255 255 255 / 0.88), rgb(255 247 239 / 0.76)) !important;
}

body.page-site-refresh .metric-tile,
body.page-site-refresh .security-card,
body.page-site-refresh .product-card-light,
body.page-site-refresh .protocol-window,
body.page-site-refresh .faq-item {
    border-color: rgb(255 255 255 / 0.78);
    background: rgb(255 255 255 / 0.66);
    box-shadow:
        0 18px 48px rgb(83 47 25 / 0.075),
        inset 0 1px 0 rgb(255 255 255 / 0.92);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
}

body.page-site-refresh .talkstation-showcase,
body.page-site-refresh .talkstation-showcase-featured {
    border-color: rgb(255 255 255 / 0.8);
    background:
        linear-gradient(135deg, rgb(253 159 99 / 0.14), transparent 48%),
        rgb(255 255 255 / 0.58);
    box-shadow:
        0 28px 70px rgb(88 50 27 / 0.1),
        inset 0 1px 0 rgb(255 255 255 / 0.92);
    backdrop-filter: blur(22px) saturate(125%);
    -webkit-backdrop-filter: blur(22px) saturate(125%);
}

body.page-site-refresh .case-card {
    border-color: rgb(255 255 255 / 0.78);
    background: rgb(255 255 255 / 0.62);
    box-shadow:
        0 18px 46px rgb(83 47 25 / 0.07),
        inset 0 1px 0 rgb(255 255 255 / 0.9);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
}

body.page-site-refresh main {
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7ef 27%, #f7f9fc 56%, #fff3e8 78%, #ffffff 100%);
}

body.page-site-refresh main > section:not(.hero-refresh) {
    border-color: rgb(255 255 255 / 0.68) !important;
    background: rgb(255 255 255 / 0.24) !important;
}

body.page-site-refresh main > section:nth-of-type(even):not(.hero-refresh) {
    background: rgb(255 250 245 / 0.42) !important;
}

body.page-site-refresh .workflow-strip {
    gap: 1px;
    border-color: rgb(255 255 255 / 0.82);
    background: rgb(255 255 255 / 0.52);
    box-shadow:
        0 22px 58px rgb(83 47 25 / 0.08),
        inset 0 1px 0 rgb(255 255 255 / 0.94);
    backdrop-filter: blur(20px) saturate(125%);
    -webkit-backdrop-filter: blur(20px) saturate(125%);
}

body.page-site-refresh .workflow-step {
    background:
        linear-gradient(135deg, rgb(253 159 99 / 0.08), transparent 54%),
        rgb(255 255 255 / 0.5);
}

body.page-site-refresh .workflow-step span,
body.page-site-refresh .security-icon {
    border: 1px solid rgb(255 255 255 / 0.72);
    background: rgb(253 159 99 / 0.2);
    color: #8f4424;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.page-site-refresh .product-card-blue {
    border: 1px solid rgb(255 255 255 / 0.74);
    background:
        linear-gradient(145deg, rgb(253 159 99 / 0.82) 0%, rgb(255 201 133 / 0.78) 56%, rgb(255 226 168 / 0.72) 100%);
    backdrop-filter: blur(22px) saturate(120%);
    -webkit-backdrop-filter: blur(22px) saturate(120%);
}

body.page-site-refresh .product-card-blue .meeting-widget {
    border: 1px solid rgb(255 255 255 / 0.52);
    background: rgb(255 255 255 / 0.26);
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 0.62),
        0 16px 42px rgb(90 51 28 / 0.07);
    backdrop-filter: blur(16px) saturate(118%);
    -webkit-backdrop-filter: blur(16px) saturate(118%);
}

body.page-site-refresh .interface-preview,
body.page-site-refresh .protocol-window img {
    border-color: rgb(255 255 255 / 0.76) !important;
    box-shadow: 0 20px 54px rgb(65 46 34 / 0.12);
}

body.page-site-refresh .cases-section,
body.page-site-refresh .faq-section {
    border-top-color: rgb(255 255 255 / 0.72) !important;
    border-bottom-color: rgb(255 255 255 / 0.72) !important;
    background: rgb(255 255 255 / 0.28) !important;
    backdrop-filter: blur(14px) saturate(112%);
    -webkit-backdrop-filter: blur(14px) saturate(112%);
}

body.page-site-refresh main > section:last-child a:not(.blue-cta) {
    border-color: rgb(255 255 255 / 0.82) !important;
    background: rgb(255 255 255 / 0.56) !important;
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 0.92),
        0 14px 36px rgb(83 47 25 / 0.08);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

body.page-site-refresh main > section:last-child a:not(.blue-cta):hover {
    border-color: rgb(255 255 255 / 0.98) !important;
    background: rgb(255 255 255 / 0.86) !important;
    box-shadow:
        inset 0 1px 0 #fff,
        0 18px 42px rgb(83 47 25 / 0.13);
    transform: translateY(-2px);
}

body.page-site-refresh footer {
    border-top-color: rgb(255 255 255 / 0.76) !important;
    background: rgb(255 255 255 / 0.68) !important;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.92);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.product-card-light {
    background:
        linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
    border: 1px solid rgb(226 232 240);
}

.product-card-interface {
    display: flex;
    flex-direction: column;
}

.interface-preview {
    display: block;
    width: calc(100% + 1.25rem);
    max-width: none;
    margin-left: -0.625rem;
}

.meeting-widget {
    margin-top: 3.2rem;
    border-radius: 1.35rem;
    padding: 1.55rem 1.4rem 1.8rem;
    background: rgb(15 23 42 / 0.08);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.16);
}

.recording-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.45rem;
    color: #fff;
}

.recording-timer strong {
    color: rgb(255 255 255 / 0.72);
    font-size: clamp(2.25rem, 6vw, 3.15rem);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.04em;
}

.recording-timer span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin-top: 0.35rem;
    color: rgb(255 255 255 / 0.68);
    font-size: 0.92rem;
    font-weight: 700;
}

.recording-timer i {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: #fb7185;
    box-shadow: 0 0 0 0 rgb(251 113 133 / 0.5);
    animation: recording_dot 1.45s ease-in-out infinite;
}

@keyframes recording_dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgb(251 113 133 / 0.45);
        opacity: 0.72;
    }
    50% {
        box-shadow: 0 0 0 7px rgb(251 113 133 / 0);
        opacity: 1;
    }
}

.meeting-wave {
    display: block;
    height: 5rem;
    width: min(34rem, 100%);
    margin: 0 auto;
    padding: 0 0.25rem;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.meeting-wave-track {
    display: flex;
    align-items: center;
    gap: 0.24rem;
    width: max-content;
    height: 100%;
    animation: meeting_wave_track 8.4s linear infinite;
    will-change: transform;
}

.meeting-wave span {
    flex: 0 0 auto;
    width: 0.34rem;
    height: 0.62rem;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.54);
}

.meeting-wave span:nth-child(3n) { height: 0.95rem; }
.meeting-wave span:nth-child(4n) { height: 1.35rem; }
.meeting-wave span:nth-child(5n) { height: 1.9rem; }
.meeting-wave span:nth-child(7n) { height: 2.7rem; }
.meeting-wave span:nth-child(9n) { height: 3.35rem; }
.meeting-wave span:nth-child(11n) { height: 2.25rem; }
.meeting-wave span:nth-child(n + 13):nth-child(-n + 24) {
    background: rgb(255 255 255 / 0.76);
}

.meeting-wave span.is-quiet {
    height: 0.34rem !important;
    background: rgb(255 255 255 / 0.34);
    opacity: 0.74;
}

.meeting-wave span.is-quiet:nth-child(5n),
.meeting-wave span.is-quiet:nth-child(7n),
.meeting-wave span.is-quiet:nth-child(9n) {
    height: 0.46rem !important;
}

@keyframes meeting_wave_track {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-41.76rem, 0, 0);
    }
}

.protocol-window {
    border-radius: 1.8rem;
    padding: 0.8rem;
    background: linear-gradient(180deg, #eff6ff 0%, #e2e8f0 100%);
    box-shadow: 0 28px 70px rgb(15 23 42 / 0.12);
}

.interface-window-large {
    padding: 0.55rem;
}

.interface-window-large img {
    min-height: 27rem;
    object-fit: cover;
    object-position: top left;
}

.talkstation-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 1.8rem;
    padding: clamp(1.25rem, 3vw, 2.25rem);
    background:
        radial-gradient(circle at 30% 20%, rgb(59 130 246 / 0.18), transparent 18rem),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    border: 1px solid rgb(219 234 254);
    box-shadow: 0 28px 70px rgb(15 23 42 / 0.12);
}

.talkstation-showcase-featured {
    background:
        radial-gradient(circle at 45% 18%, rgb(59 130 246 / 0.24), transparent 18rem),
        linear-gradient(180deg, #f8fbff 0%, #e8f1ff 100%);
    border-color: rgb(191 219 254);
    box-shadow: 0 34px 88px rgb(37 99 235 / 0.16);
}

.talkstation-showcase::after {
    content: "";
    position: absolute;
    inset: auto 12% 8% 12%;
    height: 2rem;
    border-radius: 999px;
    background: rgb(15 23 42 / 0.12);
    filter: blur(18px);
}

.talkstation-showcase img {
    position: relative;
    z-index: 1;
    display: block;
    max-height: 30rem;
    object-fit: contain;
    filter: drop-shadow(0 24px 28px rgb(15 23 42 / 0.16));
}

.metric-tile {
    padding: 1.2rem;
    border: 1px solid rgb(226 232 240);
    background: #fff;
    box-shadow: 0 12px 36px rgb(15 23 42 / 0.05);
}

.metric-tile strong {
    display: block;
    color: #0f172a;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1;
}

.metric-tile span {
    display: block;
    margin-top: 0.55rem;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.security-card {
    border: 1px solid rgb(226 232 240);
    background: #fff;
    padding: 1.6rem;
    box-shadow: 0 16px 48px rgb(15 23 42 / 0.06);
}

.security-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 900;
}

.security-card h3 {
    margin-top: 1.4rem;
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 850;
}

.security-card p {
    margin-top: 0.75rem;
    color: #64748b;
    line-height: 1.7;
}

.cases-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-top: 1px solid rgb(226 232 240 / 0.75);
    border-bottom: 1px solid rgb(226 232 240 / 0.75);
}

.case-card {
    overflow: hidden;
    border: 1px solid rgb(226 232 240);
    background: rgb(255 255 255 / 0.82);
    box-shadow: 0 14px 42px rgb(15 23 42 / 0.05);
    backdrop-filter: blur(10px);
}

.case-card img {
    width: 100%;
    height: 9.5rem;
    object-fit: cover;
    object-position: center;
    opacity: 0.96;
    background: #f8fafc;
}

.case-card h3 {
    padding: 1.1rem 1.1rem 0;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 850;
}

.case-card p {
    padding: 0.45rem 1.1rem 1.1rem;
    color: #64748b;
    line-height: 1.55;
    font-size: 0.94rem;
}

.faq-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-top: 1px solid rgb(226 232 240 / 0.75);
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid rgb(226 232 240);
    border-radius: 1.05rem;
    padding: 1.2rem 1.25rem;
    background: rgb(255 255 255 / 0.86);
    box-shadow: 0 12px 34px rgb(15 23 42 / 0.045);
}

.faq-item h3 {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 850;
}

.faq-item p {
    margin-top: 0.55rem;
    color: #64748b;
    line-height: 1.65;
}

@media (max-width: 767px) {
    .hero-refresh {
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-sky {
        background:
            radial-gradient(circle at 74% 42%, rgb(255 255 255 / 0.9) 0 3.5rem, transparent 3.6rem),
            linear-gradient(180deg, #3a95e8 0%, #70bff1 42%, #ffffff 86%);
    }

    .desktop-shell {
        border-radius: 1.1rem;
    }

    .desktop-topbar {
        height: 2rem;
    }

    .assistant-float {
        position: relative;
        right: auto;
        top: auto;
        width: calc(100% - 1rem);
        margin: -3.4rem auto 0;
    }

    .product-card {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.page-site-refresh .anim-scale,
    body.page-site-refresh .anim-fade,
    body.page-site-refresh .anim-slide-up,
    body.page-site-refresh .anim-slide-left,
    body.page-site-refresh .anim-slide-right {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .meeting-wave-track {
        animation: none;
    }
}

/* ===== Unified inner-page layout ===== */
body.page-site-refresh.page-inner-refresh {
    background: linear-gradient(180deg, #fffaf5 0%, #ffffff 42%, #fff7ef 100%) !important;
    color: var(--home-accent-ink) !important;
}

body.page-site-refresh.page-inner-refresh .section {
    min-height: auto;
    height: auto;
}

body.page-site-refresh.page-inner-refresh main > section:first-child {
    min-height: auto !important;
    padding-top: 8.5rem !important;
    padding-bottom: 5rem !important;
    background: linear-gradient(180deg, #FD9F63 0%, #FFC985 48%, #FFE2A8 78%, #ffffff 100%) !important;
}

body.page-site-refresh.page-inner-refresh main > section:first-child > .absolute,
body.page-site-refresh.page-inner-refresh main > section:first-child .products-orbit {
    display: none !important;
}

body.page-site-refresh.page-inner-refresh .hero-glow,
body.page-site-refresh.page-inner-refresh .hero-glow::before,
body.page-site-refresh.page-inner-refresh .hero-glow::after {
    background: none !important;
}

body.page-site-refresh.page-inner-refresh h1,
body.page-site-refresh.page-inner-refresh h2,
body.page-site-refresh.page-inner-refresh h3,
body.page-site-refresh.page-inner-refresh .text-white {
    color: var(--home-accent-ink) !important;
}

body.page-site-refresh.page-inner-refresh main > section:first-child h1 {
    font-family: 'EB Garamond', serif;
    font-weight: 600 !important;
    letter-spacing: -0.025em;
}

body.page-site-refresh.page-inner-refresh .text-slate-200,
body.page-site-refresh.page-inner-refresh .text-slate-300 {
    color: #543224 !important;
}

body.page-site-refresh.page-inner-refresh .text-slate-400,
body.page-site-refresh.page-inner-refresh .text-slate-500 {
    color: #6f584b !important;
}

body.page-site-refresh.page-inner-refresh .gradient-text {
    background: linear-gradient(90deg, #8f4424, #352117);
    background-clip: text;
    -webkit-background-clip: text;
}

body.page-site-refresh.page-inner-refresh .name-en-muted {
    color: rgb(111 88 75 / 0.78) !important;
}

body.page-site-refresh.page-inner-refresh .bg-indigo-500,
body.page-site-refresh.page-inner-refresh .mobile-nav-cta,
body.page-site-refresh.page-inner-refresh [data-scroll-top] {
    background: linear-gradient(180deg, var(--home-accent-hover), var(--home-accent)) !important;
    color: var(--home-accent-ink) !important;
    box-shadow: 0 16px 34px rgb(253 159 99 / 0.28) !important;
}

body.page-site-refresh.page-inner-refresh .bg-indigo-500:hover,
body.page-site-refresh.page-inner-refresh .mobile-nav-cta:hover {
    background: linear-gradient(180deg, #FFC28B, var(--home-accent-hover)) !important;
}

body.page-site-refresh.page-inner-refresh .border-indigo-500\/20,
body.page-site-refresh.page-inner-refresh .border-indigo-500\/30,
body.page-site-refresh.page-inner-refresh .border-indigo-400\/30,
body.page-site-refresh.page-inner-refresh .border-purple-500\/20,
body.page-site-refresh.page-inner-refresh .border-cyan-500\/20,
body.page-site-refresh.page-inner-refresh .border-emerald-500\/20 {
    border-color: rgb(253 159 99 / 0.5) !important;
}

body.page-site-refresh.page-inner-refresh .bg-indigo-500\/10,
body.page-site-refresh.page-inner-refresh .bg-indigo-500\/15,
body.page-site-refresh.page-inner-refresh .bg-indigo-500\/20 {
    background-color: rgb(253 159 99 / 0.18) !important;
}

body.page-site-refresh.page-inner-refresh .text-indigo-300,
body.page-site-refresh.page-inner-refresh .text-indigo-400 {
    color: #8f4424 !important;
}

body.page-site-refresh.page-inner-refresh .bg-slate-900\/70,
body.page-site-refresh.page-inner-refresh .bg-slate-900\/60,
body.page-site-refresh.page-inner-refresh .bg-slate-800\/70,
body.page-site-refresh.page-inner-refresh .bg-slate-950\/40,
body.page-site-refresh.page-inner-refresh .bg-slate-950\/70,
body.page-site-refresh.page-inner-refresh .bg-slate-900\/30,
body.page-site-refresh.page-inner-refresh .bg-slate-900\/25,
body.page-site-refresh.page-inner-refresh .bg-slate-900\/20 {
    background: rgb(255 255 255 / 0.24) !important;
}

body.page-site-refresh.page-inner-refresh main > section:not(:first-child) {
    border-color: rgb(255 255 255 / 0.72) !important;
    background: rgb(255 255 255 / 0.28) !important;
}

body.page-site-refresh.page-inner-refresh main > section:nth-child(even):not(:first-child) {
    background: rgb(255 250 245 / 0.46) !important;
}

body.page-site-refresh.page-inner-refresh .glass-card,
body.page-site-refresh.page-inner-refresh .feature-block,
body.page-site-refresh.page-inner-refresh .workflow-grid-stage,
body.page-site-refresh.page-inner-refresh article[class*="glass-card"],
body.page-site-refresh.page-inner-refresh .rounded-2xl.border,
body.page-site-refresh.page-inner-refresh .rounded-xl.border {
    border-color: rgb(255 255 255 / 0.8) !important;
    background: rgb(255 255 255 / 0.64) !important;
    box-shadow:
        0 18px 48px rgb(83 47 25 / 0.08),
        inset 0 1px 0 rgb(255 255 255 / 0.92) !important;
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
}

body.page-products.page-site-refresh .product-station-callout,
body.page-products.page-site-refresh .product-station-callout article,
body.page-talkstation-focus.page-site-refresh main > section:first-child .glass-card {
    border-color: rgb(255 255 255 / 0.82) !important;
    background: linear-gradient(145deg, rgb(253 159 99 / 0.18), rgb(255 255 255 / 0.72)) !important;
    box-shadow: 0 28px 72px rgb(111 63 34 / 0.13) !important;
}

body.page-talkstation-focus.page-site-refresh main > section:first-child img[src*="talkstation"] {
    max-height: 34rem;
    object-fit: contain !important;
    background: #fffaf5;
}

body.page-site-refresh.page-inner-refresh .product-badge {
    background: var(--home-accent-soft) !important;
    color: var(--home-accent-strong) !important;
}

.site-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgb(255 255 255 / 0.76);
    border-radius: 1rem;
    background: rgb(253 159 99 / 0.2);
    color: var(--home-accent-strong);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.84);
}

.site-feature-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.video-showcase-card,
.talkstation-media {
    max-width: 64rem;
    margin-right: auto;
    margin-left: auto;
    padding: 0.75rem;
    border: 1px solid rgb(255 255 255 / 0.82);
    border-radius: 1.5rem;
    background: rgb(255 255 255 / 0.62);
    box-shadow:
        0 24px 64px rgb(83 47 25 / 0.11),
        inset 0 1px 0 rgb(255 255 255 / 0.94);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.video-showcase-frame {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgb(255 255 255 / 0.38);
    border-radius: 1rem;
    background: #17100c;
}

.video-showcase-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #17100c;
}

.talkstation-media img,
.talkstation-showcase img,
body.page-talkstation-focus.page-site-refresh main > section:first-child img[src*="talkstation"] {
    background: transparent !important;
    object-fit: contain !important;
}

body.page-site-refresh footer {
    border-top: 1px solid rgb(255 255 255 / 0.76) !important;
    background: rgb(255 255 255 / 0.68) !important;
}

body.page-site-refresh footer h2,
body.page-site-refresh footer p,
body.page-site-refresh footer a {
    color: #64748b !important;
}

body.page-site-refresh .anim-scale,
body.page-site-refresh .anim-fade,
body.page-site-refresh .anim-slide-up,
body.page-site-refresh .anim-slide-left,
body.page-site-refresh .anim-slide-right {
    opacity: 0;
    transition:
        opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--reveal-order, 0) * 50ms);
    will-change: opacity, transform;
}

body.page-site-refresh .anim-fade { transform: translate3d(0, 0.5rem, 0); }
body.page-site-refresh .anim-scale { transform: translate3d(0, 0.625rem, 0) scale(0.98); }
body.page-site-refresh .anim-slide-up { transform: translate3d(0, 1.25rem, 0); }
body.page-site-refresh .anim-slide-left { transform: translate3d(-1.5rem, 0, 0); }
body.page-site-refresh .anim-slide-right { transform: translate3d(1.5rem, 0, 0); }

body.page-site-refresh .anim-scale.inview,
body.page-site-refresh .anim-fade.inview,
body.page-site-refresh .anim-slide-up.inview,
body.page-site-refresh .anim-slide-left.inview,
body.page-site-refresh .anim-slide-right.inview {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    body.page-site-refresh .anim-scale,
    body.page-site-refresh .anim-fade,
    body.page-site-refresh .anim-slide-up,
    body.page-site-refresh .anim-slide-left,
    body.page-site-refresh .anim-slide-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* ===== 2026 mobile refresh ===== */
@media (max-width: 767px) {
    body.page-site-refresh nav {
        top: 0.35rem;
        width: calc(100% - 1rem);
        border-radius: 1rem;
    }

    body.page-site-refresh nav > div:first-child {
        height: 3.75rem;
        padding-right: 0.65rem;
        padding-left: 0.75rem;
    }

    body.page-site-refresh nav img[src*="logo-no-fon"] {
        width: 2.7rem !important;
        height: 2.7rem !important;
    }

    body.page-site-refresh nav > div:first-child > a {
        gap: 0.55rem;
        min-width: 0;
    }

    body.page-site-refresh nav > div:first-child > a > span {
        overflow: hidden;
        font-size: 0.95rem;
        line-height: 1;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    body.page-site-refresh [data-mobile-menu-panel] {
        margin: 0.45rem 0.5rem 0.65rem !important;
        padding: 0.65rem !important;
        border-radius: 1rem !important;
        box-shadow: 0 18px 44px rgb(15 23 42 / 0.14) !important;
    }

    body.page-site-refresh .mobile-nav-link {
        background: rgb(248 250 252);
        color: #334155 !important;
    }

    body.page-site-refresh .mobile-nav-link:hover,
    body.page-site-refresh .mobile-nav-link.is-active {
        background: rgb(253 159 99 / 0.16);
        color: var(--home-accent-strong) !important;
    }

    body.page-site-refresh .hero-sky {
        background: linear-gradient(180deg, #FD9F63 0%, #FFC985 48%, #FFE2A8 78%, #ffffff 100%);
    }

    body.page-site-refresh .hero-refresh {
        padding-top: 5.35rem !important;
        padding-bottom: 3.5rem;
    }

    body.page-site-refresh .hero-refresh .anim-fade.inline-flex {
        margin-bottom: 1.15rem;
        padding: 0.55rem 0.8rem;
        font-size: 0.64rem;
        line-height: 1.35;
        letter-spacing: 0.18em;
    }

    body.page-site-refresh .hero-refresh .hero-title + p {
        margin-top: 1.35rem;
        font-size: 0.95rem;
        line-height: 1.65;
    }

    body.page-site-refresh .hero-refresh .text-center > .anim-slide-up {
        width: 100%;
        margin-top: 1.6rem;
    }

    body.page-site-refresh .hero-refresh .text-center > .anim-slide-up a {
        width: min(100%, 15.5rem);
        justify-content: center;
    }

    body.page-site-refresh .hero-device {
        margin-top: 2.5rem;
    }

    body.page-site-refresh main > section:not(:first-child) {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    body.page-site-refresh main h2 {
        font-size: clamp(1.85rem, 8vw, 2.25rem) !important;
        line-height: 1.08 !important;
    }

    body.page-inner-refresh main > section:first-child {
        padding-top: 7rem !important;
        padding-bottom: 3.5rem !important;
    }

    body.page-inner-refresh main > section:first-child h1 {
        font-size: clamp(2.05rem, 10vw, 2.65rem) !important;
        line-height: 1.08 !important;
        margin-bottom: 1.5rem !important;
    }

    body.page-inner-refresh main > section:first-child p {
        line-height: 1.65;
    }

    body.page-inner-refresh main > section:first-child a.rounded-xl {
        width: min(100%, 18rem);
        justify-content: center;
    }

    body.page-inner-refresh main a.bg-indigo-500 {
        background: linear-gradient(180deg, var(--home-accent-hover), var(--home-accent)) !important;
        color: var(--home-accent-ink) !important;
        box-shadow: 0 16px 34px rgb(253 159 99 / 0.28);
    }

    body.page-inner-refresh main .border-indigo-500\/30,
    body.page-inner-refresh main .border-indigo-400\/30 {
        border-color: rgb(253 159 99 / 0.5) !important;
    }

    body.page-inner-refresh main .bg-indigo-500\/10,
    body.page-inner-refresh main .bg-indigo-500\/15 {
        background-color: rgb(253 159 99 / 0.18) !important;
    }

    body.page-inner-refresh main .text-indigo-300,
    body.page-inner-refresh main .text-indigo-400 {
        color: var(--home-accent-strong) !important;
    }

    body.page-inner-refresh .feature-block,
    body.page-inner-refresh article[class*="glass-card"] {
        min-height: auto !important;
        border-radius: 1.25rem !important;
        box-shadow: 0 14px 40px rgb(15 23 42 / 0.055) !important;
    }

    body.page-site-refresh .anim-scale,
    body.page-site-refresh .anim-fade,
    body.page-site-refresh .anim-slide-up,
    body.page-site-refresh .anim-slide-left,
    body.page-site-refresh .anim-slide-right {
        opacity: 0;
        transform: translate3d(0, 0.75rem, 0);
        transition:
            opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
            transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: calc(var(--reveal-order, 0) * 35ms);
    }

    body.page-site-refresh .anim-scale.inview,
    body.page-site-refresh .anim-fade.inview,
    body.page-site-refresh .anim-slide-up.inview,
    body.page-site-refresh .anim-slide-left.inview,
    body.page-site-refresh .anim-slide-right.inview {
        opacity: 1 !important;
        transform: none !important;
    }

    body.page-inner-refresh footer {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important;
    }
}

@media (max-width: 359px) {
    body.page-site-refresh nav > div:first-child > a > span {
        font-size: 0.8rem;
        text-overflow: clip;
    }

    body.page-site-refresh nav img[src*="logo-no-fon"] {
        width: 2.35rem !important;
        height: 2.35rem !important;
    }

    body.page-site-refresh .hero-refresh .hero-title {
        font-size: clamp(1.62rem, 8.4vw, 1.9rem) !important;
    }
}
