/* ============================================
   HuboMixGio - Light Theme
   ============================================ */

:root {
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --blue: #4285F4;
    --red: #EA4335;
    --yellow: #FBBC04;
    --green: #34A853;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 1rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
    --header-topbar-height: 40px;
    --header-stack-height: calc(var(--header-topbar-height) + var(--header-height));
    --header-logo-bleed: calc(var(--header-logo-size) + var(--header-logo-cut-top) - var(--header-height) + var(--header-logo-ring-offset-outer));
    --header-content-offset: calc(var(--header-stack-height) + var(--header-logo-bleed));
    --header-logo-size: 180px;
    --header-logo-top: 18px;
    --header-logo-padding: 20px;
    --header-logo-gap: 24px;
    --header-logo-ring-offset-outer: 18px;
    --header-logo-ring-offset-mid: 9px;
    --header-logo-ring-width-outer: 7px;
    --header-logo-ring-width-mid: 5px;
    --header-logo-cut-top: -10px;
    --header-topbar-content-offset: calc(var(--header-logo-size) + (var(--header-logo-ring-offset-outer) * 2) + 20px);
    --header-topbar-bg: #0f172a;
    --header-topbar-scroll-duration: 72s;
    --container-max: 1340px;
    --container-pad: 24px;
    --heading-letter-spacing: 1px;
}

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

* {
    margin: 0;
    padding: 0;
}

/* Turbo Drive progress */
.turbo-progress-bar {
    height: 3px;
    background-color: #4285F4;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    font-size: var(--font-size-base);
    letter-spacing: 1px;
    color: var(--gray-700);
    background: var(--gray-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Layer decorative backgrounds behind in-flow content — do not extend .ws-container */
.ws-home-hero,
.ws-inner-page-hero,
.ws-ai-tools-page-hero,
.ws-tech-category-hero,
.ws-blog-post-hero,
.ws-devtools-hero,
.ws-category-hero,
.ws-tech-articles-band,
.ws-ai-tools-section,
.ws-categories-section,
.ws-home-synthetic-section,
.ws-home-famous-section,
.ws-about-section,
.ws-tech-category-overview {
    isolation: isolate;
}

.ws-home-hero-bg,
.ws-tech-articles-band-glow,
.ws-blog-post-hero-glow,
.ws-ai-tools-section::before,
.ws-categories-section::before,
.ws-home-synthetic-section::before,
.ws-about-section::before,
.ws-tech-category-overview::before {
    z-index: -1;
}

.ws-ai-tools-page-hero-bg,
.ws-tech-category-hero-bg,
.ws-blog-post-hero-bg,
.ws-devtools-hero-bg,
.ws-category-hero-bg {
    z-index: 0;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
}

a:focus,
a:focus-visible,
a:active {
    outline: none;
}

img {
    max-width: 100%;
    display: block;
}

p {
    margin-bottom: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 1px;
}

/* Background Blobs */
.ws-page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.ws-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.ws-bg-blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(66, 133, 244, 0.15);
    top: -200px;
    right: -100px;
}

.ws-bg-blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(234, 67, 53, 0.1);
    bottom: -150px;
    left: -100px;
}

.ws-bg-blob-3 {
    width: 400px;
    height: 400px;
    background: rgba(251, 188, 4, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Header */
.ws-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: visible;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: inset(0 0 -100vh 0);
}

.ws-header-topbar {
    position: relative;
    z-index: 2;
    height: var(--header-topbar-height);
    background: var(--header-topbar-bg);
    border-bottom: 1px solid #1e293b;
}

.ws-header-topbar-container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.ws-site-header.ws-scrolled {
    box-shadow: var(--shadow-md);
}

.ws-site-header.ws-scrolled-deep {
    box-shadow: var(--shadow-lg);
}

.ws-header-topbar-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    padding-left: var(--header-topbar-content-offset);
}

.ws-header-main {
    position: relative;
    z-index: 3;
    overflow: visible;
    background: var(--white);
}

.ws-header-inner--logo-center {
    justify-content: center;
    position: static;
    height: var(--header-height);
}

.ws-site-header--logo-center .ws-header-main {
    position: relative;
    z-index: 3;
    overflow: visible;
    clip-path: inset(0 -120px -240px -120px);
}

.ws-site-header--logo-center .ws-header-main .ws-container {
    position: static;
}

.ws-topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 4px 12px;
    border-radius: 6px;
    background: #1e293b;
    border: 1px solid #475569;
    color: #f8fafc;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ws-topbar-ticker {
    flex: 1;
    overflow: hidden;
    min-width: 0;
    position: relative;
    isolation: isolate;
}

.ws-topbar-ticker::before,
.ws-topbar-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 2;
    pointer-events: none;
}

.ws-topbar-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #0f172a 0%, rgba(15, 23, 42, 0) 100%);
}

.ws-topbar-ticker::after {
    right: 0;
    background: linear-gradient(270deg, #0f172a 0%, rgba(15, 23, 42, 0) 100%);
}

@supports ((-webkit-mask-image: linear-gradient(#000, #000)) or (mask-image: linear-gradient(#000, #000))) {
    .ws-topbar-ticker {
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }
}

.ws-topbar-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.ws-topbar-track:not(.ws-topbar-track--js):not(.ws-topbar-track--static) {
    -webkit-animation: ws-topbar-scroll var(--header-topbar-scroll-duration) linear infinite;
    animation: ws-topbar-scroll var(--header-topbar-scroll-duration) linear infinite;
}

.ws-topbar-track:not(.ws-topbar-track--js):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.ws-topbar-track-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    padding-right: 40px;
    gap: 40px;
}

@supports not (gap: 40px) {
    .ws-topbar-track-group > .ws-topbar-item + .ws-topbar-item {
        margin-left: 40px;
    }

    .ws-header-topbar-inner > * + * {
        margin-left: 16px;
    }

    .ws-topbar-badge > * + * {
        margin-left: 6px;
    }

    .ws-topbar-item > * + * {
        margin-left: 10px;
    }
}

@-webkit-keyframes ws-topbar-scroll {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes ws-topbar-scroll {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ws-topbar-track {
        -webkit-animation: none !important;
        animation: none !important;
        -webkit-transform: none !important;
        transform: none !important;
    }
}

.ws-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(248, 250, 252, 0.92);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.ws-topbar-item:hover {
    color: #fff;
}

.ws-topbar-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    background: #1e40af;
    border: 1px solid #3b82f6;
    color: #dbeafe;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ws-topbar-text {
    color: inherit;
}

.ws-site-header .ws-container {
    position: relative;
    z-index: 2;
}

.ws-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    height: var(--header-height);
    width: 100%;
}

.ws-site-header .ws-logo-wrapper {
    position: relative;
    margin-top: var(--header-logo-top);
    margin-right: auto;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--header-logo-size);
    height: var(--header-logo-size);
    flex-shrink: 0;
    overflow: visible;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.ws-site-header .ws-logo-wrapper::before {
    content: '';
    position: absolute;
    inset: calc(-1 * var(--header-logo-ring-offset-outer));
    z-index: -2;
    border-radius: 50%;
    border: var(--header-logo-ring-width-outer) solid;
    border-color: #a8c9fb #1a4fcc #0c2461 #5b9df6;
    background: transparent;
    box-shadow:
        0 6px 22px rgba(15, 47, 122, 0.42),
        0 2px 8px rgba(30, 64, 175, 0.28),
        inset 0 2px 6px rgba(255, 255, 255, 0.38),
        inset 0 -3px 8px rgba(12, 36, 97, 0.28);
    pointer-events: none;
}

.ws-site-header .ws-logo-wrapper::after {
    content: '';
    position: absolute;
    inset: calc(-1 * var(--header-logo-ring-offset-mid));
    z-index: -1;
    border-radius: 50%;
    border: var(--header-logo-ring-width-mid) solid;
    border-color: #7eb8ff #2563eb #1e3a8a #4d94f7;
    background: transparent;
    box-shadow:
        inset 0 1px 4px rgba(255, 255, 255, 0.55),
        inset 0 -2px 5px rgba(30, 58, 138, 0.22);
    pointer-events: none;
}

.ws-site-header .ws-logo {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: var(--header-logo-padding);
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow:
        0 0 0 3px #ffffff,
        0 4px 14px rgba(30, 64, 175, 0.22);
    text-decoration: none;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    color: inherit;
}

.ws-site-header .ws-logo:hover,
.ws-site-header .ws-logo:focus,
.ws-site-header .ws-logo:focus-visible,
.ws-site-header .ws-logo:active {
    color: inherit;
    background: #ffffff;
    outline: none;
    box-shadow:
        0 0 0 3px #ffffff,
        0 4px 14px rgba(30, 64, 175, 0.22);
}

.ws-site-header .ws-logo-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.ws-site-header--logo-center .ws-logo-wrapper {
    position: absolute;
    left: 50%;
    top: var(--header-logo-cut-top);
    transform: translateX(-50%);
    margin: 0;
    z-index: 10;
}

.ws-main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 2px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.ws-site-header.ws-scrolled .ws-main-nav {
    background: transparent;
    border: none;
    box-shadow: none;
}

.ws-site-header > .ws-main-nav {
    position: absolute;
    top: var(--header-topbar-height);
    right: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
    left: auto;
    width: auto;
    max-width: min(72%, calc(100% - var(--header-topbar-content-offset) - 24px));
    height: var(--header-height);
    z-index: 4;
}

.ws-nav-link {
    position: relative;
    padding: 10px 14px 12px;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--gray-600);
    background: transparent;
    transition: color 0.25s ease;
}

.ws-nav-link::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue) 0%, #669DF6 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-nav-link:hover {
    color: var(--blue);
    background: transparent;
    transform: none;
}

.ws-nav-link:hover::after {
    transform: scaleX(1);
}

.ws-nav-link.ws-active {
    color: var(--gray-900);
    background: transparent;
    box-shadow: none;
}

.ws-nav-link.ws-active::after {
    height: 3px;
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--blue) 0%, var(--green) 50%, var(--yellow) 100%);
    box-shadow: 0 2px 10px rgba(66, 133, 244, 0.35);
}

.ws-nav-dropdown {
    position: relative;
}

.ws-nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 2px;
}

.ws-nav-dropdown-trigger .ws-nav-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.ws-nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0 999px 999px 0;
    background: transparent;
    color: var(--gray-500);
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease;
}

.ws-nav-dropdown-trigger:hover .ws-nav-dropdown-toggle,
.ws-nav-dropdown.ws-open .ws-nav-dropdown-toggle {
    color: var(--blue);
    background: rgba(66, 133, 244, 0.1);
}

.ws-nav-dropdown-trigger .ws-nav-link.ws-active + .ws-nav-dropdown-toggle {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.ws-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    padding: 8px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
    z-index: 20;
}

.ws-nav-dropdown:hover .ws-nav-dropdown-menu,
.ws-nav-dropdown.ws-open .ws-nav-dropdown-menu,
.ws-nav-dropdown:focus-within .ws-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ws-nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color 0.2s ease, background 0.2s ease;
}

.ws-nav-dropdown-link .ws-icon {
    font-size: 1.05rem;
    color: var(--blue);
    flex-shrink: 0;
}

.ws-nav-dropdown-link:hover {
    color: var(--blue);
    background: rgba(66, 133, 244, 0.08);
}

.ws-nav-dropdown-link.ws-active {
    color: var(--blue);
    background: rgba(66, 133, 244, 0.12);
}

.ws-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: none;
    background: rgba(66, 133, 244, 0.08);
    cursor: pointer;
    padding: 0;
    color: var(--blue);
    box-shadow: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.ws-mobile-toggle:hover {
    color: var(--white);
    background: linear-gradient(135deg, #4285F4 0%, #669DF6 100%);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.28);
}

.ws-mobile-toggle span {
    display: none;
}

.ws-mobile-nav-backdrop {
    display: none;
}

.ws-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
}

[class*="ri-"].ws-icon {
    font-family: 'remixicon' !important;
    font-style: normal;
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="ri-"],
[class*=" ri-"] {
    letter-spacing: normal;
}

.ws-icon-sm { font-size: 1rem; }
.ws-icon-md { font-size: 1.25rem; }
.ws-icon-lg { font-size: 1.5rem; }
.ws-icon-xl { font-size: 1.75rem; }

.ws-category-icon .ws-icon {
    font-size: 1.75rem;
    color: #fff;
}

.ws-eco-item .ws-icon {
    font-size: 1.25rem;
}

.ws-stat-icon .ws-icon {
    font-size: 1.5rem;
    color: inherit;
}

.ws-highlight-item .ws-icon {
    font-size: 1.25rem;
    color: var(--blue);
    flex-shrink: 0;
}

.ws-category-hero-icon .ws-icon {
    font-size: 2rem;
    color: #fff;
}

.ws-feature-icon .ws-icon {
    font-size: 1.375rem;
    color: inherit;
}

.ws-btn .ws-icon {
    font-size: 1rem;
}

.ws-category-link .ws-icon {
    font-size: 1rem;
}

.ws-topic-card-link .ws-icon {
    font-size: 1rem;
}

/* Buttons */
.ws-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.ws-btn-primary {
    background: var(--gray-900);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.ws-btn-primary:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.ws-btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.ws-btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.ws-btn-white {
    background: var(--white);
    color: var(--blue);
    box-shadow: var(--shadow-md);
}

.ws-btn-white:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Home Hero */
.ws-home-hero {
    position: relative;
    overflow: hidden;
    background: #050508;
    display: flex;
    align-items: center;
    min-height: auto;
    padding-top: 220px;
    padding-bottom: 96px;
    --ws-globe-x: calc(50% + 200px);
    --ws-globe-y: 188px;
}

.ws-home-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ws-home-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.ws-home-hero-tech-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(66, 133, 244, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(66, 133, 244, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 45% 40% at var(--ws-globe-x) var(--ws-globe-y), rgba(0,0,0,0.45) 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 45% 40% at var(--ws-globe-x) var(--ws-globe-y), rgba(0,0,0,0.45) 0%, transparent 72%);
    animation: ws-techGridPulse 6s ease-in-out infinite alternate;
}

@keyframes ws-techGridPulse {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.ws-home-hero-tech-lanes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ws-home-hero-tech-lane {
    position: absolute;
    left: -20%;
    width: 140%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.35), rgba(66, 133, 244, 0.2), transparent);
    opacity: 0;
    animation: ws-techLaneSweep 7s ease-in-out infinite;
}

.ws-home-hero-tech-lane::after {
    content: '';
    position: absolute;
    top: -2px;
    right: 30%;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.6), transparent);
    filter: blur(2px);
}

.ws-home-hero-tech-lane-1 { top: 12%; animation-delay: 0s; }
.ws-home-hero-tech-lane-2 { top: 28%; animation-delay: 1.4s; animation-duration: 9s; }
.ws-home-hero-tech-lane-3 { top: 50%; animation-delay: 2.8s; animation-duration: 8s; }
.ws-home-hero-tech-lane-4 { top: 68%; animation-delay: 4.2s; animation-duration: 10s; }
.ws-home-hero-tech-lane-5 { top: 85%; animation-delay: 5.6s; animation-duration: 7.5s; }

@keyframes ws-techLaneSweep {
    0%, 100% { opacity: 0; transform: translateX(-30%); }
    20% { opacity: 0.7; }
    50% { opacity: 0.4; transform: translateX(30%); }
    80% { opacity: 0.6; }
}

.ws-home-hero-hud {
    position: absolute;
    inset: 16px;
    pointer-events: none;
}

.ws-home-hero-hud-corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border-color: rgba(0, 212, 255, 0.35);
    border-style: solid;
    border-width: 0;
    animation: ws-hudPulse 3s ease-in-out infinite alternate;
}

.ws-home-hero-hud-tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; animation-delay: 0s; }
.ws-home-hero-hud-tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; animation-delay: 0.5s; }
.ws-home-hero-hud-bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; animation-delay: 1s; }
.ws-home-hero-hud-br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; animation-delay: 1.5s; }

@keyframes ws-hudPulse {
    0% { opacity: 0.35; box-shadow: none; }
    100% { opacity: 0.9; box-shadow: 0 0 12px rgba(0, 212, 255, 0.2); }
}

.ws-home-hero-aurora {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse 50% 45% at var(--ws-globe-x) var(--ws-globe-y), rgba(66, 133, 244, 0.28), transparent 70%),
        radial-gradient(ellipse 35% 30% at 20% 35%, rgba(0, 180, 255, 0.15), transparent 65%),
        radial-gradient(ellipse 35% 30% at 75% 30%, rgba(0, 212, 255, 0.12), transparent 65%);
    animation: ws-auroraShift 10s ease-in-out infinite alternate;
    filter: blur(40px);
}

@keyframes ws-auroraShift {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.7; }
    33% { transform: translate(3%, -2%) scale(1.05) rotate(1deg); opacity: 1; }
    66% { transform: translate(-2%, 3%) scale(0.98) rotate(-1deg); opacity: 0.85; }
    100% { transform: translate(2%, 1%) scale(1.03) rotate(0.5deg); opacity: 0.95; }
}

.ws-home-hero-grid-floor {
    position: absolute;
    left: -60%;
    right: -60%;
    bottom: -10%;
    height: 55%;
    background-image:
        linear-gradient(rgba(66, 133, 244, 0.45) 1px, transparent 1px),
        linear-gradient(90deg, rgba(66, 133, 244, 0.45) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(400px) rotateX(72deg);
    transform-origin: center bottom;
    animation: ws-gridZoom 2.5s linear infinite;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.ws-home-hero-grid-floor::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(66, 133, 244, 0.15), transparent 60%);
    animation: ws-gridGlow 2.5s linear infinite;
}

@keyframes ws-gridZoom {
    0% { background-position: 0 0; }
    100% { background-position: 0 50px; }
}

@keyframes ws-gridGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.ws-home-hero-rings {
    position: absolute;
    top: var(--ws-globe-y);
    left: var(--ws-globe-x);
    width: min(200px, 20vw);
    height: min(200px, 20vw);
    transform: translate(-50%, -50%);
    opacity: 0.3;
    pointer-events: none;
}

.ws-home-hero-pulses {
    position: absolute;
    top: var(--ws-globe-y);
    left: var(--ws-globe-x);
    width: min(165px, 16vw);
    height: min(165px, 16vw);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ws-home-hero-pulse-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 50%;
    opacity: 0;
    animation: ws-pulseExpand 4s ease-out infinite;
}

.ws-home-hero-pulse-ring:nth-child(2) { animation-delay: 1.3s; }
.ws-home-hero-pulse-ring:nth-child(3) { animation-delay: 2.6s; }

@keyframes ws-pulseExpand {
    0% { transform: scale(0.6); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.ws-home-hero-orbit-tracks {
    position: absolute;
    top: var(--ws-globe-y);
    left: var(--ws-globe-x);
    width: min(220px, 22vw);
    height: min(110px, 11vw);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ws-home-hero-orbit-track {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(66, 133, 244, 0.12);
    border-radius: 50%;
    animation: ws-orbitSpin 12s linear infinite;
}

.ws-home-hero-orbit-track-1 { transform: rotateX(72deg); animation-duration: 14s; }
.ws-home-hero-orbit-track-2 { transform: rotateX(72deg) rotateZ(60deg); animation-duration: 18s; animation-direction: reverse; border-color: rgba(0, 212, 255, 0.1); }
.ws-home-hero-orbit-track-3 { transform: rotateX(72deg) rotateZ(-45deg); animation-duration: 22s; border-color: rgba(102, 157, 246, 0.1); }

.ws-home-hero-orbit-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff, 0 0 20px rgba(0, 212, 255, 0.5);
}

@keyframes ws-orbitSpin {
    from { transform: rotateX(72deg) rotateZ(0deg); }
    to { transform: rotateX(72deg) rotateZ(360deg); }
}

.ws-home-hero-orbit-track-2 { animation-name: ws-orbitSpin2; }
.ws-home-hero-orbit-track-3 { animation-name: ws-orbitSpin3; }

@keyframes ws-orbitSpin2 {
    from { transform: rotateX(72deg) rotateZ(60deg); }
    to { transform: rotateX(72deg) rotateZ(420deg); }
}

@keyframes ws-orbitSpin3 {
    from { transform: rotateX(72deg) rotateZ(-45deg); }
    to { transform: rotateX(72deg) rotateZ(315deg); }
}

.ws-home-hero-globe-glow {
    position: absolute;
    top: var(--ws-globe-y);
    left: var(--ws-globe-x);
    width: min(185px, 18vw);
    height: min(185px, 18vw);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(66, 133, 244, 0.18) 0%, rgba(0, 212, 255, 0.06) 40%, transparent 70%);
    filter: blur(20px);
    animation: ws-globeGlow 4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes ws-globeGlow {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.ws-home-hero-scan-ring {
    position: absolute;
    top: var(--ws-globe-y);
    left: var(--ws-globe-x);
    width: min(210px, 21vw);
    height: min(210px, 21vw);
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(0, 212, 255, 0.12);
    border-radius: 50%;
    animation: ws-scanRing 8s linear infinite;
    pointer-events: none;
}

@keyframes ws-scanRing {
    from { transform: translate(-50%, -50%) rotate(0deg) scale(0.95); opacity: 0.4; }
    50% { opacity: 0.7; }
    to { transform: translate(-50%, -50%) rotate(360deg) scale(1.05); opacity: 0.4; }
}

.ws-home-hero-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(66, 133, 244, 0.4);
    border-radius: 50%;
    animation: ws-ringSpin 20s linear infinite;
}

.ws-home-hero-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 12px #00d4ff;
    transform: translateX(-50%);
}

.ws-home-hero-ring-1 { inset: 0; animation-duration: 18s; }
.ws-home-hero-ring-2 { inset: 12%; animation-duration: 24s; animation-direction: reverse; border-color: rgba(0, 212, 255, 0.3); }
.ws-home-hero-ring-3 { inset: 24%; animation-duration: 30s; border-color: rgba(102, 157, 246, 0.25); }

@keyframes ws-ringSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ws-home-hero-beam {
    position: absolute;
    top: -30%;
    width: 1px;
    height: 160%;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.5), rgba(66, 133, 244, 0.3), transparent);
    box-shadow: 0 0 20px rgba(66, 133, 244, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
    transform-origin: center top;
    opacity: 0;
    animation: ws-beamSweep 8s ease-in-out infinite;
}

.ws-home-hero-beam-1 { left: 15%; animation-delay: 0s; }
.ws-home-hero-beam-2 { left: 38%; animation-delay: 2s; }
.ws-home-hero-beam-3 { left: 62%; animation-delay: 4s; }
.ws-home-hero-beam-4 { left: 85%; animation-delay: 6s; }

@keyframes ws-beamSweep {
    0%, 100% { opacity: 0; transform: rotate(-8deg) scaleY(0.8); }
    15% { opacity: 0.6; }
    50% { opacity: 0.35; transform: rotate(8deg) scaleY(1); }
    85% { opacity: 0.6; }
}

.ws-home-hero-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(0, 212, 255, 0.04) 45%,
        rgba(66, 133, 244, 0.08) 50%,
        rgba(0, 212, 255, 0.04) 55%,
        transparent 60%
    );
    background-size: 200% 100%;
    animation: ws-shimmer 6s ease-in-out infinite;
}

@keyframes ws-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.ws-home-hero-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(5, 5, 8, 0.88) 0%, rgba(5, 5, 8, 0.45) 45%, transparent 62%),
        linear-gradient(to bottom, rgba(5, 5, 8, 0.25) 0%, transparent 35%, transparent 100%);
}

@media (prefers-reduced-motion: reduce) {
    .ws-home-hero-aurora,
    .ws-home-hero-grid-floor,
    .ws-home-hero-beam,
    .ws-home-hero-shimmer,
    .ws-home-hero-ring,
    .ws-home-hero-globe-glow,
    .ws-home-hero-pulse-ring,
    .ws-home-hero-orbit-track,
    .ws-home-hero-scan-ring,
    .ws-home-hero-tech-grid,
    .ws-home-hero-tech-lane,
    .ws-home-hero-hud-corner {
        animation: none;
    }

    .ws-home-hero-canvas {
        opacity: 0.85;
    }

    .ws-home-hero-rings {
        opacity: 0.2;
    }
}

/* Page heroes — circular circuit animation (right) */
.ws-page-hero-bg {
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(160deg, #081428 0%, #0a1929 22%, #0c1f38 48%, #102945 72%, #122a4a 100%);
    --page-hero-circuit-size: 560px;
}

.ws-inner-page-hero > .ws-page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ws-page-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 55% 85% at 25% 50%, transparent 0%, rgba(8, 20, 40, 0.06) 65%, rgba(8, 20, 40, 0.16) 100%),
        linear-gradient(90deg, transparent 0%, transparent 38%, rgba(8, 20, 40, 0.1) 52%, rgba(8, 20, 40, 0.32) 100%);
    pointer-events: none;
}

.ws-page-hero-circuit-rail {
    position: absolute;
    top: var(--page-hero-pad-top, 0);
    right: 0;
    bottom: var(--page-hero-pad-bottom, 0);
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1.5%;
    pointer-events: none;
}

.ws-inner-page-hero .ws-page-hero-circuit-rail,
.ws-ai-tools-page-hero .ws-page-hero-circuit-rail,
.ws-tech-category-hero .ws-page-hero-circuit-rail,
.ws-blog-post-hero .ws-page-hero-circuit-rail,
.ws-devtools-hero .ws-page-hero-circuit-rail,
.ws-category-hero .ws-page-hero-circuit-rail {
    left: max(480px, 44%);
    justify-content: center;
}

.ws-page-hero-circuit {
    position: relative;
    top: auto;
    right: auto;
    width: var(--page-hero-circuit-size);
    max-width: 100%;
    aspect-ratio: 1;
    height: auto;
    flex-shrink: 0;
    min-width: 0;
    overflow: hidden;
    pointer-events: none;
    isolation: isolate;
}

.ws-page-hero-circuit-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ws-page-hero-circuit-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ws-circuit-grid-pan {
    transform-origin: 250px 250px;
    animation: ws-circuit-grid-drift 24s linear infinite;
}

.ws-circuit-scan-ring {
    fill: none;
    stroke: rgba(110, 196, 255, 0.45);
    stroke-width: 1.2;
    transform-origin: 250px 250px;
    animation: ws-circuit-scan-expand 4.8s ease-out infinite;
}

.ws-circuit-scan-ring--delay {
    animation-delay: -1.6s;
}

.ws-circuit-scan-ring--delay-2 {
    animation-delay: -3.2s;
}

.ws-circuit-arc-spin {
    transform-origin: 250px 250px;
    animation: ws-circuit-rotate 42s linear infinite;
}

.ws-circuit-arc-path {
    stroke-dasharray: 120 280;
    animation: ws-circuit-arc-flow 5s linear infinite;
}

.ws-circuit-arc-path--delay {
    animation-delay: -1.7s;
}

.ws-circuit-arc-path--delay-2 {
    animation-delay: -3.4s;
}

.ws-circuit-sat-orbit {
    transform-origin: 250px 250px;
    animation: ws-circuit-rotate 18s linear infinite;
}

.ws-circuit-sat-orbit--reverse {
    animation-direction: reverse;
    animation-duration: 26s;
}

.ws-circuit-satellite {
    animation: ws-circuit-pulse 2s ease-in-out infinite;
}

.ws-circuit-hub-spin {
    transform-origin: 250px 250px;
    animation: ws-circuit-rotate 90s linear infinite reverse;
}

.ws-circuit-spin {
    transform-origin: 250px 250px;
    animation: ws-circuit-rotate 72s linear infinite;
}

.ws-circuit-spin--slow {
    animation-duration: 96s;
}

.ws-circuit-spin--reverse {
    animation-direction: reverse;
    animation-duration: 58s;
}

.ws-circuit-spoke {
    opacity: 0.55;
}

.ws-circuit-spoke--dim {
    opacity: 0.28;
}

.ws-circuit-trace {
    stroke-dasharray: 6 10;
    animation: ws-circuit-flow 4.5s linear infinite;
}

.ws-circuit-trace--delay {
    animation-delay: -1.1s;
}

.ws-circuit-trace--delay-2 {
    animation-delay: -2.3s;
}

.ws-circuit-trace--delay-3 {
    animation-delay: -3.4s;
}

.ws-circuit-node {
    transform-box: fill-box;
    transform-origin: center;
    animation: ws-circuit-pulse 2.8s ease-in-out infinite;
}

.ws-circuit-node--small {
    animation-duration: 2.2s;
}

.ws-circuit-node--delay {
    animation-delay: -0.7s;
}

.ws-circuit-node--delay-2 {
    animation-delay: -1.4s;
}

.ws-circuit-node--delay-3 {
    animation-delay: -2.1s;
}

.ws-circuit-hub-core {
    animation: ws-circuit-hub-pulse 3s ease-in-out infinite;
}

.ws-circuit-orbit-ring {
    animation: ws-circuit-orbit-pulse 2.4s ease-in-out infinite;
}

.ws-circuit-orbit-ring--delay {
    animation-delay: -0.8s;
}

.ws-circuit-orbit-ring--delay-2 {
    animation-delay: -1.6s;
}

@keyframes ws-circuit-grid-drift {
    to {
        transform: translate(14px, 10px);
    }
}

@keyframes ws-circuit-scan-expand {
    0% {
        transform: scale(0.35);
        opacity: 0.75;
    }

    70% {
        opacity: 0.18;
    }

    100% {
        transform: scale(4.6);
        opacity: 0;
    }
}

@keyframes ws-circuit-arc-flow {
    to {
        stroke-dashoffset: -400;
    }
}

@keyframes ws-circuit-rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ws-circuit-flow {
    to {
        stroke-dashoffset: -32;
    }
}

@keyframes ws-circuit-pulse {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes ws-circuit-hub-pulse {
    0%,
    100% {
        opacity: 0.65;
    }

    50% {
        opacity: 1;
    }
}

@keyframes ws-circuit-orbit-pulse {
    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 0.95;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ws-circuit-spin,
    .ws-circuit-trace,
    .ws-circuit-node,
    .ws-circuit-hub-core,
    .ws-circuit-orbit-ring,
    .ws-circuit-grid-pan,
    .ws-circuit-scan-ring,
    .ws-circuit-arc-spin,
    .ws-circuit-arc-path,
    .ws-circuit-sat-orbit,
    .ws-circuit-hub-spin {
        animation: none !important;
    }

    .ws-circuit-packets {
        display: none;
    }

    .ws-page-hero-circuit-canvas {
        display: none;
    }

    .ws-about-page-hero-circuit-canvas {
        display: none;
    }
}

@media (max-width: 900px) {
    .ws-page-hero-scrim {
        background:
            radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(8, 20, 40, 0.2) 100%),
            linear-gradient(180deg, rgba(8, 20, 40, 0.45) 0%, transparent 45%, rgba(8, 20, 40, 0.35) 100%);
    }

    .ws-inner-page-hero .ws-page-hero-circuit-rail,
    .ws-ai-tools-page-hero .ws-page-hero-circuit-rail,
    .ws-tech-category-hero .ws-page-hero-circuit-rail,
    .ws-blog-post-hero .ws-page-hero-circuit-rail,
    .ws-devtools-hero .ws-page-hero-circuit-rail,
    .ws-category-hero .ws-page-hero-circuit-rail {
        left: 42%;
        padding-right: 0;
        justify-content: flex-end;
    }

    .ws-page-hero-bg {
        --page-hero-circuit-size: 400px;
    }

    .ws-about-page-hero {
        --about-page-hero-circuit-size: clamp(260px, 72vw, 340px);
    }

    .ws-about-page-hero-circuit-scrim {
        background:
            radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(8, 20, 40, 0.2) 100%),
            linear-gradient(180deg, rgba(8, 20, 40, 0.45) 0%, transparent 45%, rgba(8, 20, 40, 0.35) 100%);
    }

    .ws-about-page-hero-circuit-rail {
        top: calc(var(--page-hero-pad-top) + 8px);
        bottom: auto;
        height: var(--about-page-hero-circuit-size);
        left: 0;
        right: 0;
        justify-content: center;
        padding-right: 0;
    }

    .ws-about-page-hero-circuit {
        margin-right: 0;
        opacity: 0.92;
    }

    .ws-page-hero-circuit {
        margin-right: -4%;
        opacity: 0.85;
    }

    .ws-tech-topics-grid {
        grid-template-columns: 1fr;
    }

    .ws-tech-category-hero-inner {
        max-width: none;
    }

    .ws-tech-category-hero .ws-page-hero-circuit-rail {
        left: 0;
        right: 0;
        justify-content: center;
        padding-right: 0;
    }

    .ws-tech-category-hero .ws-page-hero-circuit {
        margin-right: 0;
    }

    .ws-ai-tools-page-guides {
        grid-template-columns: 1fr;
    }
}

/* Shared inner page hero */
.ws-inner-page-hero,
.ws-ai-tools-page-hero,
.ws-tech-category-hero,
.ws-blog-post-hero,
.ws-devtools-hero,
.ws-category-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: clamp(480px, 54vh, 580px);
    padding-top: calc(var(--header-content-offset) + 80px);
    padding-bottom: 120px;
    --page-hero-pad-top: calc(var(--header-content-offset) + 10px);
    --page-hero-pad-bottom: 120px;
    --page-hero-content-max: min(500px, 44%);
    --page-hero-anim-gap: 32px;
}

.ws-inner-page-hero .ws-container,
.ws-ai-tools-page-hero .ws-container,
.ws-tech-category-hero .ws-container,
.ws-blog-post-hero .ws-container,
.ws-devtools-hero .ws-container,
.ws-category-hero .ws-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.ws-inner-page-hero-content,
.ws-ai-tools-page-hero-inner,
.ws-tech-category-hero-inner,
.ws-devtools-hero-inner,
.ws-blog-post-hero-inner {
    position: relative;
    z-index: 1;
    max-width: min(540px, 100%);
    margin: 0;
    text-align: left;
}

.ws-inner-page-hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 16px;
}

.ws-inner-page-hero-lead {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.ws-inner-page-hero-meta {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
    color: #f1c684;
}

.ws-ai-tools-page-hero .ws-breadcrumb,
.ws-tech-category-hero .ws-breadcrumb,
.ws-blog-post-hero .ws-breadcrumb,
.ws-devtools-hero .ws-breadcrumb,
.ws-category-hero .ws-breadcrumb {
    justify-content: flex-start;
}

.ws-ai-tools-page-hero .ws-ai-tools-chips,
.ws-tech-category-hero .ws-ai-tools-chips,
.ws-devtools-hero .ws-ai-tools-chips,
.ws-about-page-hero .ws-ai-tools-chips {
    justify-content: flex-start;
}

.ws-ai-tools-page-hero h1,
.ws-tech-category-hero h1,
.ws-blog-post-hero-inner h1,
.ws-devtools-hero-inner h1,
.ws-category-hero h1,
.ws-inner-page-hero-content h1 {
    color: #ffffff;
}

.ws-ai-tools-page-hero .ws-section-label,
.ws-tech-category-hero .ws-section-label,
.ws-devtools-hero .ws-section-label,
.ws-inner-page-hero .ws-section-label {
    color: #669df6;
}

.ws-ai-tools-page-lead,
.ws-tech-category-lead,
.ws-blog-post-excerpt,
.ws-devtools-lead,
.ws-category-hero-desc,
.ws-inner-page-hero-lead {
    color: rgba(255, 255, 255, 0.65);
}

.ws-category-hero-tagline {
    color: rgba(255, 255, 255, 0.45);
}

.ws-ai-tools-page-hero .ws-breadcrumb,
.ws-tech-category-hero .ws-breadcrumb,
.ws-blog-post-hero .ws-breadcrumb,
.ws-devtools-hero .ws-breadcrumb {
    color: rgba(255, 255, 255, 0.4);
}

.ws-ai-tools-page-hero .ws-breadcrumb a,
.ws-tech-category-hero .ws-breadcrumb a,
.ws-blog-post-hero .ws-breadcrumb a,
.ws-devtools-hero .ws-breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
}

.ws-ai-tools-page-hero .ws-breadcrumb a:hover,
.ws-tech-category-hero .ws-breadcrumb a:hover,
.ws-blog-post-hero .ws-breadcrumb a:hover,
.ws-devtools-hero .ws-breadcrumb a:hover {
    color: #669df6;
}

.ws-ai-tools-page-hero .ws-breadcrumb span,
.ws-tech-category-hero .ws-breadcrumb span,
.ws-blog-post-hero .ws-breadcrumb span,
.ws-devtools-hero .ws-breadcrumb span {
    color: rgba(255, 255, 255, 0.28);
}

.ws-ai-tools-page-hero .ws-ai-tools-chip,
.ws-tech-category-hero .ws-ai-tools-chip,
.ws-devtools-hero .ws-ai-tools-chip {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(66, 133, 244, 0.14);
    border-color: rgba(66, 133, 244, 0.28);
}

.ws-home-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
}

.ws-home-hero-content {
    max-width: min(560px, 100%);
    width: 100%;
    align-items: flex-start;
}

.ws-home-hero-visual {
    width: 100%;
    max-width: 100%;
}

.ws-home-hero-visual .ws-home-hero-card-main {
    width: 100%;
}

.ws-home-hero-content,
.ws-home-hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ws-home-hero .ws-home-hero-badge {
    display: inline-flex;
    width: fit-content;
    align-self: flex-start;
    background: rgba(66, 133, 244, 0.12);
    border: 1px solid rgba(66, 133, 244, 0.35);
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 20px rgba(66, 133, 244, 0.15);
    margin-bottom: 16px;
}

.ws-home-hero .ws-badge-dot {
    background: #00d4ff;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.8);
}

.ws-home-hero .ws-home-hero-title {
    color: #ffffff;
    font-size: clamp(1.875rem, 4.5vw, 2.75rem);
    line-height: 1.12;
    margin-bottom: 16px;
}

.ws-home-hero .ws-home-hero-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(0.9375rem, 2.2vw, 1rem);
    margin-bottom: 24px;
}

.ws-home-hero .ws-gradient-text {
    background: linear-gradient(135deg, #4285F4, #669DF6, #00d4ff, #4285F4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ws-textGlow 4s ease-in-out infinite alternate;
}

@keyframes ws-textGlow {
    0% { background-position: 0% center; filter: drop-shadow(0 0 20px rgba(66, 133, 244, 0.3)); }
    100% { background-position: 100% center; filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5)); }
}

.ws-home-hero .ws-btn-primary {
    background: linear-gradient(135deg, #4285F4, #3367d6);
    box-shadow: 0 4px 24px rgba(66, 133, 244, 0.4);
}

.ws-home-hero .ws-btn-primary:hover {
    background: linear-gradient(135deg, #669DF6, #4285F4);
    box-shadow: 0 6px 32px rgba(66, 133, 244, 0.55);
}

.ws-home-hero .ws-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(66, 133, 244, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

.ws-home-hero .ws-btn-secondary:hover {
    background: rgba(66, 133, 244, 0.15);
    border-color: rgba(66, 133, 244, 0.6);
}

.ws-home-hero .ws-home-hero-card {
    background: rgba(10, 12, 20, 0.85);
    border: 1px solid rgba(66, 133, 244, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(66, 133, 244, 0.08);
}

.ws-home-hero .ws-home-hero-card-header {
    background: rgba(66, 133, 244, 0.08);
    border-bottom: 1px solid rgba(66, 133, 244, 0.2);
}

.ws-home-hero .ws-home-hero-card-label {
    color: rgba(102, 157, 246, 0.9);
}

.ws-home-hero .ws-free-title {
    color: #fff;
}

.ws-home-hero .ws-free-desc {
    color: rgba(255, 255, 255, 0.6);
}

.ws-home-hero .ws-free-icon .ws-icon {
    color: #669DF6;
}

.ws-home-hero .ws-home-hero-search {
    background: rgba(66, 133, 244, 0.08);
    border-color: rgba(66, 133, 244, 0.2);
    color: rgba(255, 255, 255, 0.45);
}

.ws-home-hero .ws-home-hero-search .ws-icon {
    color: rgba(102, 157, 246, 0.7);
}

.ws-home-hero .ws-home-hero-preview-item {
    background: rgba(66, 133, 244, 0.06);
    border-color: rgba(66, 133, 244, 0.12);
}

.ws-home-hero .ws-home-hero-preview-item:hover {
    background: rgba(66, 133, 244, 0.12);
    border-color: rgba(66, 133, 244, 0.25);
}

.ws-home-hero .ws-preview-text {
    color: rgba(255, 255, 255, 0.85);
}

.ws-home-hero .ws-preview-arrow {
    color: rgba(102, 157, 246, 0.6);
}

.ws-home-hero .ws-stat-label,
.ws-home-hero .ws-ai-label {
    color: rgba(255, 255, 255, 0.6);
}

.ws-home-hero .ws-stat-icon .ws-icon {
    color: #669DF6;
}

.ws-home-hero .ws-eco-item {
    background: rgba(66, 133, 244, 0.1);
    border: 1px solid rgba(66, 133, 244, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

.ws-home-hero .ws-eco-blue { background: rgba(66, 133, 244, 0.15); color: #669DF6; }
.ws-home-hero .ws-eco-red { background: rgba(234, 67, 53, 0.12); color: #ff6b6b; }
.ws-home-hero .ws-eco-yellow { background: rgba(251, 188, 4, 0.12); color: #ffd54f; }
.ws-home-hero .ws-eco-green { background: rgba(52, 168, 83, 0.12); color: #5bb974; }

.ws-home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.ws-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.ws-home-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.ws-gradient-text {
    background: linear-gradient(135deg, var(--blue), var(--red), var(--yellow), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ws-home-hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.ws-home-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero Visual */
.ws-home-hero-visual {
    position: relative;
    height: auto;
}

.ws-home-hero-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.ws-home-hero-card-main {
    padding: 0;
    overflow: hidden;
}

.ws-home-hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.ws-home-hero-card-dots {
    display: flex;
    gap: 6px;
}

.ws-home-hero-card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ws-home-hero-card-dots span:nth-child(1) { background: #FF5F57; }
.ws-home-hero-card-dots span:nth-child(2) { background: #FFBD2E; }
.ws-home-hero-card-dots span:nth-child(3) { background: #28CA41; }

.ws-home-hero-card-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-400);
}

.ws-home-hero-card-body {
    padding: 16px 20px;
}

.ws-home-hero-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--gray-400);
}

.ws-home-hero-search .ws-icon {
    font-size: 1rem;
    color: var(--gray-400);
    flex-shrink: 0;
}

.ws-home-hero-preview-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ws-home-hero-preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
    min-width: 0;
}

.ws-home-hero-preview-item:hover {
    background: rgba(66, 133, 244, 0.06);
    border-color: rgba(66, 133, 244, 0.2);
}

.ws-preview-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.ws-preview-icon .ws-icon {
    font-size: 1rem;
}

.ws-preview-text {
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.ws-preview-arrow {
    font-size: 1.125rem;
    color: var(--gray-400);
    flex-shrink: 0;
    transition: var(--transition);
}

.ws-home-hero-preview-item:hover .ws-preview-arrow {
    color: var(--blue);
    transform: translateX(2px);
}

.ws-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ws-eco-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.ws-eco-item:hover {
    transform: translateY(-2px);
}

.ws-eco-blue { background: rgba(66, 133, 244, 0.08); color: var(--blue); }
.ws-eco-red { background: rgba(234, 67, 53, 0.08); color: var(--red); }
.ws-eco-yellow { background: rgba(251, 188, 4, 0.08); color: #D4A000; }
.ws-eco-green { background: rgba(52, 168, 83, 0.08); color: var(--green); }

.ws-home-hero-card-float {
    position: absolute;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.ws-home-hero-card-free {
    bottom: 40px;
    left: -30px;
    animation-delay: 0s;
}

.ws-free-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(66, 133, 244, 0.12);
    border-radius: var(--radius-md);
}

.ws-free-icon .ws-icon {
    font-size: 1.125rem;
    color: var(--blue);
}

.ws-free-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.ws-free-desc {
    font-size: 1rem;
    color: var(--gray-500);
}

.ws-home-hero-card-ai {
    top: 20px;
    right: -20px;
    animation-delay: 3s;
    gap: 8px;
}

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

.ws-stat-number {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

.ws-stat-label {
    font-size: 1rem;
    color: var(--gray-500);
}

.ws-ai-pulse {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.ws-ai-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Stats Bar */
.ws-stats-bar {
    position: relative;
    z-index: 2;
    padding: 0 0 32px;
    margin-top: -40px;
    background: transparent;
}

.ws-stats-panel {
    padding: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.ws-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ws-stat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 24px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--stat-accent, var(--blue));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 180px;
}

.ws-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gray-200);
    border-top-color: var(--stat-accent, var(--blue));
    box-shadow:
        0 18px 36px rgba(15, 23, 42, 0.1),
        0 8px 20px var(--stat-shadow, rgba(66, 133, 244, 0.14));
}

.ws-stat-icon-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}

.ws-stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--stat-accent, var(--blue));
    border: 1.5px solid var(--stat-icon-ring, rgba(66, 133, 244, 0.22));
    box-shadow: 0 0 0 6px var(--stat-icon-glow, rgba(66, 133, 244, 0.08));
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-stat-card:hover .ws-stat-icon {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 0 0 8px var(--stat-icon-glow, rgba(66, 133, 244, 0.12));
}

.ws-stat-icon .ws-icon {
    font-size: 1.5rem;
}

.ws-stat-value {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.ws-stat-name {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
    line-height: 1.45;
}

.ws-stat-accent-blue {
    --stat-accent: #4285F4;
    --stat-icon-ring: rgba(66, 133, 244, 0.22);
    --stat-icon-glow: rgba(66, 133, 244, 0.08);
    --stat-shadow: rgba(66, 133, 244, 0.28);
}

.ws-stat-accent-green {
    --stat-accent: #34A853;
    --stat-icon-ring: rgba(52, 168, 83, 0.22);
    --stat-icon-glow: rgba(52, 168, 83, 0.08);
    --stat-shadow: rgba(52, 168, 83, 0.28);
}

.ws-stat-accent-cyan {
    --stat-accent: #00bcd4;
    --stat-icon-ring: rgba(0, 188, 212, 0.22);
    --stat-icon-glow: rgba(0, 188, 212, 0.08);
    --stat-shadow: rgba(0, 188, 212, 0.28);
}

.ws-stat-accent-yellow {
    --stat-accent: #e6a800;
    --stat-icon-ring: rgba(230, 168, 0, 0.24);
    --stat-icon-glow: rgba(230, 168, 0, 0.1);
    --stat-shadow: rgba(230, 168, 0, 0.3);
}

/* Section Headers */
.ws-section-header {
    text-align: center;
    margin: 0 auto 48px;
}

.ws-section-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 12px;
}

.ws-section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.ws-section-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* AI Tools Section */
.ws-ai-tools-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

#ai-tools {
    padding-top: 40px;
}

.ws-ai-tools-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--gray-50);
    background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.18) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 85%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 85%);
    pointer-events: none;
}

.ws-ai-tools-intro {
    max-width: 780px;
    margin: 0 auto 64px;
    padding: 48px 44px 44px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.ws-ai-tools-intro--home {
    position: relative;
    max-width: none;
    margin-bottom: 48px;
    padding: 1px;
    text-align: left;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.55), rgba(102, 157, 246, 0.25) 45%, rgba(52, 168, 83, 0.35));
    border: none;
    border-radius: calc(var(--radius-xl) + 2px);
    box-shadow:
        0 24px 48px rgba(66, 133, 244, 0.12),
        0 8px 20px rgba(15, 23, 42, 0.06);
}

.ws-ai-tools-intro-glow {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.22) 0%, transparent 68%);
    pointer-events: none;
}

.ws-ai-tools-intro-shine {
    position: absolute;
    inset: 1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.55) 38%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.ws-ai-tools-intro-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
    gap: 36px;
    align-items: center;
    padding: 36px 36px 28px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ws-ai-tools-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(66, 133, 244, 0.1);
    border: 1px solid rgba(66, 133, 244, 0.18);
}

.ws-ai-tools-intro-badge .ws-icon {
    font-size: 1rem;
}

.ws-ai-tools-intro-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    margin: 0 0 16px;
    background: linear-gradient(135deg, #1e293b 0%, #4285F4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ws-ai-tools-intro--home .ws-ai-tools-lead {
    text-align: left;
    margin-bottom: 22px;
    max-width: 560px;
}

.ws-ai-tools-intro-chips {
    justify-content: flex-start;
    margin-bottom: 0;
}

.ws-ai-tools-intro-visual {
    position: relative;
    min-height: 280px;
}

.ws-ai-tools-intro-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 112px;
    height: 112px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-ai-tools-intro-hub-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(66, 133, 244, 0.22);
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95), rgba(66, 133, 244, 0.08));
    box-shadow:
        0 16px 40px rgba(66, 133, 244, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: ws-ai-intro-pulse 4s ease-in-out infinite;
}

.ws-ai-tools-intro-hub-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, #4285F4 0%, #669DF6 100%);
    box-shadow: 0 10px 24px rgba(66, 133, 244, 0.35);
}

.ws-ai-tools-intro-hub-icon .ws-icon {
    font-size: 1.75rem;
}

.ws-ai-tools-intro-float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--gray-200);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-ai-tools-intro-float .ws-icon {
    font-size: 1.05rem;
    color: var(--blue);
}

.ws-ai-tools-intro-float-1 { top: 8%; left: 4%; }
.ws-ai-tools-intro-float-2 { top: 10%; right: 0; }
.ws-ai-tools-intro-float-3 { bottom: 12%; left: 0; }
.ws-ai-tools-intro-float-4 { bottom: 8%; right: 4%; }

.ws-ai-tools-intro--home:hover .ws-ai-tools-intro-float-1 { transform: translateY(-3px); }
.ws-ai-tools-intro--home:hover .ws-ai-tools-intro-float-2 { transform: translate(3px, -2px); }
.ws-ai-tools-intro--home:hover .ws-ai-tools-intro-float-3 { transform: translate(-3px, 2px); }
.ws-ai-tools-intro--home:hover .ws-ai-tools-intro-float-4 { transform: translateY(-4px); }

.ws-ai-tools-intro-footnote {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 16px 36px 20px;
    text-align: left;
    color: var(--gray-600);
    background: rgba(248, 250, 252, 0.92);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.ws-ai-tools-intro-footnote .ws-icon {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1.125rem;
    color: var(--blue);
}

@keyframes ws-ai-intro-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.04); opacity: 0.92; }
}

.ws-ai-tools-intro .ws-section-title {
    margin-bottom: 18px;
}

.ws-ai-tools-lead {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 20px;
}

.ws-ai-tools-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ws-ai-tools-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    background: rgba(66, 133, 244, 0.08);
    border: 1px solid rgba(66, 133, 244, 0.14);
    border-radius: 999px;
}

.ws-ai-tools-chip-muted {
    color: var(--gray-600);
    background: var(--gray-100);
    border-color: var(--gray-200);
}

.ws-ai-tools-note {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.ws-ai-tools-cta {
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.22);
}

.ws-synthetic-ai-panel {
    margin-bottom: 28px;
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--blue);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.ws-synthetic-ai-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.ws-synthetic-ai-desc {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}

.ws-synthetic-ai-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.ws-synthetic-ai-list li {
    position: relative;
    padding-left: 20px;
    color: var(--gray-600);
    line-height: 1.65;
}

.ws-synthetic-ai-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.ws-synthetic-ai-note {
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 0;
}

.ws-trending-ai-panel {
    margin-bottom: 28px;
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.ws-trending-ai-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
    text-align: center;
}

.ws-trending-ai-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 8px 0 6px;
    text-align: center;
}

.ws-trending-ai-subtitle {
    color: var(--gray-500);
    margin-bottom: 0;
    text-align: center;
}

.ws-trending-ai-grid {
    margin-top: 0;
}

.ws-ai-tools-view-more {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

.ws-ai-tools-group {
    --group-accent: #4285F4;
    --group-ring: rgba(66, 133, 244, 0.22);
    --group-glow: rgba(66, 133, 244, 0.08);
    --group-shadow: rgba(66, 133, 244, 0.14);
    margin-bottom: 28px;
    padding: 28px;
    min-width: 0;
    max-width: 100%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.ws-ai-tools-group:last-child {
    margin-bottom: 0;
}

.ws-ai-tools-group-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.ws-ai-tools-group-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 6px 0 0;
    max-width: 560px;
}

.ws-ai-tools-group-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: none;
}

.ws-ai-tools-group-title::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--group-accent);
    box-shadow: 0 0 0 4px var(--group-glow);
    flex-shrink: 0;
}

.ws-ai-tools-group-count {
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 5px 12px;
    border-radius: 999px;
}

.ws-ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.ws-ai-tool-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 22px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--group-accent);
    border-radius: var(--radius-lg);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ws-ai-tool-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    border-top-color: var(--group-accent);
    box-shadow:
        0 16px 32px rgba(15, 23, 42, 0.08),
        0 8px 18px var(--group-shadow);
    transform: translateY(-4px);
}

.ws-ai-tool-card-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
    min-height: 28px;
}

.ws-ai-tool-pricing-row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: -6px 0 -4px;
}

.ws-ai-tool-pricing-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    flex-shrink: 0;
    white-space: nowrap;
}

.ws-ai-tool-pricing-tag--free {
    color: #b45309;
    background: rgba(251, 191, 36, 0.16);
    border: 1px solid rgba(245, 158, 11, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.ws-ai-tool-pricing-tag--freemium {
    color: #1d4ed8;
    background: rgba(66, 133, 244, 0.12);
    border: 1px solid rgba(66, 133, 244, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.ws-ai-tool-pricing-tag--other {
    color: #7c3aed;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.ws-ai-tool-category-top {
    flex-shrink: 1;
    min-width: 0;
    max-width: 100%;
}

.ws-ai-tool-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.ws-ai-tool-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    width: 100%;
    min-width: 0;
    padding: 18px 16px 16px;
    margin-bottom: 14px;
    border-radius: var(--radius-md);
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        color-mix(in srgb, var(--group-glow) 40%, var(--white)) 100%
    );
    border: 1px solid color-mix(in srgb, var(--group-ring) 50%, var(--gray-200));
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ws-ai-tool-head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: var(--group-accent);
    opacity: 0.9;
}

.ws-ai-tool-card:hover .ws-ai-tool-head {
    border-color: color-mix(in srgb, var(--group-ring) 75%, var(--gray-200));
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        color-mix(in srgb, var(--group-glow) 55%, var(--white)) 100%
    );
    box-shadow:
        0 4px 12px color-mix(in srgb, var(--group-accent) 8%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.ws-ai-tool-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    padding-top: 4px;
    line-height: 1.35;
    letter-spacing: 1px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ws-ai-tool-head .ws-ai-tool-info-strip {
    gap: 0;
}

.ws-ai-tool-head .ws-ai-tool-info-badge:not(.ws-ai-tool-info-badge-category) {
    padding: 8px 16px;
    gap: 8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--white) 90%, var(--group-glow));
    border: 1px solid color-mix(in srgb, var(--group-ring) 60%, var(--gray-200));
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.ws-ai-tool-head .ws-ai-tool-info-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
}

.ws-ai-tool-head .ws-ai-tool-info-badge:not(.ws-ai-tool-info-badge-category) .ws-ai-tool-info-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
}

.ws-ai-tool-info-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0;
}

.ws-ai-tool-info-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 100%;
}

.ws-ai-tool-info-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    max-width: 100%;
    padding: 7px 12px;
    border-radius: var(--radius-md);
    text-align: center;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ws-ai-tool-info-badge:not(.ws-ai-tool-info-badge-category) {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    max-width: 100%;
    white-space: normal;
}

.ws-ai-tool-info-badge-category {
    flex-wrap: wrap;
    justify-content: center;
    color: var(--group-accent);
    background: var(--group-glow);
    border: 1px solid var(--group-ring);
    box-shadow: 0 1px 2px color-mix(in srgb, var(--group-accent) 12%, transparent);
}

.ws-ai-tool-info-label {
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
    color: var(--gray-500);
    line-height: 1.4;
}

.ws-ai-tool-info-badge-category .ws-ai-tool-info-label {
    color: #64748b;
}

.ws-ai-tool-info-value {
    min-width: 0;
    max-width: 100%;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: none;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: var(--gray-800);
}

.ws-ai-tool-info-badge-category .ws-ai-tool-info-value {
    white-space: normal;
    text-overflow: unset;
    overflow: visible;
    color: var(--group-accent);
}

.ws-ai-tool-info-badge:not(.ws-ai-tool-info-badge-category) .ws-ai-tool-info-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--gray-600);
}

.ws-ai-tool-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: calc(1.65em * 3);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ws-ai-tool-name-link {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ws-ai-tool-name-link:hover {
    color: var(--group-accent, var(--primary));
}

.ws-ai-tool-website-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--group-accent, var(--primary));
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--group-glow) 90%, var(--white)) 0%,
        var(--white) 100%
    );
    border: 1px solid color-mix(in srgb, var(--group-accent) 28%, var(--gray-200));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.ws-ai-tool-website-badge-label {
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
}

.ws-ai-tool-website-badge-host {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ws-ai-tool-website-badge:hover {
    color: var(--white);
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--group-accent) 88%, var(--white)) 0%,
        var(--group-accent, var(--primary)) 100%
    );
    border-color: color-mix(in srgb, var(--group-accent) 70%, var(--gray-300));
    transform: translateY(-1px);
}

.ws-ai-tool-website-badge:hover .ws-ai-tool-website-badge-label {
    color: rgba(255, 255, 255, 0.88);
}

.ws-ai-tool-visit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    max-width: 100%;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--group-accent, var(--primary));
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ws-ai-tool-visit span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ws-ai-tool-visit .ws-icon {
    width: 1rem;
    height: 1rem;
}

.ws-ai-tool-visit:hover {
    opacity: 0.85;
    transform: translateX(2px);
}

.ws-ai-tools-accent-blue {
    --group-accent: #4285F4;
    --group-ring: rgba(66, 133, 244, 0.22);
    --group-glow: rgba(66, 133, 244, 0.08);
    --group-shadow: rgba(66, 133, 244, 0.14);
}

.ws-ai-tools-accent-green {
    --group-accent: #34A853;
    --group-ring: rgba(52, 168, 83, 0.22);
    --group-glow: rgba(52, 168, 83, 0.08);
    --group-shadow: rgba(52, 168, 83, 0.14);
}

.ws-ai-tools-accent-red {
    --group-accent: #EA4335;
    --group-ring: rgba(234, 67, 53, 0.22);
    --group-glow: rgba(234, 67, 53, 0.08);
    --group-shadow: rgba(234, 67, 53, 0.14);
}

.ws-ai-tools-accent-cyan {
    --group-accent: #00bcd4;
    --group-ring: rgba(0, 188, 212, 0.22);
    --group-glow: rgba(0, 188, 212, 0.08);
    --group-shadow: rgba(0, 188, 212, 0.14);
}

.ws-ai-tools-accent-amber {
    --group-accent: #e6a800;
    --group-ring: rgba(230, 168, 0, 0.24);
    --group-glow: rgba(230, 168, 0, 0.1);
    --group-shadow: rgba(230, 168, 0, 0.16);
}

/* AI Tools Page */
.ws-ai-tools-page {
    overflow-x: clip;
}

.ws-ai-tools-page-body {
    min-width: 0;
}

.ws-ai-tools-page-hero-bg {
    position: absolute;
    inset: 0;
    background: #050508;
    pointer-events: none;
    overflow: hidden;
}

.ws-ai-tools-page-breadcrumb {
    justify-content: flex-start;
    margin-bottom: 32px;
}

.ws-ai-tools-page-icon {
    width: 72px;
    height: 72px;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #4285F4 0%, #669DF6 100%);
    color: var(--white);
    box-shadow:
        0 12px 32px rgba(66, 133, 244, 0.28),
        0 0 0 8px rgba(66, 133, 244, 0.08);
}

.ws-ai-tools-page-icon .ws-icon {
    font-size: 2rem;
}

.ws-ai-tools-page-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 16px;
}

.ws-ai-tools-page-lead {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.ws-ai-tools-page-total {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px 20px;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.82);
    background: #1a2332;
    border: 1px solid rgba(102, 157, 246, 0.35);
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.ws-ai-tools-page-total-label {
    color: rgba(255, 255, 255, 0.68);
}

.ws-ai-tools-page-total-value {
    font-size: 1.375rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: 1px;
    color: #ffffff;
}

.ws-ai-tools-page-total--banner {
    margin-top: 14px;
    color: var(--gray-700);
    background: #ffffff;
    border-color: var(--gray-200);
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.1);
}

.ws-ai-tools-page-total--banner .ws-ai-tools-page-total-label {
    color: var(--gray-500);
}

.ws-ai-tools-page-total--banner .ws-ai-tools-page-total-value {
    color: var(--blue);
}

.ws-ai-tools-page-hero .ws-ai-tools-chips {
    margin-bottom: 0;
}

.ws-ai-tools-page-nav {
    margin-top: 18px;
}

.ws-ai-tools-page-nav a.ws-ai-tools-chip {
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ws-ai-tools-page-nav a.ws-ai-tools-chip:hover {
    color: #ffffff;
    background: rgba(66, 133, 244, 0.28);
    border-color: rgba(66, 133, 244, 0.55);
}

.ws-ai-tools-page-nav .ws-icon {
    font-size: 1em;
}

.ws-ai-tools-page-nav-count {
    display: inline-flex;
    align-items: center;
    padding: 1px 8px;
    margin-left: 2px;
    font-size: 0.85em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.ws-ai-tools-page-body {
    padding-top: 0;
}

.ws-ai-tools-page-intro-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding: 36px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.06) 0%, rgba(255, 255, 255, 1) 48%, rgba(52, 168, 83, 0.04) 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.ws-ai-tools-page-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #669DF6, var(--green));
}

.ws-ai-tools-page-intro-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #4285F4 0%, #669DF6 100%);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.25);
}

.ws-ai-tools-page-intro-icon .ws-icon {
    font-size: 1.5rem;
}

.ws-ai-tools-page-intro-content {
    width: 100%;
    max-width: none;
}

.ws-ai-tools-page-intro-content .ws-section-title {
    margin-bottom: 12px;
    text-align: center;
}

.ws-ai-tools-page-intro-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0 0 12px;
    text-align: center;
}

.ws-ai-tools-page-intro-note {
    font-size: 0.9375rem !important;
    color: var(--gray-500) !important;
    margin-bottom: 0 !important;
    padding-top: 4px;
    border-top: 1px dashed var(--gray-200);
}

.ws-ai-tools-page-guides {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.ws-ai-tools-page-guide {
    position: relative;
    padding: 28px 24px 26px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-ai-tools-page-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--group-accent);
}

.ws-ai-tools-page-guide:hover {
    transform: translateY(-4px);
    border-color: var(--group-ring);
    box-shadow:
        0 16px 32px rgba(15, 23, 42, 0.08),
        0 8px 18px var(--group-shadow);
}

.ws-ai-tools-page-guide-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: var(--radius-md);
    color: var(--group-accent);
    background: var(--group-glow);
    border: 1px solid var(--group-ring);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--group-glow) 60%, transparent);
}

.ws-ai-tools-page-guide-icon .ws-icon {
    font-size: 1.25rem;
}

.ws-ai-tools-page-guide h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.ws-ai-tools-page-guide p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin: 0;
}

.ws-ai-tools-page-synthetic {
    position: relative;
    margin-bottom: 28px;
    padding: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: left;
    background: var(--white);
    overflow: hidden;
}

.ws-ai-tools-page-synthetic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285F4, #669DF6, #00bcd4, #34A853);
    z-index: 1;
}

.ws-ai-tools-page-synthetic-glow {
    position: absolute;
    top: -80px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.ws-ai-tools-page-synthetic-inner {
    position: relative;
    z-index: 1;
    padding: 40px 44px;
    background:
        linear-gradient(135deg, rgba(66, 133, 244, 0.04) 0%, transparent 42%),
        linear-gradient(225deg, rgba(0, 188, 212, 0.05) 0%, transparent 38%),
        var(--white);
}

.ws-ai-tools-page-synthetic-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gray-100);
}

.ws-ai-tools-page-synthetic-heading .ws-section-label {
    display: block;
    margin-bottom: 8px;
}

.ws-ai-tools-page-synthetic-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #4285F4 0%, #669DF6 100%);
    color: var(--white);
    box-shadow:
        0 10px 24px rgba(66, 133, 244, 0.28),
        0 0 0 8px rgba(66, 133, 244, 0.08);
}

.ws-ai-tools-page-synthetic-icon .ws-icon {
    font-size: 1.5rem;
}

.ws-ai-tools-page-synthetic .ws-synthetic-ai-title {
    font-size: clamp(1.35rem, 2.5vw, 1.625rem);
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

.ws-synthetic-ai-lead {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 18px 22px;
    background: rgba(66, 133, 244, 0.05);
    border: 1px solid rgba(66, 133, 244, 0.12);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--blue);
}

.ws-synthetic-ai-details {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.ws-ai-tools-page-synthetic .ws-synthetic-ai-detail {
    color: var(--gray-600);
    line-height: 1.78;
    margin: 0;
    padding-left: 16px;
    border-left: 2px solid var(--gray-200);
}

.ws-synthetic-ai-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.ws-synthetic-ai-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ws-synthetic-ai-point:hover {
    transform: translateY(-2px);
    border-color: rgba(66, 133, 244, 0.22);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    background: var(--white);
}

.ws-synthetic-ai-point-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--blue);
    background: rgba(66, 133, 244, 0.1);
    border: 1px solid rgba(66, 133, 244, 0.16);
}

.ws-synthetic-ai-point-icon .ws-icon {
    font-size: 1.125rem;
}

.ws-synthetic-ai-point h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.ws-synthetic-ai-point p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

.ws-synthetic-ai-callout {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(251, 188, 4, 0.08) 0%, rgba(251, 188, 4, 0.03) 100%);
    border: 1px solid rgba(251, 188, 4, 0.22);
    border-radius: var(--radius-lg);
}

.ws-synthetic-ai-callout .ws-icon {
    flex-shrink: 0;
    font-size: 1.25rem;
    color: #c89400;
    margin-top: 2px;
}

.ws-synthetic-ai-callout p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.ws-ai-tools-page-category-banner {
    max-width: 720px;
    margin: 0 auto 28px;
    padding: 32px 36px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.ws-ai-tools-page-category-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(66, 133, 244, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ws-ai-tools-page-category-banner .ws-section-label,
.ws-ai-tools-page-category-banner .ws-section-title,
.ws-ai-tools-page-category-banner p {
    position: relative;
    z-index: 1;
}

.ws-ai-tools-page-category-banner .ws-section-title {
    margin-bottom: 10px;
}

.ws-ai-tools-page-category-banner p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin: 0;
}

.ws-ai-tools-category-grid {
    margin-bottom: 8px;
}

.ws-tool-category-body {
    padding-bottom: 72px;
}

.ws-tool-category-list {
    position: relative;
}

.ws-tool-category-list-anchor {
    position: relative;
    top: -12px;
    height: 0;
    width: 0;
    pointer-events: none;
}

.ws-tool-category-list-panel {
    position: relative;
    min-height: 120px;
}

.ws-tool-category-list--loading .ws-tool-category-list-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(4px);
}

.ws-tool-category-list--loading .ws-tool-category-list-panel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border-radius: 50%;
    border: 3px solid rgba(66, 133, 244, 0.18);
    border-top-color: var(--group-accent, #4285F4);
    animation: ws-tool-pagination-spin 0.75s linear infinite;
}

.ws-tool-category-list-status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes ws-tool-pagination-spin {
    to {
        transform: rotate(360deg);
    }
}

.ws-tool-pagination {
    --pagination-accent: var(--group-accent, #4285F4);
    --pagination-ring: var(--group-ring, rgba(66, 133, 244, 0.22));
    --pagination-glow: var(--group-glow, rgba(66, 133, 244, 0.08));
    margin-top: 32px;
    padding: 20px 22px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ws-tool-pagination-summary {
    margin: 0 0 16px;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.ws-tool-pagination-summary strong {
    color: var(--gray-800);
    font-weight: 700;
}

.ws-tool-pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ws-tool-pagination-pages {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.ws-tool-pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--gray-600);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.ws-tool-pagination-btn .ws-icon {
    font-size: 1rem;
}

.ws-tool-pagination-btn--page {
    min-width: 40px;
    padding: 0;
}

.ws-tool-pagination-btn--nav {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.ws-tool-pagination-btn:hover:not(:disabled) {
    color: var(--pagination-accent);
    border-color: var(--pagination-ring);
    background: var(--pagination-glow);
    transform: translateY(-1px);
}

.ws-tool-pagination-btn.is-active {
    color: var(--white);
    background: linear-gradient(135deg, var(--pagination-accent), color-mix(in srgb, var(--pagination-accent) 72%, #0f172a));
    border-color: transparent;
    box-shadow:
        0 10px 24px var(--pagination-glow),
        0 4px 12px rgba(15, 23, 42, 0.12);
}

.ws-tool-pagination-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ws-tool-pagination-gap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    color: var(--gray-400);
    font-weight: 700;
    letter-spacing: 0.08em;
}

@media (max-width: 640px) {
    .ws-tool-pagination {
        padding: 16px;
    }

    .ws-tool-pagination-controls {
        gap: 8px;
    }

    .ws-tool-pagination-btn--nav span {
        display: none;
    }

    .ws-tool-pagination-btn--nav {
        min-width: 40px;
        padding: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ws-tool-category-list--loading .ws-tool-category-list-panel::before {
        animation: none;
        border-top-color: rgba(66, 133, 244, 0.18);
    }

    .ws-tool-pagination-btn {
        transition: none;
    }
}

.ws-ai-tools-page-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

/* Categories */
.ws-categories-section {
    position: relative;
    padding: 108px 0 112px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 52%, #ffffff 100%);
}

.ws-categories-section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ws-categories-section-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.16) 1px, transparent 0);
    background-size: 30px 30px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 92%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 92%);
}

.ws-categories-section-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
}

.ws-categories-section-orb-1 {
    top: -8%;
    left: -4%;
    width: 360px;
    height: 360px;
    background: rgba(66, 133, 244, 0.16);
}

.ws-categories-section-orb-2 {
    right: -6%;
    bottom: -12%;
    width: 320px;
    height: 320px;
    background: rgba(52, 168, 83, 0.12);
}

.ws-categories-section::before {
    content: none;
}

.ws-categories-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.ws-categories-intro {
    margin: 0;
    text-align: left;
    position: sticky;
    top: calc(var(--header-stack-height) + 28px);
}

.ws-categories-intro .ws-section-title {
    margin-bottom: 14px;
}

.ws-categories-intro .ws-section-desc {
    max-width: 34ch;
    margin: 0;
}

.ws-categories-intro-foot {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.ws-categories-intro-stat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.ws-categories-intro-stat .ws-icon {
    font-size: 1.125rem;
    color: var(--blue);
}

.ws-categories-intro-stat strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.ws-categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.ws-category-card {
    --cat-accent: var(--blue);
    position: relative;
    display: block;
    border-radius: calc(var(--radius-xl) + 4px);
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 14px 36px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s ease;
}

.ws-category-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--cat-accent) 28%, var(--gray-200));
    box-shadow:
        0 24px 48px color-mix(in srgb, var(--cat-accent) 14%, transparent),
        0 10px 24px rgba(15, 23, 42, 0.08);
}

.ws-category-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cat-accent), color-mix(in srgb, var(--cat-accent) 55%, #ffffff));
    z-index: 3;
}

.ws-category-card-glow {
    position: absolute;
    top: -30%;
    right: -8%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--cat-accent) 22%, transparent) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.65;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.ws-category-card-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
        "index copy"
        "icon copy"
        "topics topics"
        "cta cta";
    gap: 18px 24px;
    align-items: start;
    padding: 28px 28px 24px;
}

.ws-category-card-index {
    grid-area: index;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: color-mix(in srgb, var(--cat-accent) 70%, var(--gray-400));
}

.ws-category-icon {
    grid-area: icon;
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow:
        0 16px 34px color-mix(in srgb, var(--cat-accent) 30%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-category-card-copy {
    grid-area: copy;
    min-width: 0;
    text-align: left;
}

.ws-category-card:hover .ws-category-card-glow {
    opacity: 1;
    transform: scale(1.06);
}

.ws-category-card:hover .ws-category-icon {
    transform: scale(1.05) rotate(-2deg);
}

.ws-category-tagline {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cat-accent);
    background: color-mix(in srgb, var(--cat-accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--cat-accent) 16%, transparent);
}

.ws-category-title {
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ws-category-desc {
    font-size: 0.98rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

.ws-category-topics {
    grid-area: topics;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ws-category-topic-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.ws-category-topic-pill--more {
    color: var(--cat-accent);
    background: color-mix(in srgb, var(--cat-accent) 8%, transparent);
    border-color: color-mix(in srgb, var(--cat-accent) 18%, transparent);
}

.ws-category-card:hover .ws-category-topic-pill:not(.ws-category-topic-pill--more) {
    border-color: color-mix(in srgb, var(--cat-accent) 22%, var(--gray-200));
    background: color-mix(in srgb, var(--cat-accent) 6%, var(--white));
}

.ws-category-link {
    grid-area: cta;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-top: 4px;
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition:
        gap 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.ws-category-link .ws-icon {
    font-size: 1.125rem;
    color: var(--cat-accent);
    transition: transform 0.25s ease, color 0.25s ease;
}

.ws-category-card:hover .ws-category-link {
    color: var(--white);
    background: var(--cat-accent);
    border-color: transparent;
}

.ws-category-card:hover .ws-category-link .ws-icon {
    color: var(--white);
    transform: translateX(4px);
}

/* Home — Synthetic AI */
.ws-home-synthetic-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.ws-home-synthetic-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--white);
    background-image:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(66, 133, 244, 0.07) 0%, transparent 65%),
        radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.12) 1px, transparent 0);
    background-size: auto, 28px 28px;
    pointer-events: none;
}

.ws-home-synthetic-section--inline {
    padding: 0;
    margin-bottom: 28px;
    background: transparent;
    overflow: visible;
}

.ws-home-synthetic-section--inline::before {
    display: none;
}

.ws-home-synthetic-section--inline .ws-home-synthetic-grid {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.ws-home-synthetic-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.ws-home-synthetic-copy .ws-section-title {
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    text-align: left;
    margin-bottom: 18px;
}

.ws-home-synthetic-copy .ws-section-label {
    display: inline-block;
    margin-bottom: 12px;
}

.ws-home-synthetic-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 520px;
}

.ws-home-synthetic-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ws-home-synthetic-card {
    padding: 22px 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-home-synthetic-card:hover {
    transform: translateY(-4px);
    background: var(--white);
    border-color: rgba(66, 133, 244, 0.2);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.ws-home-synthetic-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 12px;
    color: var(--blue);
    background: rgba(66, 133, 244, 0.1);
    border: 1px solid rgba(66, 133, 244, 0.16);
}

.ws-home-synthetic-card-icon .ws-icon {
    font-size: 1.25rem;
}

.ws-home-synthetic-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 8px;
}

.ws-home-synthetic-card-text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Home: Famous.ai */
.ws-home-famous-section {
    position: relative;
    margin-bottom: 28px;
    padding: 1px;
    border-radius: calc(var(--radius-xl) + 2px);
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 38%, #4285F4 72%, #34A853 100%);
    box-shadow:
        0 24px 56px rgba(99, 102, 241, 0.22),
        0 8px 24px rgba(15, 23, 42, 0.12);
    isolation: isolate;
}

.ws-home-famous-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.ws-home-famous-glow-1 {
    top: -120px;
    right: -60px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, transparent 68%);
}

.ws-home-famous-glow-2 {
    bottom: -100px;
    left: -40px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.35) 0%, transparent 70%);
}

.ws-home-famous-inner {
    position: relative;
    z-index: 1;
    padding: 36px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(99, 102, 241, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(66, 133, 244, 0.12) 0%, transparent 60%),
        linear-gradient(165deg, #0f172a 0%, #1e1b4b 42%, #0f172a 100%);
}

.ws-home-famous-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    align-items: center;
}

.ws-home-famous-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(167, 139, 250, 0.28);
}

.ws-home-famous-badge .ws-icon {
    font-size: 1rem;
    color: #a78bfa;
}

.ws-home-famous-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
    color: var(--white);
    margin: 0 0 16px;
}

.ws-home-famous-brand {
    display: inline;
    margin-left: 0.2em;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    background: linear-gradient(135deg, #c4b5fd 0%, #818cf8 45%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ws-home-famous-title-sep {
    color: rgba(226, 232, 240, 0.55);
    font-weight: 400;
    margin: 0 0.15em;
}

.ws-home-famous-desc {
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.82);
    line-height: 1.75;
    margin: 0 0 24px;
    max-width: 540px;
}

.ws-home-famous-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.ws-home-famous-platform {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-home-famous-platform:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(167, 139, 250, 0.35);
}

.ws-home-famous-platform .ws-icon {
    font-size: 1.2rem;
    color: #a5b4fc;
    flex-shrink: 0;
}

.ws-home-famous-platform span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ws-home-famous-platform strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.ws-home-famous-platform small {
    font-size: 0.75rem;
    color: rgba(203, 213, 225, 0.72);
    line-height: 1.3;
}

.ws-btn-famous {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-weight: 600;
    color: #0f172a;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 50%, #a5b4fc 100%);
    border: none;
    border-radius: var(--radius-md);
    box-shadow:
        0 4px 14px rgba(99, 102, 241, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition:
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-btn-famous:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(99, 102, 241, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: #0f172a;
}

.ws-home-famous-visual {
    position: relative;
}

.ws-home-famous-pipeline {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ws-home-famous-pipeline-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.9);
}

.ws-home-famous-pipeline-header .ws-icon {
    font-size: 1.1rem;
    color: #818cf8;
}

.ws-home-famous-pipeline-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ws-home-famous-pipeline-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: ws-famous-step-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-delay: var(--step-delay, 0s);
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-home-famous-section:hover .ws-home-famous-pipeline-step {
    border-color: rgba(167, 139, 250, 0.2);
}

.ws-home-famous-pipeline-step:hover {
    transform: translateX(4px);
    background: rgba(99, 102, 241, 0.12);
}

.ws-home-famous-pipeline-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #c4b5fd;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(129, 140, 248, 0.3);
}

.ws-home-famous-pipeline-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ws-home-famous-pipeline-body strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.ws-home-famous-pipeline-body span {
    font-size: 0.8125rem;
    color: rgba(203, 213, 225, 0.75);
    line-height: 1.45;
}

.ws-home-famous-pipeline-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(167, 139, 250, 0.9);
    letter-spacing: 0.02em;
}

.ws-home-famous-pipeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34A853;
    box-shadow: 0 0 12px rgba(52, 168, 83, 0.7);
    animation: ws-famous-pulse 2s ease-in-out infinite;
}

@keyframes ws-famous-step-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ws-famous-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

/* About Section */
.ws-about-section {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
}

.ws-about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--gray-50);
    background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.16) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 90%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 90%);
    pointer-events: none;
}

.ws-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.ws-about-content-panel,
.ws-about-visual-panel,
.ws-about-grid > .ws-about-content:not(:has(.ws-about-content-panel)),
.ws-about-grid > .ws-about-visual:not(:has(.ws-about-visual-panel)) {
    height: 100%;
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.ws-about-content-panel .ws-section-title {
    margin-bottom: 18px;
}

.ws-about-content p,
.ws-about-content-panel p,
.ws-about-lead {
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.75;
}

.ws-about-lead {
    color: var(--gray-600);
}

.ws-about-highlights {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.ws-about-highlight-card {
    --highlight-accent: var(--blue);
    --highlight-ring: rgba(66, 133, 244, 0.2);
    --highlight-glow: rgba(66, 133, 244, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--highlight-accent);
    border-radius: var(--radius-lg);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-about-highlight-card:hover {
    background: var(--white);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.ws-about-highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--highlight-accent);
    border: 1.5px solid var(--highlight-ring);
    box-shadow: 0 0 0 5px var(--highlight-glow);
}

.ws-about-highlight-icon .ws-icon {
    font-size: 1.25rem;
    color: inherit;
}

.ws-about-highlight-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.45;
}

.ws-about-highlight-blue {
    --highlight-accent: #4285F4;
    --highlight-ring: rgba(66, 133, 244, 0.22);
    --highlight-glow: rgba(66, 133, 244, 0.08);
}

.ws-about-highlight-green {
    --highlight-accent: #34A853;
    --highlight-ring: rgba(52, 168, 83, 0.22);
    --highlight-glow: rgba(52, 168, 83, 0.08);
}

.ws-about-highlight-amber {
    --highlight-accent: #e6a800;
    --highlight-ring: rgba(230, 168, 0, 0.24);
    --highlight-glow: rgba(230, 168, 0, 0.1);
}

.ws-about-visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.ws-about-visual-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.ws-about-category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ws-about-category-card {
    --cat-color: var(--blue);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--cat-color);
    border-radius: var(--radius-lg);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a.ws-about-category-card:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.ws-about-category-more {
    grid-column: 1 / -1;
    border-top-color: var(--gray-400);
    cursor: default;
}

.ws-about-category-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--cat-color);
    border: 1.5px solid color-mix(in srgb, var(--cat-color) 22%, transparent);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--cat-color) 8%, transparent);
}

.ws-about-category-icon .ws-icon {
    font-size: 1.125rem;
    color: inherit;
}

.ws-about-category-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ws-about-category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
}

.ws-about-category-tagline {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.35;
}

.ws-about-category-arrow {
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--cat-color);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a.ws-about-category-card:hover .ws-about-category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Home About Section */
.ws-about-section--home {
    padding: 108px 0 112px;
    background: linear-gradient(165deg, #0b1220 0%, #111b2e 48%, #0d1526 100%);
}

.ws-about-section--home::before {
    content: none;
}

.ws-about-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ws-about-section-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.12) 1px, transparent 0);
    background-size: 30px 30px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 92%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 92%);
}

.ws-about-section-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
}

.ws-about-section-orb-1 {
    top: -10%;
    right: 8%;
    width: 380px;
    height: 380px;
    background: rgba(66, 133, 244, 0.22);
}

.ws-about-section-orb-2 {
    bottom: -14%;
    left: -6%;
    width: 320px;
    height: 320px;
    background: rgba(52, 168, 83, 0.14);
}

.ws-about-section--home .ws-container {
    position: relative;
    z-index: 1;
}

.ws-about-home-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 28px;
    align-items: stretch;
}

.ws-about-section--home .ws-about-content-panel,
.ws-about-section--home .ws-about-visual-panel {
    height: 100%;
    padding: 34px 32px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: calc(var(--radius-xl) + 4px);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.ws-about-home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 14px 7px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ws-about-home-eyebrow .ws-icon {
    font-size: 1rem;
    color: #669df6;
}

.ws-about-home-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.2vw, 2.85rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.ws-about-home-title span {
    background: linear-gradient(135deg, #669df6 0%, #8fd0ff 45%, #5bb974 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ws-about-section--home .ws-about-lead,
.ws-about-section--home .ws-about-home-copy {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.ws-about-section--home .ws-about-lead {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.ws-about-section--home .ws-about-home-copy {
    margin-bottom: 24px;
}

.ws-about-section--home .ws-about-home-link {
    margin: 0 0 28px;
    box-shadow: 0 10px 28px rgba(66, 133, 244, 0.35);
}

.ws-about-home-highlights {
    margin-top: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ws-about-section--home .ws-about-highlight-card {
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    min-height: 148px;
    padding: 18px 16px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
    border-radius: var(--radius-lg);
}

.ws-about-section--home .ws-about-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    border-radius: 999px;
    background: var(--highlight-accent);
}

.ws-about-section--home .ws-about-highlight-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.ws-about-section--home .ws-about-highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
}

.ws-about-section--home .ws-about-highlight-icon .ws-icon {
    color: var(--highlight-accent);
}

.ws-about-section--home .ws-about-highlight-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.ws-about-section--home .ws-about-visual-header {
    align-items: flex-start;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-about-visual-kicker {
    display: block;
    margin-bottom: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.ws-about-section--home .ws-about-visual-label {
    font-size: 1.25rem;
    color: #ffffff;
}

.ws-about-visual-count {
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ws-about-home-category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

.ws-about-section--home .ws-about-home-category-card,
.ws-about-section--home .ws-about-home-category-more {
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: var(--radius-lg);
}

.ws-about-section--home a.ws-about-home-category-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: color-mix(in srgb, var(--cat-color) 34%, rgba(255, 255, 255, 0.12));
    transform: translateX(4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.ws-about-section--home .ws-about-category-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--cat-color) 28%, transparent);
}

.ws-about-section--home .ws-about-category-title {
    color: #ffffff;
}

.ws-about-section--home .ws-about-category-tagline {
    color: rgba(255, 255, 255, 0.58);
}

.ws-about-category-meta {
    display: inline-flex;
    margin-top: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cat-color);
    background: color-mix(in srgb, var(--cat-color) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--cat-color) 22%, transparent);
}

.ws-about-section--home .ws-about-category-arrow {
    opacity: 0.45;
    transform: none;
    color: rgba(255, 255, 255, 0.72);
}

.ws-about-section--home a.ws-about-home-category-card:hover .ws-about-category-arrow {
    opacity: 1;
    color: #ffffff;
    transform: translate(2px, -2px);
}

.ws-about-section--home .ws-about-home-category-more {
    border-style: dashed;
    opacity: 0.82;
}

.ws-about-section--home .ws-about-home-category-more .ws-about-category-icon {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

/* About Page */
.ws-about-page {
    overflow: hidden;
}

.ws-about-page p,
.ws-about-page-lead {
    font-weight: 400;
}

.ws-about-page strong,
.ws-about-page b {
    font-weight: 600;
}

.ws-about-page-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    --page-hero-pad-top: calc(var(--header-content-offset) + 16px);
    --page-hero-pad-bottom: 128px;
    --page-hero-anim-edge: 20px;
    --page-hero-anim-gap: 28px;
    --page-hero-anim-top: calc(var(--header-stack-height) + var(--page-hero-anim-edge));
    --page-hero-anim-bottom: calc(var(--page-hero-pad-bottom) + var(--page-hero-anim-gap));
    --about-page-hero-circuit-size: 500px;
    padding: var(--page-hero-pad-top) 0 var(--page-hero-pad-bottom);
    min-height: max(
        calc(var(--page-hero-pad-top) + var(--page-hero-pad-bottom) + 220px),
        calc(var(--page-hero-anim-top) + var(--about-page-hero-circuit-size) + var(--page-hero-anim-bottom))
    );
}

.ws-about-page-hero > .ws-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.ws-about-page-hero-content-block {
    max-width: min(680px, 62%);
    margin-right: auto;
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 4;
}

.ws-about-page-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background: #0a1929;
}

.ws-about-page-hero-circuit-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 55% 85% at 25% 50%, transparent 0%, rgba(8, 20, 40, 0.06) 65%, rgba(8, 20, 40, 0.16) 100%),
        linear-gradient(90deg, transparent 0%, transparent 38%, rgba(8, 20, 40, 0.1) 52%, rgba(8, 20, 40, 0.32) 100%);
    pointer-events: none;
}

.ws-about-page-hero-circuit-rail,
.ws-about-page-hero-visual {
    top: var(--page-hero-anim-top);
    bottom: var(--page-hero-anim-bottom);
}

.ws-about-page-hero-circuit-rail {
    position: absolute;
    right: 0;
    left: max(480px, 44%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 1.5%;
    pointer-events: none;
}

.ws-about-page-hero-circuit {
    position: relative;
    width: var(--about-page-hero-circuit-size);
    max-width: 100%;
    aspect-ratio: 1;
    height: auto;
    flex-shrink: 0;
    min-width: 0;
    overflow: hidden;
    pointer-events: none;
    isolation: isolate;
}

.ws-about-page-hero-circuit-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ws-about-page-hero-circuit-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ws-about-page-hero-orb {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: ws-about-orb-float 12s ease-in-out infinite;
}

.ws-about-page-hero-orb-1 {
    width: 320px;
    height: 320px;
    top: 10%;
    right: 8%;
    background: rgba(66, 133, 244, 0.22);
}

@keyframes ws-about-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12px, -18px) scale(1.06); }
}

.ws-about-page-title {
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.ws-about-page-title-main,
.ws-about-page-title-sub {
    display: block;
}

.ws-about-page-title-sub {
    margin-top: 0.15em;
}

.ws-about-page-lead {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #ffffff;
    margin: 0 0 28px;
}

.ws-about-page-chips,
.ws-about-page-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
    justify-content: flex-start;
}

.ws-about-page-hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 1rem;
    font-weight: 600;
    color: #8fd0ff;
    background: rgba(110, 196, 255, 0.12);
    border: 1px solid rgba(143, 208, 255, 0.22);
    border-radius: 999px;
}

.ws-about-page-hero-visual {
    position: absolute;
    left: max(480px, 44%);
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 1.5%;
    width: auto;
    max-width: none;
    min-height: auto;
    pointer-events: none;
}

.ws-about-page-orbit {
    position: relative;
    width: var(--about-page-hero-circuit-size);
    max-width: 100%;
    aspect-ratio: 1;
}

.ws-about-page-orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(143, 208, 255, 0.28);
    border-radius: 50%;
    animation: ws-about-orbit-spin 40s linear infinite;
}

.ws-about-page-orbit-ring-2 {
    inset: 12%;
    border-color: rgba(110, 196, 255, 0.22);
    animation-direction: reverse;
    animation-duration: 28s;
}

.ws-about-page-orbit-ring-3 {
    inset: 24%;
    border-color: rgba(168, 224, 255, 0.18);
    animation-duration: 20s;
}

@keyframes ws-about-orbit-spin {
    to { transform: rotate(360deg); }
}

.ws-about-page-orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 112px;
    height: 112px;
    background: var(--blue);
    border-radius: 50%;
    color: var(--white);
    box-shadow:
        0 0 0 6px rgba(110, 196, 255, 0.14),
        0 0 32px rgba(77, 163, 255, 0.35),
        0 16px 40px rgba(37, 99, 235, 0.3);
    z-index: 2;
}

.ws-about-page-orbit-core .ws-icon {
    font-size: 2rem;
}

.ws-about-page-orbit-core span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0.92;
}

.ws-about-page-orbit-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: rgba(10, 25, 41, 0.88);
    border: 1px solid rgba(110, 196, 255, 0.28);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(8, 20, 40, 0.45);
    color: #e8f4ff;
    backdrop-filter: blur(10px);
    animation: ws-about-node-float 6s ease-in-out infinite;
}

.ws-about-page-orbit-node .ws-icon {
    font-size: 1.25rem;
    color: #8fd0ff;
}

.ws-about-page-orbit-node em {
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(232, 244, 255, 0.82);
    white-space: nowrap;
}

.ws-about-page-node-1 {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    animation: ws-about-node-float-center 6s ease-in-out infinite;
}

.ws-about-page-node-2 { top: 22%; right: 0; animation-delay: -1s; }
.ws-about-page-node-3 { bottom: 22%; right: 2%; animation-delay: -2s; }

.ws-about-page-node-4 {
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    animation: ws-about-node-float-center 6s ease-in-out infinite;
    animation-delay: -3s;
}

.ws-about-page-node-5 { top: 28%; left: 0; animation-delay: -4s; }

@keyframes ws-about-node-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes ws-about-node-float-center {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.ws-about-page-story {
    padding: 64px 0 48px;
}

.ws-about-page-story-header {
    position: relative;
    text-align: center;
    margin: 0 auto 56px;
    padding: 44px 40px 48px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(ellipse 75% 90% at 50% 0%, rgba(66, 133, 244, 0.08) 0%, transparent 68%),
        radial-gradient(ellipse 50% 60% at 90% 100%, rgba(52, 168, 83, 0.05) 0%, transparent 55%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.ws-about-page-story-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #669df6, var(--green), #fbbf24);
    opacity: 0.9;
}

.ws-about-page-story-header::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    margin: 28px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    opacity: 0.75;
}

.ws-about-page-story-header .ws-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 999px;
    box-shadow: 0 2px 14px rgba(66, 133, 244, 0.1);
}

.ws-about-page-story-header .ws-section-title {
    font-size: clamp(1.75rem, 3.8vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.ws-about-page-story-header .ws-section-desc {
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--gray-500);
}

.ws-about-page-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.ws-about-page-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ws-about-page-timeline-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 24px;
    padding-bottom: 0;
}

.ws-about-page-timeline-card:last-child {
    align-items: start;
    margin-bottom: 0;
}

.ws-about-page-timeline-card:last-child .ws-about-page-timeline-line {
    display: none;
}

.ws-about-page-timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.ws-about-page-timeline-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--timeline-accent, var(--blue));
    background: var(--timeline-bg, rgba(66, 133, 244, 0.1));
    border: 2px solid var(--timeline-ring, rgba(66, 133, 244, 0.25));
    flex-shrink: 0;
}

.ws-about-page-timeline-line {
    flex: 1;
    width: 2px;
    min-height: 40px;
    margin-top: 8px;
    background: linear-gradient(to bottom, var(--timeline-accent, var(--blue)), transparent);
    opacity: 0.35;
}

.ws-about-page-accent-blue {
    --timeline-accent: var(--blue);
    --timeline-bg: rgba(66, 133, 244, 0.1);
    --timeline-ring: rgba(66, 133, 244, 0.28);
    --card-accent: var(--blue);
}

.ws-about-page-accent-green {
    --timeline-accent: var(--green);
    --timeline-bg: rgba(52, 168, 83, 0.1);
    --timeline-ring: rgba(52, 168, 83, 0.28);
    --card-accent: var(--green);
}

.ws-about-page-accent-amber {
    --timeline-accent: #d97706;
    --timeline-bg: rgba(217, 119, 6, 0.1);
    --timeline-ring: rgba(217, 119, 6, 0.28);
    --card-accent: #d97706;
}

.ws-about-page-accent-cyan {
    --timeline-accent: #0891b2;
    --timeline-bg: rgba(8, 145, 178, 0.1);
    --timeline-ring: rgba(8, 145, 178, 0.28);
    --card-accent: #0891b2;
}

.ws-about-page-timeline-body {
    padding: 28px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--card-accent, var(--blue));
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-about-page-timeline-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.ws-about-page-timeline-card:hover .ws-about-page-timeline-body {
    transform: translateX(6px);
    box-shadow: var(--shadow-xl);
}

.ws-about-page-timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--timeline-bg);
    color: var(--card-accent);
}

.ws-about-page-timeline-icon .ws-icon {
    font-size: 1.25rem;
}

.ws-about-page-timeline-body h3 {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--gray-900);
    margin: 0;
}

.ws-about-page-timeline-body p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 14px;
}

.ws-about-page-timeline-body p:last-child {
    margin-bottom: 0;
}

.ws-about-page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
}

.ws-about-page-sidebar-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.ws-about-page-sidebar-card--accent {
    background: linear-gradient(160deg, rgba(66, 133, 244, 0.06) 0%, var(--white) 45%);
    border-color: rgba(66, 133, 244, 0.18);
}

.ws-about-page-sidebar-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.ws-about-page-sidebar-label--spaced {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.ws-about-page-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ws-about-page-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--radius-lg);
    color: var(--gray-700);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition);
}

.ws-about-page-sidebar-nav a .ws-icon {
    color: var(--blue);
    font-size: 1.125rem;
}

.ws-about-page-sidebar-nav a:hover {
    background: rgba(66, 133, 244, 0.08);
    color: var(--blue);
    transform: translateX(4px);
}

.ws-about-page-category-pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ws-about-page-category-pills a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.ws-about-page-category-pills a:hover {
    border-color: var(--pill-color, var(--blue));
    background: color-mix(in srgb, var(--pill-color, var(--blue)) 8%, white);
    color: var(--gray-900);
}

.ws-about-page-category-pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--pill-color, var(--blue)) 14%, white);
    color: var(--pill-color, var(--blue));
}

.ws-about-page-category-pill-icon .ws-icon {
    font-size: 0.95rem;
}

.ws-about-page-sidebar-topic-list,
.ws-about-page-sidebar-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ws-about-page-sidebar-topic-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.ws-about-page-sidebar-topic-list a .ws-icon {
    color: var(--blue);
    font-size: 1rem;
}

.ws-about-page-sidebar-topic-list a:hover {
    border-color: rgba(66, 133, 244, 0.35);
    background: rgba(66, 133, 244, 0.06);
    color: var(--blue);
}

.ws-about-page-sidebar-trending {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    counter-reset: about-trending;
}

.ws-about-page-sidebar-trending li {
    counter-increment: about-trending;
}

.ws-about-page-sidebar-trending a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-lg);
    color: var(--gray-700);
    transition: var(--transition);
}

.ws-about-page-sidebar-trending a:hover {
    background: rgba(66, 133, 244, 0.06);
    color: var(--blue);
}

.ws-about-page-sidebar-trending-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(66, 133, 244, 0.1);
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 600;
}

.ws-about-page-sidebar-trending-name {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
}

.ws-about-page-sidebar-card--stats {
    background: linear-gradient(165deg, rgba(52, 168, 83, 0.05) 0%, var(--white) 42%);
    border-color: rgba(52, 168, 83, 0.16);
}

.ws-about-page-sidebar-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.ws-about-page-sidebar-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(66, 133, 244, 0.1);
    color: var(--blue);
    flex-shrink: 0;
}

.ws-about-page-sidebar-stat-icon .ws-icon {
    font-size: 1.125rem;
}

.ws-about-page-sidebar-stat-blue .ws-about-page-sidebar-stat-icon {
    background: rgba(66, 133, 244, 0.1);
    color: var(--blue);
}

.ws-about-page-sidebar-stat-green .ws-about-page-sidebar-stat-icon {
    background: rgba(52, 168, 83, 0.1);
    color: var(--green);
}

.ws-about-page-sidebar-stat-cyan .ws-about-page-sidebar-stat-icon {
    background: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
}

.ws-about-page-sidebar-stat-yellow .ws-about-page-sidebar-stat-icon {
    background: rgba(251, 191, 36, 0.14);
    color: #d97706;
}

.ws-about-page-sidebar-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.35;
}

.ws-about-page-sidebar-stat-text strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

.ws-about-page-sidebar-article-list,
.ws-about-page-sidebar-highlight-list,
.ws-about-page-sidebar-news-list,
.ws-about-page-sidebar-tips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ws-about-page-sidebar-article-list a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    transition: var(--transition);
}

.ws-about-page-sidebar-article-list a:hover {
    border-color: rgba(66, 133, 244, 0.35);
    background: rgba(66, 133, 244, 0.05);
    color: var(--blue);
}

.ws-about-page-sidebar-article-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(66, 133, 244, 0.1);
    color: var(--blue);
    flex-shrink: 0;
}

.ws-about-page-sidebar-article-icon .ws-icon {
    font-size: 1rem;
}

.ws-about-page-sidebar-article-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ws-about-page-sidebar-article-body strong {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--gray-900);
}

.ws-about-page-sidebar-article-body em {
    font-size: 0.75rem;
    font-style: normal;
    color: var(--gray-400);
}

.ws-about-page-sidebar-card--synthetic {
    background: linear-gradient(165deg, rgba(139, 92, 246, 0.06) 0%, var(--white) 48%);
    border-color: rgba(139, 92, 246, 0.16);
}

.ws-about-page-sidebar-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.ws-about-page-sidebar-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.12);
    color: #7c3aed;
    flex-shrink: 0;
}

.ws-about-page-sidebar-highlight-icon .ws-icon {
    font-size: 1rem;
}

.ws-about-page-sidebar-highlight-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.ws-about-page-sidebar-highlight-body strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

.ws-about-page-sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: #7c3aed;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
}

.ws-about-page-sidebar-cta:hover {
    background: rgba(139, 92, 246, 0.14);
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateX(3px);
}

.ws-about-page-sidebar-cta .ws-icon {
    font-size: 1rem;
}

.ws-about-page-sidebar-news-list a {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.8125rem;
    line-height: 1.45;
    transition: var(--transition);
}

.ws-about-page-sidebar-news-list a:hover {
    border-color: rgba(66, 133, 244, 0.3);
    background: rgba(66, 133, 244, 0.04);
    color: var(--gray-900);
}

.ws-about-page-sidebar-news-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(66, 133, 244, 0.1);
}

.ws-about-page-sidebar-card--tips {
    background: linear-gradient(165deg, rgba(251, 191, 36, 0.07) 0%, var(--white) 45%);
    border-color: rgba(251, 191, 36, 0.22);
}

.ws-about-page-sidebar-tips li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.45;
    border-bottom: 1px solid var(--gray-100);
}

.ws-about-page-sidebar-tips li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.ws-about-page-sidebar-tip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.14);
    color: #d97706;
    flex-shrink: 0;
}

.ws-about-page-sidebar-tip-icon .ws-icon {
    font-size: 0.95rem;
}

.ws-about-page-vision-mission {
    padding: 0 0 72px;
}

.ws-about-page-vision-mission-header {
    position: relative;
    text-align: center;
    margin: 0 auto 48px;
    padding: 44px 40px 48px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(ellipse 75% 90% at 50% 0%, rgba(52, 168, 83, 0.07) 0%, transparent 68%),
        radial-gradient(ellipse 50% 60% at 10% 100%, rgba(66, 133, 244, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.ws-about-page-vision-mission-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), #86efac, var(--blue), #669df6);
    opacity: 0.9;
}

.ws-about-page-vision-mission-header::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    margin: 28px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    opacity: 0.75;
}

.ws-about-page-vision-mission-header .ws-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(52, 168, 83, 0.22);
    border-radius: 999px;
    box-shadow: 0 2px 14px rgba(52, 168, 83, 0.1);
}

.ws-about-page-vision-mission-header .ws-section-title {
    font-size: clamp(1.75rem, 3.8vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.ws-about-page-vision-mission-header .ws-section-desc {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--gray-500);
}

.ws-about-page-vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.ws-about-page-vm-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ws-about-page-vm-card--vision {
    background: linear-gradient(135deg, #0f172a 0%, #152238 25%, #1c3260 50%, #234a85 75%, #2b63b8 100%);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.12),
        0 12px 40px rgba(37, 99, 235, 0.16);
    overflow: visible;
}

.ws-about-page-vm-card--mission {
    background: linear-gradient(135deg, #0f172a 0%, #13261c 25%, #183d28 50%, #1f5536 75%, #267a48 100%);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.12),
        0 12px 40px rgba(21, 128, 61, 0.14);
}

.ws-about-page-vm-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
}

.ws-about-page-vm-card--vision:hover {
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.18),
        0 20px 48px rgba(37, 99, 235, 0.24);
}

.ws-about-page-vm-card--mission:hover {
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.18),
        0 20px 48px rgba(21, 128, 61, 0.22);
}

.ws-about-page-vm-glow {
    display: none;
}

.ws-about-page-vm-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #93c5fd;
    font-size: 1.5rem;
}

.ws-about-page-vm-card--mission .ws-about-page-vm-icon {
    color: #86efac;
}

.ws-about-page-vm-card h3 {
    position: relative;
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.ws-about-page-vm-card p {
    position: relative;
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.ws-about-page-vm-card--vision p {
    flex-shrink: 0;
    min-height: calc(1.75em * 3);
    overflow: visible;
    overflow-wrap: break-word;
}

.ws-about-page-pillars {
    padding: 72px 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(66, 133, 244, 0.06) 0%, transparent 60%),
        var(--gray-50);
}

.ws-about-page-pillars:last-child {
    padding-bottom: 88px;
}

.ws-about-page-pillars-header {
    margin-bottom: 40px;
}

.ws-about-page-pillars-header .ws-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    margin-bottom: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--blue);
    background: var(--white);
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 999px;
    box-shadow:
        0 2px 14px rgba(66, 133, 244, 0.1),
        0 1px 2px rgba(15, 23, 42, 0.04);
}

.ws-about-page-bento {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.ws-about-page-bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 200px;
    padding: 28px 26px;
    background: linear-gradient(135deg, #0f172a 0%, #141f2e 50%, #1e293b 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.12),
        0 8px 28px rgba(15, 23, 42, 0.08);
    color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ws-about-page-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bento-accent, var(--blue)), transparent);
    opacity: 0.9;
}

.ws-ai-tools-accent-blue.ws-about-page-bento-card {
    --bento-accent: var(--blue);
    --bento-icon-color: #93c5fd;
    background: linear-gradient(135deg, #0f172a 0%, #152238 25%, #1c3260 50%, #234a85 75%, #2b63b8 100%);
}

.ws-ai-tools-accent-green.ws-about-page-bento-card {
    --bento-accent: var(--green);
    --bento-icon-color: #86efac;
    background: linear-gradient(135deg, #0f172a 0%, #13261c 25%, #183d28 50%, #1f5536 75%, #267a48 100%);
}

.ws-ai-tools-accent-amber.ws-about-page-bento-card {
    --bento-accent: #d97706;
    --bento-icon-color: #fcd34d;
    background: linear-gradient(135deg, #0f172a 0%, #2a1a08 25%, #4a2e0c 50%, #7a4510 75%, #b45309 100%);
}

.ws-about-page-bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 8px 28px rgba(15, 23, 42, 0.18),
        0 16px 40px color-mix(in srgb, var(--bento-accent) 24%, transparent);
}

.ws-about-page-bento-card--featured {
    grid-column: span 2;
    grid-row: span 2;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    min-height: 100%;
    padding: 40px 36px;
    background: linear-gradient(135deg, #0f172a 0%, #152544 25%, #1a3568 50%, #214a8f 75%, #2b63eb 100%);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.12),
        0 12px 40px rgba(37, 99, 235, 0.18);
}

.ws-about-page-bento-card--featured::before {
    background: linear-gradient(90deg, #fbbf24, #34a853, #4285f4, transparent);
    height: 4px;
    opacity: 1;
}

.ws-about-page-bento-card--featured:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.18),
        0 20px 48px rgba(37, 99, 235, 0.28);
}

.ws-about-page-bento-card--featured h3,
.ws-about-page-bento-card--featured p {
    color: var(--white);
}

.ws-about-page-bento-card--featured p {
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.ws-about-page-bento-card--featured p:last-of-type {
    margin-bottom: 0;
}

.ws-about-page-bento-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.ws-about-page-bento-head h3 {
    margin-bottom: 0;
}

.ws-about-page-bento-card--featured .ws-about-page-bento-head {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-bottom: 14px;
    padding-right: 88px;
}

.ws-about-page-bento-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--bento-icon-color, #93c5fd);
}

.ws-about-page-bento-card--featured .ws-about-page-bento-icon {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
    color: #93c5fd;
    width: 56px;
    height: 56px;
    margin-bottom: 0;
}

.ws-about-page-bento-icon .ws-icon {
    font-size: 1.375rem;
}

.ws-about-page-bento-card--featured .ws-about-page-bento-icon .ws-icon {
    font-size: 1.625rem;
}

.ws-about-page-bento-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.35;
}

.ws-about-page-bento-card--featured h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.625rem);
    margin-bottom: 0;
    line-height: 1.25;
}

.ws-about-page-bento-card p {
    flex: 1;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin: 0;
}

.ws-about-page-bento-tag {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 6px 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.ws-about-page-marquee {
    padding: 0 0 88px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ws-about-page-marquee-track {
    display: flex;
    width: max-content;
    animation: ws-about-marquee 32s linear infinite;
}

.ws-about-page-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes ws-about-marquee {
    to { transform: translateX(-50%); }
}

.ws-about-page-marquee-group {
    display: flex;
    gap: 12px;
    padding-right: 12px;
}

.ws-about-page-marquee-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ws-about-page-marquee-pill:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: var(--shadow-md);
}

.ws-about-home-link {
    margin: 8px 0 4px;
}

/* Legacy highlight + timeline (category pages) */
.ws-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--gray-600);
}

.ws-timeline {
    position: relative;
    padding-left: 32px;
}

.ws-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), var(--green));
    border-radius: 2px;
}

.ws-timeline-item {
    position: relative;
    padding-bottom: 28px;
}

.ws-timeline-item:last-child {
    padding-bottom: 0;
}

.ws-timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 3px solid var(--blue);
    border-radius: 50%;
}

.ws-timeline-year {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 4px;
}

.ws-timeline-content {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Featured CTA */
.ws-featured-cta {
    padding: 80px 0 100px;
}

.ws-cta-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    padding: 56px 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 38%, #4285f4 62%, #1d4ed8 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-xl);
    color: var(--white);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 28px 64px rgba(37, 99, 235, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ws-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.ws-cta-glow {
    position: absolute;
    right: -60px;
    top: 50%;
    width: 360px;
    height: 360px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.28) 0%, rgba(59, 130, 246, 0.08) 45%, transparent 72%);
    pointer-events: none;
    animation: wsCtaGlowPulse 5s ease-in-out infinite alternate;
}

@keyframes wsCtaGlowPulse {
    0% { opacity: 0.55; transform: translateY(-50%) scale(0.96); }
    100% { opacity: 1; transform: translateY(-50%) scale(1.04); }
}

.ws-cta-content {
    position: relative;
    z-index: 1;
}

.ws-cta-content .ws-section-label {
    color: rgba(255, 255, 255, 0.82);
}

.ws-cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.15;
}

.ws-cta-content p {
    opacity: 0.92;
    margin-bottom: 20px;
    line-height: 1.75;
    max-width: 520px;
}

.ws-cta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.ws-cta-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ws-cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: visible;
    padding: 0 10px;
}

.ws-cta-network {
    position: relative;
    width: min(100%, 480px);
    aspect-ratio: 1;
    margin: 0 auto;
    overflow: visible;
}

.ws-cta-network-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ws-cta-orbit-ring {
    fill: none;
    stroke: rgba(255, 255, 255, 0.14);
    stroke-width: 1;
    transform-box: fill-box;
    transform-origin: center;
}

.ws-cta-orbit-ring-outer {
    stroke-dasharray: 6 10;
    animation: wsCtaOrbitSpin 24s linear infinite;
}

.ws-cta-orbit-ring-inner {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-dasharray: 4 8;
    animation: wsCtaOrbitSpin 18s linear infinite reverse;
}

@keyframes wsCtaOrbitSpin {
    to { transform: rotate(360deg); }
}

.ws-cta-outer-link {
    fill: none;
    stroke: rgba(255, 255, 255, 0.28);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 7 11;
    animation: wsCtaOuterFlow 5s linear infinite;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ws-cta-line {
    stroke: rgba(255, 255, 255, 0.82);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 9 11;
    filter: drop-shadow(0 0 4px rgba(191, 219, 254, 0.45));
    animation: wsCtaLineFlow 2.4s linear infinite;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ws-cta-line-joint {
    fill: rgba(255, 255, 255, 0.95);
    stroke: rgba(255, 255, 255, 0.45);
    stroke-width: 1;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ws-cta-line-joint-hub {
    fill: rgba(191, 219, 254, 0.95);
    stroke: rgba(255, 255, 255, 0.65);
}

.ws-cta-line[data-dir="right"] { animation-delay: 0.3s; }
.ws-cta-line[data-dir="bottom"] { animation-delay: 0.6s; }
.ws-cta-line[data-dir="left"] { animation-delay: 0.9s; }

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

@keyframes wsCtaOuterFlow {
    to { stroke-dashoffset: -36; }
}

.ws-cta-hub-ring {
    fill: rgba(255, 255, 255, 0.06);
    stroke: rgba(255, 255, 255, 0.22);
    stroke-width: 1.5;
    transform-box: fill-box;
    transform-origin: center;
    animation: wsCtaHubPulse 3s ease-in-out infinite;
}

@keyframes wsCtaHubPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.ws-cta-pulse-dot {
    opacity: 0.95;
}

.ws-cta-node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    min-height: 52px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 2;
}

.ws-cta-node-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    flex-shrink: 0;
}

.ws-cta-node-icon .ws-icon {
    font-size: 1.05rem;
}

.ws-cta-node-label {
    padding-right: 2px;
}

.ws-cta-node-center {
    left: 50%;
    top: 50%;
    padding: 16px 22px;
    min-height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.ws-cta-node-right,
.ws-cta-node-left {
    padding-left: 24px;
    padding-right: 24px;
    min-width: 128px;
    justify-content: center;
}

.ws-cta-node-top {
    left: 50%;
    top: 10%;
}

.ws-cta-node-right {
    left: 97%;
    top: 50%;
}

.ws-cta-node-bottom {
    left: 50%;
    top: 90%;
}

.ws-cta-node-left {
    left: 3%;
    top: 50%;
}

a.ws-cta-node:not(.ws-cta-node-center):hover {
    transform: translate(-50%, -50%) translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.24);
}

.ws-cta-network.ws-cta-network--ready .ws-cta-line,
.ws-cta-network.ws-cta-network--ready .ws-cta-line-joint,
.ws-cta-network.ws-cta-network--ready .ws-cta-outer-link {
    opacity: 1;
}

.ws-cta-network:not(.ws-cta-network--ready) .ws-cta-line,
.ws-cta-network:not(.ws-cta-network--ready) .ws-cta-line-joint,
.ws-cta-network:not(.ws-cta-network--ready) .ws-cta-outer-link {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .ws-cta-glow,
    .ws-cta-orbit-ring,
    .ws-cta-line,
    .ws-cta-outer-link,
    .ws-cta-hub-ring,
    .ws-cta-node,
    .ws-cta-pulses {
        animation: none !important;
    }

    .ws-cta-pulses {
        display: none;
    }
}

/* Category Landing Pages */
.ws-category-hero {
    text-align: left;
}

.ws-category-hero-bg {
    position: absolute;
    inset: 0;
    background: #050508;
    pointer-events: none;
    overflow: hidden;
}

.ws-category-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px;
}

.ws-category-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.ws-category-hero-tagline {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ws-category-hero-desc {
    font-size: 1.125rem;
    max-width: 560px;
    margin: 0;
    line-height: 1.7;
}

/* Topic Cards */
.ws-topics-section {
    padding: 60px 0 100px;
}

.ws-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.ws-topic-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.ws-topic-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.ws-topic-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.ws-topic-card p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ws-topic-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
}

/* Technology Category Page */
.ws-tech-category-hero-bg {
    position: absolute;
    inset: 0;
    background: #050508;
    pointer-events: none;
    overflow: hidden;
}

.ws-tech-category-breadcrumb {
    justify-content: flex-start;
    margin-bottom: 32px;
}

.ws-tech-category-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    color: var(--white);
    box-shadow:
        0 14px 36px rgba(66, 133, 244, 0.28),
        0 0 0 10px rgba(66, 133, 244, 0.08);
}

.ws-tech-category-hero-icon .ws-icon {
    font-size: 2.25rem;
}

.ws-tech-category-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 16px;
}

.ws-tech-category-lead {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.ws-tech-category-hero .ws-ai-tools-chips {
    margin-bottom: 0;
}

.ws-tech-category-list-hero-icon {
    background: linear-gradient(135deg, #4285F4 0%, #669DF6 100%);
}

.ws-tech-category-list-section {
    padding: 60px 0 100px;
}

.ws-tech-category-topics {
    padding: 60px 0 80px;
}

.ws-tech-topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ws-tech-topic-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--group-accent);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-tech-topic-card:hover {
    transform: translateY(-4px);
    border-color: var(--gray-200);
    border-top-color: var(--group-accent);
    box-shadow:
        0 16px 32px rgba(15, 23, 42, 0.08),
        0 8px 18px var(--group-shadow);
}

.ws-tech-topic-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    color: var(--group-accent);
    background: var(--group-glow);
    border: 1px solid var(--group-ring);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--group-glow) 60%, transparent);
}

.ws-tech-topic-icon .ws-icon {
    font-size: 1.375rem;
}

.ws-tech-topic-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.ws-tech-topic-body p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 14px;
}

.ws-tech-topic-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--group-accent);
}

.ws-tech-category-overview {
    position: relative;
    padding: 80px 0 80px;
    overflow: hidden;
}

.ws-tech-category-overview::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--gray-50);
    background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.14) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, transparent 90%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, transparent 90%);
    pointer-events: none;
}

.ws-tech-overview-intro {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding: 36px 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.ws-tech-overview-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #669DF6, var(--green));
}

.ws-tech-overview-intro-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #4285F4 0%, #669DF6 100%);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.25);
}

.ws-tech-overview-intro-icon .ws-icon {
    font-size: 1.5rem;
}

.ws-tech-overview-intro-content .ws-section-title {
    margin-bottom: 14px;
    text-align: left;
}

.ws-tech-overview-intro-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0 0 12px;
}

.ws-tech-overview-note {
    color: var(--gray-500) !important;
    padding-top: 12px;
    border-top: 1px dashed var(--gray-200);
}

.ws-tech-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ws-tech-overview-card {
    padding: 28px 24px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ws-tech-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--group-accent);
}

.ws-tech-overview-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 32px rgba(15, 23, 42, 0.08),
        0 8px 18px var(--group-shadow);
}

.ws-tech-overview-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--group-accent);
    background: var(--group-glow);
    border: 1px solid var(--group-ring);
}

.ws-tech-overview-card-icon .ws-icon {
    font-size: 1.25rem;
}

.ws-tech-overview-card h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.ws-tech-overview-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* Technology Articles — editorial dark band */
.ws-tech-category-articles {
    padding: 0 0 60px;
}

.ws-tech-articles-band {
    position: relative;
    padding: 88px 0 96px;
    background:
        radial-gradient(ellipse 70% 50% at 15% 0%, rgba(66, 133, 244, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 100%, rgba(52, 168, 83, 0.12) 0%, transparent 50%),
        linear-gradient(165deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
    overflow: hidden;
}

.ws-tech-articles-band-glow {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 95%);
    pointer-events: none;
}

.ws-tech-articles-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-tech-articles-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
}

.ws-tech-articles-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

.ws-tech-articles-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin: 0;
    max-width: 420px;
    justify-self: end;
}

.ws-tech-articles-band .ws-article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.ws-tech-articles-band .ws-article-accent-blue { --article-accent: #669DF6; --article-glow: rgba(102, 157, 246, 0.15); }
.ws-tech-articles-band .ws-article-accent-green { --article-accent: #5BB974; --article-glow: rgba(91, 185, 116, 0.15); }
.ws-tech-articles-band .ws-article-accent-red { --article-accent: #FF6B6B; --article-glow: rgba(255, 107, 107, 0.15); }
.ws-tech-articles-band .ws-article-accent-amber { --article-accent: #FFD54F; --article-glow: rgba(255, 213, 79, 0.15); }
.ws-tech-articles-band .ws-article-accent-cyan { --article-accent: #4dd0e1; --article-glow: rgba(77, 208, 225, 0.15); }

.ws-tech-articles-band .ws-article-card {
    position: relative;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                background 0.3s ease,
                box-shadow 0.3s ease;
}

.ws-tech-articles-band .ws-article-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--article-accent, var(--blue));
    opacity: 0.85;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.ws-tech-articles-band .ws-article-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--article-glow);
}

.ws-tech-articles-band .ws-article-card:hover::before {
    width: 6px;
    opacity: 1;
}

.ws-tech-articles-band .ws-article-card-link {
    display: block;
    height: 100%;
    padding: 26px 28px 26px 32px;
    color: inherit;
    position: relative;
}

.ws-tech-articles-band .ws-article-card-content {
    position: relative;
    z-index: 1;
}

.ws-tech-articles-band .ws-article-card-meta-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.ws-tech-articles-band .ws-article-card-tag {
    display: inline-flex;
    padding: 4px 11px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--article-accent, var(--blue));
    border: 1px solid color-mix(in srgb, var(--article-accent, var(--blue)) 40%, transparent);
    border-radius: 4px;
    background: transparent;
}

.ws-tech-articles-band .ws-article-card-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.45;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ws-tech-articles-band .ws-article-card-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ws-tech-articles-band .ws-article-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ws-tech-articles-band .ws-article-card-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--article-accent, var(--blue));
    transition: gap 0.25s ease, color 0.25s ease;
}

.ws-tech-articles-band .ws-article-card:hover .ws-article-card-read {
    gap: 10px;
    color: var(--white);
}

/* Blog Post Page */
.ws-blog-post-page {
    padding-bottom: 80px;
}

.ws-blog-post-hero {
    text-align: left;
}

.ws-blog-post-hero-bg {
    position: absolute;
    inset: 0;
    background: #050508;
    pointer-events: none;
    overflow: hidden;
}

.ws-blog-post-hero-glow {
    position: absolute;
    top: 20%;
    right: 8%;
    width: min(520px, 48vw);
    height: 240px;
    transform: none;
    background: radial-gradient(ellipse at center, color-mix(in srgb, var(--group-accent) 22%, transparent) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ws-blog-post-breadcrumb {
    justify-content: flex-start;
    margin-bottom: 32px;
}

.ws-blog-post-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 14px;
    margin-bottom: 22px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--group-accent);
    background: linear-gradient(135deg, color-mix(in srgb, var(--group-glow) 85%, white) 0%, color-mix(in srgb, var(--group-glow) 55%, white) 100%);
    border: 1px solid color-mix(in srgb, var(--group-accent) 22%, transparent);
    border-radius: 999px;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 0 0 4px color-mix(in srgb, var(--group-glow) 45%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ws-blog-post-tag::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--group-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--group-accent) 22%, transparent);
}

.ws-blog-post-hero-inner h1 {
    font-size: clamp(2rem, 4.5vw, 2.875rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 18px;
}

.ws-blog-post-excerpt {
    max-width: 560px;
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.75;
}

.ws-blog-post-body-wrap {
    margin-top: -32px;
    position: relative;
    z-index: 2;
}

.ws-blog-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.ws-blog-post-main {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.05),
        0 20px 40px -12px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.ws-blog-post-main::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--group-accent), color-mix(in srgb, var(--group-accent) 35%, transparent) 55%, transparent);
}

.ws-blog-post-content {
    padding: 44px 48px 36px;
}

.ws-blog-post-lead {
    font-size: 1.1875rem;
    color: var(--gray-700);
    line-height: 1.85;
    padding-left: 20px;
    border-left: 3px solid var(--group-accent);
}

.ws-blog-post-content p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 20px;
}

.ws-blog-post-content p:last-child {
    margin-bottom: 0;
}

.ws-blog-post-main-footer {
    padding: 24px 48px 36px;
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.ws-blog-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: calc(var(--header-content-offset) + 24px);
}

.ws-blog-sidebar-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.ws-blog-sidebar-title {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.ws-blog-sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ws-blog-sidebar-link {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ws-blog-sidebar-link:hover {
    transform: translateX(4px);
    border-color: var(--group-ring);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.ws-blog-sidebar-link-tag {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--group-accent);
    margin-bottom: 6px;
}

.ws-blog-sidebar-link-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.45;
}

.ws-blog-sidebar-topics {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ws-blog-sidebar-topic-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ws-blog-sidebar-topic-link .ws-icon {
    font-size: 1.125rem;
    color: var(--group-accent);
    flex-shrink: 0;
}

.ws-blog-sidebar-topic-link:hover {
    background: var(--group-glow);
    border-color: var(--group-ring);
    color: var(--gray-900);
}

.ws-blog-sidebar-cta {
    background: linear-gradient(145deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border-color: var(--gray-800);
}

.ws-blog-sidebar-cta p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin-bottom: 16px;
}

.ws-blog-sidebar-cta-btn {
    width: 100%;
    justify-content: center;
}

/* Content Pages */
.ws-content-page {
    padding: calc(var(--header-content-offset) + 68px) 0 80px;
}

.ws-content-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.ws-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.ws-breadcrumb a {
    color: var(--gray-500);
    transition: var(--transition);
}

.ws-breadcrumb a:hover {
    color: var(--blue);
}

.ws-breadcrumb span {
    color: var(--gray-300);
}

.ws-content-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.ws-content-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.ws-content-body {
    max-width: 720px;
}

.ws-content-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 40px 0 16px;
}

.ws-content-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 28px 0 12px;
}

.ws-content-body p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.ws-content-body ul {
    margin: 16px 0;
    padding-left: 24px;
}

.ws-content-body li {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Feature List Cards */
.ws-feature-list {
    display: grid;
    gap: 12px;
}

.ws-feature-item {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--blue);
    border-radius: var(--radius-lg);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-feature-item:hover {
    background: var(--white);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.ws-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.ws-feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.ws-feature-item p {
    font-size: 1rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* Developer Tools Page */
.ws-devtools-page {
    padding-bottom: 80px;
}

.ws-tech-topic-page--cloud .ws-devtools-platform-card,
.ws-tech-topic-page--cloud .ws-devtools-insight-card {
    align-items: center;
    text-align: center;
}

.ws-tech-topic-page--cloud .ws-devtools-insight-card {
    flex-direction: column;
}

.ws-tech-topic-page--android .ws-devtools-platform-card,
.ws-tech-topic-page--android .ws-devtools-insight-card {
    align-items: center;
    text-align: center;
}

.ws-tech-topic-page--android .ws-devtools-insight-card {
    flex-direction: column;
}

.ws-tech-topic-page--devtools .ws-devtools-platform-card,
.ws-tech-topic-page--devtools .ws-devtools-insight-card {
    align-items: center;
    text-align: center;
}

.ws-tech-topic-page--devtools .ws-devtools-insight-card {
    flex-direction: column;
}

.ws-devtools-hero-bg {
    position: absolute;
    inset: 0;
    background: #050508;
    pointer-events: none;
    overflow: hidden;
}

.ws-devtools-breadcrumb {
    justify-content: flex-start;
    margin-bottom: 32px;
}

.ws-devtools-hero-inner h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 16px;
}

.ws-devtools-lead {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.ws-devtools-chips {
    justify-content: flex-start;
    margin-bottom: 0;
}

.ws-devtools-platforms {
    padding: 60px 0 48px;
}

.ws-devtools-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ws-devtools-platform-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--group-accent);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-devtools-platform-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.08),
        0 10px 20px var(--group-shadow);
}

.ws-devtools-platform-tag {
    display: inline-flex;
    padding: 4px 10px;
    margin-bottom: 18px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--group-accent);
    background: var(--group-glow);
    border: 1px solid color-mix(in srgb, var(--group-accent) 18%, transparent);
}

.ws-devtools-platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 14px;
    color: var(--group-accent);
    background: var(--group-glow);
    border: 1px solid color-mix(in srgb, var(--group-accent) 16%, transparent);
}

.ws-devtools-platform-icon .ws-icon {
    font-size: 1.5rem;
}

.ws-devtools-platform-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 10px;
}

.ws-devtools-platform-desc {
    font-size: 0.98rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

.ws-devtools-insights {
    padding: 24px 0 60px;
}

.ws-devtools-insights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.ws-devtools-insight-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ws-devtools-insight-card:hover {
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.ws-devtools-insight-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    color: var(--blue);
    background: rgba(66, 133, 244, 0.1);
    border: 1px solid rgba(66, 133, 244, 0.16);
}

.ws-devtools-insight-icon .ws-icon {
    font-size: 1.375rem;
}

.ws-devtools-insight-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 10px;
}

.ws-devtools-insight-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

.ws-devtools-cta {
    padding: 0 0 20px;
}

.ws-devtools-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px 40px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.ws-devtools-cta-copy .ws-section-label {
    color: #94a3b8;
    margin-bottom: 10px;
}

.ws-devtools-cta-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--white);
    margin: 0 0 10px;
}

.ws-devtools-cta-copy p {
    max-width: 520px;
    margin: 0;
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.65;
}

.ws-devtools-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

.ws-devtools-cta .ws-btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.ws-devtools-cta .ws-btn-secondary:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
}

/* Scroll to top */
.ws-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 50%;
    color: var(--white);
    background: #bc911d;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background var(--transition),
        box-shadow var(--transition);
}

.ws-scroll-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ws-scroll-top:hover {
    background: #a38219;
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.ws-scroll-top:focus-visible {
    outline: 2px solid #bc911d;
    outline-offset: 3px;
}

.ws-scroll-top .ws-icon {
    color: inherit;
}

/* Footer */
.ws-site-footer {
    position: relative;
    margin-top: auto;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.ws-site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--blue) 0%,
        var(--red) 33%,
        var(--yellow) 66%,
        var(--green) 100%
    );
}

.ws-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 28px 0 20px;
    align-items: stretch;
}

.ws-footer-col {
    min-width: 0;
    min-height: 0;
    height: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
}

.ws-footer-title,
.ws-footer-explore h4,
.ws-footer-links h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F5E6B8;
    margin: 0 0 10px;
    padding: 0;
    border: none;
}

.ws-footer-explore-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.ws-footer-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-200);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.ws-footer-chip:hover {
    color: var(--white);
    border-color: color-mix(in srgb, var(--chip-accent) 45%, rgba(255, 255, 255, 0.12));
    background: color-mix(in srgb, var(--chip-accent) 14%, rgba(255, 255, 255, 0.06));
    box-shadow: 0 4px 14px color-mix(in srgb, var(--chip-accent) 18%, transparent);
}

.ws-footer-chip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: var(--chip-accent);
    background: color-mix(in srgb, var(--chip-accent) 16%, rgba(255, 255, 255, 0.06));
    border: 1px solid color-mix(in srgb, var(--chip-accent) 22%, rgba(255, 255, 255, 0.08));
}

.ws-footer-chip-icon .ws-icon {
    font-size: 0.9375rem;
}

.ws-footer-chip > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ws-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.ws-footer-links li {
    margin: 0;
    min-width: 0;
}

.ws-footer-links li:not(:last-child),
.ws-footer-trending-col > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-footer-links a {
    display: block;
    padding: 3px 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--gray-400);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color var(--transition);
}

.ws-footer-links a:hover {
    color: var(--white);
}

.ws-footer-trending {
    grid-column: 1 / -1;
}

.ws-footer-trending-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0 10px;
}

.ws-footer-trending-col {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.ws-footer-trending-col a {
    display: block;
    padding: 3px 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--gray-400);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color var(--transition);
}

.ws-footer-trending-col a:hover {
    color: var(--white);
}

.ws-footer-trending-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.ws-footer-trending-links a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-400);
    transition: color var(--transition);
}

.ws-footer-trending-links a:hover {
    color: var(--white);
}

.ws-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.22);
}

.ws-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
}

.ws-footer-copyright,
.ws-footer-bottom p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* Responsive */
@media (min-width: 1025px) {
    .ws-home-hero-content {
        max-width: min(560px, calc(100% - 220px));
    }
}

@media (max-width: 1200px) {
    .ws-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .ws-footer-trending-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ws-nav-link {
        padding: 8px 10px 10px;
        font-size: 0.8125rem;
    }

    .ws-nav-link::after {
        left: 8px;
        right: 8px;
    }

    .ws-main-nav {
        gap: 0;
    }

    .ws-nav-dropdown-toggle {
        width: 30px;
        height: 34px;
    }

    .ws-about-page-hero-content-block {
        max-width: min(520px, 56%);
    }

    .ws-about-page-hero-circuit-rail,
    .ws-about-page-hero-visual {
        left: max(400px, 40%);
    }
}

@media (max-width: 1024px) {
    :root {
        --header-logo-size: 148px;
        --header-logo-padding: 16px;
        --header-logo-ring-offset-outer: 14px;
        --header-logo-ring-offset-mid: 7px;
        --header-logo-ring-width-outer: 6px;
        --header-logo-ring-width-mid: 4px;
        --header-logo-cut-top: -10px;
        --header-logo-top: 14px;
    }

    .ws-topbar-ticker::before,
    .ws-topbar-ticker::after {
        width: 36px;
    }

    .ws-home-hero {
        --ws-globe-x: 50%;
        --ws-globe-y: 148px;
        padding-top: 180px;
        padding-bottom: 80px;
    }

    .ws-home-hero-content {
        max-width: 100%;
    }

    .ws-ai-tools-intro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 24px 20px;
    }

    .ws-ai-tools-intro-copy {
        text-align: center;
    }

    .ws-ai-tools-intro--home .ws-ai-tools-lead {
        text-align: center;
        max-width: none;
    }

    .ws-ai-tools-intro-chips {
        justify-content: center;
    }

    .ws-ai-tools-intro-footnote {
        text-align: center;
        justify-content: center;
    }

    .ws-ai-tools-intro-visual {
        min-height: 220px;
        max-width: 320px;
        margin: 0 auto;
    }

    .ws-home-synthetic-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ws-home-famous-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ws-home-famous-copy {
        text-align: center;
    }

    .ws-home-famous-desc {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .ws-home-famous-platforms {
        justify-content: center;
    }

    .ws-home-synthetic-copy .ws-section-title,
    .ws-home-synthetic-copy .ws-section-label {
        text-align: center;
    }

    .ws-home-synthetic-desc {
        text-align: center;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .ws-home-synthetic-copy .ws-btn {
        display: flex;
        width: fit-content;
        margin: 0 auto;
    }

    .ws-about-grid,
    .ws-cta-card {
        grid-template-columns: 1fr;
    }

    .ws-about-section--home {
        padding: 80px 0 88px;
    }

    .ws-about-home-grid {
        gap: 24px;
    }

    .ws-about-page-hero {
        --about-page-hero-circuit-size: clamp(280px, 68vw, 380px);
        --page-hero-pad-bottom: 64px;
        --page-hero-anim-edge: 12px;
        --page-hero-anim-gap: 12px;
        --page-hero-anim-bottom: calc(var(--page-hero-pad-bottom) + var(--page-hero-anim-gap));
        min-height: auto;
        padding-bottom: var(--page-hero-pad-bottom);
    }

    .ws-about-page-hero-content-block {
        max-width: none;
    }

    .ws-about-page-hero-circuit-rail {
        top: calc(var(--page-hero-pad-top) + 8px);
        bottom: auto;
        height: var(--about-page-hero-circuit-size);
        left: 0;
        right: 0;
        justify-content: center;
        padding-right: 0;
    }

    .ws-about-page-hero-visual {
        position: relative;
        order: -1;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: var(--about-page-hero-circuit-size);
        height: var(--about-page-hero-circuit-size);
        min-height: 0;
        padding: 0;
        margin: 8px auto 28px;
    }

    .ws-about-page-orbit {
        width: 100%;
        max-width: 100%;
    }

    .ws-about-page-title {
        font-size: clamp(1.85rem, 5.5vw, 2.5rem);
    }

    .ws-about-page-lead {
        font-size: 1.0625rem;
        line-height: 1.7;
    }

    .ws-about-page-orbit-core {
        width: 100px;
        height: 100px;
    }

    .ws-about-page-orbit-node {
        padding: 8px 10px;
        gap: 4px;
    }

    .ws-about-page-orbit-node em {
        font-size: 0.62rem;
    }

    .ws-about-page-story {
        padding: 48px 0;
    }

    .ws-about-page-story-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ws-about-page-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: minmax(200px, auto);
    }

    .ws-about-page-bento-card--featured {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 240px;
    }

    .ws-about-page-bento-card--featured .ws-about-page-bento-head {
        padding-right: 0;
    }

    .ws-cta-card {
        gap: 36px;
        padding: 44px 36px;
    }

    .ws-cta-visual {
        order: -1;
    }

    .ws-cta-network {
        width: min(100%, 360px);
    }

    .ws-home-hero-visual {
        max-width: 100%;
    }

    .ws-home-hero-preview-list {
        grid-template-columns: 1fr;
    }

    .ws-home-hero-rings,
    .ws-home-hero-globe-glow,
    .ws-home-hero-pulses,
    .ws-home-hero-orbit-tracks,
    .ws-home-hero-scan-ring {
        opacity: 0.3;
    }

    .ws-home-hero-beam,
    .ws-home-hero-tech-lane {
        display: none;
    }

    .ws-home-hero-rings { width: 140px; height: 140px; }
    .ws-home-hero-globe-glow { width: 120px; height: 120px; }
    .ws-home-hero-pulses { width: 115px; height: 115px; }
    .ws-home-hero-orbit-tracks { width: 155px; height: 78px; }
    .ws-home-hero-scan-ring { width: 135px; height: 135px; }

    .ws-home-hero-title {
        font-size: 2.75rem;
    }

    .ws-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ws-ai-tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-ai-tools-page-intro-card,
    .ws-ai-tools-page-guide,
    .ws-ai-tools-group {
        padding: 24px 20px;
    }

    .ws-ai-tools-page-hero {
        min-height: auto;
        padding-top: calc(var(--header-content-offset) + 64px);
        padding-bottom: 72px;
        --page-hero-pad-top: calc(var(--header-content-offset) + 64px);
        --page-hero-pad-bottom: 72px;
    }

    .ws-ai-tools-page-hero-inner {
        max-width: min(560px, 100%);
    }

    .ws-ai-tools-page-hero h1,
    .ws-inner-page-hero-content h1 {
        font-size: clamp(2rem, 4.5vw, 2.75rem);
    }

    .ws-ai-tools-page-lead,
    .ws-inner-page-hero-lead {
        font-size: 1.0625rem;
        margin-bottom: 0;
    }

    .ws-ai-tools-page .ws-ai-tools-section {
        padding: 48px 0 64px;
    }

    .ws-ai-tools-page-guides {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-ai-tools-page-synthetic-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .ws-ai-tools-page-category-banner {
        padding: 28px 24px;
    }

    .ws-ai-tools-page .ws-trending-ai-panel {
        padding: 28px 24px;
    }

    .ws-tech-articles-band .ws-article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ws-blog-post-layout {
        grid-template-columns: 1fr;
    }

    .ws-blog-post-sidebar {
        position: static;
    }

    .ws-tech-articles-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ws-tech-articles-desc {
        justify-self: start;
        max-width: none;
    }

    .ws-tech-category-hero {
        min-height: auto;
        padding-top: calc(var(--header-content-offset) + 64px);
        padding-bottom: 72px;
        --page-hero-pad-top: calc(var(--header-content-offset) + 64px);
        --page-hero-pad-bottom: 72px;
    }

    .ws-tech-category-hero-inner {
        max-width: min(560px, 100%);
    }

    .ws-tech-category-hero h1 {
        font-size: clamp(2rem, 4.5vw, 2.75rem);
    }

    .ws-tech-category-lead {
        font-size: 1.0625rem;
        margin-bottom: 0;
    }

    .ws-tech-category-topics {
        padding: 48px 0 64px;
    }

    .ws-tech-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 24px 0 18px;
    }

    .ws-footer-trending-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ws-mobile-nav-close-bar {
    display: none;
}

@media (max-width: 768px) {
    :root {
        --container-pad: 16px;
        --header-height: 72px;
        --header-logo-size: 112px;
        --header-logo-top: 10px;
        --header-logo-padding: 12px;
        --header-logo-ring-offset-outer: 10px;
        --header-logo-ring-offset-mid: 5px;
        --header-logo-ring-width-outer: 4px;
        --header-logo-ring-width-mid: 3px;
        --header-logo-cut-top: -8px;
        --header-topbar-height: 34px;
        --header-topbar-content-offset: calc(var(--header-logo-size) + (var(--header-logo-ring-offset-outer) * 2) + 12px);
    }

    .ws-site-header {
        clip-path: none;
    }

    .ws-site-header--logo-center .ws-header-main {
        clip-path: none;
    }

    .ws-header-topbar-inner {
        gap: 10px;
        padding-left: var(--header-topbar-content-offset);
    }

    .ws-topbar-badge {
        padding: 3px 8px;
        font-size: 0.62rem;
        gap: 4px;
    }

    .ws-topbar-badge .ws-icon {
        font-size: 0.75rem;
    }

    .ws-topbar-item {
        font-size: 0.75rem;
        gap: 8px;
    }

    .ws-topbar-tag {
        font-size: 0.62rem;
        padding: 2px 6px;
    }

    .ws-topbar-track-group {
        gap: 28px;
        padding-right: 28px;
    }

    .ws-topbar-ticker::before,
    .ws-topbar-ticker::after {
        width: 28px;
    }

    .ws-header-inner {
        justify-content: flex-end;
        height: var(--header-height);
    }

    .ws-footer-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 0 16px;
    }

    .ws-footer-col {
        padding: 12px 14px;
    }

    .ws-footer-trending-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 12px;
    }

    .ws-footer-links a,
    .ws-footer-trending-col a {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        word-break: break-word;
    }

    .ws-footer-bottom-inner {
        padding: 12px var(--container-pad);
    }

    .ws-scroll-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }

    .ws-site-header > .ws-main-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: none;
        height: 100dvh;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        padding: 0 0 28px;
        background: #ffffff;
        border: none;
        border-radius: 0;
        box-shadow: none;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        z-index: 1100;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition:
            transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0.38s step-end;
    }

    .ws-mobile-nav-backdrop {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1090;
        border: none;
        padding: 0;
        margin: 0;
        background: #ffffff;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 0.38s ease,
            visibility 0.38s step-end;
        cursor: pointer;
    }

    .ws-mobile-nav-backdrop.ws-is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition:
            opacity 0.38s ease,
            visibility 0s step-start;
    }

    body.ws-mobile-nav-open {
        overflow: hidden;
    }

    .ws-mobile-toggle {
        display: flex;
        position: fixed;
        top: calc(var(--header-topbar-height) + ((var(--header-height) - 44px) / 2));
        right: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
        z-index: 1120;
    }

    .ws-mobile-nav-close-bar {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-shrink: 0;
        width: 100%;
        padding: 10px var(--container-pad) 0;
    }

    .ws-mobile-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: var(--radius-md);
        background: rgba(66, 133, 244, 0.08);
        color: var(--blue);
        cursor: pointer;
        flex-shrink: 0;
        transition: var(--transition);
    }

    .ws-mobile-nav-close:hover {
        color: var(--white);
        background: linear-gradient(135deg, #4285F4 0%, #669DF6 100%);
        box-shadow: 0 8px 20px rgba(66, 133, 244, 0.28);
    }

    .ws-main-nav .ws-nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 52px;
        padding: 14px var(--container-pad);
        border-radius: 0;
        font-size: 0.9375rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        color: var(--gray-800);
        text-align: left;
        border-bottom: 1px solid var(--gray-200);
    }

    .ws-main-nav > .ws-nav-link:last-child,
    .ws-main-nav > .ws-nav-dropdown:last-child .ws-nav-dropdown-trigger {
        border-bottom: none;
    }

    .ws-main-nav .ws-nav-link::after {
        display: none;
        content: none;
    }

    .ws-main-nav .ws-nav-link:hover {
        background: rgba(66, 133, 244, 0.04);
    }

    .ws-main-nav .ws-nav-link.ws-active {
        color: var(--gray-900);
        background: rgba(66, 133, 244, 0.06);
        box-shadow: none;
    }

    .ws-nav-dropdown,
    .ws-nav-dropdown-trigger {
        width: 100%;
    }

    .ws-nav-dropdown:not(:last-child) .ws-nav-dropdown-trigger {
        border-bottom: 1px solid var(--gray-200);
    }

    .ws-nav-dropdown-trigger {
        justify-content: space-between;
        gap: 0;
        min-height: 52px;
        padding-right: calc(var(--container-pad) - 10px);
        border-radius: 0;
        background: transparent;
    }

    .ws-nav-dropdown-trigger .ws-nav-link {
        flex: 1;
        min-height: 0;
        padding-right: 8px;
        border-bottom: none;
        border-radius: 0;
    }

    .ws-nav-dropdown-toggle {
        width: 42px;
        height: 42px;
        border-radius: var(--radius-md);
        flex-shrink: 0;
    }

    .ws-nav-dropdown-menu {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 4px;
        padding: 4px 0 4px 8px;
        border: none;
        border-left: 2px solid var(--gray-200);
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .ws-nav-dropdown.ws-open .ws-nav-dropdown-menu {
        display: block;
    }

    .ws-nav-dropdown:hover .ws-nav-dropdown-menu,
    .ws-nav-dropdown:focus-within .ws-nav-dropdown-menu {
        display: none;
    }

    .ws-nav-dropdown.ws-open:hover .ws-nav-dropdown-menu,
    .ws-nav-dropdown.ws-open:focus-within .ws-nav-dropdown-menu {
        display: block;
    }

    .ws-nav-dropdown-link {
        padding: 10px 12px;
        color: var(--gray-800);
    }

    .ws-site-header > .ws-main-nav.ws-open {
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        transition:
            transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0s step-start;
    }

    @media (prefers-reduced-motion: reduce) {
        .ws-site-header > .ws-main-nav,
        .ws-mobile-nav-backdrop {
            transition: none !important;
        }
    }

    .ws-home-hero {
        padding-top: 140px;
        padding-bottom: 64px;
    }

    .ws-home-hero-inner {
        gap: 24px;
    }

    .ws-home-hero .ws-home-hero-badge {
        font-size: 0.8125rem;
        padding: 5px 12px 5px 8px;
    }

    .ws-home-hero .ws-home-hero-subtitle {
        margin-bottom: 20px;
    }

    .ws-home-hero-hud {
        display: none;
    }

    .ws-home-hero-content {
        max-width: 100%;
    }

    .ws-categories-section {
        padding: 72px 0;
    }

    .ws-categories-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ws-categories-intro {
        position: static;
        text-align: center;
    }

    .ws-categories-intro .ws-section-desc {
        max-width: none;
        margin: 0 auto;
    }

    .ws-categories-intro-foot {
        display: flex;
        justify-content: center;
    }

    .ws-categories-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .ws-category-card-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "index"
            "icon"
            "copy"
            "topics"
            "cta";
        gap: 14px;
        padding: 24px 22px 20px;
        text-align: center;
    }

    .ws-category-card-copy {
        text-align: center;
    }

    .ws-category-icon {
        width: 68px;
        height: 68px;
        margin: 0 auto;
        border-radius: 18px;
    }

    .ws-category-topics {
        justify-content: center;
    }

    .ws-category-title {
        font-size: 1.35rem;
    }

    .ws-section-header {
        margin-bottom: 32px;
    }

    .ws-featured-cta {
        padding: 48px 0 64px;
    }

    .ws-cta-content .ws-btn {
        width: 100%;
        justify-content: center;
    }

    .ws-home-synthetic-cards {
        grid-template-columns: 1fr;
    }

    .ws-about-grid {
        gap: 20px;
    }

    .ws-about-section--home {
        padding: 68px 0 72px;
    }

    .ws-about-section--home .ws-about-content-panel,
    .ws-about-section--home .ws-about-visual-panel {
        padding: 28px 22px;
    }

    .ws-about-home-highlights {
        grid-template-columns: 1fr;
    }

    .ws-about-section--home .ws-about-highlight-card {
        min-height: auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ws-about-section--home .ws-about-home-link {
        width: 100%;
        justify-content: center;
    }

    .ws-about-page-bento {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: auto;
    }

    .ws-about-page-bento-card {
        min-height: auto;
    }

    .ws-about-page-bento-card--featured {
        grid-column: span 1;
        padding: 32px 24px;
    }

    .ws-about-page-bento-card--featured .ws-about-page-bento-head {
        padding-right: 0;
    }

    .ws-about-page-hero {
        --page-hero-pad-top: calc(var(--header-content-offset) + 12px);
        --page-hero-pad-bottom: 48px;
        --page-hero-anim-edge: 10px;
        --page-hero-anim-gap: 10px;
        --page-hero-anim-top: calc(var(--header-stack-height) + var(--page-hero-anim-edge));
        --page-hero-anim-bottom: calc(var(--page-hero-pad-bottom) + var(--page-hero-anim-gap));
        --about-page-hero-circuit-size: clamp(240px, 84vw, 320px);
        padding: var(--page-hero-pad-top) 0 var(--page-hero-pad-bottom);
        min-height: auto;
    }

    .ws-about-page-hero-visual {
        margin-bottom: 24px;
    }

    .ws-about-page-orbit-core {
        width: 92px;
        height: 92px;
    }

    .ws-about-page-orbit-core .ws-icon {
        font-size: 1.75rem;
    }

    .ws-about-page-orbit-core span {
        font-size: 0.72rem;
    }

    .ws-about-page-orbit-node {
        padding: 6px 8px;
    }

    .ws-about-page-orbit-node .ws-icon {
        font-size: 1.1rem;
    }

    .ws-about-page-hero-chip {
        font-size: 0.9375rem;
        padding: 5px 12px;
    }

    .ws-about-page-story {
        padding: 40px 0;
    }

    .ws-about-page-story-header {
        margin-bottom: 40px;
        padding: 32px 22px 36px;
    }

    .ws-about-page-story-header .ws-section-title {
        font-size: clamp(1.5rem, 5vw, 1.875rem);
    }

    .ws-about-page-timeline-card {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 16px;
    }

    .ws-about-page-timeline-body {
        padding: 22px 20px;
    }

    .ws-about-page-timeline-num {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .ws-about-page-sidebar-card {
        padding: 22px 20px;
    }

    .ws-about-page-vision-mission {
        padding-bottom: 48px;
    }

    .ws-about-page-vision-mission-header {
        margin-bottom: 36px;
        padding: 32px 22px 36px;
    }

    .ws-about-page-vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .ws-about-page-vm-card {
        padding: 32px 24px;
    }

    .ws-about-page-pillars {
        padding: 48px 0;
    }

    .ws-about-page-pillars:last-child {
        padding-bottom: 56px;
    }

    .ws-about-page-marquee {
        padding-bottom: 56px;
    }

    .ws-home-synthetic-section--inline {
        padding: 0;
        margin-bottom: 24px;
    }

    .ws-home-famous-section {
        margin-bottom: 24px;
    }

    .ws-home-famous-inner {
        padding: 28px 22px;
    }

    .ws-home-famous-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ws-home-famous-copy {
        text-align: center;
    }

    .ws-home-famous-desc {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .ws-home-famous-platforms {
        justify-content: center;
    }

    .ws-home-famous-copy .ws-btn-famous {
        display: inline-flex;
        margin: 0 auto;
    }

    .ws-home-synthetic-section--inline .ws-home-synthetic-grid {
        padding: 28px 22px;
    }

    .ws-home-synthetic-section {
        padding: 72px 0;
    }

    .ws-home-synthetic-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ws-home-synthetic-copy .ws-section-title {
        text-align: center;
    }

    .ws-home-synthetic-copy .ws-section-label {
        display: block;
        text-align: center;
    }

    .ws-home-synthetic-desc {
        text-align: center;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .ws-home-synthetic-copy .ws-btn {
        display: flex;
        width: fit-content;
        margin: 0 auto;
    }

    .ws-ai-tools-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ws-ai-tool-card {
        padding: 16px;
    }

    .ws-ai-tool-head {
        padding: 14px 12px 12px;
        gap: 10px;
    }

    .ws-ai-tool-name {
        font-size: 1.125rem;
    }

    .ws-ai-tool-info-label,
    .ws-ai-tool-info-value {
        font-size: 0.875rem;
    }

    .ws-ai-tool-card-top {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        min-height: auto;
        padding-top: 0;
    }

    .ws-ai-tools-group {
        padding: 16px 12px;
    }

    .ws-ai-tools-page-hero .ws-ai-tools-chips {
        gap: 8px;
    }

    .ws-ai-tools-chip {
        font-size: 0.875rem;
        padding: 5px 12px;
    }

    .ws-ai-tools-intro {
        padding: 32px 24px 28px;
        margin-bottom: 48px;
    }

    .ws-ai-tools-intro--home {
        padding: 1px;
        margin-bottom: 40px;
    }

    .ws-ai-tools-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 22px 22px;
    }

    .ws-ai-tools-intro-copy {
        text-align: center;
    }

    .ws-ai-tools-intro--home .ws-ai-tools-lead {
        text-align: center;
        max-width: none;
    }

    .ws-ai-tools-intro-chips {
        justify-content: center;
    }

    .ws-ai-tools-intro-visual {
        min-height: 240px;
        max-width: 320px;
        margin: 0 auto;
    }

    .ws-ai-tools-intro-footnote {
        padding: 14px 22px 18px;
        text-align: center;
        justify-content: center;
    }

    .ws-trending-ai-title {
        font-size: 1.25rem;
    }

    .ws-trending-ai-subtitle {
        font-size: 0.9375rem;
    }

    .ws-ai-tools-view-more .ws-btn {
        width: 100%;
        justify-content: center;
    }

    .ws-synthetic-ai-panel,
    .ws-trending-ai-panel {
        padding: 24px 18px;
    }

    .ws-ai-tools-group-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ws-ai-tools-section {
        padding: 60px 0 80px;
    }

    #ai-tools {
        padding-top: 28px;
    }

    .ws-ai-tools-page-hero,
    .ws-tech-category-hero,
    .ws-devtools-hero,
    .ws-category-hero,
    .ws-blog-post-hero,
    .ws-inner-page-hero {
        min-height: auto;
        padding-top: calc(var(--header-content-offset) + 72px);
        padding-bottom: 80px;
        --page-hero-pad-top: calc(var(--header-content-offset) + 72px);
        --page-hero-pad-bottom: 80px;
    }

    .ws-ai-tools-page-intro-card {
        flex-direction: column;
        padding: 28px 22px;
    }

    .ws-ai-tools-page .ws-ai-tools-section {
        padding: 40px 0 48px;
    }

    .ws-ai-tools-page-hero h1,
    .ws-inner-page-hero-content h1 {
        font-size: clamp(1.85rem, 6vw, 2.35rem);
        margin-bottom: 12px;
    }

    .ws-ai-tools-page-lead,
    .ws-inner-page-hero-lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    .ws-ai-tools-page-intro-content .ws-section-title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .ws-ai-tools-page-intro-content p {
        font-size: 0.9375rem;
    }

    .ws-ai-tools-page-guide {
        padding: 22px 18px 20px;
    }

    .ws-ai-tools-page-guide h3 {
        font-size: 1rem;
    }

    .ws-ai-tools-page-guide p {
        font-size: 0.875rem;
    }

    .ws-ai-tools-page-synthetic-header {
        margin-bottom: 20px;
        padding-bottom: 18px;
    }

    .ws-synthetic-ai-lead {
        font-size: 1rem;
        padding: 14px 16px;
    }

    .ws-ai-tools-page-synthetic .ws-synthetic-ai-detail {
        font-size: 0.9375rem;
        padding-left: 12px;
    }

    .ws-ai-tools-page-category-banner {
        padding: 24px 20px;
        margin-bottom: 24px;
    }

    .ws-ai-tools-page-category-banner .ws-section-title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .ws-ai-tools-page-category-banner p {
        font-size: 0.9375rem;
    }

    .ws-ai-tools-page .ws-trending-ai-panel {
        padding: 24px 20px;
        margin-bottom: 24px;
    }

    .ws-ai-tools-page .ws-trending-ai-header {
        margin-bottom: 20px;
        padding-bottom: 14px;
    }

    .ws-ai-tools-group-header {
        margin-bottom: 18px;
        padding-bottom: 14px;
    }

    .ws-ai-tools-group-title {
        font-size: 1.0625rem;
        flex-wrap: wrap;
    }

    .ws-ai-tools-group-desc {
        font-size: 0.875rem;
    }

    .ws-ai-tools-page-footer {
        padding-top: 24px;
        margin-top: 8px;
    }

    .ws-tech-topics-grid,
    .ws-tech-overview-grid,
    .ws-tech-articles-band .ws-article-grid {
        grid-template-columns: 1fr;
    }

    .ws-tech-category-topics {
        padding: 40px 0 48px;
    }

    .ws-tech-category-page .ws-section-header {
        margin-bottom: 28px;
    }

    .ws-tech-category-page .ws-section-title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .ws-tech-category-page .ws-section-desc {
        font-size: 0.9375rem;
    }

    .ws-tech-topic-card {
        padding: 20px 18px;
        gap: 14px;
    }

    .ws-tech-topic-icon {
        width: 46px;
        height: 46px;
    }

    .ws-tech-topic-icon .ws-icon {
        font-size: 1.25rem;
    }

    .ws-tech-topic-body h3 {
        font-size: 1.0625rem;
    }

    .ws-tech-topic-body p {
        font-size: 0.875rem;
        margin-bottom: 12px;
    }

    .ws-tech-overview-intro {
        flex-direction: column;
        padding: 28px 22px;
    }

    .ws-tech-overview-intro-content .ws-section-title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .ws-tech-overview-intro-content p {
        font-size: 0.9375rem;
        line-height: 1.75;
    }

    .ws-tech-overview-card {
        padding: 22px 18px;
    }

    .ws-tech-category-hero h1 {
        font-size: clamp(1.85rem, 6vw, 2.35rem);
        margin-bottom: 12px;
    }

    .ws-tech-category-lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    .ws-tech-articles-header {
        margin-bottom: 28px;
        padding-bottom: 24px;
    }

    .ws-tech-articles-band .ws-article-card-link {
        padding: 22px 20px 22px 24px;
    }

    .ws-tech-articles-band .ws-article-card-content h3 {
        font-size: 1.0625rem;
    }

    .ws-blog-post-content,
    .ws-blog-post-main-footer {
        padding-left: 22px;
        padding-right: 22px;
    }

    .ws-blog-post-content {
        padding-top: 28px;
    }

    .ws-devtools-platform-grid,
    .ws-devtools-insights-grid {
        grid-template-columns: 1fr;
    }

    .ws-devtools-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .ws-devtools-cta-actions {
        width: 100%;
    }

    .ws-devtools-cta-actions .ws-btn {
        flex: 1 1 auto;
        justify-content: center;
    }

    .ws-tech-category-overview {
        padding: 60px 0 60px;
    }

    .ws-tech-category-articles {
        padding: 0 0 48px;
    }

    .ws-tech-articles-band {
        padding: 64px 0 72px;
    }

    .ws-ai-tools-page-synthetic-inner {
        padding: 28px 22px;
    }

    .ws-synthetic-ai-points-grid {
        grid-template-columns: 1fr;
    }

    .ws-ai-tools-page-guides {
        grid-template-columns: 1fr;
    }

    .ws-ai-tools-page-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .ws-ai-tools-page-footer .ws-btn {
        justify-content: center;
    }

    .ws-about-section {
        padding: 48px 0 60px;
    }

    .ws-about-section--home {
        padding: 52px 0 60px;
    }

    .ws-about-section--home .ws-about-content-panel,
    .ws-about-section--home .ws-about-visual-panel {
        padding: 24px 18px;
    }

    .ws-about-home-title {
        font-size: clamp(1.85rem, 7.5vw, 2.35rem);
    }

    .ws-about-section-orb-1 {
        width: 280px;
        height: 280px;
    }

    .ws-about-section-orb-2 {
        width: 220px;
        height: 220px;
    }

    .ws-about-content-panel,
    .ws-about-visual-panel,
    .ws-about-grid > .ws-about-content:not(:has(.ws-about-content-panel)),
    .ws-about-grid > .ws-about-visual:not(:has(.ws-about-visual-panel)) {
        padding: 28px 22px;
    }

    .ws-about-category-grid {
        grid-template-columns: 1fr;
    }

    .ws-about-category-more {
        grid-column: auto;
    }

    .ws-about-visual-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ws-category-card-inner {
        padding: 20px 18px 18px;
    }

    .ws-category-icon {
        width: 64px;
        height: 64px;
    }

    .ws-category-title {
        font-size: 1.25rem;
    }

    .ws-category-link {
        padding: 12px 14px;
        font-size: 0.875rem;
    }

    .ws-stats-panel {
        padding: 12px;
        border-radius: var(--radius-lg);
    }

    .ws-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ws-stats-bar {
        margin-top: -20px;
        padding-bottom: 24px;
    }

    .ws-stat-card {
        padding: 24px 16px 22px;
        min-height: 158px;
    }

    .ws-stat-icon {
        width: 50px;
        height: 50px;
    }

    .ws-stat-icon .ws-icon {
        font-size: 1.35rem;
    }

    .ws-stat-value {
        font-size: 1.25rem;
    }

    .ws-cta-card {
        padding: 40px 28px;
    }

    .ws-cta-network {
        width: min(100%, 300px);
    }

    .ws-cta-node {
        padding: 11px 15px;
        gap: 9px;
        min-height: 46px;
        font-size: 0.78rem;
    }

    .ws-cta-node-center {
        padding: 13px 17px;
        min-height: 50px;
    }

    .ws-cta-node-icon {
        width: 28px;
        height: 28px;
    }

    .ws-cta-node-icon .ws-icon {
        font-size: 0.92rem;
    }

    .ws-cta-node-right,
    .ws-cta-node-left {
        min-width: 112px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .ws-cta-node-top { top: 11%; }
    .ws-cta-node-right { left: 96%; }
    .ws-cta-node-bottom { top: 89%; }
    .ws-cta-node-left { left: 4%; }

    .ws-footer-links a:hover {
        transform: none;
    }

    .ws-category-hero h1 {
        font-size: 2.25rem;
    }

    .ws-content-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container-pad: 12px;
        --header-height: 60px;
        --header-logo-size: 88px;
        --header-logo-padding: 10px;
        --header-logo-ring-offset-outer: 8px;
        --header-logo-ring-offset-mid: 4px;
        --header-logo-ring-width-outer: 3px;
        --header-logo-ring-width-mid: 2px;
        --header-logo-cut-top: -6px;
        --header-logo-top: 8px;
        --header-topbar-height: 30px;
        --header-topbar-content-offset: calc(var(--header-logo-size) + (var(--header-logo-ring-offset-outer) * 2) + 8px);
    }

    .ws-header-topbar-inner {
        gap: 8px;
        padding-left: var(--header-topbar-content-offset);
    }

    .ws-topbar-badge span {
        display: none;
    }

    .ws-topbar-badge {
        padding: 4px 6px;
    }

    .ws-topbar-badge .ws-icon {
        display: inline-flex;
        font-size: 0.7rem;
    }

    .ws-topbar-item {
        font-size: 0.7rem;
        gap: 6px;
    }

    .ws-topbar-tag {
        font-size: 0.58rem;
        padding: 1px 5px;
    }

    .ws-topbar-track-group {
        gap: 20px;
        padding-right: 20px;
    }

    .ws-topbar-ticker::before,
    .ws-topbar-ticker::after {
        width: 20px;
    }

    .ws-footer-grid {
        padding: 16px 0 12px;
    }

    .ws-footer-col {
        padding: 10px 12px;
    }

    .ws-footer-title,
    .ws-footer-explore h4,
    .ws-footer-links h4 {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .ws-footer-links a,
    .ws-footer-trending-col a {
        font-size: 0.75rem;
        padding: 4px 0;
    }

    .ws-footer-trending-grid {
        grid-template-columns: 1fr;
    }

    .ws-footer-copyright,
    .ws-footer-bottom p {
        font-size: 0.75rem;
    }

    .ws-home-hero-actions {
        flex-direction: column;
    }

    .ws-home-hero-actions .ws-btn {
        width: 100%;
        justify-content: center;
    }

    .ws-home-hero {
        padding-top: 120px;
        padding-bottom: 48px;
    }

    .ws-home-hero .ws-home-hero-title {
        font-size: 1.75rem;
    }

    .ws-home-hero-card-header,
    .ws-home-hero-card-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ws-home-hero-preview-item {
        padding: 10px 12px;
    }

    .ws-preview-text {
        font-size: 0.9375rem;
    }

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

    .ws-stat-card {
        min-height: auto;
        padding: 20px 16px;
    }

    .ws-categories-section {
        padding: 56px 0;
    }

    .ws-categories-section-orb-1 {
        width: 240px;
        height: 240px;
    }

    .ws-categories-section-orb-2 {
        width: 200px;
        height: 200px;
    }

    .ws-category-topic-pill {
        font-size: 0.72rem;
        padding: 5px 10px;
    }

    .ws-ai-tools-section {
        padding: 48px 0 64px;
    }

    #ai-tools {
        padding-top: 20px;
    }

    .ws-featured-cta {
        padding: 40px 0 56px;
    }

    .ws-cta-card {
        padding: 28px 20px;
        gap: 24px;
    }

    .ws-cta-content h2 {
        font-size: 1.5rem;
    }

    .ws-home-synthetic-section--inline .ws-home-synthetic-grid {
        padding: 20px 16px;
    }

    .ws-trending-ai-panel,
    .ws-synthetic-ai-panel {
        padding: 20px 14px;
    }

    .ws-ai-tools-page-hero {
        padding-top: calc(var(--header-content-offset) + 48px);
        padding-bottom: 56px;
        --page-hero-pad-top: calc(var(--header-content-offset) + 48px);
        --page-hero-pad-bottom: 56px;
    }

    .ws-ai-tools-page-hero h1,
    .ws-inner-page-hero-content h1 {
        font-size: clamp(1.65rem, 7vw, 2rem);
    }

    .ws-ai-tools-page-lead,
    .ws-inner-page-hero-lead {
        font-size: 0.9375rem;
    }

    .ws-ai-tools-page .ws-ai-tools-section {
        padding: 32px 0 40px;
    }

    .ws-ai-tools-page-intro-card {
        padding: 22px 16px;
        margin-bottom: 22px;
    }

    .ws-ai-tools-page-synthetic-inner {
        padding: 22px 16px;
    }

    .ws-synthetic-ai-point {
        padding: 14px;
        gap: 12px;
    }

    .ws-synthetic-ai-callout {
        padding: 14px 16px;
        gap: 10px;
    }

    .ws-ai-tools-page-category-banner {
        padding: 20px 16px;
    }

    .ws-ai-tools-page .ws-trending-ai-panel {
        padding: 20px 14px;
    }

    .ws-ai-tools-page .ws-trending-ai-title {
        font-size: 1.25rem;
    }

    .ws-ai-tools-page .ws-trending-ai-subtitle {
        font-size: 0.875rem;
    }

    .ws-ai-tools-group {
        padding: 14px 10px;
        margin-bottom: 22px;
    }

    .ws-about-section {
        padding: 40px 0 48px;
    }

    .ws-about-section--home {
        padding: 44px 0 52px;
    }

    .ws-about-section--home .ws-about-content-panel,
    .ws-about-section--home .ws-about-visual-panel {
        padding: 22px 16px;
    }

    .ws-about-content-panel,
    .ws-about-visual-panel {
        padding: 22px 16px;
    }

    .ws-about-section-orb-1 {
        width: 220px;
        height: 220px;
    }

    .ws-about-section-orb-2 {
        width: 180px;
        height: 180px;
    }

    .ws-home-hero-card-float {
        display: none;
    }

    .ws-about-page-hero {
        --about-page-hero-circuit-size: min(92vw, 280px);
        --page-hero-pad-bottom: 40px;
    }

    .ws-about-page-hero-visual {
        margin-bottom: 20px;
    }

    .ws-about-page-title {
        font-size: clamp(1.65rem, 7vw, 2rem);
        letter-spacing: 0.5px;
    }

    .ws-about-page-lead {
        font-size: 1rem;
    }

    .ws-about-page-orbit-core {
        width: 80px;
        height: 80px;
        gap: 6px;
    }

    .ws-about-page-orbit-core .ws-icon {
        font-size: 1.5rem;
    }

    .ws-about-page-orbit-core span {
        font-size: 0.65rem;
    }

    .ws-about-page-orbit-node {
        padding: 5px 7px;
    }

    .ws-about-page-orbit-node em {
        font-size: 0.55rem;
    }

    .ws-about-page-story-header,
    .ws-about-page-vision-mission-header {
        padding: 24px 16px 28px;
        margin-bottom: 32px;
    }

    .ws-about-page-timeline-card {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 12px;
    }

    .ws-about-page-timeline-num {
        width: 36px;
        height: 36px;
        font-size: 0.7rem;
    }

    .ws-about-page-timeline-body {
        padding: 18px 16px;
    }

    .ws-about-page-timeline-body h3 {
        font-size: 1.0625rem;
    }

    .ws-about-page-vm-card {
        padding: 24px 18px;
    }

    .ws-about-page-bento-card {
        padding: 22px 18px;
    }

    .ws-about-page-bento-card--featured {
        padding: 24px 18px;
    }

    .ws-about-page-marquee-pill {
        font-size: 0.875rem;
        padding: 8px 14px;
    }

    .ws-tech-category-hero {
        padding-top: calc(var(--header-content-offset) + 48px);
        padding-bottom: 56px;
        --page-hero-pad-top: calc(var(--header-content-offset) + 48px);
        --page-hero-pad-bottom: 56px;
    }

    .ws-tech-category-hero h1 {
        font-size: clamp(1.65rem, 7vw, 2rem);
    }

    .ws-tech-category-lead {
        font-size: 0.9375rem;
    }

    .ws-tech-category-topics {
        padding: 32px 0 40px;
    }

    .ws-tech-category-overview {
        padding: 40px 0 48px;
    }

    .ws-tech-topic-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 16px;
    }

    .ws-tech-overview-intro {
        padding: 22px 16px;
        margin-bottom: 20px;
    }

    .ws-tech-overview-grid {
        gap: 14px;
    }

    .ws-tech-overview-card h4 {
        font-size: 1rem;
    }

    .ws-tech-overview-card p {
        font-size: 0.875rem;
    }

    .ws-tech-articles-band {
        padding: 48px 0 56px;
    }

    .ws-tech-articles-title {
        font-size: clamp(1.5rem, 7vw, 1.85rem);
    }

    .ws-tech-articles-desc {
        font-size: 0.9375rem;
    }

    .ws-tech-articles-band .ws-article-card-link {
        padding: 18px 16px 18px 20px;
    }

    .ws-tech-articles-band .ws-article-card-content p {
        font-size: 0.875rem;
        -webkit-line-clamp: 4;
    }
}

/* ── Tools Directory ─────────────────────────────────────────────── */

.ws-tools-directory-page {
    --tools-directory-sidebar-width: 320px;
    --tools-directory-sidebar-offset: calc(var(--header-content-offset) + var(--header-logo-ring-offset-outer) + 40px);
    --tools-directory-selections-sticky-top: calc(var(--header-content-offset) + 16px);
}

.ws-tools-directory-hero {
    position: relative;
    overflow: hidden;
}

.ws-tools-directory-hero-glow {
    position: absolute;
    inset: auto -10% -40% 30%;
    height: 280px;
    background: radial-gradient(ellipse at center, rgba(66, 133, 244, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.ws-tools-directory-status {
    position: relative;
    z-index: 2;
    padding: 22px 0 24px;
    background:
        radial-gradient(circle at top right, rgba(66, 133, 244, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.ws-tools-directory-status-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ws-tools-directory-pricing-strip {
    position: relative;
    z-index: 2;
    padding: 28px 0 32px;
    background:
        radial-gradient(circle at 16% 50%, rgba(34, 197, 94, 0.14), transparent 44%),
        radial-gradient(circle at 84% 50%, rgba(139, 92, 246, 0.16), transparent 44%),
        linear-gradient(180deg, #0b1324 0%, #0f172a 52%, #111827 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ws-tools-directory-pricing-strip::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.28), transparent);
    pointer-events: none;
}

.ws-tools-directory-pricing-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 4px;
}

.ws-tools-directory-pricing-toggle {
    display: inline-flex;
    align-items: stretch;
    gap: 8px;
    width: min(100%, 560px);
    padding: 7px;
    border-radius: calc(var(--radius-xl) + 4px);
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow:
        0 14px 36px rgba(2, 6, 23, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

.ws-tools-directory-pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1 1 0;
    min-width: 0;
    padding: 15px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    background: transparent;
    color: #cbd5e1;
    cursor: pointer;
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease;
}

.ws-tools-directory-pricing-btn .ws-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: color 0.22s ease, transform 0.22s ease;
}

.ws-tools-directory-pricing-btn-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #e2e8f0;
    min-width: 0;
    text-align: left;
}

.ws-tools-directory-pricing-btn:hover {
    background: rgba(30, 41, 59, 0.88);
    border-color: rgba(148, 163, 184, 0.24);
    transform: translateY(-1px);
}

.ws-tools-directory-pricing-btn:focus-visible {
    outline: 2px solid rgba(96, 165, 250, 0.55);
    outline-offset: 2px;
}

.ws-tools-directory-pricing-btn--free .ws-icon {
    color: #4ade80;
}

.ws-tools-directory-pricing-btn--paid .ws-icon {
    color: #a78bfa;
}

.ws-tools-directory-pricing-btn--free.is-active {
    background: linear-gradient(180deg, rgba(22, 101, 52, 0.42) 0%, rgba(21, 128, 61, 0.3) 100%);
    border-color: rgba(74, 222, 128, 0.42);
    box-shadow:
        0 10px 24px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ws-tools-directory-pricing-btn--free.is-active .ws-tools-directory-pricing-btn-text {
    color: #bbf7d0;
}

.ws-tools-directory-pricing-btn--paid.is-active {
    background: linear-gradient(180deg, rgba(91, 33, 182, 0.42) 0%, rgba(109, 40, 217, 0.3) 100%);
    border-color: rgba(167, 139, 250, 0.42);
    box-shadow:
        0 10px 24px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ws-tools-directory-pricing-btn--paid.is-active .ws-tools-directory-pricing-btn-text {
    color: #ddd6fe;
}

.ws-tools-directory-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
}

.ws-tools-directory-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px 8px 16px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d4ed8;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(66, 133, 244, 0.2);
    box-shadow:
        0 2px 10px rgba(66, 133, 244, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.ws-tools-directory-active-filter:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(66, 133, 244, 0.35);
    box-shadow:
        0 8px 20px rgba(66, 133, 244, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.ws-tools-directory-active-filter-text {
    line-height: 1.35;
}

.ws-tools-directory-active-filter-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(66, 133, 244, 0.08);
    color: #3b82f6;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ws-tools-directory-active-filter-remove .ws-icon {
    font-size: 0.9375rem;
    line-height: 1;
}

.ws-tools-directory-active-filter-remove:hover {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
    transform: scale(1.06);
}

.ws-tools-directory-active-filter-remove:focus-visible {
    outline: 2px solid rgba(66, 133, 244, 0.45);
    outline-offset: 1px;
}

.ws-tools-directory-selections-strip {
    position: relative;
    z-index: 2;
    padding: 0 0 16px;
    background: transparent;
    border-bottom: none;
}

.ws-tools-directory-selections-strip[hidden] {
    display: none;
}

.ws-tools-directory-selections-strip .ws-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-tools-directory-selections-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ws-tools-directory-selections-panel {
    position: sticky;
    top: var(--tools-directory-selections-sticky-top);
    z-index: 95;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 16px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 16px 20px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.92) 100%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
        0 10px 32px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.ws-tools-directory-selections-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #475569;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.95) 0%, rgba(226, 232, 240, 0.45) 100%);
    border: 1px solid rgba(203, 213, 225, 0.7);
    flex-shrink: 0;
}

.ws-tools-directory-selections-label .ws-icon {
    font-size: 1rem;
    color: var(--blue);
}

.ws-tools-directory-stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 14px 16px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ws-tools-directory-stat-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 30px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.ws-tools-directory-stat-card-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--stat-icon-bg, rgba(66, 133, 244, 0.12));
    color: var(--stat-icon-color, var(--blue));
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.ws-tools-directory-stat-card-icon .ws-icon {
    font-size: 1.25rem;
}

.ws-tools-directory-stat-card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ws-tools-directory-stat-card-value {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--gray-900);
    letter-spacing: 1px;
}

.ws-tools-directory-stat-card-label {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.35;
}

.ws-tools-directory-stat-card--blue {
    --stat-glow: rgba(66, 133, 244, 0.16);
    --stat-icon-bg: rgba(66, 133, 244, 0.12);
    --stat-icon-color: var(--blue);
    border-color: rgba(66, 133, 244, 0.16);
}

.ws-tools-directory-stat-card--violet {
    --stat-glow: rgba(99, 102, 241, 0.16);
    --stat-icon-bg: rgba(99, 102, 241, 0.12);
    --stat-icon-color: #6366f1;
    border-color: rgba(99, 102, 241, 0.16);
}

.ws-tools-directory-stat-card--amber {
    --stat-glow: rgba(245, 158, 11, 0.18);
    --stat-icon-bg: rgba(251, 191, 36, 0.16);
    --stat-icon-color: #b45309;
    border-color: rgba(245, 158, 11, 0.2);
}

.ws-tools-directory-stat-card--purple {
    --stat-glow: rgba(139, 92, 246, 0.16);
    --stat-icon-bg: rgba(139, 92, 246, 0.12);
    --stat-icon-color: #7c3aed;
    border-color: rgba(139, 92, 246, 0.18);
}

.ws-tools-directory-results-strip {
    position: relative;
    z-index: 2;
    padding: 20px 0 16px;
    background:
        radial-gradient(ellipse 90% 120% at 50% -20%, rgba(66, 133, 244, 0.1), transparent 55%),
        radial-gradient(ellipse 70% 80% at 80% 50%, rgba(139, 92, 246, 0.05), transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.ws-tools-directory-results-strip::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.25), transparent);
    pointer-events: none;
}

.ws-tools-directory-results-strip .ws-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.ws-tools-directory-results-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ws-tools-directory-results-panel {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 14px 22px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 8px 28px rgba(15, 23, 42, 0.07),
        0 2px 6px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    overflow: hidden;
}

.ws-tools-directory-results-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.07) 0%, rgba(139, 92, 246, 0.04) 55%, transparent 100%);
    pointer-events: none;
}

.ws-tools-directory-results {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45;
    color: #64748b;
    text-align: center;
}

.ws-tools-directory-results strong {
    color: #0f172a;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.ws-tools-directory-body {
    padding-top: 20px;
    padding-bottom: 56px;
    overflow: visible;
}

.ws-ai-tools-section.ws-tools-directory-body {
    overflow: visible;
}

.ws-tools-list-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 280px;
    padding: 48px 24px;
    text-align: center;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 50% 0%, rgba(66, 133, 244, 0.06), transparent 55%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px dashed rgba(148, 163, 184, 0.45);
}

.ws-tools-list-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: var(--blue);
    background: rgba(66, 133, 244, 0.1);
    border: 1px solid rgba(66, 133, 244, 0.16);
}

.ws-tools-list-empty-icon .ws-icon {
    font-size: 1.5rem;
}

.ws-tools-list-empty-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.01em;
}

.ws-tools-list-empty-text {
    margin: 0;
    max-width: 28rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #64748b;
}

.ws-tools-directory-body:has(.ws-tools-directory-selections-strip:not([hidden])) {
    padding-top: 12px;
}

.ws-tools-directory-layout {
    display: grid;
    grid-template-columns: var(--tools-directory-sidebar-width) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.ws-tools-directory-sidebar-col {
    position: relative;
    align-self: stretch;
    min-width: 0;
}

.ws-tools-directory-sidebar {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    font-size: 1rem;
    user-select: none;
    -webkit-user-select: none;
    max-height: calc(100vh - var(--tools-directory-sidebar-offset) - 32px);
}

.ws-tools-directory-sidebar input,
.ws-tools-directory-sidebar textarea {
    user-select: text;
    -webkit-user-select: text;
}

.ws-tools-directory-sidebar.is-fixed,
.ws-tools-directory-sidebar.is-bottom {
    display: flex;
    flex-direction: column;
}

.ws-tools-directory-sidebar-shell {
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    background:
        radial-gradient(circle at top right, rgba(66, 133, 244, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
    box-shadow:
        0 14px 36px rgba(15, 23, 42, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.ws-tools-directory-sidebar.is-fixed .ws-tools-directory-sidebar-shell,
.ws-tools-directory-sidebar.is-bottom .ws-tools-directory-sidebar-shell {
    height: 100%;
    max-height: 100%;
    overflow: hidden;
}

.ws-tools-directory-sidebar-header {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.72);
}

.ws-tools-directory-sidebar-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #64748b;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ws-tools-directory-sidebar-close .ws-icon {
    font-size: 1.125rem;
}

.ws-tools-directory-sidebar-close:hover {
    color: #0f172a;
    border-color: rgba(148, 163, 184, 0.55);
    background: #fff;
}

.ws-tools-directory-sidebar-close:focus-visible {
    outline: 2px solid rgba(66, 133, 244, 0.45);
    outline-offset: 2px;
}

.ws-tools-directory-filters-backdrop {
    display: none;
}

.ws-tools-directory-sidebar-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: var(--blue);
    background: linear-gradient(145deg, rgba(66, 133, 244, 0.14) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid rgba(66, 133, 244, 0.14);
    flex-shrink: 0;
}

.ws-tools-directory-sidebar-header-icon .ws-icon {
    font-size: 1.25rem;
}

.ws-tools-directory-sidebar-header-text {
    min-width: 0;
}

.ws-tools-directory-sidebar-heading {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
    letter-spacing: 0;
    text-transform: none;
}

.ws-tools-directory-sidebar-subheading {
    margin: 4px 0 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    color: #64748b;
}

.ws-tools-directory-sidebar-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 116, 139, 0.55) rgba(226, 232, 240, 0.45);
    padding: 14px 16px 16px;
}

.ws-tools-directory-sidebar.is-fixed .ws-tools-directory-sidebar-scroll,
.ws-tools-directory-sidebar.is-bottom .ws-tools-directory-sidebar-scroll {
    flex: 1 1 auto;
}

.ws-tools-directory-sidebar-scroll::-webkit-scrollbar {
    width: 10px;
}

.ws-tools-directory-sidebar-scroll::-webkit-scrollbar-track {
    margin: 6px 0;
    background: rgba(226, 232, 240, 0.35);
    border-radius: 999px;
}

.ws-tools-directory-sidebar-scroll::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background: rgba(100, 116, 139, 0.45);
    background-clip: padding-box;
}

.ws-tools-directory-sidebar-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(71, 85, 105, 0.65);
    background-clip: padding-box;
}

.ws-tools-directory-sidebar-section {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.92);
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
        0 4px 16px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    overflow: hidden;
}

.ws-tools-directory-sidebar-section:last-child {
    margin-bottom: 0;
}

.ws-tools-directory-sidebar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sidebar-section-accent, rgba(66, 133, 244, 0.55)) 0%, transparent 100%);
    pointer-events: none;
}

.ws-tools-directory-sidebar-section--search {
    --sidebar-section-accent: #4285f4;
    background:
        linear-gradient(165deg, rgba(66, 133, 244, 0.08) 0%, rgba(255, 255, 255, 0.88) 48%);
    border-color: rgba(66, 133, 244, 0.14);
}

.ws-tools-directory-sidebar-section--tool-name {
    --sidebar-section-accent: #0ea5e9;
    background:
        linear-gradient(165deg, rgba(14, 165, 233, 0.07) 0%, rgba(255, 255, 255, 0.88) 48%);
    border-color: rgba(14, 165, 233, 0.12);
}

.ws-tools-directory-sidebar-section--tool-name .ws-tools-directory-sidebar-section-icon {
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
    border-color: rgba(14, 165, 233, 0.14);
}

.ws-tools-directory-sidebar-section--mode {
    --sidebar-section-accent: #8b5cf6;
    background:
        linear-gradient(165deg, rgba(139, 92, 246, 0.07) 0%, rgba(255, 255, 255, 0.88) 48%);
    border-color: rgba(139, 92, 246, 0.12);
}

.ws-tools-directory-sidebar-section--categories {
    --sidebar-section-accent: #6366f1;
    background:
        linear-gradient(165deg, rgba(99, 102, 241, 0.07) 0%, rgba(255, 255, 255, 0.88) 48%);
    border-color: rgba(99, 102, 241, 0.12);
}

.ws-tools-directory-sidebar-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.ws-tools-directory-sidebar-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    flex-shrink: 0;
    background: rgba(66, 133, 244, 0.1);
    color: var(--blue);
    border: 1px solid rgba(66, 133, 244, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.ws-tools-directory-sidebar-section-icon .ws-icon {
    font-size: 1.0625rem;
}

.ws-tools-directory-sidebar-section--mode .ws-tools-directory-sidebar-section-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    border-color: rgba(139, 92, 246, 0.14);
}

.ws-tools-directory-sidebar-section--categories .ws-tools-directory-sidebar-section-icon {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-color: rgba(99, 102, 241, 0.14);
}

.ws-tools-directory-sidebar-section-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #0f172a;
    letter-spacing: 1px;
    text-transform: none;
}

.ws-tools-directory-sidebar-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px 20px 16px;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.82);
}

.ws-tools-directory-sidebar-footer[hidden] {
    display: none;
}

.ws-tools-directory-sidebar.is-fixed {
    position: fixed;
    z-index: 90;
}

.ws-tools-directory-sidebar.is-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}

.ws-tools-directory-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    min-height: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ws-tools-directory-search:focus-within {
    border-color: rgba(66, 133, 244, 0.45);
    box-shadow:
        0 0 0 4px rgba(66, 133, 244, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.ws-tools-directory-search .ws-icon {
    color: var(--gray-400);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.ws-tools-directory-search-input {
    width: 100%;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 1rem;
    color: var(--gray-900);
    outline: none;
}

.ws-tools-directory-search-input::placeholder {
    color: var(--gray-400);
}

.ws-tools-directory-search-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    border: 0;
}

.ws-tools-directory-search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: text;
}

.ws-tools-directory-search-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0;
}

.ws-tools-directory-keyword-suggestions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.ws-tools-directory-keyword-suggestions-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    flex-shrink: 0;
}

.ws-tools-directory-keyword-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-width: 0;
    flex: 1 1 auto;
}

.ws-tools-directory-keyword-chip {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(66, 133, 244, 0.18);
    background: rgba(255, 255, 255, 0.88);
    color: #334155;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.1;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.ws-tools-directory-keyword-chip:hover,
.ws-tools-directory-keyword-chip:focus-visible {
    border-color: rgba(66, 133, 244, 0.34);
    background: rgba(66, 133, 244, 0.08);
    color: #1d4ed8;
    outline: none;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.1);
}

.ws-tools-directory-keyword-chip.is-active {
    border-color: rgba(66, 133, 244, 0.42);
    background: rgba(66, 133, 244, 0.14);
    color: #1d4ed8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.ws-tools-directory-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ws-tools-directory-filter-group--categories {
    gap: 0;
    padding: 0;
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ws-tools-directory-filter-group--categories .ws-tools-directory-filter-chip {
    gap: 12px;
    min-height: 48px;
    padding: 11px 14px;
    border: 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 0;
    background: transparent;
}

.ws-tools-directory-filter-group--categories .ws-tools-directory-filter-chip:last-child {
    border-bottom: 0;
}

.ws-tools-directory-filter-group--categories .ws-tools-directory-filter-chip span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #334155;
}

.ws-tools-directory-filter-group--categories .ws-tools-directory-filter-chip em {
    min-width: 2.75rem;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: #64748b;
    background: rgba(241, 245, 249, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.85);
    text-align: center;
}

.ws-tools-directory-filter-group--categories .ws-tools-directory-filter-chip:hover {
    background: rgba(66, 133, 244, 0.05);
}

.ws-tools-directory-filter-group--categories .ws-tools-directory-filter-chip.is-active {
    background: linear-gradient(90deg, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0.03) 100%);
    border-bottom-color: rgba(226, 232, 240, 0.92);
    box-shadow: inset 3px 0 0 var(--blue);
}

.ws-tools-directory-filter-group--categories .ws-tools-directory-filter-chip.is-active span {
    color: #1d4ed8;
    font-weight: 600;
}

.ws-tools-directory-filter-group--categories .ws-tools-directory-filter-chip.is-active em {
    color: var(--blue);
    background: rgba(66, 133, 244, 0.1);
    border-color: rgba(66, 133, 244, 0.18);
}

.ws-tools-directory-filter-group--types {
    gap: 0;
    padding: 0;
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ws-tools-directory-filter-group--types .ws-tools-directory-filter-chip {
    gap: 10px;
    min-height: 48px;
    padding: 11px 14px;
    border: 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 0;
    background: transparent;
}

.ws-tools-directory-filter-group--types .ws-tools-directory-filter-chip:last-child {
    border-bottom: 0;
}

.ws-tools-directory-filter-group--types .ws-tools-directory-filter-chip .ws-icon {
    font-size: 1rem;
    color: #64748b;
    flex-shrink: 0;
}

.ws-tools-directory-filter-group--types .ws-tools-directory-filter-chip span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #334155;
}

.ws-tools-directory-filter-group--types .ws-tools-directory-filter-chip em {
    min-width: 2.75rem;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: #64748b;
    background: rgba(241, 245, 249, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.85);
    text-align: center;
}

.ws-tools-directory-filter-group--types .ws-tools-directory-filter-chip:hover {
    background: rgba(66, 133, 244, 0.05);
}

.ws-tools-directory-filter-group--types .ws-tools-directory-filter-chip.is-active {
    background: linear-gradient(90deg, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0.03) 100%);
    border-bottom-color: rgba(226, 232, 240, 0.92);
    box-shadow: inset 3px 0 0 var(--blue);
}

.ws-tools-directory-filter-group--types .ws-tools-directory-filter-chip.is-active span,
.ws-tools-directory-filter-group--types .ws-tools-directory-filter-chip.is-active .ws-icon {
    color: #1d4ed8;
    font-weight: 600;
}

.ws-tools-directory-filter-group--types .ws-tools-directory-filter-chip.is-active em {
    color: var(--blue);
    background: rgba(66, 133, 244, 0.1);
    border-color: rgba(66, 133, 244, 0.18);
}

.ws-tools-directory-filter-option {
    display: block;
    position: relative;
    cursor: pointer;
}

.ws-tools-directory-filter-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ws-tools-directory-filter-option-body {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ws-tools-directory-filter-option-body .ws-icon {
    font-size: 1.25rem;
    color: var(--blue);
    flex-shrink: 0;
}

.ws-tools-directory-filter-option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ws-tools-directory-filter-option-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.ws-tools-directory-filter-option-text em {
    font-size: 1rem;
    font-style: normal;
    color: var(--gray-500);
}

.ws-tools-directory-filter-option:hover .ws-tools-directory-filter-option-body {
    border-color: rgba(66, 133, 244, 0.28);
    background: rgba(66, 133, 244, 0.04);
}

.ws-tools-directory-filter-option.is-active .ws-tools-directory-filter-option-body {
    border-color: rgba(66, 133, 244, 0.45);
    background: rgba(66, 133, 244, 0.08);
    box-shadow: inset 0 0 0 1px rgba(66, 133, 244, 0.08);
}

.ws-tools-directory-filter-option--free.is-active .ws-tools-directory-filter-option-body {
    border-color: rgba(52, 168, 83, 0.4);
    background: rgba(52, 168, 83, 0.08);
}

.ws-tools-directory-filter-option--free .ws-tools-directory-filter-option-body .ws-icon {
    color: var(--green);
}

.ws-tools-directory-filter-option--paid.is-active .ws-tools-directory-filter-option-body {
    border-color: rgba(139, 92, 246, 0.35);
    background: rgba(139, 92, 246, 0.08);
}

.ws-tools-directory-filter-option--paid .ws-tools-directory-filter-option-body .ws-icon {
    color: #8b5cf6;
}

.ws-tools-directory-filter-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ws-tools-directory-filter-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ws-tools-directory-filter-chip .ws-icon {
    font-size: 1rem;
    color: var(--blue);
    flex-shrink: 0;
}

.ws-tools-directory-filter-chip span {
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.35;
}

.ws-tools-directory-filter-chip em {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--gray-400);
    flex-shrink: 0;
}

.ws-tools-directory-filter-chip:hover {
    background: rgba(66, 133, 244, 0.06);
}

.ws-tools-directory-filter-chip.is-active {
    background: rgba(66, 133, 244, 0.1);
    border-color: rgba(66, 133, 244, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ws-tools-directory-filter-chip.is-active span {
    color: var(--blue);
    font-weight: 600;
}

.ws-tools-directory-filter-chip.is-active em {
    color: var(--blue);
}

.ws-tools-directory-clear-filters {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #64748b;
    background: rgba(255, 255, 255, 0.9);
    border: 1px dashed rgba(203, 213, 225, 0.95);
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ws-tools-directory-clear-filters:hover {
    color: var(--blue);
    border-color: rgba(66, 133, 244, 0.35);
    background: rgba(66, 133, 244, 0.04);
}

.ws-tools-directory-main {
    min-width: 0;
}

.ws-tools-directory-toolbar {
    display: none;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.ws-tools-directory-mobile-filters {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
    font: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.ws-tools-directory-list {
    position: relative;
}

.ws-tools-directory-pagination {
    margin-top: 20px;
}

.ws-tools-directory-list.ws-tool-category-list--loading {
    min-height: 220px;
    overflow: hidden;
    isolation: isolate;
}

.ws-tools-directory-list.ws-tool-category-list--loading::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 70;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    animation: ws-tools-directory-overlay-in 0.2s ease forwards;
    pointer-events: none;
}

.ws-tools-directory-list .ws-tools-directory-loader {
    z-index: 80;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
    box-sizing: border-box;
    pointer-events: none;
}

.ws-tools-directory-list .ws-tools-directory-loader[hidden] {
    display: none !important;
}

.ws-tools-directory-list .ws-ai-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ws-tools-directory-list.ws-tool-category-list--loading .ws-tool-category-list-panel {
    min-height: 220px;
}

.ws-tools-directory-list.ws-tool-category-list--loading .ws-tool-category-list-panel > *,
.ws-tools-directory-list.ws-tool-category-list--loading .ws-ai-tool-card {
    pointer-events: none;
    user-select: none;
}

.ws-tools-directory-list.ws-tool-category-list--loading .ws-ai-tool-card {
    transform: none;
    box-shadow: none;
}

.ws-tools-directory-list.ws-tool-category-list--loading .ws-tool-category-list-panel::after {
    display: none;
}

@keyframes ws-tools-directory-overlay-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ws-tools-directory-loader-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: auto;
    max-width: min(100%, 320px);
    padding: 14px 22px 14px 18px;
    border-radius: 999px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.94) 100%);
    border: 1px solid rgba(66, 133, 244, 0.22);
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.14),
        0 4px 14px rgba(66, 133, 244, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(16px);
    animation: ws-tools-directory-loader-in 0.24s ease;
}

.ws-tools-directory-loader-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.ws-tools-directory-loader-spinner {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 3px solid rgba(66, 133, 244, 0.16);
    border-top-color: #4285F4;
    border-right-color: #669DF6;
    box-shadow: 0 0 18px rgba(66, 133, 244, 0.22);
    animation: ws-tool-pagination-spin 0.72s linear infinite;
}

.ws-tools-directory-loader-label {
    position: relative;
    z-index: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: #1d4ed8;
    white-space: nowrap;
}

@keyframes ws-tools-directory-loader-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ws-tools-directory-list.ws-tool-category-list--loading::after {
        animation: none;
        opacity: 1;
    }

    .ws-tools-directory-loader-card {
        animation: none;
    }

    .ws-tools-directory-loader-spinner {
        animation: none;
        border-top-color: rgba(66, 133, 244, 0.45);
        border-right-color: rgba(66, 133, 244, 0.45);
    }
}

.ws-ai-tools-chip--primary {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.14) 0%, rgba(66, 133, 244, 0.06) 100%);
    border-color: rgba(66, 133, 244, 0.28);
    color: var(--blue);
    font-weight: 600;
}

@media (max-width: 1100px) {
    .ws-tools-directory-status-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-tools-directory-layout {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 20px;
    }

    .ws-tools-directory-page {
        --tools-directory-sidebar-width: 280px;
    }
}

@media (max-width: 900px) {
    .ws-tools-directory-status-stats {
        grid-template-columns: 1fr 1fr;
    }

    .ws-tools-directory-pricing-strip {
        padding: 24px 0 28px;
    }

    .ws-tools-directory-pricing-toggle {
        width: 100%;
        gap: 6px;
        padding: 5px;
    }

    .ws-tools-directory-pricing-btn {
        padding: 12px 14px;
    }

    .ws-tools-directory-pricing-btn-text {
        font-size: 0.9375rem;
        text-align: center;
    }

    .ws-tools-directory-list .ws-tools-directory-loader {
        padding: 0 12px;
    }

    .ws-tools-directory-loader-card {
        max-width: 100%;
        padding: 12px 18px 12px 14px;
        gap: 12px;
    }

    .ws-tools-directory-loader-spinner {
        width: 26px;
        height: 26px;
    }

    .ws-tools-directory-loader-label {
        font-size: 0.875rem;
    }

    .ws-tools-directory-results-strip {
        padding: 16px 0;
    }

    .ws-tools-directory-selections-strip {
        padding: 0 0 12px;
    }

    .ws-tools-directory-page {
        --tools-directory-selections-sticky-top: calc(var(--header-content-offset) + 12px);
    }

    .ws-tools-directory-results-panel {
        width: 100%;
        padding: 12px 16px;
        border-radius: var(--radius-lg);
    }

    .ws-tools-directory-results {
        font-size: 0.875rem;
    }

    .ws-tools-directory-selections-panel {
        padding: 14px 16px;
        border-radius: var(--radius-lg);
    }

    .ws-tools-directory-selections-label {
        width: 100%;
        justify-content: center;
    }

    .ws-tools-directory-toolbar {
        display: flex;
    }

    .ws-tools-directory-layout {
        grid-template-columns: 1fr;
    }

    .ws-tools-directory-sidebar-col {
        display: none;
    }

    .ws-tools-directory-sidebar.is-fixed,
    .ws-tools-directory-sidebar.is-bottom {
        position: static;
        top: auto;
        bottom: auto;
        left: auto;
        width: auto !important;
        max-height: none !important;
    }

    .ws-tools-directory-sidebar-col {
        min-height: 0 !important;
    }

    .ws-tools-directory-toolbar {
        flex-wrap: wrap;
    }

    .ws-tools-directory-layout--filters-open .ws-tools-directory-sidebar-col {
        display: flex;
        flex-direction: column;
        position: fixed;
        z-index: 250;
        top: calc(var(--header-content-offset) + 8px);
        left: var(--container-pad);
        right: var(--container-pad);
        bottom: max(12px, env(safe-area-inset-bottom, 0px));
        min-height: 0;
        max-height: none;
    }

    .ws-tools-directory-layout--filters-open .ws-tools-directory-sidebar,
    .ws-tools-directory-layout--filters-open .ws-tools-directory-sidebar-shell {
        flex: 1;
        min-height: 0;
        max-height: 100%;
    }

    .ws-tools-directory-filters-backdrop {
        position: fixed;
        inset: 0;
        z-index: 240;
        border: 0;
        padding: 0;
        margin: 0;
        background: rgba(15, 23, 42, 0.52);
        cursor: pointer;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
    }

    .ws-tools-directory-layout--filters-open .ws-tools-directory-filters-backdrop {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .ws-tools-directory-sidebar-close {
        display: inline-flex;
    }

    body.ws-tools-directory-filters-open {
        overflow: hidden;
    }

    .ws-tools-directory-list .ws-ai-tools-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ws-tools-directory-active-filters {
        justify-content: flex-start;
    }

    .ws-tools-directory-mobile-filters {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }

    .ws-tools-directory-body {
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .ws-tools-directory-page {
        overflow-x: clip;
    }

    .ws-tools-directory-hero {
        min-height: auto;
    }

    .ws-tools-directory-hero-glow {
        height: 180px;
        inset: auto -20% -50% 10%;
    }

    .ws-tools-directory-status {
        padding: 16px 0 18px;
    }

    .ws-tools-directory-stat-card {
        min-height: 68px;
        padding: 12px 14px;
        gap: 12px;
    }

    .ws-tools-directory-stat-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .ws-tools-directory-stat-card-value {
        font-size: 1.125rem;
    }

    .ws-tools-directory-stat-card-label {
        font-size: 0.875rem;
    }

    .ws-tools-directory-pricing-strip {
        padding: 20px 0 24px;
    }

    .ws-tools-directory-body {
        padding-top: 16px;
    }

    .ws-tools-directory-selections-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .ws-tools-directory-toolbar {
        margin-bottom: 16px;
    }

    .ws-tools-directory-list .ws-ai-tools-grid {
        gap: 12px;
    }

    .ws-tools-directory-list .ws-tools-directory-loader {
        padding: 0 8px;
    }

    .ws-tools-list-empty {
        min-height: 220px;
        padding: 36px 16px;
    }
}

@media (max-width: 480px) {
    .ws-tools-directory-status-stats {
        grid-template-columns: 1fr;
    }

    .ws-tools-directory-pricing-toggle {
        flex-direction: column;
        gap: 8px;
    }

    .ws-tools-directory-pricing-btn {
        width: 100%;
        padding: 12px 16px;
    }

    .ws-tools-directory-pricing-btn-text {
        text-align: center;
    }

    .ws-tools-directory-results-strip .ws-container {
        min-height: auto;
    }

    .ws-tools-directory-results-panel {
        width: 100%;
        padding: 10px 12px;
    }

    .ws-tools-directory-results {
        font-size: 0.8125rem;
    }

    .ws-tools-directory-active-filter {
        font-size: 0.8125rem;
        padding: 6px 8px 6px 12px;
    }

    .ws-tools-directory-layout--filters-open .ws-tools-directory-sidebar-col {
        top: calc(var(--header-content-offset) + 4px);
        left: max(12px, var(--container-pad));
        right: max(12px, var(--container-pad));
        bottom: max(8px, env(safe-area-inset-bottom, 0px));
    }

    .ws-tools-directory-sidebar-header {
        padding: 16px 16px 14px;
    }

    .ws-tools-directory-sidebar-section {
        padding: 16px;
    }
}
