/* Global layout styles */
:root {
            color-scheme: dark;
            --bg-primary: #050716;
            --bg-secondary: #0d1029;
            --bg-elevated: rgba(24, 31, 69, 0.75);
            --bg-card: rgba(29, 38, 89, 0.55);
            --bg-glow: radial-gradient(circle at 20% 20%, rgba(66, 90, 255, 0.35), transparent 60%),
                       radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.25), transparent 55%),
                       linear-gradient(135deg, rgba(24, 31, 69, 0.85), rgba(12, 16, 39, 0.95));
            --text-primary: #f8fafc;
            --text-muted: #cbd5f5;
            --text-faint: rgba(203, 213, 245, 0.6);
            --accent: #7c3aed;
            --accent-soft: rgba(124, 58, 237, 0.15);
            --accent-alt: #38bdf8;
            --border-soft: rgba(255, 255, 255, 0.06);
            --border-strong: rgba(124, 58, 237, 0.35);
            --shadow-strong: 0 24px 60px rgba(8, 12, 30, 0.75);
            --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.45);
            --font-primary: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
            --container-width: min(1160px, 92vw);
            --radius-lg: 22px;
            --radius-md: 16px;
            --radius-sm: 12px;
        }

        html[data-theme="light"] {
            color-scheme: light;
        }

        html[data-theme="light"] {
            --bg-primary: #f8fafc;
            --bg-secondary: #f1f5f9;
            --bg-elevated: rgba(255, 255, 255, 0.75);
            --bg-card: rgba(255, 255, 255, 0.9);
            --bg-glow: radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.08), transparent 60%),
                       radial-gradient(circle at 80% 10%, rgba(56, 189, 248, 0.09), transparent 55%),
                       linear-gradient(135deg, rgba(246, 249, 255, 0.95), rgba(232, 238, 255, 0.9));
            --text-primary: #111827;
            --text-muted: #475569;
            --text-faint: rgba(71, 85, 105, 0.75);
            --accent: #7c3aed;
            --accent-soft: rgba(124, 58, 237, 0.1);
            --accent-alt: #2563eb;
            --border-soft: rgba(148, 163, 184, 0.3);
            --border-strong: rgba(124, 58, 237, 0.35);
            --shadow-strong: 0 24px 50px rgba(15, 23, 42, 0.18);
            --shadow-soft: 0 18px 30px rgba(15, 23, 42, 0.16);
        }

        :root { scroll-behavior: smooth; }
        @media (prefers-reduced-motion: reduce) {
            :root { scroll-behavior: auto; }
        }



        html, body {
            margin: 0;
            padding: 0;
            min-height: 100%;
            background-color: var(--bg-primary);
            font-family: var(--font-primary);
            color: var(--text-primary);
            -webkit-font-smoothing: antialiased;
        }

        body {
            position: relative;
            background-image: var(--bg-glow);
            overflow-x: hidden;
        }

        body.theme-light {
            background-color: #f7faff;
        }

        ::selection {
            background: rgba(124, 58, 237, 0.35);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), opacity var(--transition);
        }

        a:hover {
            color: var(--accent-alt);
        }

        .container {
            width: var(--container-width);
            margin: 0 auto;
        }

        button {
            font: inherit;
            border: none;
            cursor: pointer;
            color: inherit;
            background: none;
            transition: all var(--transition);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.85rem 1.5rem;
            border-radius: 999px;
            font-weight: 600;
            letter-spacing: 0.01em;
            background: linear-gradient(135deg, #7c3aed, #38bdf8);
            color: #ffffff;
            box-shadow: var(--shadow-soft);
        }

        .btn svg {
            width: 1rem;
            height: 1rem;
        }

        .btn:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-strong);
            color: #ffffff;
        }

        .btn-outline {
            border: 1px solid var(--border-strong);
            background: rgba(124, 58, 237, 0.1);
        }

        .btn-outline:hover {
            background: rgba(124, 58, 237, 0.2);
            border-color: rgba(124, 58, 237, 0.6);
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 60;
            backdrop-filter: blur(22px);
            background: rgba(5, 7, 22, 0.82);
            border-bottom: 1px solid var(--border-soft);
            box-shadow: 0 12px 40px rgba(5, 9, 22, 0.65);
        }

        body.theme-light .site-header {
            background: rgba(248, 250, 255, 0.9);
            box-shadow: 0 12px 35px rgba(15, 23, 42, 0.14);
        }

        .header-bar {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            padding: 1.1rem 0;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 0.9rem;
            text-decoration: none;
        }

        .logo-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(56, 189, 248, 0.85));
            color: #050716;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.04em;
            box-shadow: 0 14px 24px rgba(56, 189, 248, 0.28);
        }

        body.theme-light .logo-mark {
            box-shadow: 0 14px 28px rgba(124, 58, 237, 0.18);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            line-height: 1.1;
        }

        .logo-title {
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .logo-subtitle {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--text-faint);
        }

        .site-nav {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex: 1 1 auto;
        }

        .site-menu {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .site-nav ul {
            list-style: none;
        }


        .site-menu a {
            position: relative;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            padding: 0.35rem 0;
            transition: color var(--transition), opacity var(--transition);
        }

        .site-menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.35rem;
            width: 100%;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(56, 189, 248, 0.85));
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform var(--transition);
        }

        .site-menu a:hover::after,
        .site-menu a:focus-visible::after {
            transform: scaleX(1);
        }

        .site-menu a:hover {
            color: #ffffff;
        }

        body.theme-light .site-menu a:hover {
            color: var(--accent);
        }

        .menu-item {
            position: relative;
            margin-top: 5px;
        }

        .menu-trigger {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            background: none;
            border: none;
            padding: 0.35rem 0;
            cursor: pointer;
            transition: color var(--transition), opacity var(--transition);
        }

        .menu-trigger:hover,
        .menu-trigger:focus-visible {
            color: #ffffff;
        }

        body.theme-light .menu-trigger:hover,
        body.theme-light .menu-trigger:focus-visible {
            color: var(--accent);
        }

        .menu-trigger-icon {
            position: relative;
            width: 10px;
            height: 10px;
        }

        .menu-trigger-icon::before,
        .menu-trigger-icon::after {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            transition: transform var(--transition);
        }

        .menu-trigger-icon::before {
            top: 3px;
            transform: rotate(45deg);
        }

        .menu-trigger-icon::after {
            bottom: 3px;
            transform: rotate(-45deg);
        }

        .menu-item.is-open .menu-trigger-icon::before {
            transform: rotate(-45deg);
        }

        .menu-item.is-open .menu-trigger-icon::after {
            transform: rotate(45deg);
        }

        .menu-dropdown {
            position: absolute;
            top: calc(100% + 1.2rem);
            left: 50%;
            transform: translateX(-50%);
            display: none;
            flex-direction: column;
            gap: 0.35rem;
            min-width: 220px;
            padding: 1rem 1.2rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(124, 58, 237, 0.25);
            background: rgba(12, 16, 37, 0.92);
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(18px);
            z-index: 55;
        }

        body.theme-light .menu-dropdown {
            background: rgba(255, 255, 255, 0.96);
            border-color: rgba(124, 58, 237, 0.18);
        }

        .menu-item.is-open > .menu-dropdown,
        .menu-item:focus-within > .menu-dropdown {
            display: flex;
        }

        .menu-dropdown a {
            font-size: 0.9rem;
            color: var(--text-muted);
            padding: 0.35rem 0;
        }

        .menu-dropdown a:hover,
        .menu-dropdown a:focus-visible {
            color: #ffffff;
        }

        body.theme-light .menu-dropdown a:hover,
        body.theme-light .menu-dropdown a:focus-visible {
            color: var(--accent);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-left: auto;
        }

        .nav-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid rgba(124, 58, 237, 0.35);
            background: rgba(124, 58, 237, 0.15);
            transition: all var(--transition);
        }

        .nav-toggle:hover {
            border-color: rgba(124, 58, 237, 0.55);
            background: rgba(124, 58, 237, 0.25);
        }

        .nav-toggle-icon {
            position: relative;
            display: inline-block;
            width: 18px;
            height: 2px;
            border-radius: 999px;
            background: var(--text-primary);
            transition: background var(--transition);
        }

        .nav-toggle-icon::before,
        .nav-toggle-icon::after {
            content: "";
            position: absolute;
            left: 0;
            width: 18px;
            height: 2px;
            border-radius: 999px;
            background: var(--text-primary);
            transition: transform var(--transition), opacity var(--transition);
        }

        .nav-toggle-icon::before {
            transform: translateY(-6px);
        }

        .nav-toggle-icon::after {
            transform: translateY(6px);
        }

        .nav-toggle[aria-expanded="true"] .nav-toggle-icon {
            background: transparent;
        }

        .nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
            transform: translateY(0) rotate(45deg);
        }

        .nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
            transform: translateY(0) rotate(-45deg);
        }

        .site {
            position: relative;
        }

        body.theme-light .header-actions .btn-outline {
            border-color: rgba(124, 58, 237, 0.28);
        }

        .hero {
            padding-top: 6.5rem;
        }

        .hero-copy {
            display: grid;
            gap: 1.5rem;
        }

        .hero-copy h1 {
            margin: 0;
            font-size: clamp(2.75rem, 5vw, 3.8rem);
            line-height: 1.05;
            letter-spacing: -0.03em;
        }

        .hero-copy .cta-actions {
            margin-top: 0.5rem;
        }

        .hero-stats {
            display: grid;
            gap: 1.25rem;
            margin-top: 1.5rem;
        }

        .hero-bullets {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 0.85rem;
        }

        .hero-bullets li {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .hero-bullet-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: rgba(56, 189, 248, 0.21);
            box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.18);
            flex-shrink: 0;
        }

        .hero-bullet-icon svg {
            width: 14px;
            height: 14px;
            color: rgba(139, 213, 255, 0.95);
        }

        .card-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border-radius: 16px;
            background: rgba(124, 58, 237, 0.22);
            color: rgba(139, 213, 255, 0.95);
            margin-bottom: 1.25rem;
            box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.28);
        }

        .card-icon svg {
            width: 22px;
            height: 22px;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(124, 58, 237, 0.35);
            background: rgba(124, 58, 237, 0.18);
            color: rgba(190, 208, 255, 0.92);
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 600;
        }

        .content-grid-balanced {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .content-grid-wide {
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        }

        .integration-card ul {
            margin: 1.25rem 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 0.65rem;
            color: var(--text-muted);
        }

        .integration-card li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .integration-card li svg {
            width: 14px;
            height: 14px;
            color: rgba(139, 213, 255, 0.95);
        }

        .insight-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 0.85rem;
        }

        .insight-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .insight-list li::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 999px;
            margin-top: 0.45rem;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(56, 189, 248, 0.75));
            box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
            flex-shrink: 0;
        }

        .page {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        main {
            flex: 1 1 auto;
        }

        footer {
            padding: 3rem 0;
            border-top: 1px solid var(--border-soft);
            background: rgba(5, 7, 22, 0.8);
            backdrop-filter: blur(18px);
        }

        footer .footer-grid {
            display: grid;
            gap: 1.5rem;
            align-items: center;
        }

        footer p {
            margin: 0;
            color: var(--text-faint);
            font-size: 0.95rem;
        }

        footer .footer-links {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
        }

        .section {
            padding: 5.5rem 0;
        }

        .section-compact {
            padding: 4rem 0;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
            background: rgba(56, 189, 248, 0.15);
            color: rgba(56, 189, 248, 0.95);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .section-title {
            margin: 1.5rem 0 1rem;
            font-size: clamp(2.25rem, 4vw, 3.25rem);
            line-height: 1.08;
            letter-spacing: -0.025em;
        }

        .section-lead {
            margin: 0 0 2.5rem;
            max-width: 680px;
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .content-grid {
            display: grid;
            gap: 1.75rem;
        }

        .card {
            position: relative;
            padding: 1.75rem;
            border-radius: var(--radius-lg);
            background: var(--bg-card);
            border: 1px solid rgba(124, 58, 237, 0.12);
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(16px);
        }

        .card h3 {
            margin: 0 0 0.75rem;
            font-size: 1.25rem;
        }

        .card p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.65;
        }

        .badge {
            display: inline-block;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.85rem;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(56, 189, 248, 0.35);
            background: rgba(56, 189, 248, 0.1);
            color: rgba(139, 213, 255, 0.9);
            font-size: 0.85rem;
            font-weight: 600;
            place-items: center;
            text-align: center;
        }

        .metric-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }

        .metric-card {
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(148, 163, 184, 0.18);
            background: rgba(15, 23, 42, 0.35);
                place-items: center;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .metric-card h4 {
            margin: 0;
            font-size: 2.4rem;
            font-weight: 700;
            letter-spacing: -0.035em;
        }

        .metric-card span {
            display: block;
            margin-top: 0.4rem;
            font-size: 0.95rem;
            color: var(--text-faint);
        }

        .timeline {
            position: relative;
            display: grid;
            gap: 1.5rem;
            padding-left: 1.5rem;
        }

        .timeline::before {
            content: "";
            position: absolute;
            inset: 0 0 0 0.5rem;
            border-left: 1px dashed rgba(124, 58, 237, 0.35);
        }

        .timeline-step {
            position: relative;
            padding: 1.5rem;
            border-radius: var(--radius-md);
            background: rgba(17, 24, 39, 0.6);
            border: 1px solid rgba(148, 163, 184, 0.22);
            box-shadow: var(--shadow-soft);
        }

        .timeline-step::before {
            content: attr(data-step);
            position: absolute;
            left: -0.9rem;
            top: 1.65rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.65rem;
            height: 1.65rem;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(56, 189, 248, 0.85));
            color: #050716;
            font-weight: 700;
            font-size: 0.85rem;
            box-shadow: 0 10px 22px rgba(56, 189, 248, 0.27);
        }

        .faq-grid {
            display: grid;
            gap: 1.25rem;
        }

        .faq-card summary {
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-weight: 600;
            font-size: 1.05rem;
        }

        .faq-card summary::-webkit-details-marker {
            display: none;
        }

        .faq-card {
            padding: 1.5rem 1.75rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(148, 163, 184, 0.2);
            background: rgba(15, 23, 42, 0.5);
        }

        .faq-card p {
            margin: 1rem 0 0;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .gradient-border {
            position: relative;
            border-radius: var(--radius-lg);
            padding: 1px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.65), rgba(56, 189, 248, 0.35));
        }

        .gradient-border > .inner {
            border-radius: inherit;
            background: rgba(10, 12, 33, 0.9);
            padding: clamp(2rem, 4vw, 3rem);
        }

        .hero-grid {
            display: grid;
            gap: 3rem;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            align-items: center;
        }

        .hero-visual {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            min-height: 390px;
            background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.28), transparent 60%),
                        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.2), transparent 55%),
                        linear-gradient(145deg, rgba(21, 24, 40, 0.95), rgba(12, 16, 37, 0.95));
            border: 1px solid rgba(148, 163, 184, 0.16);
            box-shadow: var(--shadow-strong);
        }

        .hero-visual::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: linear-gradient(120deg, rgba(124, 58, 237, 0.25) 0%, transparent 45%, rgba(56, 189, 248, 0.2) 100%),
                              url('data:image/svg+xml,%3Csvg width="240" height="240" viewBox="0 0 240 240" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 120C66.274 120 120 173.726 120 240" stroke="rgba(124,58,237,0.2)" stroke-width="0.8"/%3E%3Cpath d="M120 0C120 66.274 173.726 120 240 120" stroke="rgba(56,189,248,0.18)" stroke-width="0.8"/%3E%3Ccircle cx="120" cy="120" r="60" stroke="rgba(255,255,255,0.1)" stroke-width="0.8"/%3E%3C/svg%3E');
            opacity: 0.85;
            mix-blend-mode: screen;
        }

        .hero-visual .overlay-card {
            position: absolute;
            inset: 1.75rem;
            padding: 1.75rem;
            border-radius: var(--radius-md);
            background: rgba(5, 6, 21, 0.5);
            border: 1px solid rgba(56, 189, 248, 0.25);
            backdrop-filter: blur(18px);
            display: grid;
            gap: 1.25rem;
        }

        .hero-visual .overlay-card h4 {
            margin: 0;
            font-size: 1.15rem;
        }

        .hero-visual .overlay-metric {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        .hero-visual .overlay-metric strong {
            font-size: 1.35rem;
            color: #f8fafc;
        }

        .integrations-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        }

        .integrations-grid .card {
            min-height: 180px;
        }

        .testimonial-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .testimonial {
            position: relative;
            padding: 1.75rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(124, 58, 237, 0.2);
            background: rgba(15, 23, 42, 0.55);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .testimonial p {
            margin: 0 0 1.5rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .testimonial .author {
            display: flex;
            gap: 0.9rem;
            align-items: center;
        }

        .author-avatar {
            width: 42px;
            height: 42px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.75), rgba(56, 189, 248, 0.75));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #050716;
        }

        .cta-banner {
            padding: clamp(2rem, 4vw, 3.5rem);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(56, 189, 248, 0.3);
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.95));
            box-shadow: var(--shadow-soft);
            display: grid;
            gap: 1.75rem;
            align-items: center;
        }

        .cta-banner strong {
            font-size: clamp(1.65rem, 3vw, 2.1rem);
        }

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

        .divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.25), transparent);
            margin: 2.5rem 0;
        }

        @media (max-width: 980px) {
            .site-nav {
                position: absolute;
                top: calc(100% + 0.75rem);
                right: 0;
                left: 0;
                display: none;
                padding: 1.5rem;
                border-radius: var(--radius-md);
                border: 1px solid rgba(124, 58, 237, 0.28);
                background: rgba(5, 7, 22, 0.95);
                flex-direction: column;
                gap: 1.5rem;
                box-shadow: var(--shadow-strong);
                z-index: 40;
            }

            body.theme-light .site-nav {
                background: rgba(255, 255, 255, 0.94);
                border-color: rgba(124, 58, 237, 0.18);
            }

            .site-nav.is-open {
                display: flex;
            }

            .site-menu {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.1rem;
            }

            .menu-item {
                width: 100%;
            }

            .menu-trigger {
                width: 100%;
                justify-content: space-between;
            }

            .menu-dropdown {
                position: static;
                transform: none;
                margin-top: 0.75rem;
                width: 100%;
                padding: 0.85rem 1rem;
                background: rgba(8, 11, 32, 0.9);
                border: 1px solid rgba(124, 58, 237, 0.25);
                display: none;
            }

            body.theme-light .menu-dropdown {
                background: rgba(255, 255, 255, 0.96);
            }

            .menu-item.is-open > .menu-dropdown {
                display: flex;
            }

            .header-actions {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                margin-left: 0;
            }

            .header-actions .btn,
            .header-actions .btn-outline {
                width: 100%;
                justify-content: center;
            }

            .nav-toggle {
                display: inline-flex;
            }

            footer .footer-links {
                justify-content: flex-start;
            }

            .hero-visual .overlay-card {
                inset: 1.25rem;
            }
        }

        @media (max-width: 720px) {
            .hero {
                padding-top: 5rem;
            }

            .hero-copy h1 {
                font-size: 2.3rem;
            }

            .hero-bullets li {
                align-items: flex-start;
            }

            .section {
                padding: 4rem 0;
            }

            footer .footer-links {
                flex-wrap: wrap;
            }

            .cta-actions {
                flex-direction: column;
                align-items: stretch;
            }
        }

/* Support page */
.support-hero {
            padding-top: 6rem;
        }

        .support-hero__inner {
            display: grid;
            gap: 1.5rem;
            max-width: 780px;
            margin: 0 auto;
                place-items: center;
        }

        .support-hero__inner p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .support-grid {
            display: grid;
            gap: 1.75rem;
        }

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

        .support-card {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(124, 58, 237, 0.18);
            background: rgba(15, 23, 42, 0.55);
            box-shadow: var(--shadow-soft);
            padding: 2rem;
            display: grid;
            gap: 1.5rem;
        }

        .support-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.22), transparent 55%);
            opacity: 0;
            transition: opacity var(--transition);
            pointer-events: none;
        }

        .support-card:hover::after {
            opacity: 1;
        }

        .support-card h3 {
            margin: 0;
            font-size: 1.35rem;
            color: var(--text-primary);
        }

        .support-card p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .support-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(56, 189, 248, 0.75));
            color: #050716;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .support-icon svg {
            width: 24px;
            height: 24px;
        }

        .btn-support {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            width: fit-content;
            padding: 0.7rem 1.1rem;
            border-radius: 999px;
            border: 1px solid rgba(124, 58, 237, 0.35);
            background: rgba(124, 58, 237, 0.18);
            color: var(--text-primary);
            font-weight: 600;
            letter-spacing: 0.04em;
            transition: all var(--transition);
        }

        .btn-support svg {
            width: 16px;
            height: 16px;
        }

        .btn-support:hover {
            border-color: rgba(124, 58, 237, 0.55);
            background: rgba(124, 58, 237, 0.26);
            transform: translateY(-2px);
        }

        .faq-section {
            margin-top: 5.5rem;
        }

        .faq-grid {
            display: grid;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        @media (min-width: 780px) {
            .faq-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .faq-card {
            border-radius: var(--radius-md);
            border: 1px solid rgba(148, 163, 184, 0.18);
            background: rgba(15, 23, 42, 0.5);
            padding: 1.5rem;
            box-shadow: var(--shadow-soft);
        }

        .faq-card h4 {
            margin-top: 0;
            margin-bottom: 0.75rem;
            font-size: 1.05rem;
        }

        .faq-card p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.65;
        }

/* Support contact page */
.contact-hero {
            padding-top: 6rem;
        }

        .contact-hero__inner {
            display: grid;
            gap: 1.5rem;
            max-width: 760px;
            margin: 0 auto;
                place-items: center;
        }

        .contact-hero__inner p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .contact-wrapper {
            display: grid;
            gap: 2rem;
            max-width: 960px;
            margin: 0 auto;
        }

        .contact-card {
            border-radius: var(--radius-lg);
            border: 1px solid rgba(124, 58, 237, 0.2);
            background: rgba(15, 23, 42, 0.55);
            box-shadow: var(--shadow-soft);
            padding: clamp(1.75rem, 4vw, 2.5rem);
            backdrop-filter: blur(18px);
        }

        .contact-card h2 {
            margin-top: 0;
            margin-bottom: 0.75rem;
            font-size: clamp(1.85rem, 3vw, 2.35rem);
        }

        .contact-card p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .contact-field-group {
            display: grid;
            gap: 1rem;
        }

        @media (min-width: 860px) {
            .contact-field-row {
                display: grid;
                gap: 1.25rem;
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .input-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.01em;
        }

        .input-hint {
            font-size: 0.85rem;
            color: var(--text-faint);
            margin-top: 0.35rem;
        }

        .input-control,
        .input-select,
        .input-textarea,
        .input-file {
            width: 100%;
            border-radius: var(--radius-md);
            border: 1px solid rgba(124, 58, 237, 0.22);
            background: rgba(8, 11, 32, 0.72);
            color: var(--text-primary);
            font: inherit;
            padding: 0.85rem 1rem;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .input-control:focus,
        .input-select:focus,
        .input-textarea:focus,
        .input-file:focus {
            outline: none;
            border-color: rgba(56, 189, 248, 0.55);
            box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
        }

        .input-textarea {
            min-height: 180px;
            resize: vertical;
        }

        .input-file {
            padding: 0.75rem;
            background: rgba(15, 23, 42, 0.85);
        }

        .contact-footer {
            border-top: 1px solid rgba(124, 58, 237, 0.22);
            margin-top: 2rem;
            padding-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        @media (min-width: 720px) {
            .contact-footer {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        .btn-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.65rem;
            padding: 0.85rem 1.75rem;
            border-radius: 999px;
            border: none;
            background: linear-gradient(135deg, #7c3aed, #38bdf8);
            color: #ffffff;
            font-weight: 600;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .btn-submit svg {
            width: 1rem;
            height: 1rem;
        }

        .btn-submit:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-soft);
        }

/* Docs API */
.docs-hero {
            padding-top: 6rem;
        }

        .docs-hero__inner {
            display: grid;
            gap: 1.5rem;
            max-width: 680px;
            margin: 0 auto;
                place-items: center;
        }

        .docs-hero__inner p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .docs-wrapper {
            display: grid;
            gap: 2.5rem;
        }

        .docs-header {
            display: grid;
            gap: 1.5rem;
        }

        .docs-header h1 {
            font-size: clamp(2.25rem, 4vw, 2.9rem);
            margin: 0;
            letter-spacing: -0.02em;
        }

        .docs-intro p {
            margin: 0.75rem 0 0;
            color: var(--text-muted);
        }

        .docs-base-url {
            border-radius: var(--radius-lg);
            border: 1px solid rgba(124, 58, 237, 0.3);
            background: rgba(18, 22, 49, 0.85);
            padding: 1.5rem;
            box-shadow: var(--shadow-soft);
        }

        .docs-base-url strong {
            display: block;
            font-size: 0.9rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(139, 213, 255, 0.9);
        }

        .docs-base-url code {
            display: inline-block;
            margin-top: 0.65rem;
            font-size: 0.95rem;
            background: rgba(12, 16, 37, 0.9);
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
            color: var(--text-primary);
        }

        .docs-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            border-bottom: 1px solid rgba(148, 163, 184, 0.15);
            padding-bottom: 0.75rem;
        }

        .docs-tab {
            padding: 0.65rem 1.3rem;
            border-radius: 999px;
            border: 1px solid transparent;
            background: rgba(124, 58, 237, 0.12);
            color: var(--text-muted);
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-size: 0.8rem;
            transition: all var(--transition);
        }

        .docs-tab.is-active {
            color: #ffffff;
            border-color: rgba(56, 189, 248, 0.4);
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(56, 189, 248, 0.35));
            box-shadow: 0 12px 25px rgba(56, 189, 248, 0.18);
        }

        .docs-panel {
            display: none;
            animation: fadeIn 200ms ease-in;
        }

        .docs-panel.is-active {
            display: block;
        }

        .docs-grid {
            display: grid;
            gap: 1.75rem;
        }

        @media (min-width: 880px) {
            .docs-header {
                grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
                align-items: end;
            }

            .docs-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .docs-card {
            background: rgba(15, 23, 42, 0.55);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(124, 58, 237, 0.18);
            box-shadow: var(--shadow-soft);
            padding: 1.5rem;
        }

        .docs-card h3,
        .docs-card h4 {
            margin-top: 0;
            margin-bottom: 0.85rem;
        }

        .docs-card p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .code-block {
            margin-top: 1.25rem;
            background: rgba(2, 6, 23, 0.9);
            color: rgba(203, 213, 245, 0.95);
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            font-size: 0.9rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(56, 189, 248, 0.18);
            padding: 1.25rem;
            overflow-x: auto;
            line-height: 1.65;
        }

        .docs-errors {
            background: rgba(124, 58, 237, 0.1);
            border-color: rgba(236, 72, 153, 0.35);
        }

        .docs-pricing {
            display: grid;
            gap: 1.25rem;
        }

        .docs-steps {
            display: grid;
            gap: 1.5rem;
        }

        .docs-steps .docs-step-number {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(56, 189, 248, 0.75));
            color: #050716;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/* Docs Text-to-Image */
.image-docs-hero {
            padding-top: 6rem;
        }

        .image-docs-hero__inner {
            display: grid;
            gap: 1.5rem;
            max-width: 680px;
            margin: 0 auto;
                place-items: center;
        }

        .image-docs-hero__inner p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .image-docs-wrapper {
            display: grid;
            gap: 2.5rem;
        }

        .image-docs-header {
            display: grid;
            gap: 1.5rem;
        }

        .image-docs-header h1 {
            font-size: clamp(2.25rem, 4vw, 2.9rem);
            margin: 0;
            letter-spacing: -0.02em;
        }

        .image-docs-header p {
            margin: 0.75rem 0 0;
            color: var(--text-muted);
        }

        .docs-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.8rem;
            border-radius: 999px;
            border: 1px solid rgba(56, 189, 248, 0.35);
            background: rgba(56, 189, 248, 0.18);
            color: rgba(190, 220, 255, 0.9);
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .image-docs-base-url {
            border-radius: var(--radius-lg);
            border: 1px solid rgba(236, 72, 153, 0.25);
            background: rgba(24, 18, 49, 0.89);
            padding: 1.5rem;
            box-shadow: var(--shadow-soft);
        }

        .image-docs-base-url strong {
            display: block;
            font-size: 0.9rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(236, 72, 153, 0.65);
        }

        .image-docs-base-url code {
            display: inline-block;
            margin-top: 0.65rem;
            font-size: 0.95rem;
            background: rgba(8, 11, 32, 0.92);
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
            color: var(--text-primary);
        }

        .image-docs-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            border-bottom: 1px solid rgba(148, 163, 184, 0.15);
            padding-bottom: 0.75rem;
        }

        .image-docs-tab {
            padding: 0.65rem 1.3rem;
            border-radius: 999px;
            border: 1px solid transparent;
            background: rgba(124, 58, 237, 0.12);
            color: var(--text-muted);
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-size: 0.8rem;
            transition: all var(--transition);
        }

        .image-docs-tab.is-active {
            color: #ffffff;
            border-color: rgba(236, 72, 153, 0.45);
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.35), rgba(56, 189, 248, 0.35));
            box-shadow: 0 12px 25px rgba(236, 72, 153, 0.2);
        }

        .image-docs-panel {
            display: none;
            animation: fadeIn 200ms ease-in;
        }

        .image-docs-panel.is-active {
            display: block;
        }

        .image-docs-grid {
            display: grid;
            gap: 1.75rem;
        }

        @media (min-width: 880px) {
            .image-docs-header {
                grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
                align-items: end;
            }

            .image-docs-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .image-docs-card {
            background: rgba(15, 23, 42, 0.55);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(236, 72, 153, 0.18);
            box-shadow: var(--shadow-soft);
            padding: 1.5rem;
        }

        .image-docs-card h3,
        .image-docs-card h4 {
            margin-top: 0;
            margin-bottom: 0.85rem;
        }

        .image-docs-card p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .image-docs-table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid rgba(148, 163, 184, 0.2);
            border-radius: var(--radius-lg);
            overflow: hidden;
            color: var(--text-muted);
        }

        .image-docs-table thead {
            background: rgba(14, 18, 36, 0.95);
        }

        .image-docs-table th,
        .image-docs-table td {
            padding: 0.9rem 1rem;
            border-bottom: 1px solid rgba(148, 163, 184, 0.12);
        }

        .image-docs-table tbody tr:last-child td {
            border-bottom: none;
        }

        .image-docs-table th {
            color: var(--text-primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 0.78rem;
        }

        .image-docs-errors {
            background: rgba(236, 72, 153, 0.1);
            border-color: rgba(236, 72, 153, 0.35);
        }

        .image-docs-code {
            margin-top: 1.25rem;
            background: rgba(2, 6, 23, 0.9);
            color: rgba(203, 213, 245, 0.95);
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            font-size: 0.9rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(236, 72, 153, 0.18);
            padding: 1.25rem;
            overflow-x: auto;
            line-height: 1.65;
        }

        .image-docs-steps {
            display: grid;
            gap: 1.5rem;
        }

        .image-docs-steps .step-number {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.85), rgba(56, 189, 248, 0.75));
            color: #050716;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/* Docs Translate */
.translate-hero {
            padding-top: 6rem;
        }

        .translate-hero__inner {
            display: grid;
            gap: 1.5rem;
            max-width: 680px;
            margin: 0 auto;
                place-items: center;
        }

        .translate-hero__inner p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .translate-wrapper {
            display: grid;
            gap: 2.5rem;
        }

        .translate-header {
            display: grid;
            gap: 1.5rem;
        }

        .translate-header h1 {
            font-size: clamp(2.25rem, 4vw, 2.9rem);
            margin: 0;
            letter-spacing: -0.02em;
        }

        .translate-header p {
            margin: 0.75rem 0 0;
            color: var(--text-muted);
        }

        .translate-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.8rem;
            border-radius: 999px;
            border: 1px solid rgba(56, 189, 248, 0.35);
            background: rgba(56, 189, 248, 0.18);
            color: rgba(190, 220, 255, 0.9);
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .translate-base-url {
            border-radius: var(--radius-lg);
            border: 1px solid rgba(124, 58, 237, 0.3);
            background: rgba(18, 22, 49, 0.85);
            padding: 1.5rem;
            box-shadow: var(--shadow-soft);
        }

        .translate-base-url strong {
            display: block;
            font-size: 0.9rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(139, 213, 255, 0.9);
        }

        .translate-base-url code {
            display: inline-block;
            margin-top: 0.65rem;
            font-size: 0.95rem;
            background: rgba(12, 16, 37, 0.9);
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
            color: var(--text-primary);
        }

        .translate-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            border-bottom: 1px solid rgba(148, 163, 184, 0.15);
            padding-bottom: 0.75rem;
        }

        .translate-tab {
            padding: 0.65rem 1.3rem;
            border-radius: 999px;
            border: 1px solid transparent;
            background: rgba(124, 58, 237, 0.12);
            color: var(--text-muted);
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-size: 0.8rem;
            transition: all var(--transition);
        }

        .translate-tab.is-active {
            color: #ffffff;
            border-color: rgba(56, 189, 248, 0.4);
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(56, 189, 248, 0.35));
            box-shadow: 0 12px 25px rgba(56, 189, 248, 0.18);
        }

        .translate-panel {
            display: none;
            animation: fadeIn 200ms ease-in;
        }

        .translate-panel.is-active {
            display: block;
        }

        .translate-grid {
            display: grid;
            gap: 1.75rem;
        }

        @media (min-width: 880px) {
            .translate-header {
                grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
                align-items: end;
            }

            .translate-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .translate-card {
            background: rgba(15, 23, 42, 0.55);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(124, 58, 237, 0.18);
            box-shadow: var(--shadow-soft);
            padding: 1.5rem;
        }

        .translate-card h3,
        .translate-card h4 {
            margin-top: 0;
            margin-bottom: 0.85rem;
        }

        .translate-card p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .translate-code {
            margin-top: 1.25rem;
            background: rgba(2, 6, 23, 0.9);
            color: rgba(203, 213, 245, 0.95);
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            font-size: 0.9rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(56, 189, 248, 0.2);
            padding: 1.25rem;
            overflow-x: auto;
            line-height: 1.65;
        }

        .translate-list {
            display: grid;
            gap: 0.75rem;
        }

        .translate-languages {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .translate-language-pill {
            padding: 0.55rem 1rem;
            border-radius: 999px;
            border: 1px solid rgba(124, 58, 237, 0.35);
            background: rgba(124, 58, 237, 0.18);
            color: rgba(190, 213, 255, 0.9);
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .translate-errors {
            background: rgba(124, 58, 237, 0.1);
            border-color: rgba(236, 72, 153, 0.35);
        }

        .translate-steps {
            display: grid;
            gap: 1.5rem;
        }

        .translate-steps .step-number {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(56, 189, 248, 0.75));
            color: #050716;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/* Docs n8n Chat Model */
.n8n-hero {
            padding-top: 6rem;
        }

        .n8n-hero__inner {
            display: grid;
            gap: 1.5rem;
            max-width: 680px;
            margin: 0 auto;
                place-items: center;
        }

        .n8n-hero__inner p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .n8n-wrapper {
            display: grid;
            gap: 2.5rem;
        }

        .n8n-header {
            display: grid;
            gap: 1.5rem;
        }

        .n8n-header h1 {
            font-size: clamp(2.25rem, 4vw, 2.9rem);
            margin: 0;
            letter-spacing: -0.02em;
        }

        .n8n-header p {
            margin: 0.75rem 0 0;
            color: var(--text-muted);
        }

        .n8n-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.8rem;
            border-radius: 999px;
            border: 1px solid rgba(56, 189, 248, 0.35);
            background: rgba(56, 189, 248, 0.18);
            color: rgba(190, 220, 255, 0.9);
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .n8n-highlight {
            border-radius: var(--radius-lg);
            border: 1px solid rgba(124, 58, 237, 0.35);
            background: rgba(18, 22, 49, 0.85);
            padding: clamp(1.35rem, 4vw, 1.75rem);
            box-shadow: var(--shadow-soft);
        }

        .n8n-highlight strong {
            font-size: 0.9rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(139, 213, 255, 0.9);
        }

        .n8n-highlight code {
            display: inline-block;
            margin-top: 0.7rem;
            font-size: 0.95rem;
            background: rgba(12, 16, 37, 0.9);
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
            color: var(--text-primary);
        }

        .n8n-grid {
            display: grid;
            gap: 1.75rem;
        }

        @media (min-width: 880px) {
            .n8n-header {
                grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
                align-items: end;
            }

            .n8n-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .n8n-card {
            background: rgba(15, 23, 42, 0.55);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(124, 58, 237, 0.18);
            box-shadow: var(--shadow-soft);
            padding: 1.5rem;
        }

        .n8n-card h3 {
            margin-top: 0;
            margin-bottom: 0.85rem;
        }

        .n8n-card p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .n8n-step-list {
            display: grid;
            gap: 1.25rem;
            margin: 1.5rem 0 0;
            counter-reset: step;
        }

        .n8n-step {
            position: relative;
            padding-left: 3.25rem;
        }

        .n8n-step::before {
            counter-increment: step;
            content: counter(step, decimal-leading-zero);
            position: absolute;
            left: 0;
            top: 0.15rem;
            width: 2.4rem;
            height: 2.4rem;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(56, 189, 248, 0.75));
            color: #050716;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 0.05em;
        }

        .n8n-step strong {
            display: block;
            color: var(--text-primary);
            margin-bottom: 0.35rem;
        }

        .n8n-tip {
            margin-top: 1.5rem;
            padding: 1rem 1.2rem;
            border-radius: var(--radius-md);
            border: 1px dashed rgba(56, 189, 248, 0.45);
            background: rgba(15, 23, 42, 0.45);
            color: var(--text-muted);
        }

        .n8n-note-list {
            display: grid;
            gap: 0.75rem;
            margin-top: 1.2rem;
        }

        .n8n-note-list li {
            display: flex;
            gap: 0.65rem;
            align-items: flex-start;
            color: var(--text-muted);
        }

        .n8n-note-list li::before {
            content: "";
            color: rgba(236, 72, 153, 0.75);
            font-size: 1.2rem;
            line-height: 1;
        }

        .n8n-design-section .n8n-card {
            border-color: rgba(56, 189, 248, 0.25);
        }


/* Onboarding steps section */
.onboarding-steps {
    background: rgba(10, 12, 33, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(2rem, 5vw, 3rem);
    margin-top: 4rem;
}

.onboarding-steps__grid {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 900px) {
    .onboarding-steps__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.onboarding-card {
    position: relative;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.15);
    background: rgba(15, 23, 42, 0.6);
    display: grid;
    gap: 1.1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform var(--transition), box-shadow var(--transition);
}

.onboarding-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(56, 189, 248, 0.18);
}

.onboarding-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(56, 189, 248, 0.75));
    color: #050716;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 22px rgba(56, 189, 248, 0.22);
}

.onboarding-card h3 {
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.onboarding-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.onboarding-card__icons {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
}

.onboarding-card__icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.18);
    border: 1px solid rgba(124, 58, 237, 0.28);
    color: rgba(190, 208, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.onboarding-card__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: rgba(190, 208, 255, 0.9);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.onboarding-card__pill svg {
    width: 0.95rem;
    height: 0.95rem;
}

.onboarding-card__detail {
    display: grid;
    gap: 0.45rem;
}

.onboarding-card__detail span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(203, 213, 245, 0.85);
}

.onboarding-card__detail span strong {
    font-weight: 600;
    color: #f8fafc;
}

.onboarding-card__link {
    color: rgba(139, 213, 255, 0.9);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.onboarding-card__key {
    display: grid;
    gap: 0.5rem;
}

.onboarding-card__key code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-sm);
    background: rgba(8, 11, 32, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.22);
    color: rgba(190, 213, 245, 0.95);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.85rem;
}

.onboarding-card__key .masked {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-sm);
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.28);
    color: rgba(190, 213, 245, 0.95);
    letter-spacing: 0.3em;
}

.onboarding-icon svg {
    width: 1rem;
    height: 1rem;
}

/* Models directory */
.models-page {
    background: rgba(5, 7, 22, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(2.5rem, 5vw, 3.5rem);
}

.models-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 900px) {
    .models-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.models-header__meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--text-muted);
}

.models-link {
    color: rgba(139, 213, 255, 0.95);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    font-weight: 600;
}

.models-filters {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 780px) {
    .models-filters {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.models-search {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    background: rgba(8, 11, 32, 0.75);
    color: var(--text-muted);
    min-width: clamp(280px, 40vw, 420px);
}

.models-search svg {
    width: 1rem;
    height: 1rem;
}

.models-search input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    width: 100%;
}

.models-search input::placeholder {
    color: rgba(148, 163, 184, 0.6);
}

.models-filters__actions {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.models-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    background: rgba(124, 58, 237, 0.15);
    color: var(--text-primary);
}

.models-filter-pill svg {
    width: 0.85rem;
    height: 0.85rem;
}

.models-view-toggle {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(8, 11, 32, 0.8);
}

.models-view-toggle button {
    padding: 0.55rem 0.85rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
}

.models-view-toggle button svg {
    width: 0.95rem;
    height: 0.95rem;
}

.models-view-toggle button.is-active {
    background: rgba(124, 58, 237, 0.2);
    color: var(--text-primary);
    border-radius: 999px;
}

.models-list {
    margin-top: 2.5rem;
    display: grid;
    gap: 2rem;
}

.model-card {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.15);
    background: rgba(15, 23, 42, 0.55);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 720px) {
    .model-card {
        flex-direction: column;
    }
}

.model-card__body {
    display: grid;
    gap: 0.9rem;
}

.model-card__heading {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.model-card__heading a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.model-card__heading a:hover {
    color: rgba(139, 213, 255, 0.95);
}

.model-card__copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    background: rgba(124, 58, 237, 0.1);
    color: rgba(190, 208, 255, 0.9);
}

.model-card__copy svg {
    width: 0.9rem;
    height: 0.9rem;
}

.model-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(190, 208, 255, 0.75);
}

.model-card__meta a {
    color: rgba(139, 213, 255, 0.95);
}

.model-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.model-card__stats {
    display: grid;
    gap: 0.45rem;
    text-align: right;
    color: rgba(190, 208, 255, 0.75);
}

@media (max-width: 720px) {
    .model-card__stats {
        text-align: left;
    }
}

.model-card__tokens {
    font-weight: 600;
    color: var(--text-primary);
}

.model-card__price {
    font-size: 0.9rem;
}
/* About page */
.about-page {
    background: rgba(5, 7, 22, 0.62);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(2.5rem, 6vw, 3.75rem);
}

.about-page .section-lead {
    max-width: 680px;
}

.about-metrics {
    margin-top: 2.5rem;
    display: grid;
    gap: 1rem;
}

@media (min-width: 780px) {
    .about-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.about-metric {
    display: grid;
    gap: 0.3rem;
    padding: 1.4rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.18);
    background: rgba(12, 16, 37, 0.82);
        place-items: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-metric strong {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.about-metric span {
    color: rgba(190, 208, 255, 0.75);
    font-size: 0.95rem;
}

.about-featured {
    margin-top: 3rem;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 64px 1fr;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(15, 23, 42, 0.6);
}

@media (max-width: 600px) {
    .about-featured {
        grid-template-columns: 1fr;
    }
}

.about-featured__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: rgba(190, 208, 255, 0.9);
    font-weight: 700;
    font-size: 1rem;
}

.about-featured h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.about-featured p {
    margin: 0.5rem 0 1rem;
    color: var(--text-muted);
}

.about-link {
    color: rgba(139, 213, 255, 0.95);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.about-investors {
    margin-top: 3.5rem;
        place-items: center;
}

.about-investors__grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 720px) {
    .about-investors__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.about-investor-card {
    display: grid;
    gap: 0.9rem;
    justify-items: center;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.18);
    background: rgba(12, 16, 37, 0.8);
}

.about-investor-card__mark {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(56, 189, 248, 0.35));
    color: #050716;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-investor-card span {
    color: var(--text-primary);
    font-weight: 600;
}

.about-cta {
    margin-top: 3.5rem;
        place-items: center;
    display: grid;
    gap: 1rem;
}

.about-cta__actions {
    display: inline-flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* Rankings page */
.rankings-page {
    background: rgba(5, 7, 22, 0.65);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(2.5rem, 6vw, 3.75rem);
}

.rankings-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 900px) {
    .rankings-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.rankings-period {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    background: rgba(8, 11, 32, 0.8);
    color: rgba(190, 208, 255, 0.9);
}

.rankings-period svg {
    width: 0.9rem;
    height: 0.9rem;
}

.rankings-chart {
    margin-top: 2.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.18);
    background: rgba(12, 16, 37, 0.78);
}

.rankings-summary {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

@media (min-width: 720px) {
    .rankings-summary {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.rankings-summary__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.16);
    background: rgba(15, 23, 42, 0.55);
}

.rankings-summary__item strong {
    font-size: 1.45rem;
    color: var(--text-primary);
}

.rankings-list {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
}

.ranking-card {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.16);
    background: rgba(12, 16, 37, 0.72);
}

@media (max-width: 720px) {
    .ranking-card {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .ranking-card__stats {
        justify-self: flex-start;
    }
}

.ranking-card__rank {
    font-weight: 700;
    color: rgba(190, 208, 255, 0.8);
}

.ranking-card__body {
    display: grid;
    gap: 0.45rem;
}

.ranking-card__body h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.ranking-card__body p {
    margin: 0;
    color: rgba(139, 213, 255, 0.95);
    font-size: 0.85rem;
}

.ranking-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(190, 208, 255, 0.65);
}

.ranking-card__stats {
    text-align: right;
    display: grid;
    gap: 0.3rem;
}

.ranking-card__tokens {
    font-weight: 600;
    color: var(--text-primary);
}

.ranking-card__growth {
    font-size: 0.9rem;
}

.ranking-card__growth.is-up {
    color: rgba(56, 189, 248, 0.9);
}

.ranking-card__growth.is-down {
    color: rgba(236, 72, 153, 0.85);
}

.ranking-card__cost {
    font-size: 0.85rem;
    color: rgba(190, 208, 255, 0.7);
}

.rankings-chart.chart-empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-empty__message {
    color: rgba(190, 208, 255, 0.75);
    font-size: 0.95rem;
}

/* Feature grid */
.feature-grid {
    background: rgba(5, 7, 22, 0.65);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(2.5rem, 6vw, 4rem);
}

.feature-grid__cards {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 840px) {
    .feature-grid__cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.feature-card {
    display: grid;
    grid-template-rows: 180px 1fr;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.18);
    overflow: hidden;
    background: rgba(12, 16, 37, 0.75);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.feature-card__visual {
    position: relative;
    background: rgba(15, 23, 42, 0.85);
}

.feature-card__visual--models {
    background: radial-gradient(circle at 20% 30%, rgba(56,189,248,0.25), transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(124,58,237,0.25), transparent 55%),
                linear-gradient(135deg, rgba(12,16,37,0.9), rgba(8,11,32,0.95));
}

.feature-card__visual--availability {
    background: radial-gradient(circle at 50% 30%, rgba(34,197,94,0.35), transparent 60%),
                linear-gradient(135deg, rgba(12,16,37,0.9), rgba(8,11,32,0.95));
}

.feature-card__visual--performance {
    background: radial-gradient(circle at 50% 40%, rgba(155,135,245,0.35), transparent 55%),
                linear-gradient(135deg, rgba(12,16,37,0.9), rgba(8,11,32,0.95));
}

.feature-card__visual--policy {
    background: radial-gradient(circle at 50% 50%, rgba(45,212,191,0.3), transparent 60%),
                linear-gradient(135deg, rgba(12,16,37,0.9), rgba(8,11,32,0.95));
}

.feature-card__body {
    display: grid;
    gap: 0.75rem;
    padding: 1.75rem;
}

.feature-card__body h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.feature-card__body p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.feature-card__link {
    color: rgba(139, 213, 255, 0.95);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Model detail */
.model-detail {
    background: rgba(5, 7, 22, 0.68);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(2.5rem, 6vw, 4rem);
}

.model-detail__header {
    display: grid;
    gap: 1rem;
}

.model-detail__meta {
    margin-top: 2.5rem;
    display: grid;
    gap: 1rem;
}

@media (min-width: 900px) {
    .model-detail__meta {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.model-detail__card {
    display: grid;
    gap: 0.35rem;
    padding: 1.35rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.18);
    background: rgba(12, 16, 37, 0.75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.model-detail__card .label {
    color: rgba(190, 208, 255, 0.68);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.model-detail__card code {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius-sm);
    background: rgba(8, 11, 32, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.22);
    color: rgba(139, 213, 255, 0.95);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.85rem;
}

.model-detail__status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.model-detail__status.is-active {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: rgba(110, 231, 183, 0.95);
}
.model-detail__status.is-inactive {
    background: rgba(255, 0, 0, 0.18);
    border: 1px solid rgba(255, 0, 0, 0.35);
    color: rgba(255, 0, 0, 0.95);
}


.model-detail__grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .model-detail__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.model-detail__panel {
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.16);
    background: rgba(15, 23, 42, 0.6);
    display: grid;
    gap: 1.1rem;
}

.model-detail__panel h2 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.model-detail__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.model-detail__list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(190, 208, 255, 0.75);
    font-size: 0.95rem;
}

.model-detail__list li strong {
    color: var(--text-primary);
}

.model-detail__description {
    margin-top: 2.75rem;
    display: grid;
    gap: 0.85rem;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.16);
    background: rgba(12, 16, 37, 0.72);
}

.model-detail__description h2 {
    margin: 0;
}

.model-detail__description p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.model-detail__actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Policy page */
.policy-page {
    background: rgba(5, 7, 22, 0.65);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(2.5rem, 6vw, 4rem);
}

.policy-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 840px) {
    .policy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.policy-card {
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.18);
    background: rgba(15, 23, 42, 0.6);
    display: grid;
    gap: 0.8rem;
}

.policy-card h2 {
    margin: 0;
    font-size: 1.15rem;
}

.policy-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.policy-footer {
    margin-top: 2.5rem;
    color: rgba(190, 208, 255, 0.75);
}

.policy-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Docs landing */
.docs-landing {
    background: rgba(5, 7, 22, 0.65);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(2.5rem, 6vw, 4rem);
}

.docs-landing__layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 960px) {
    .docs-landing__layout {
        grid-template-columns: 260px 1fr;
    }
}

.docs-landing__sidebar {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(12, 16, 37, 0.75);
}

.docs-landing__sidebar-title {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.docs-landing__nav {
    display: grid;
    gap: 0.6rem;
}

.docs-landing__nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
    background: rgba(8, 11, 32, 0.8);
    border: 1px solid transparent;
    color: rgba(190, 208, 255, 0.85);
    transition: all var(--transition);
}

.docs-landing__nav a:hover {
    border-color: rgba(124, 58, 237, 0.35);
    color: rgba(139, 213, 255, 0.95);
}

.docs-landing__content {
    display: grid;
    gap: 1.5rem;
}

.docs-landing__cards {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 960px) {
    .docs-landing__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.docs-landing__card {
    padding: 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.18);
    background: rgba(15, 23, 42, 0.6);
    display: grid;
    gap: 0.9rem;
}

.docs-landing__card h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.docs-landing__card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.docs-landing__link {
    color: rgba(139, 213, 255, 0.95);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
/* Articles page */
.articles-page {
    background: rgba(5, 7, 22, 0.66);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(2.5rem, 6vw, 4rem);
}

.articles-page__layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 960px) {
    .articles-page__layout {
        grid-template-columns: 260px 1fr;
    }
}

.articles-sidebar {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 1.5rem;
    padding: 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(12, 16, 37, 0.75);
}

.articles-sidebar__title {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.articles-sidebar__group h3 {
    margin: 0 0 0.7rem;
    font-size: 0.95rem;
    color: rgba(190, 208, 255, 0.75);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.articles-sidebar__group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.articles-sidebar__group a {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.6rem;
    border-radius: var(--radius-sm);
    background: rgba(8, 11, 32, 0.8);
    border: 1px solid transparent;
    color: rgba(190, 208, 255, 0.85);
    transition: all var(--transition);
}

.articles-sidebar__group a:hover,
.articles-sidebar__group a.is-active {
    border-color: rgba(124, 58, 237, 0.35);
    color: rgba(139, 213, 255, 0.95);
}

.articles-list {
    display: grid;
    gap: 2rem;
}

.articles-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 960px) {
    .articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.article-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.18);
    background: rgba(15, 23, 42, 0.6);
    overflow: hidden;
    display: grid;
    grid-template-rows: 160px 1fr;
}

.article-card__thumb {
    background: radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.28), transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(124, 58, 237, 0.25), transparent 55%),
                linear-gradient(135deg, rgba(12, 16, 37, 0.92), rgba(8, 11, 32, 0.96));
}

.article-card__body {
    display: grid;
    gap: 0.75rem;
    padding: 1.6rem;
}

.article-card__meta {
    color: rgba(190, 208, 255, 0.65);
    font-size: 0.85rem;
}

.article-card__body h2 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.article-card__body p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.article-card__link {
    color: rgba(139, 213, 255, 0.95);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

        .testimonials {
            position: relative;
            overflow: hidden;
        }
        .testimonials::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.25), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.25), transparent 60%);
            filter: blur(80px);
            opacity: 0.6;
            pointer-events: none;
        }
        .testimonials .container {
            position: relative;
            z-index: 1;
        }
        .testimonials__lead {
            max-width: 640px;
            margin: 0.75rem auto 2.2rem;
            color: rgba(148, 163, 184, 0.82);
            text-align: center;
        }
        .testimonials__grid {
            display: grid;
            gap: clamp(1.2rem, 2.5vw, 1.8rem);
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        }
        .testimonial-card {
            background: rgba(15, 23, 42, 0.78);
            border: 1px solid rgba(148, 163, 184, 0.18);
            border-radius: 1.2rem;
            padding: 1.6rem;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            min-height: 100%;
            box-shadow: 0 28px 80px -60px rgba(56, 189, 248, 0.65);
            backdrop-filter: blur(24px);
        }
        .testimonial-card__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .testimonial-card__rating {
            display: inline-flex;
            gap: 0.35rem;
        }
        .testimonial-card__star {
            width: 1rem;
            height: 1rem;
            color: rgba(148, 163, 184, 0.45);
            display: inline-flex;
        }
        .testimonial-card__star svg {
            width: 100%;
            height: 100%;
            fill: currentColor;
        }
        .testimonial-card__star.is-active {
            color: rgba(250, 204, 21, 0.92);
            filter: drop-shadow(0 0 12px rgba(250, 204, 21, 0.4));
        }
        .testimonial-card__badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.3rem 0.75rem;
            border-radius: 999px;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            background: rgba(56, 189, 248, 0.18);
            color: rgba(165, 243, 252, 0.92);
        }
        .testimonial-card__message {
            margin: 0;
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(226, 232, 240, 0.92);
        }
        .testimonial-card__footer {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .testimonial-card__avatar {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.4), rgba(236, 72, 153, 0.4));
            color: rgba(15, 23, 42, 0.95);
            font-weight: 700;
            font-size: 1.1rem;
        }
        .testimonial-card__name {
            margin: 0;
            font-weight: 600;
            color: rgba(226, 232, 240, 0.95);
        }
.testimonial-card__meta {
            margin: 0;
            font-size: 0.85rem;
            color: rgba(148, 163, 184, 0.75);
        }
        @media (max-width: 640px) {
            .testimonials__lead {
                text-align: left;
                margin: 0.75rem 0 2rem;
            }
            .testimonial-card {
                padding: 1.4rem;
            }
        }

.section-heading {
    text-align: left;
    margin-bottom: 2.5rem;
    max-width: 720px;
}

.section-heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading .chip {
    font-size: 0.78rem;
}

.section-heading h2 {
    margin: 0.35rem 0 0.6rem;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.section-heading p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.section-feedback {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.feedback-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
}

.feedback-card {
    flex: 0 0 320px;
    padding: 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    scroll-snap-align: start;
}

.feedback-card__rating {
    display: flex;
    gap: 0.3rem;
    color: rgba(148, 163, 184, 0.4);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feedback-card__rating .is-active {
    color: rgb(250, 204, 21);
}

.feedback-card__quote {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    color: rgba(226, 232, 240, 0.92);
}

.feedback-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.feedback-card__meta strong {
    display: block;
    font-size: 1rem;
}

.feedback-card__meta span {
    color: rgba(148, 163, 184, 0.75);
    font-size: 0.8rem;
}

.feedback-card__badge {
    font-size: 0.75rem;
    border: 1px solid rgba(96, 165, 250, 0.4);
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    color: rgba(191, 219, 254, 0.95);
    background: rgba(59, 130, 246, 0.15);
}

.feedback-empty {
    border-radius: 1.25rem;
    border: 1px dashed rgba(148, 163, 184, 0.35);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.feedback-empty p {
    margin: 0;
    max-width: 460px;
}

.btn-small {
    font-size: 0.85rem;
    padding: 0.5rem 1.1rem;
}

.status-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.status-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.status-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.15);
    background: rgba(5, 7, 22, 0.85);
    padding: clamp(1.5rem, 2.5vw, 2.2rem);
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.45);
}

.status-card__lead {
    color: rgba(226, 232, 240, 0.82);
    margin: 0.6rem 0 0;
    max-width: 720px;
}

.status-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.status-metrics strong {
    display: block;
    font-size: 1.45rem;
    color: rgba(248, 250, 252, 0.95);
}

.status-metrics span {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.78);
}

.status-meta {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.85);
}

.status-note {
    font-size: 0.8rem;
    color: rgba(248, 250, 252, 0.75);
}

@media (min-width: 960px) {
    .feedback-carousel {
        overflow: visible;
        flex-wrap: wrap;
    }

    .feedback-card {
        flex: 1 1 calc(33.333% - 1.25rem);
    }
}

.cookie-banner {
    position: fixed;
    inset-inline: 1.25rem;
    bottom: 1.25rem;
    z-index: 60;
    border-radius: 1.25rem;
    background: rgba(2, 6, 23, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.65);
    padding: 1.25rem 1.35rem;
    backdrop-filter: blur(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-dismissed {
    opacity: 0;
    transform: translateY(30px);
}

.cookie-banner__body {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    flex: 1 1 260px;
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner p a {
    color: rgba(96, 165, 250, 0.95);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 640px) {
    .cookie-banner {
        inset-inline: 0.75rem;
        bottom: 0.75rem;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: flex-start;
    }
}


/* article single [page */
 .article-hero {
            position: relative;
            min-height: 420px;
            display: flex;
            align-items: flex-end;
            padding: clamp(2rem, 8vw, 5rem) 0;
            overflow: hidden;
        }

        .article-hero__bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            filter: brightness(0.75);
        }

        .article-hero__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(2,6,23,0.1), rgba(2,6,23,0.9));
        }

        .article-hero__content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 780px;
        }

        .article-hero__eyebrow {
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(226,232,240,0.85);
        }

        .article-hero__lead {
            font-size: 1.15rem;
            color: rgba(226,232,240,0.9);
            margin-top: 0.75rem;
        }

        .article-hero__meta {
            margin-top: 1rem;
            color: rgba(226,232,240,0.85);
            font-size: 0.95rem;
        }

        .article-detail {
            padding-top: clamp(2rem, 6vw, 4rem);
        }

        .article-detail__body {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            font-size: 1.05rem;
            color: rgba(226,232,240,0.9);
        }

        .article-detail__body h2 {
            font-size: 1.4rem;
            margin-top: 1rem;
        }

        .article-detail__body blockquote {
            border-left: 3px solid rgba(125, 211, 252, 0.8);
            padding-left: 1rem;
            font-style: italic;
            color: rgba(148,163,184,0.95);
        }

        .article-detail__body pre {
            background: rgba(2, 6, 23, 0.7);
            padding: 1rem;
            border-radius: 1rem;
            overflow-x: auto;
        }

        .article-detail__body ul {
            padding-left: 1.3rem;
        }

        .article-detail__footer {
            margin-top: 2.5rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            max-width: 780px;
            margin-left: auto;
            margin-right: auto;
        }

        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .article-tag {
            padding: 0.35rem 0.8rem;
            border-radius: 999px;
            background: rgba(56,189,248,0.15);
            color: rgba(125,211,252,0.95);
            font-size: 0.85rem;
        }

        .article-share {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
        }

        .article-share a {
            color: rgba(125, 211, 252, 1);
        }

        @media (max-width: 640px) {
            .article-share {
                flex-wrap: wrap;
            }
        }



        /* article index page */
         .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .article-card {
            position: relative;
            border-radius: 1.4rem;
            overflow: hidden;
            border: 1px solid rgba(226, 232, 240, 0.08);
            min-height: 320px;
            background: rgba(2, 6, 23, 0.4);
            display: flex;
        }

        .article-card__bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .article-card__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.85));
        }

        .article-card__body {
            position: relative;
            z-index: 2;
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            justify-content: flex-end;
            width: 100%;
        }

        .article-card__meta {
            font-size: 0.85rem;
            color: rgba(226, 232, 240, 0.85);
        }

        .article-card__body h2 {
            font-size: 1.25rem;
            font-weight: 600;
        }

        .article-card__body h2 a {
            color: #fff;
        }

        .article-card__body p {
            color: rgba(226, 232, 240, 0.85);
            margin-bottom: 0.75rem;
        }

        .article-card__link {
            font-weight: 600;
            color: rgba(125, 211, 252, 1);
        }
