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

        :root {
            --black: #0c0c0c;
            --white: #ffffff;
            --gray-100: #f5f5f5;
            --gray-200: #e8e8e8;
            --gray-300: #d4d4d4;
            --gray-400: #a0a0a0;
            --gray-500: #707070;
            --gray-600: #505050;
            --gray-700: #383838;
            --gray-800: #252525;
            --gray-900: #1a1a1a;
            --blue: #dc4040;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            scrollbar-width: thin;
            scrollbar-color: var(--gray-700) var(--gray-900);
        }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--gray-900); }
        ::-webkit-scrollbar-thumb {
            background: var(--gray-700);
            border-radius: 4px;
            border: 2px solid var(--gray-900);
        }
        ::-webkit-scrollbar-thumb:hover { background: var(--blue); }
        ::-webkit-scrollbar-corner { background: var(--gray-900); }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--black);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            max-width: 100vw;
        }

        a { text-decoration: none; color: inherit; }
        .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

        /* ---- NAV ---- */
        nav {
            position: relative;
            z-index: 100;
            color: #fff;
            background: var(--black);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0;
        }

        .logo .tyro { color: var(--blue); }
        .logo .press { color: #fff; }

        .logo-icon {
            width: 28px;
            height: 28px;
            background: var(--blue);
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
        }

        .logo-icon svg {
            width: 16px;
            height: 16px;
            stroke: #fff;
            fill: none;
            stroke-width: 2;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-right a {
            font-size: 13px;
            font-weight: 500;
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .nav-right a:hover { opacity: 1; }

        .nav-right .nav-btn {
            font-size: 13px;
            font-weight: 600;
            padding: 8px 20px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 100px;
            opacity: 1;
            transition: all 0.2s;
        }

        .nav-right .nav-btn:hover { background: #fff; color: var(--black); }

        /* ---- HERO ---- */
        .hero {
            background: var(--black);
            color: #fff;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            padding-top: 0;
        }

        .hero-grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 100%);
        }

        .hero-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: var(--blue);
            opacity: 0.04;
            top: 20%;
            left: 50%;
            transform: translateX(-50%);
            filter: blur(80px);
            pointer-events: none;
        }

        .hero-top {
            position: relative;
            z-index: 2;
            padding: 64px 0 48px;
            text-align: center;
        }

        .hero-eyebrow {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--gray-500);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .hero-eyebrow-dot {
            width: 6px;
            height: 6px;
            background: var(--blue);
            border-radius: 50%;
        }

        .hero-top h1 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(56px, 8vw, 110px);
            font-weight: 400;
            line-height: 1.02;
            letter-spacing: -2px;
            margin-bottom: 24px;
        }

        .hero-top h1 em {
            font-style: italic;
            color: var(--blue);
        }

        .hero-desc {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-400);
            max-width: 560px;
            margin: 0 auto 36px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            padding: 14px 28px;
            background: var(--blue);
            border-radius: 8px;
            transition: opacity 0.2s;
        }

        .hero-cta:hover { opacity: 0.85; }

        .hero-cta svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        .hero-cta-ghost {
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-400);
            padding: 14px 24px;
            border: 1px solid var(--gray-700);
            border-radius: 8px;
            transition: all 0.2s;
        }

        .hero-cta-ghost:hover { border-color: var(--gray-500); color: #fff; }

        .hero-mockup-wrap {
            position: relative;
            z-index: 2;
            max-width: 960px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .hero-mockup {
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
            animation: float 6s ease-in-out infinite;
        }

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

        @media (prefers-reduced-motion: reduce) {
            .hero-mockup { animation: none; }
            .hero-float { animation: none !important; }
        }

        .hm-bar {
            height: 44px;
            background: var(--gray-800);
            border-bottom: 1px solid var(--gray-700);
            display: flex;
            align-items: center;
            padding: 0 16px;
            gap: 8px;
        }

        .hm-dots {
            display: flex;
            gap: 6px;
        }

        .hm-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--gray-600);
        }

        .hm-dot:nth-child(1) { background: #f87171; }
        .hm-dot:nth-child(2) { background: #fbbf24; }
        .hm-dot:nth-child(3) { background: #34d399; }

        .hm-address {
            flex: 1;
            margin-left: 16px;
            height: 26px;
            background: var(--gray-700);
            border-radius: 6px;
            display: flex;
            align-items: center;
            padding: 0 12px;
            font-size: 11px;
            color: var(--gray-500);
            gap: 6px;
        }

        .hm-address svg {
            width: 12px;
            height: 12px;
            stroke: var(--gray-500);
            fill: none;
            stroke-width: 2;
        }

        .hm-body {
            display: grid;
            grid-template-columns: 200px 1fr;
            min-height: 340px;
        }

        .hm-sidebar {
            background: var(--gray-800);
            border-right: 1px solid var(--gray-700);
            padding: 20px 0;
        }

        .hm-sidebar-item {
            padding: 8px 20px;
            font-size: 12px;
            color: var(--gray-500);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hm-sidebar-item.active {
            background: rgba(220,64,64,0.1);
            color: var(--blue);
            border-right: 2px solid var(--blue);
        }

        .hm-sidebar-icon {
            width: 14px;
            height: 14px;
            border-radius: 3px;
            background: currentColor;
            opacity: 0.3;
        }

        .hm-sidebar-item.active .hm-sidebar-icon { opacity: 0.6; }

        .hm-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hm-content-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--gray-700);
        }

        .hm-content-title {
            font-size: 14px;
            font-weight: 700;
        }

        .hm-content-btn {
            font-size: 11px;
            font-weight: 600;
            padding: 5px 14px;
            background: var(--blue);
            border-radius: 6px;
            color: #fff;
        }

        .hm-post {
            display: flex;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid var(--gray-800);
            align-items: flex-start;
        }

        .hm-post:last-child { border-bottom: none; }

        .hm-post-img {
            width: 80px;
            height: 56px;
            border-radius: 6px;
            background: var(--gray-700);
            flex-shrink: 0;
        }

        .hm-post-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .hm-line {
            height: 7px;
            border-radius: 4px;
            background: var(--gray-700);
        }

        .hm-line.w100 { width: 100%; }
        .hm-line.w80 { width: 80%; }
        .hm-line.w60 { width: 60%; }
        .hm-line.w40 { width: 40%; }
        .hm-line.bold { height: 9px; background: var(--gray-600); }

        .hm-badge {
            display: inline-block;
            font-size: 9px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 3px;
            width: fit-content;
        }

        .hm-badge.published { background: rgba(52,211,153,0.15); color: #34d399; }
        .hm-badge.draft { background: rgba(161,161,170,0.15); color: #a1a1aa; }
        .hm-badge.scheduled { background: rgba(251,191,36,0.15); color: #fbbf24; }

        .hero-float {
            position: absolute;
            z-index: 3;
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 10px;
            padding: 12px 16px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        .hero-float.f1 {
            top: -20px;
            right: -40px;
            animation: bob 4s ease-in-out infinite;
        }

        .hero-float.f2 {
            bottom: 40px;
            left: -60px;
            animation: bob 5s ease-in-out infinite 1s;
        }

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

        .hf-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hf-icon.blue { background: rgba(220,64,64,0.15); }
        .hf-icon.green { background: rgba(52,211,153,0.15); }

        .hf-icon svg {
            width: 16px;
            height: 16px;
            stroke-width: 1.5;
            fill: none;
        }

        .hf-icon.blue svg { stroke: var(--blue); }
        .hf-icon.green svg { stroke: #34d399; }

        .hf-text strong {
            display: block;
            font-size: 12px;
            font-weight: 600;
        }

        .hf-text span {
            font-size: 10px;
            color: var(--gray-500);
        }

        .hero-stats-bar {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            padding: 40px 0 64px;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-val {
            font-family: 'Instrument Serif', serif;
            font-size: 28px;
            color: #fff;
        }

        .hero-stat-label {
            font-size: 12px;
            color: var(--gray-500);
            margin-top: 2px;
        }

        .hero-stat-divider {
            width: 1px;
            height: 32px;
            background: var(--gray-800);
        }

        /* ---- FEATURES NUMBERED ---- */
        .features-sec {
            padding: 120px 0;
            background: var(--white);
        }

        .feat-header {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 64px;
            margin-bottom: 80px;
        }

        .feat-header-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--gray-400);
            padding-top: 8px;
        }

        .feat-header h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 400;
            line-height: 1.15;
            letter-spacing: -0.5px;
        }

        .feat-rows {
            display: flex;
            flex-direction: column;
        }

        .feat-row {
            display: grid;
            grid-template-columns: 200px 1fr 1fr;
            gap: 64px;
            padding: 40px 0;
            border-top: 1px solid var(--gray-200);
            transition: background 0.2s;
            align-items: start;
        }

        .feat-row:last-child { border-bottom: 1px solid var(--gray-200); }

        .feat-row:hover { background: var(--gray-100); }

        .feat-num {
            font-family: 'Instrument Serif', serif;
            font-size: 48px;
            color: var(--gray-300);
            line-height: 1;
        }

        .feat-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }

        .feat-subtitle {
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.6;
        }

        .feat-detail {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.7;
            padding-top: 4px;
        }

        /* ---- THEMES ---- */
        .themes-sec {
            padding: 120px 0;
            background: var(--gray-900);
            color: #fff;
        }

        .themes-header {
            display: flex;
            /* align-items: flex-end; */
            justify-content: space-between;
            margin-bottom: 64px;
        }

        .themes-header h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 400;
            line-height: 1.15;
        }

        .themes-header p {
            font-size: 15px;
            color: var(--gray-500);
            max-width: 320px;
            text-align: right;
        }

        .themes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }

        @media (min-width: 1400px) {
            .themes-grid { grid-template-columns: repeat(4, 1fr); }
        }

        .theme-card {
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
        }

        .theme-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            border-color: var(--gray-600);
        }

        .theme-preview {
            height: 180px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(0,0,0,0.2);
        }

        .theme-preview-inner {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            padding: 16px;
            gap: 6px;
        }

        .tp-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 6px;
        }

        .tp-nav-brand {
            height: 6px;
            border-radius: 3px;
            width: 40px;
        }

        .tp-nav-links {
            display: flex;
            gap: 4px;
        }

        .tp-nav-link {
            height: 3px;
            border-radius: 2px;
            width: 18px;
        }

        .tp-title {
            font-size: 15px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.3px;
            margin-bottom: 4px;
        }

        .tp-title.serif { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 400; font-size: 17px; }
        .tp-title.mono { font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace; font-size: 13px; }
        .tp-title.display { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: 18px; line-height: 1.2; }
        .tp-title.bold-uc { text-transform: uppercase; letter-spacing: 2px; font-size: 11px; font-weight: 800; }
        .tp-title.italic { font-style: italic; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }

        .tp-subtitle {
            font-size: 7px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }

        .tp-line {
            height: 3px;
            border-radius: 2px;
        }

        .tp-img {
            width: 100%;
            height: 28px;
            border-radius: 6px;
            margin-bottom: 6px;
        }

        .tp-tag {
            display: inline-block;
            font-size: 6px;
            padding: 2px 5px;
            border-radius: 2px;
            margin-right: 3px;
        }

        .tp-rule {
            width: 100%;
            height: 1px;
            margin: 6px 0;
        }

        .tp-accent {
            height: 3px;
            border-radius: 2px;
            width: 32px;
        }

        .tp-drop {
            float: left;
            width: 16px;
            height: 16px;
            border-radius: 2px;
            margin-right: 5px;
            margin-bottom: 4px;
        }

        .tp-number {
            font-size: 36px;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -2px;
            margin-bottom: 4px;
        }

        .tp-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4px;
            flex: 1;
        }

        .tp-cell {
            border-radius: 4px;
            padding: 6px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .tp-cell.featured {
            grid-column: span 2;
            flex-direction: row;
            align-items: center;
            gap: 6px;
        }

        .tp-cell-title {
            font-size: 6px;
            font-weight: 700;
            line-height: 1.3;
        }

        .tp-cell-line {
            height: 2px;
            border-radius: 1px;
        }

        .tp-cell-img {
            width: 24px;
            height: 24px;
            border-radius: 3px;
            flex-shrink: 0;
        }

        .tp-avatar {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 6px;
        }

        .tp-avatar-circle {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .tp-avatar span {
            font-size: 6px;
        }

        .tp-split {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            height: 100%;
        }

        .tp-split-side {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }

        .tp-split-main {
            padding: 14px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            justify-content: center;
        }

        .tp-bento {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 5px;
            padding: 12px;
            height: 100%;
        }

        .tp-bento-main { grid-row: span 2; border-radius: 6px; }
        .tp-bento-sm { border-radius: 6px; }

        .theme-info {
            padding: 16px 18px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .theme-info-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .theme-info-name {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #fff;
        }

        .color-dots {
            display: flex;
            gap: 4px;
        }

        .color-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .theme-info-desc {
            font-size: 12px;
            color: var(--gray-500);
            line-height: 1.55;
            margin-bottom: 14px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .theme-info-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-top: auto;
        }

        .font-tag {
            font-size: 10px;
            font-weight: 500;
            color: var(--gray-500);
            font-style: italic;
        }

        .theme-mode-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 100px;
            background: rgba(220,64,64,0.08);
            color: var(--blue);
            margin-bottom: 20px;
            margin-top:10px;
            border: 1px solid rgba(220,64,64,0.15);
        }

        .theme-mode-badge svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        .themes-more {
            text-align: center;
            font-family: 'Instrument Serif', serif;
            font-size: 24px;
            color: var(--gray-500);
            margin-top: 48px;
            padding-top: 32px;
            letter-spacing: -0.3px;
        }

        /* ---- PULL QUOTE ---- */
        .quote-sec {
            padding: 120px 0;
            background: var(--white);
        }

        .quote-block {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .quote-mark {
            font-family: 'Instrument Serif', serif;
            font-size: 120px;
            line-height: 0.5;
            color: var(--gray-200);
            margin-bottom: 24px;
        }

        .quote-text {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 400;
            line-height: 1.4;
            letter-spacing: -0.5px;
            margin-bottom: 32px;
        }

        .quote-attr {
            font-size: 14px;
            color: var(--gray-500);
        }

        .quote-attr strong {
            color: var(--black);
            font-weight: 600;
        }

        /* ---- MEDIA SECTION ---- */
        .media-sec {
            padding: 0;
            background: var(--black);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .media-bg-glow {
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(220,64,64,0.08) 0%, transparent 70%);
            top: 10%;
            right: -200px;
            pointer-events: none;
        }

        .media-bg-glow-2 {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(16,163,74,0.06) 0%, transparent 70%);
            bottom: 5%;
            left: -150px;
            pointer-events: none;
        }

        .media-bg-dots {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none;
        }

        .media-top {
            position: relative;
            z-index: 2;
            padding: 120px 0 64px;
            text-align: center;
        }

        .media-top h3 {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--blue);
            margin-bottom: 16px;
        }

        .media-top h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .media-top > p {
            font-size: 16px;
            color: var(--gray-400);
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto;
        }

        .media-bento {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: auto auto;
            gap: 16px;
            padding-bottom: 64px;
        }

        .mb-card {
            background: var(--gray-900);
            border: 1px solid var(--gray-800);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            transition: border-color 0.3s, transform 0.3s;
        }

        .mb-card:hover {
            border-color: var(--gray-700);
            transform: translateY(-2px);
        }

        .mb-card.span-7 { grid-column: span 7; }
        .mb-card.span-5 { grid-column: span 5; }
        .mb-card.span-4 { grid-column: span 4; }
        .mb-card.span-8 { grid-column: span 8; }
        .mb-card.span-6 { grid-column: span 6; }

        .mb-card-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 18px;
            border-bottom: 1px solid var(--gray-800);
        }

        .mb-card-dots { display: flex; gap: 5px; }
        .mb-card-dot { width: 8px; height: 8px; border-radius: 50%; }
        .mb-card-dot:nth-child(1) { background: #f87171; }
        .mb-card-dot:nth-child(2) { background: #fbbf24; }
        .mb-card-dot:nth-child(3) { background: #34d399; }

        .mb-card-title {
            font-size: 11px;
            font-weight: 500;
            color: var(--gray-500);
            margin-left: 8px;
        }

        .mb-card-body { padding: 20px; }

        /* Library mockup inside bento */
        .lib-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .lib-thumb {
            aspect-ratio: 1;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .lib-thumb:hover { transform: scale(1.04); }

        .lib-thumb-inner {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lib-thumb svg {
            width: 20px;
            height: 20px;
            stroke: rgba(255,255,255,0.25);
            fill: none;
            stroke-width: 1.5;
        }

        .lt-1 { background: linear-gradient(135deg, #1a2a3a, #2a3a4a); }
        .lt-2 { background: linear-gradient(135deg, #2a1a3a, #3a2a4a); }
        .lt-3 { background: linear-gradient(135deg, #1a3a2a, #2a4a3a); }
        .lt-4 { background: linear-gradient(135deg, #3a2a1a, #4a3a2a); }
        .lt-5 { background: linear-gradient(135deg, #2a2a3a, #3a3a4a); }
        .lt-6 { background: linear-gradient(135deg, #1a2a2a, #2a3a3a); }
        .lt-7 { background: linear-gradient(135deg, #3a1a2a, #4a2a3a); }
        .lt-8 { background: linear-gradient(135deg, #2a3a1a, #3a4a2a); }

        .lib-thumb-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.2s;
            border-radius: 10px;
        }

        .lib-thumb:hover .lib-thumb-overlay { opacity: 1; }

        .lib-thumb-overlay svg {
            stroke: #fff;
            width: 18px;
            height: 18px;
        }

        .lib-toolbar {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--gray-800);
        }

        .lib-toolbar-btn {
            font-size: 10px;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: 5px;
            background: var(--gray-800);
            color: var(--gray-500);
            transition: all 0.15s;
        }

        .lib-toolbar-btn.active { background: var(--blue); color: #fff; }

        .lib-toolbar-sep { flex: 1; }

        .lib-toolbar-count {
            font-size: 10px;
            color: var(--gray-600);
        }

        /* Search panel inside bento */
        .search-panel { display: flex; flex-direction: column; gap: 12px; height: 100%; }

        .sp-search {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 10px;
            padding: 10px 14px;
            transition: border-color 0.2s;
        }

        .sp-search:focus-within { border-color: var(--blue); }

        .sp-search svg {
            width: 14px; height: 14px;
            stroke: var(--gray-500); fill: none; stroke-width: 2;
            flex-shrink: 0;
        }

        .sp-search input {
            background: none; border: none; outline: none;
            font-family: inherit; font-size: 12px; color: #fff;
            width: 100%;
        }

        .sp-search input::placeholder { color: var(--gray-600); }

        .sp-providers { display: flex; gap: 4px; }

        .sp-provider {
            font-size: 10px; font-weight: 600;
            padding: 5px 10px; border-radius: 6px;
            background: var(--gray-800); color: var(--gray-500);
            transition: all 0.15s;
        }

        .sp-provider.active { background: var(--blue); color: #fff; }

        .sp-results {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
            flex: 1;
        }

        .sp-result {
            aspect-ratio: 1;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .sp-result:hover { transform: scale(1.05); }

        .sp-result-img {
            width: 100%; height: 100%;
        }

        .sr-1 { background: linear-gradient(135deg, #2a3a5a, #1a2a4a); }
        .sr-2 { background: linear-gradient(135deg, #3a2a5a, #2a1a4a); }
        .sr-3 { background: linear-gradient(135deg, #2a5a3a, #1a4a2a); }
        .sr-4 { background: linear-gradient(135deg, #5a3a2a, #4a2a1a); }
        .sr-5 { background: linear-gradient(135deg, #2a4a5a, #1a3a4a); }
        .sr-6 { background: linear-gradient(135deg, #5a2a3a, #4a1a2a); }

        .sp-result-star {
            position: absolute; top: 5px; right: 5px;
            width: 20px; height: 20px; border-radius: 50%;
            background: rgba(0,0,0,0.5);
            display: flex; align-items: center; justify-content: center;
        }

        .sp-result-star svg {
            width: 10px; height: 10px;
            stroke: #fbbf24; fill: #fbbf24; stroke-width: 1;
        }

        .sp-result-import {
            position: absolute; bottom: 5px; left: 5px;
            font-size: 8px; font-weight: 600;
            padding: 3px 8px; border-radius: 4px;
            background: var(--blue); color: #fff;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .sp-result:hover .sp-result-import { opacity: 1; }

        .sp-footer {
            display: flex; align-items: center; justify-content: space-between;
            padding-top: 10px; border-top: 1px solid var(--gray-800);
        }

        .sp-footer span { font-size: 10px; color: var(--gray-600); }

        .sp-starred {
            font-size: 10px; color: var(--gray-500);
            display: flex; align-items: center; gap: 4px;
        }

        .sp-starred svg {
            width: 11px; height: 11px;
            stroke: #fbbf24; fill: #fbbf24; stroke-width: 1;
        }

        /* Feature mini cards */
        .feat-mini-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .feat-mini {
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 12px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: border-color 0.2s, background 0.2s;
        }

        .feat-mini:hover {
            border-color: var(--gray-600);
            background: rgba(255,255,255,0.03);
        }

        .fm-icon {
            width: 36px; height: 36px;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
        }

        .fm-icon svg { width: 18px; height: 18px; stroke-width: 1.5; fill: none; }

        .fm-icon.blue { background: rgba(220,64,64,0.15); }
        .fm-icon.blue svg { stroke: var(--blue); }
        .fm-icon.green { background: rgba(16,163,74,0.15); }
        .fm-icon.green svg { stroke: #34d399; }
        .fm-icon.amber { background: rgba(251,191,36,0.15); }
        .fm-icon.amber svg { stroke: #fbbf24; }
        .fm-icon.violet { background: rgba(192,48,48,0.15); }
        .fm-icon.violet svg { stroke: #d43838; }
        .fm-icon.rose { background: rgba(225,29,72,0.15); }
        .fm-icon.rose svg { stroke: #fb7185; }
        .fm-icon.cyan { background: rgba(8,145,178,0.15); }
        .fm-icon.cyan svg { stroke: #22d3ee; }

        .feat-mini h4 { font-size: 13px; font-weight: 700; }
        .feat-mini p { font-size: 11px; color: var(--gray-500); line-height: 1.5; }

        /* Upload zone */
        .upload-zone {
            border: 2px dashed var(--gray-700);
            border-radius: 14px;
            padding: 40px 24px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            transition: border-color 0.2s, background 0.2s;
            cursor: pointer;
            height: 100%;
            justify-content: center;
        }

        .upload-zone:hover {
            border-color: var(--blue);
            background: rgba(220,64,64,0.03);
        }

        .upload-zone-icon {
            width: 56px; height: 56px;
            border-radius: 16px;
            background: rgba(220,64,64,0.1);
            display: flex; align-items: center; justify-content: center;
        }

        .upload-zone-icon svg {
            width: 24px; height: 24px;
            stroke: var(--blue); fill: none; stroke-width: 1.5;
        }

        .upload-zone h4 {
            font-size: 15px; font-weight: 600;
        }

        .upload-zone p {
            font-size: 12px; color: var(--gray-500); line-height: 1.5;
        }

        .upload-zone-badge {
            font-size: 10px; font-weight: 600;
            padding: 4px 12px; border-radius: 20px;
            background: rgba(220,64,64,0.1);
            color: var(--blue);
        }

        /* Conversion pipeline */
        .pipeline-flow {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 8px 0;
        }

        .pipeline-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex: 1;
            position: relative;
        }

        .pipeline-step-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
        }

        .pipeline-step-icon svg {
            width: 20px; height: 20px; stroke-width: 1.5; fill: none;
        }

        .psi-1 { background: rgba(220,64,64,0.15); }
        .psi-1 svg { stroke: var(--blue); }
        .psi-2 { background: rgba(16,163,74,0.15); }
        .psi-2 svg { stroke: #34d399; }
        .psi-3 { background: rgba(251,191,36,0.15); }
        .psi-3 svg { stroke: #fbbf24; }

        .pipeline-step span {
            font-size: 10px; font-weight: 500; color: var(--gray-400);
        }

        .pipeline-arrow {
            width: 32px; height: 2px;
            background: var(--gray-700);
            position: relative;
            flex-shrink: 0;
            margin-bottom: 18px;
        }

        .pipeline-arrow::after {
            content: '';
            position: absolute; right: -1px; top: -3px;
            border: 4px solid transparent;
            border-left-color: var(--gray-700);
        }

        /* Floating artifact badges */
        .media-artifact {
            position: absolute;
            z-index: 5;
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 12px;
            padding: 10px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 16px 40px rgba(0,0,0,0.5);
            white-space: nowrap;
        }

        .ma-art-icon {
            width: 32px; height: 32px;
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
        }

        .ma-art-icon svg { width: 16px; height: 16px; stroke-width: 1.5; fill: none; }

        .ma-art-icon.green { background: rgba(16,163,74,0.15); }
        .ma-art-icon.green svg { stroke: #34d399; }
        .ma-art-icon.blue { background: rgba(220,64,64,0.15); }
        .ma-art-icon.blue svg { stroke: var(--blue); }
        .ma-art-icon.amber { background: rgba(251,191,36,0.15); }
        .ma-art-icon.amber svg { stroke: #fbbf24; }

        .ma-art-text strong { display: block; font-size: 12px; font-weight: 600; }
        .ma-art-text span { font-size: 10px; color: var(--gray-500); }

        .artifact-1 {
            top: -16px; right: 32px;
            animation: artFloat 5s ease-in-out infinite;
        }

        .artifact-2 {
            bottom: 24px; left: 24px;
            animation: artFloat 6s ease-in-out infinite 1.5s;
        }

        .artifact-3 {
            top: 50%; right: -20px;
            animation: artFloat 4.5s ease-in-out infinite 0.8s;
        }

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

        /* WebP badge */
        .webp-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(16,163,74,0.12);
            color: #34d399;
        }

        .webp-badge svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

        .size-reduction {
            display: flex; align-items: center; gap: 16px;
            margin-top: 12px;
        }

        .sr-bar-wrap { flex: 1; }

        .sr-label {
            display: flex; justify-content: space-between;
            font-size: 10px; color: var(--gray-500); margin-bottom: 4px;
        }

        .sr-bar {
            height: 6px; border-radius: 3px;
            background: var(--gray-800);
            overflow: hidden;
        }

        .sr-bar-fill {
            height: 100%; border-radius: 3px;
            transition: width 1s ease;
        }

        .sr-bar-fill.red { background: #f87171; }
        .sr-bar-fill.green { background: #34d399; }

        /* ---- I18N / AI SECTION ---- */
        .ai-sec {
            padding: 0;
            background: var(--black);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .ai-bg-glow {
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(220,64,64,0.06) 0%, transparent 70%);
            top: 5%;
            left: -200px;
            pointer-events: none;
        }

        .ai-bg-glow-2 {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(192,48,48,0.05) 0%, transparent 70%);
            bottom: 0;
            right: -150px;
            pointer-events: none;
        }

        .ai-bg-grid {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
        }

        .ai-top {
            position: relative;
            z-index: 2;
            padding: 120px 0 64px;
            text-align: center;
        }

        .ai-top-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--blue);
            margin-bottom: 20px;
        }

        .ai-top-badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--blue);
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }

        .ai-top h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(40px, 5.5vw, 64px);
            font-weight: 400;
            line-height: 1.08;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
        }

        .ai-top h2 em {
            font-style: italic;
            background: linear-gradient(135deg, var(--blue), #d43838);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .ai-top > p {
            font-size: 17px;
            color: var(--gray-400);
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto 16px;
        }

        .ai-byok-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 8px;
        }

        .ai-byok-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 100px;
            border: 1px solid rgba(192,48,48,0.3);
            background: rgba(192,48,48,0.08);
            color: #d43838;
        }

        .ai-byok-badge svg {
            width: 13px;
            height: 13px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5;
        }

        .ai-providers {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ai-provider-chip {
            font-size: 10px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 5px;
            background: var(--gray-800);
            color: var(--gray-400);
        }

        /* Bento grid for AI/i18n */
        .ai-bento {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 16px;
            padding-bottom: 80px;
        }

        .ai-card {
            background: var(--gray-900);
            border: 1px solid var(--gray-800);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            transition: border-color 0.3s, transform 0.3s;
        }

        .ai-card:hover {
            border-color: var(--gray-700);
            transform: translateY(-2px);
        }

        .ai-card.span-7 { grid-column: span 7; }
        .ai-card.span-5 { grid-column: span 5; }
        .ai-card.span-4 { grid-column: span 4; }
        .ai-card.span-6 { grid-column: span 6; }
        .ai-card.span-8 { grid-column: span 8; }
        .ai-card.span-12 { grid-column: span 12; }

        .ai-card-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 18px;
            border-bottom: 1px solid var(--gray-800);
        }

        .ai-card-dots { display: flex; gap: 5px; }
        .ai-card-dot { width: 8px; height: 8px; border-radius: 50%; }
        .ai-card-dot:nth-child(1) { background: #f87171; }
        .ai-card-dot:nth-child(2) { background: #fbbf24; }
        .ai-card-dot:nth-child(3) { background: #34d399; }

        .ai-card-title {
            font-size: 11px;
            font-weight: 500;
            color: var(--gray-500);
            margin-left: 8px;
        }

        .ai-card-body { padding: 20px; }

        /* Translation editor mockup */
        .ai-lang-tabs {
            display: flex;
            gap: 2px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .ai-lang-tab {
            font-size: 11px;
            font-weight: 500;
            padding: 5px 12px;
            border-radius: 5px;
            background: var(--gray-800);
            color: var(--gray-500);
            transition: all 0.15s;
            cursor: default;
            position: relative;
        }

        .ai-lang-tab.active { background: var(--blue); color: #fff; }

        .ai-lang-tab.done::after {
            content: '';
            position: absolute;
            top: -2px;
            right: -2px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #34d399;
            border: 2px solid var(--gray-900);
        }

        .ai-editor-content {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .ai-editor-line {
            height: 7px;
            border-radius: 4px;
            background: var(--gray-700);
        }

        .ai-editor-line.heading { height: 11px; background: var(--gray-600); width: 55%; }
        .ai-editor-line.w100 { width: 100%; }
        .ai-editor-line.w90 { width: 90%; }
        .ai-editor-line.w80 { width: 80%; }
        .ai-editor-line.w65 { width: 65%; }
        .ai-editor-line.w50 { width: 50%; }
        .ai-editor-line.w40 { width: 40%; }

        .ai-translate-action {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--gray-800);
        }

        .ai-translate-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 600;
            padding: 7px 16px;
            background: linear-gradient(135deg, var(--blue), #c03030);
            border-radius: 6px;
            color: #fff;
            cursor: default;
        }

        .ai-translate-btn svg {
            width: 12px;
            height: 12px;
            stroke: #fff;
            fill: none;
            stroke-width: 2;
        }

        .ai-translate-hint {
            font-size: 10px;
            color: var(--gray-500);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .ai-translate-hint .sparkle {
            color: #fbbf24;
            font-size: 12px;
        }

        /* AI Summary card */
        .ai-summary-panel {
            display: flex;
            flex-direction: column;
            gap: 14px;
            height: 100%;
        }

        .ai-summary-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .ai-summary-label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
        }

        .ai-summary-label svg {
            width: 14px;
            height: 14px;
            stroke-width: 1.5;
            fill: none;
        }

        .ai-summary-label .bolt { stroke: #fbbf24; }

        .ai-summary-generating {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 10px;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: 100px;
            background: rgba(251,191,36,0.1);
            color: #fbbf24;
        }

        .ai-summary-generating .spinner {
            width: 10px;
            height: 10px;
            border: 2px solid rgba(251,191,36,0.3);
            border-top-color: #fbbf24;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .ai-summary-text {
            font-size: 12px;
            color: var(--gray-400);
            line-height: 1.7;
            padding: 14px;
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 8px;
            position: relative;
        }

        .ai-summary-text::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, var(--blue), #c03030);
            border-radius: 3px 0 0 3px;
        }

        .ai-summary-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid var(--gray-800);
        }

        .ai-summary-meta span {
            font-size: 10px;
            color: var(--gray-600);
        }

        .ai-summary-words {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 10px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 4px;
            background: rgba(52,211,153,0.1);
            color: #34d399;
        }

        /* AI Excerpt card */
        .ai-excerpt-panel {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ai-excerpt-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .ai-excerpt-label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
        }

        .ai-excerpt-label svg {
            width: 14px;
            height: 14px;
            stroke: #34d399;
            fill: none;
            stroke-width: 1.5;
        }

        .ai-excerpt-field {
            padding: 12px;
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 8px;
            position: relative;
        }

        .ai-excerpt-line {
            height: 6px;
            border-radius: 3px;
            background: var(--gray-600);
        }

        .ai-excerpt-line + .ai-excerpt-line { margin-top: 7px; }

        .ai-excerpt-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 9px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 3px;
            background: rgba(52,211,153,0.12);
            color: #34d399;
            margin-top: 10px;
        }

        .ai-excerpt-tag svg {
            width: 9px;
            height: 9px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        /* BYOK card */
        .ai-byok-panel {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .ai-byok-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            color: #fff;
        }

        .ai-byok-title svg {
            width: 16px;
            height: 16px;
            stroke: #d43838;
            fill: none;
            stroke-width: 1.5;
        }

        .ai-byok-subtitle {
            font-size: 11px;
            color: var(--gray-500);
            line-height: 1.6;
        }

        .ai-byok-field {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 8px;
            padding: 10px 12px;
        }

        .ai-byok-field svg {
            width: 14px;
            height: 14px;
            stroke: var(--gray-500);
            fill: none;
            stroke-width: 1.5;
            flex-shrink: 0;
        }

        .ai-byok-field-input {
            flex: 1;
            font-size: 11px;
            color: var(--gray-400);
            font-family: 'SF Mono', 'Fira Code', monospace;
        }

        .ai-byok-field-mask {
            display: flex;
            gap: 3px;
        }

        .ai-byok-field-mask span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gray-600);
        }

        .ai-byok-provider-row {
            display: flex;
            gap: 8px;
        }

        .ai-byok-provider {
            flex: 1;
            padding: 10px;
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 8px;
            text-align: center;
            transition: border-color 0.2s;
        }

        .ai-byok-provider.active {
            border-color: var(--blue);
            background: rgba(220,64,64,0.06);
        }

        .ai-byok-provider-name {
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-300);
            margin-top: 4px;
        }

        .ai-byok-provider-status {
            font-size: 9px;
            color: #34d399;
            margin-top: 2px;
        }

        .ai-byok-provider svg {
            width: 20px;
            height: 20px;
            stroke: var(--gray-400);
            fill: none;
            stroke-width: 1.2;
        }

        .ai-byok-provider.active svg { stroke: var(--blue); }

        /* Feature pills row */
        .ai-feat-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .ai-feat-pill {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 500;
            padding: 8px 14px;
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 10px;
            color: var(--gray-300);
            transition: border-color 0.2s;
        }

        .ai-feat-pill:hover { border-color: var(--gray-600); }

        .ai-feat-pill svg {
            width: 14px;
            height: 14px;
            stroke-width: 1.5;
            fill: none;
            flex-shrink: 0;
        }

        .ai-feat-pill.blue svg { stroke: var(--blue); }
        .ai-feat-pill.green svg { stroke: #34d399; }
        .ai-feat-pill.amber svg { stroke: #fbbf24; }
        .ai-feat-pill.violet svg { stroke: #d43838; }
        .ai-feat-pill.cyan svg { stroke: #22d3ee; }
        .ai-feat-pill.rose svg { stroke: #fb7185; }

        /* Floating artifacts for i18n */
        .ai-float {
            position: absolute;
            z-index: 5;
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 12px;
            padding: 10px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 16px 40px rgba(0,0,0,0.5);
            white-space: nowrap;
        }

        .ai-float-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ai-float-icon svg {
            width: 16px;
            height: 16px;
            stroke-width: 1.5;
            fill: none;
        }

        .ai-float-icon.green { background: rgba(52,211,153,0.15); }
        .ai-float-icon.green svg { stroke: #34d399; }
        .ai-float-icon.blue { background: rgba(220,64,64,0.15); }
        .ai-float-icon.blue svg { stroke: var(--blue); }
        .ai-float-icon.violet { background: rgba(192,48,48,0.15); }
        .ai-float-icon.violet svg { stroke: #d43838; }

        .ai-float strong { display: block; font-size: 12px; font-weight: 600; }
        .ai-float span { font-size: 10px; color: var(--gray-500); }

        .ai-float.f1 { top: -14px; right: 32px; animation: artFloat 5s ease-in-out infinite; }
        .ai-float.f2 { bottom: 32px; left: 32px; animation: artFloat 6s ease-in-out infinite 1.5s; }

        /* Font showcase */
        .ai-font-showcase {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ai-font-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 8px;
        }

        .ai-font-info { display: flex; flex-direction: column; gap: 2px; }

        .ai-font-label {
            font-size: 9px;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ai-font-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-300);
        }

        .ai-font-glyphs {
            font-size: 20px;
            color: var(--gray-400);
            opacity: 0.7;
        }

        /* ---- POWER SECTIONS ---- */
        .power-sec {
            padding: 0;
        }

        .power-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 520px;
        }

        .power-block + .power-block { border-top: 1px solid var(--gray-200); }

        .power-block.reverse .power-visual { order: -1; }

        .power-text {
            padding: 64px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .power-text h3 {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--blue);
            margin-bottom: 20px;
        }

        .power-text h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .power-text > p {
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 420px;
        }

        .power-grid-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .pgl-item {
            padding: 16px 16px 16px 0;
            border-top: 1px solid var(--gray-200);
        }

        .pgl-item:nth-child(n+3) { border-bottom: 1px solid var(--gray-200); }

        .pgl-item h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .pgl-item p {
            font-size: 12px;
            color: var(--gray-500);
            line-height: 1.5;
        }

        .power-visual {
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .power-visual.dark-vis {
            background: var(--gray-900);
        }

        .pv-card {
            width: 280px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.06);
        }

        .dark-vis .pv-card {
            background: var(--gray-800);
            border-color: var(--gray-700);
        }

        .pv-card-bar {
            height: 32px;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            padding: 0 12px;
            gap: 5px;
        }

        .dark-vis .pv-card-bar { border-color: var(--gray-700); }

        .pv-card-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gray-200);
        }

        .dark-vis .pv-card-dot { background: var(--gray-600); }

        .pv-card-body { padding: 16px; }

        .pv-row {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            padding: 10px 0;
        }

        .pv-row + .pv-row { border-top: 1px solid var(--gray-100); }
        .dark-vis .pv-row + .pv-row { border-top-color: var(--gray-700); }

        .pv-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pv-icon svg {
            width: 18px;
            height: 18px;
            stroke-width: 1.5;
            fill: none;
        }

        .pv-icon.blue { background: #fef0ef; }
        .pv-icon.blue svg { stroke: var(--blue); }
        .pv-icon.amber { background: #fffbeb; }
        .pv-icon.amber svg { stroke: #d97706; }
        .pv-icon.green { background: #f0fdf4; }
        .pv-icon.green svg { stroke: #16a34a; }
        .pv-icon.gray { background: #f5f5f5; }
        .pv-icon.gray svg { stroke: #707070; }
        .pv-icon.violet { background: #f5f3ff; }
        .pv-icon.violet svg { stroke: #c03030; }

        .dark-vis .pv-icon.blue { background: rgba(220,64,64,0.15); }
        .dark-vis .pv-icon.amber { background: rgba(217,119,6,0.15); }
        .dark-vis .pv-icon.green { background: rgba(22,163,74,0.15); }
        .dark-vis .pv-icon.gray { background: rgba(255,255,255,0.05); }
        .dark-vis .pv-icon.gray svg { stroke: #999; }

        .pv-row-text { flex: 1; }

        .pv-row-title {
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .dark-vis .pv-row-title { color: #ddd; }

        .pv-row-sub {
            font-size: 10px;
            color: var(--gray-400);
        }

        .pv-badge {
            display: inline-block;
            font-size: 9px;
            font-weight: 600;
            padding: 2px 7px;
            border-radius: 3px;
            margin-top: 3px;
        }

        .pv-badge.pub { background: #f0fdf4; color: #16a34a; }
        .pv-badge.sch { background: #fffbeb; color: #d97706; }
        .pv-badge.drf { background: #f5f5f5; color: #888; }

        .dark-vis .pv-badge.pub { background: rgba(22,163,74,0.15); }
        .dark-vis .pv-badge.sch { background: rgba(217,119,6,0.15); }
        .dark-vis .pv-badge.drf { background: rgba(255,255,255,0.06); color: #999; }

        .pv-progress {
            height: 6px;
            background: var(--gray-200);
            border-radius: 3px;
            margin-top: 6px;
            overflow: hidden;
        }

        .dark-vis .pv-progress { background: var(--gray-700); }

        .pv-progress-fill {
            height: 100%;
            border-radius: 3px;
        }

        .pv-progress-fill.blue { background: var(--blue); }
        .pv-progress-fill.green { background: #16a34a; }

        .pv-float {
            position: absolute;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            padding: 10px 14px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            z-index: 2;
        }

        .dark-vis .pv-float {
            background: var(--gray-800);
            border-color: var(--gray-700);
        }

        .pv-float-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pv-float-icon svg {
            width: 14px;
            height: 14px;
            stroke-width: 1.5;
            fill: none;
        }

        .pv-float-icon.green { background: #f0fdf4; }
        .pv-float-icon.green svg { stroke: #16a34a; }
        .pv-float-icon.blue { background: #fef0ef; }
        .pv-float-icon.blue svg { stroke: var(--blue); }

        .dark-vis .pv-float-icon.green { background: rgba(22,163,74,0.15); }
        .dark-vis .pv-float-icon.blue { background: rgba(220,64,64,0.15); }

        .pv-float strong { font-size: 11px; font-weight: 600; }
        .dark-vis .pv-float strong { color: #ddd; }
        .pv-float span { font-size: 10px; color: var(--gray-400); }

        .pv-float.f1 { top: 48px; right: 48px; }
        .pv-float.f2 { bottom: 48px; left: 48px; }

        .pub-block .power-text { padding: 64px; }

        .pub-mockup {
            width: 100%;
            max-width: 420px;
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(0,0,0,0.4);
        }

        .pub-mockup-header {
            padding: 14px 18px 0;
        }

        .pub-mockup-tabs {
            display: flex;
            gap: 2px;
        }

        .pub-tab {
            font-size: 11px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 8px 8px 0 0;
            color: var(--gray-500);
            background: transparent;
            cursor: default;
        }

        .pub-tab.active {
            background: var(--gray-700);
            color: #fff;
        }

        .pub-mockup-body {
            display: grid;
            grid-template-columns: 1fr 140px;
            gap: 0;
            padding: 18px;
            background: var(--gray-700);
            border-top: 1px solid var(--gray-600);
        }

        .pub-calendar { display: flex; flex-direction: column; gap: 10px; }

        .pub-cal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            font-weight: 600;
            color: #ddd;
            padding: 0 2px;
        }

        .pub-cal-header svg { cursor: pointer; opacity: 0.5; }
        .pub-cal-header svg:hover { opacity: 1; }

        .pub-cal-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            font-size: 9px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
        }

        .pub-cal-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            gap: 3px;
        }

        .pub-cal-grid span {
            font-size: 11px;
            padding: 5px 0;
            border-radius: 6px;
            color: #ccc;
            cursor: default;
        }

        .pub-cal-grid .cal-dim { color: var(--gray-600); }

        .pub-cal-grid .cal-today {
            background: var(--gray-600);
            color: #fff;
            font-weight: 600;
        }

        .pub-cal-grid .cal-selected {
            background: var(--blue);
            color: #fff;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(220,64,64,0.3);
        }

        .pub-time-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-top: 4px;
            padding-top: 10px;
            border-top: 1px solid var(--gray-600);
        }

        .pub-time-display {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: #ddd;
            padding: 6px 12px;
            background: var(--gray-800);
            border-radius: 6px;
            border: 1px solid var(--gray-600);
        }

        .pub-time-display svg { stroke: #ddd; }

        .pub-schedule-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 10px;
            font-weight: 600;
            padding: 7px 14px;
            background: var(--blue);
            color: #fff;
            border-radius: 6px;
            cursor: default;
        }

        .pub-schedule-btn svg { stroke: #fff; }

        .pub-sidebar-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding-left: 14px;
            border-left: 1px solid var(--gray-600);
        }

        .pub-status-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: var(--gray-800);
            border: 1px solid var(--gray-600);
            border-radius: 8px;
        }

        .pub-status-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pub-status-icon.amber {
            background: rgba(251,191,36,0.15);
        }

        .pub-status-icon.amber svg { stroke: #fbbf24; }

        .pub-status-text strong {
            display: block;
            font-size: 11px;
            font-weight: 700;
            color: #ddd;
        }

        .pub-status-text span {
            font-size: 9px;
            color: var(--gray-500);
        }

        .pub-rev-timeline {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .pub-rev-title {
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pub-rev-item {
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }

        .pub-rev-item:not(:last-child) {
            padding-bottom: 8px;
        }

        .pub-rev-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 4px;
            top: 14px;
            bottom: 0;
            width: 1px;
            background: var(--gray-600);
        }

        .pub-rev-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--gray-600);
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .pub-rev-item.current .pub-rev-dot {
            background: var(--blue);
            box-shadow: 0 0 6px rgba(220,64,64,0.4);
        }

        .pub-rev-meta {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .pub-rev-label {
            font-size: 10px;
            font-weight: 600;
            color: #ccc;
        }

        .pub-rev-item.current .pub-rev-label { color: var(--blue); }

        .pub-rev-time {
            font-size: 9px;
            color: var(--gray-600);
        }

        .pub-lock-card {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 9px;
            font-weight: 500;
            color: var(--gray-500);
            padding: 7px 10px;
            background: rgba(52,211,153,0.06);
            border: 1px solid rgba(52,211,153,0.15);
            border-radius: 6px;
            margin-top: auto;
        }

        .pub-float-saved {
            top: 32px;
            right: 32px;
            animation: artFloat 5s ease-in-out infinite;
        }

        .pub-float-clone {
            bottom: 32px;
            left: 32px;
            animation: artFloat 6s ease-in-out infinite 1s;
        }

        .deploy-mockup {
            width: 100%;
            max-width: 440px;
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(0,0,0,0.4);
        }

        .deploy-tabs {
            display: flex;
            gap: 2px;
            padding: 14px 18px 0;
        }

        .deploy-tab {
            font-size: 11px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 8px 8px 0 0;
            color: var(--gray-500);
            background: transparent;
            cursor: default;
        }

        .deploy-tab.active {
            background: var(--gray-700);
            color: #fff;
        }

        .deploy-content {
            display: grid;
            grid-template-columns: 1fr 150px;
            gap: 0;
            background: var(--gray-700);
            border-top: 1px solid var(--gray-600);
            padding: 16px;
        }

        .deploy-terminal {
            display: flex;
            flex-direction: column;
            gap: 7px;
            padding-right: 14px;
            border-right: 1px solid var(--gray-600);
            font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
        }

        .dt-line {
            font-size: 10.5px;
            line-height: 1.6;
            color: var(--gray-400);
        }

        .dt-cmd {
            color: #ddd;
        }

        .dt-prompt {
            color: #34d399;
            margin-right: 6px;
            font-weight: 700;
        }

        .dt-success {
            color: #34d399;
        }

        .dt-check {
            margin-right: 4px;
        }

        .dt-progress-inline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-left: 4px;
        }

        .dt-pbar {
            display: inline-block;
            width: 48px;
            height: 5px;
            border-radius: 3px;
            background: var(--gray-600);
            overflow: hidden;
            vertical-align: middle;
        }

        .dt-pfill {
            display: block;
            height: 100%;
            border-radius: 3px;
            background: #34d399;
        }

        .dt-pfill.blue {
            background: var(--blue);
            animation: deploy-progress 2s ease-in-out infinite;
        }

        @keyframes deploy-progress {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .deploy-sidebar {
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding-left: 14px;
        }

        .ds-build-history {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .ds-bh-title {
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-500);
            margin-bottom: 2px;
        }

        .ds-bh-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            background: var(--gray-800);
            border: 1px solid var(--gray-600);
            border-radius: 6px;
        }

        .ds-bh-item.ds-bh-active {
            border-color: rgba(220,64,64,0.3);
            background: rgba(220,64,64,0.06);
        }

        .ds-bh-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .ds-bh-dot.green { background: #34d399; }
        .ds-bh-dot.blue { background: var(--blue); box-shadow: 0 0 6px rgba(220,64,64,0.4); }

        .ds-bh-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1px;
            min-width: 0;
        }

        .ds-bh-label {
            font-size: 10px;
            font-weight: 600;
            color: #ccc;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ds-bh-meta {
            font-size: 8px;
            color: var(--gray-500);
        }

        .ds-bh-download {
            color: var(--gray-500);
            cursor: pointer;
            transition: color 0.15s;
            flex-shrink: 0;
        }

        .ds-bh-download:hover { color: var(--blue); }

        .ds-wp-mini {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 8px 10px;
            background: var(--gray-800);
            border: 1px solid var(--gray-600);
            border-radius: 6px;
        }

        .ds-wp-header {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 10px;
            font-weight: 600;
            color: #ccc;
        }

        .ds-wp-header svg { stroke: var(--gray-400); flex-shrink: 0; }

        .ds-wp-badge {
            font-size: 8px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 3px;
            margin-left: auto;
        }

        .ds-wp-badge.done {
            background: rgba(52,211,153,0.15);
            color: #34d399;
        }

        .ds-wp-bar {
            height: 4px;
            border-radius: 2px;
            background: var(--gray-600);
            overflow: hidden;
        }

        .ds-wp-bar-fill {
            height: 100%;
            border-radius: 2px;
            background: #34d399;
        }

        .ds-download-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: rgba(220,64,64,0.06);
            border: 1px solid rgba(220,64,64,0.2);
            border-radius: 8px;
        }

        .ds-dl-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(220,64,64,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .ds-dl-icon svg { stroke: var(--blue); }

        .ds-dl-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1px;
            min-width: 0;
        }

        .ds-dl-info strong {
            font-size: 10px;
            font-weight: 600;
            color: #ddd;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ds-dl-info span {
            font-size: 8px;
            color: var(--gray-500);
        }

        .ds-dl-btn {
            font-size: 9px;
            font-weight: 700;
            padding: 5px 10px;
            background: var(--blue);
            color: #fff;
            border-radius: 5px;
            cursor: default;
            flex-shrink: 0;
        }

        .deploy-float-download {
            bottom: 32px;
            left: 32px;
            animation: artFloat 5s ease-in-out infinite;
        }

        /* ---- CTA ---- */
        .cta-sec {
            padding: 0;
            background: var(--black);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 48px 48px;
        }

        .cta-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: var(--blue);
            opacity: 0.05;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            filter: blur(80px);
            pointer-events: none;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 140px 0;
            max-width: 640px;
            margin: 0 auto;
        }

        .cta-inner h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(40px, 6vw, 68px);
            font-weight: 400;
            line-height: 1.08;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .cta-inner h2 em {
            font-style: italic;
            color: var(--blue);
        }

        .cta-inner p {
            font-size: 17px;
            color: var(--gray-400);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 460px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btns {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            padding: 16px 36px;
            background: var(--blue);
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .btn-cta:hover { opacity: 0.85; }

        .btn-cta svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        .btn-cta-ghost {
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-400);
            padding: 16px 28px;
            border: 1px solid var(--gray-700);
            border-radius: 8px;
            transition: all 0.2s;
        }

        .btn-cta-ghost:hover { border-color: var(--gray-500); color: #fff; }

        .cta-note {
            font-size: 12px;
            color: var(--gray-600);
            margin-top: 20px;
        }

        /* ---- TESTIMONIALS ---- */
        .testimonials-sec {
            padding: 120px 0;
            background: var(--black);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .testimonials-bg-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(220,64,64,0.05) 0%, transparent 70%);
            top: 10%;
            left: -100px;
            pointer-events: none;
        }

        .testimonials-bg-glow-2 {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(192,48,48,0.04) 0%, transparent 70%);
            bottom: 5%;
            right: -100px;
            pointer-events: none;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 64px;
            position: relative;
            z-index: 2;
        }

        .testimonials-header h3 {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--blue);
            margin-bottom: 16px;
        }

        .testimonials-header h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 400;
            line-height: 1.15;
            letter-spacing: -0.5px;
        }

        .testimonials-header h2 em {
            font-style: italic;
            color: var(--blue);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: var(--gray-900);
            border: 1px solid var(--gray-800);
            border-radius: 20px;
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
        }

        .testimonial-card:hover {
            border-color: var(--gray-700);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.3);
        }

        .testimonial-card.featured {
            border-color: rgba(220,64,64,0.3);
            background: linear-gradient(180deg, var(--gray-900) 0%, rgba(220,64,64,0.03) 100%);
        }

        .testimonial-card.featured:hover {
            border-color: rgba(220,64,64,0.5);
            box-shadow: 0 20px 56px rgba(220,64,64,0.1);
        }

        .tc-stars {
            display: flex;
            gap: 3px;
        }

        .tc-star {
            width: 16px;
            height: 16px;
        }

        .tc-star svg {
            width: 16px;
            height: 16px;
            fill: #fbbf24;
            stroke: none;
        }

        .tc-quote {
            font-size: 15px;
            line-height: 1.7;
            color: var(--gray-300);
            flex: 1;
        }

        .tc-quote em {
            font-style: normal;
            color: #fff;
            font-weight: 600;
        }

        .testimonial-card.featured .tc-quote {
            font-size: 16px;
            color: var(--gray-200);
        }

        .tc-author {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--gray-800);
        }

        .tc-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .tc-avatar.a1 { background: linear-gradient(135deg, #dc4040, #d43838); }
        .tc-avatar.a2 { background: linear-gradient(135deg, #b83a3a, #c05050); }
        .tc-avatar.a3 { background: linear-gradient(135deg, #c04848, #d06060); }
        .tc-avatar.a4 { background: linear-gradient(135deg, #a04040, #b85050); }
        .tc-avatar.a5 { background: linear-gradient(135deg, #d05858, #e07070); }
        .tc-avatar.a6 { background: linear-gradient(135deg, #dc4040, #f87171); }

        .tc-author-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .tc-name {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
        }

        .tc-role {
            font-size: 12px;
            color: var(--gray-500);
        }

        .tc-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 10px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 20px;
            background: rgba(220,64,64,0.1);
            color: var(--blue);
            margin-left: auto;
        }

        @media (max-width: 900px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
                margin: 0 auto;
            }
        }

        /* ---- MORE FEATURES ---- */
        .more-mockup {
            width: 100%;
            max-width: 480px;
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(0,0,0,0.3);
        }

        .more-mockup-header {
            border-bottom: 1px solid var(--gray-700);
        }

        .more-mockup-tabs {
            display: flex;
            padding: 0 16px;
        }

        .more-tab {
            font-size: 11px;
            font-weight: 500;
            padding: 10px 16px;
            color: var(--gray-500);
            border-bottom: 2px solid transparent;
            transition: all 0.15s;
        }

        .more-tab.active {
            color: var(--blue);
            border-bottom-color: var(--blue);
        }

        .more-mockup-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .more-security-panel {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            border-right: 1px solid var(--gray-700);
        }

        .more-sec-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 8px;
        }

        .more-sec-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .more-sec-icon.shield { background: rgba(220,64,64,0.15); color: var(--blue); }
        .more-sec-icon.mail { background: rgba(59,130,246,0.15); color: #5b9cf6; }
        .more-sec-icon.key { background: rgba(251,191,36,0.15); color: #fbbf24; }

        .more-sec-text {
            flex: 1;
            min-width: 0;
        }

        .more-sec-text strong { display: block; font-size: 11px; font-weight: 600; color: #fff; }
        .more-sec-text span { font-size: 9px; color: var(--gray-400); }

        .more-toggle {
            width: 32px;
            height: 18px;
            border-radius: 9px;
            background: var(--gray-600);
            position: relative;
            flex-shrink: 0;
            transition: background 0.2s;
        }

        .more-toggle::after {
            content: '';
            position: absolute;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #fff;
            top: 2px;
            left: 2px;
            transition: transform 0.2s;
        }

        .more-toggle.on {
            background: var(--blue);
        }

        .more-toggle.on::after {
            transform: translateX(14px);
        }

        .more-analytics-row {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 6px;
        }

        .more-analytics-card {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 10px;
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 8px;
        }

        .more-analytics-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .more-analytics-icon.ga { background: rgba(220,64,64,0.15); color: var(--blue); }
        .more-analytics-icon.px { background: rgba(16,163,74,0.15); color: #34d399; }

        .more-analytics-text strong { display: block; font-size: 10px; font-weight: 600; color: #fff; }

        .more-status {
            font-size: 9px;
            font-weight: 600;
        }

        .more-status.active { color: #34d399; }

        .more-sidebar-panel {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .more-sidebar-preview {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .more-sb-label {
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-400);
        }

        .more-sb-mock {
            display: flex;
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 8px;
            overflow: hidden;
            height: 100px;
        }

        .more-sb-rail {
            width: 40px;
            flex-shrink: 0;
        }

        .more-sb-content {
            flex: 1;
            padding: 10px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .more-sb-item {
            height: 6px;
            border-radius: 3px;
            background: var(--gray-700);
            width: 60%;
        }

        .more-sb-item.active {
            background: var(--blue);
            opacity: 0.5;
        }

        .more-color-swatches {
            display: flex;
            gap: 6px;
        }

        .more-swatch {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.2s, transform 0.2s;
        }

        .more-swatch:hover { transform: scale(1.1); }

        .more-swatch.active {
            border-color: #fff;
            box-shadow: 0 0 0 2px var(--gray-800);
        }

        .more-form-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background: var(--gray-900);
            border: 1px dashed var(--gray-600);
            border-radius: 8px;
        }

        .more-form-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(192,48,48,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .more-form-text strong { display: block; font-size: 11px; font-weight: 600; }

        .more-soon {
            font-size: 9px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 20px;
            background: rgba(251,191,36,0.15);
            color: #fbbf24;
            margin-left: 6px;
            vertical-align: middle;
        }

        @media (max-width: 900px) {
            .more-mockup-body { grid-template-columns: 1fr; }
            .more-security-panel { border-right: none; border-bottom: 1px solid var(--gray-700); }
        }

        /* ---- CDN SECTION ---- */
        .cdn-sec {
            padding: 120px 0;
            background: var(--white);
        }

        .cdn-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .cdn-text h3 {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--blue);
            margin-bottom: 20px;
        }

        .cdn-text h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 400;
            line-height: 1.12;
            letter-spacing: -0.5px;
            margin-bottom: 20px;
        }

        .cdn-text h2 em { font-style: italic; color: var(--blue); }

        .cdn-text > p {
            font-size: 16px;
            color: var(--gray-500);
            line-height: 1.7;
            max-width: 480px;
            margin-bottom: 36px;
        }

        .cdn-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .cdn-stat {
            padding: 20px;
            background: var(--gray-100);
            border-radius: 12px;
            text-align: center;
        }

        .cdn-stat-val {
            font-family: 'Instrument Serif', serif;
            font-size: 32px;
            color: var(--black);
            line-height: 1;
            margin-bottom: 4px;
        }

        .cdn-stat-label {
            font-size: 12px;
            color: var(--gray-500);
        }

        .cdn-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cdn-map-card {
            width: 100%;
            max-width: 520px;
            background: var(--gray-900);
            border: 1px solid var(--gray-800);
            border-radius: 20px;
            padding: 32px;
            position: relative;
            overflow: hidden;
        }

        .cdn-map-card::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(220,64,64,0.06) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .cdn-map-title {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            z-index: 2;
        }

        .cdn-map-title svg {
            width: 16px;
            height: 16px;
            stroke: var(--blue);
            fill: none;
            stroke-width: 1.5;
        }

        .cdn-nodes {
            position: relative;
            width: 100%;
            height: 240px;
            z-index: 2;
        }

        .cdn-node {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .cdn-node-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--blue);
            box-shadow: 0 0 12px rgba(220,64,64,0.4);
            animation: cdnPulse 3s ease-in-out infinite;
        }

        .cdn-node-dot.secondary {
            background: #d43838;
            box-shadow: 0 0 12px rgba(212,56,56,0.3);
            animation-delay: 0.5s;
        }

        .cdn-node-dot.tertiary {
            background: #f87171;
            box-shadow: 0 0 10px rgba(248,113,113,0.3);
            animation-delay: 1s;
        }

        @keyframes cdnPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.7; }
        }

        .cdn-node-label {
            font-size: 9px;
            font-weight: 600;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cdn-node.n1 { top: 8%; left: 15%; }
        .cdn-node.n2 { top: 5%; left: 48%; }
        .cdn-node.n3 { top: 10%; right: 12%; }
        .cdn-node.n4 { top: 38%; left: 8%; }
        .cdn-node.n5 { top: 35%; left: 55%; }
        .cdn-node.n6 { top: 32%; right: 8%; }
        .cdn-node.n7 { bottom: 25%; left: 18%; }
        .cdn-node.n8 { bottom: 20%; left: 45%; }
        .cdn-node.n9 { bottom: 22%; right: 15%; }
        .cdn-node.n10 { bottom: 2%; left: 35%; }

        .cdn-lines {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .cdn-lines svg {
            width: 100%;
            height: 100%;
        }

        .cdn-lines line {
            stroke: rgba(220,64,64,0.12);
            stroke-width: 1;
        }

        .cdn-speed-bar {
            margin-top: 24px;
            position: relative;
            z-index: 2;
        }

        .cdn-speed-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

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

        .cdn-speed-label {
            font-size: 11px;
            font-weight: 500;
            color: var(--gray-400);
            width: 80px;
            flex-shrink: 0;
        }

        .cdn-speed-track {
            flex: 1;
            height: 6px;
            background: var(--gray-800);
            border-radius: 3px;
            overflow: hidden;
        }

        .cdn-speed-fill {
            height: 100%;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--blue), #f87171);
        }

        .cdn-speed-ms {
            font-size: 11px;
            font-weight: 700;
            color: #34d399;
            width: 40px;
            text-align: right;
        }

        .cdn-float {
            position: absolute;
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 10px;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.4);
            white-space: nowrap;
            z-index: 5;
        }

        .cdn-float.f1 {
            top: -12px;
            right: -16px;
            animation: bob 4s ease-in-out infinite;
        }

        .cdn-float.f2 {
            bottom: 24px;
            left: -20px;
            animation: bob 5s ease-in-out infinite 1s;
        }

        .cdn-float-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cdn-float-icon svg { width: 16px; height: 16px; stroke-width: 1.5; fill: none; }

        .cdn-float-icon.red { background: rgba(220,64,64,0.15); }
        .cdn-float-icon.red svg { stroke: var(--blue); }
        .cdn-float-icon.green { background: rgba(52,211,153,0.15); }
        .cdn-float-icon.green svg { stroke: #34d399; }

        .cdn-float strong { display: block; font-size: 12px; font-weight: 600; color: #fff; }
        .cdn-float span { font-size: 10px; color: var(--gray-500); }

        @media (max-width: 900px) {
            .cdn-inner { grid-template-columns: 1fr; gap: 48px; }
            .cdn-visual { order: -1; }
            .cdn-visual { overflow: visible; }
            .cdn-map-card { max-width: 100%; }
            .cdn-float.f1 { right: 0; top: -8px; }
            .cdn-float.f2 { left: 0; bottom: 8px; }
        }

        /* ---- FOOTER ---- */
        footer {
            padding: 40px 0;
            background: var(--black);
            border-top: 1px solid var(--gray-800);
            color: var(--gray-500);
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-inner .logo { color: #fff; }
        .footer-inner .logo .tyro { color: var(--blue); }
        .footer-inner .logo .press { color: #fff; }

        .footer-links { display: flex; gap: 24px; }

        .footer-links a {
            font-size: 13px;
            color: var(--gray-600);
            transition: color 0.2s;
        }

        .footer-links a:hover { color: #fff; }

        /* ---- API / HEADLESS SECTION ---- */
        .api-sec {
            padding: 120px 0;
            background: var(--black);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .api-bg-glow {
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(220,64,64,0.06) 0%, transparent 70%);
            top: 10%;
            right: -200px;
            pointer-events: none;
        }

        .api-bg-grid {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
        }

        .api-top {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 64px;
        }

        .api-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--blue);
            margin-bottom: 20px;
        }

        .api-badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--blue);
            animation: pulse-dot 2s ease-in-out infinite;
        }

        .api-top h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(40px, 5.5vw, 64px);
            font-weight: 400;
            line-height: 1.08;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
        }

        .api-top h2 em {
            font-style: italic;
            color: var(--blue);
        }

        .api-top > p {
            font-size: 17px;
            color: var(--gray-400);
            line-height: 1.7;
            max-width: 640px;
            margin: 0 auto;
        }

        .api-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 24px;
            align-items: start;
        }

        .api-terminal-card {
            background: var(--gray-900);
            border: 1px solid var(--gray-800);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(0,0,0,0.4);
        }

        .atc-bar {
            height: 40px;
            background: var(--gray-800);
            border-bottom: 1px solid var(--gray-700);
            display: flex;
            align-items: center;
            padding: 0 16px;
            gap: 12px;
        }

        .atc-dots {
            display: flex;
            gap: 5px;
        }

        .atc-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .atc-dots span:nth-child(1) { background: #f87171; }
        .atc-dots span:nth-child(2) { background: #fbbf24; }
        .atc-dots span:nth-child(3) { background: #34d399; }

        .atc-title {
            font-size: 11px;
            color: var(--gray-500);
            font-family: 'SF Mono', 'Fira Code', monospace;
        }

        .atc-body {
            padding: 20px;
        }

        .atc-method-row {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid var(--gray-800);
        }

        .atc-method-row:last-of-type { border-bottom: none; }

        .atc-method {
            font-size: 9px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .atc-method.get { background: rgba(52,211,153,0.15); color: #34d399; }

        .atc-path {
            font-size: 12px;
            font-weight: 600;
            color: #ddd;
            font-family: 'SF Mono', 'Fira Code', monospace;
        }

        .atc-desc {
            font-size: 11px;
            color: var(--gray-500);
            margin-left: auto;
        }

        .atc-divider {
            height: 1px;
            background: var(--gray-700);
            margin: 12px 0;
        }

        .atc-code-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .atc-code-header span:first-child {
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .atc-code-status {
            font-size: 10px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 4px;
            background: rgba(52,211,153,0.15);
            color: #34d399;
        }

        .atc-code {
            font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
            font-size: 11px;
            line-height: 1.7;
            color: var(--gray-400);
            background: var(--gray-800);
            padding: 16px;
            border-radius: 8px;
            border: 1px solid var(--gray-700);
            overflow-x: auto;
            white-space: pre;
            margin: 0;
        }

        .atc-key { color: var(--blue); }
        .atc-str { color: #34d399; }
        .atc-num { color: #fbbf24; }
        .atc-brace { color: var(--gray-500); }

        .api-features-col {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .api-feat-card {
            display: flex;
            gap: 14px;
            padding: 16px;
            background: var(--gray-900);
            border: 1px solid var(--gray-800);
            border-radius: 12px;
            transition: border-color 0.2s;
        }

        .api-feat-card:hover { border-color: var(--gray-700); }

        .afc-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .afc-icon svg { width: 18px; height: 18px; stroke-width: 1.5; fill: none; }

        .afc-icon.green { background: rgba(52,211,153,0.15); }
        .afc-icon.green svg { stroke: #34d399; }
        .afc-icon.blue { background: rgba(220,64,64,0.15); }
        .afc-icon.blue svg { stroke: var(--blue); }
        .afc-icon.amber { background: rgba(251,191,36,0.15); }
        .afc-icon.amber svg { stroke: #fbbf24; }

        .afc-text h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
        .afc-text p { font-size: 11px; color: var(--gray-500); line-height: 1.5; }

        .api-frameworks {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 16px;
            background: var(--gray-900);
            border: 1px solid var(--gray-800);
            border-radius: 12px;
        }

        .afw-label {
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .afw-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .afw-chip {
            font-size: 11px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 6px;
            background: var(--gray-800);
            color: var(--gray-400);
            transition: all 0.15s;
        }

        .afw-chip:hover { background: var(--blue); color: #fff; }

        /* ---- DATA PORTABILITY SECTION ---- */
        .port-sec {
            padding: 120px 0;
            background: var(--white);
        }

        .port-top {
            text-align: center;
            margin-bottom: 64px;
        }

        .port-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--blue);
            margin-bottom: 20px;
        }

        .port-top h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(40px, 5.5vw, 64px);
            font-weight: 400;
            line-height: 1.08;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
        }

        .port-top h2 em { font-style: italic; color: var(--blue); }

        .port-top > p {
            font-size: 17px;
            color: var(--gray-500);
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        .port-grid {
            display: flex;
            align-items: stretch;
            gap: 24px;
            justify-content: center;
        }

        .port-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 36px 28px 32px;
            max-width: 320px;
            width: 320px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .port-card::before {
            display: none;
        }

        .port-card:hover {
            border-color: var(--gray-300);
            box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.03);
            transform: translateY(-6px);
        }

        .port-card:hover::before {
            height: 4px;
        }

        .port-card.highlight {
            background: linear-gradient(180deg, var(--white) 0%, #fef7f7 100%);
            border-color: var(--blue);
            box-shadow: 0 12px 40px rgba(220,64,64,0.1), 0 0 0 1px rgba(220,64,64,0.08);
            transform: scale(1.04);
            z-index: 2;
        }

        .port-card.highlight::before {
            display: none;
        }

        .port-card.accent-blue::before {
            display: none;
        }

        .port-card.accent-violet::before {
            display: none;
        }

        .port-card.highlight:hover {
            box-shadow: 0 24px 64px rgba(220,64,64,0.16), 0 0 0 1px rgba(220,64,64,0.12);
            transform: scale(1.04) translateY(-4px);
        }

        .portc-step {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            color: var(--gray-500);
        }

        .port-card.highlight .portc-step {
            background: var(--blue);
            color: #fff;
            box-shadow: 0 2px 8px rgba(220,64,64,0.3);
        }

        .portc-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .portc-icon svg { width: 28px; height: 28px; stroke-width: 1.5; fill: none; }

        .portc-icon.blue { background: linear-gradient(135deg, #fef0ef, #fde2e2); }
        .portc-icon.blue svg { stroke: var(--blue); }
        .portc-icon.green { background: linear-gradient(135deg, #fef0ef, #fde2e2); }
        .portc-icon.green svg { stroke: var(--blue); }
        .portc-icon.violet { background: linear-gradient(135deg, #fef0ef, #fde2e2); }
        .portc-icon.violet svg { stroke: var(--blue); }

        .port-card h3 {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.4px;
            line-height: 1.25;
        }

        .port-card.highlight h3 {
            font-size: 22px;
        }

        .port-card > p {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.65;
        }

        .portc-specs {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 4px;
            padding-top: 18px;
            border-top: 1px solid var(--gray-100);
        }

        .portc-spec {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: var(--gray-700);
            font-weight: 500;
        }

        .portc-spec svg { stroke: #34d399; flex-shrink: 0; }

        .port-arrow-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 0 8px;
        }

        .port-arrow-line {
            width: 2px;
            height: 40px;
            background: linear-gradient(180deg, transparent, var(--gray-300));
            border-radius: 1px;
        }

        .port-arrow-col svg {
            opacity: 0.5;
        }

        /* ---- REVEAL ---- */
        .rv {
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .rv.vis { opacity: 1; transform: translateY(0); }

        /* ---- RESPONSIVE ---- */
        @media (max-width: 1024px) {
            .hero-mockup-wrap { max-width: 100%; }
            .hero-float.f1 { right: 0; }
            .hero-float.f2 { left: 0; }
            .hm-sidebar { display: none; }
            .hm-body { grid-template-columns: 1fr; }
            .feat-row { grid-template-columns: 60px 1fr; gap: 24px; padding: 28px 0; }
            .feat-detail { grid-column: 2; margin-top: 8px; }
            .feat-num { font-size: 36px; }
            .feat-header { margin-bottom: 48px; }
            .themes-grid { grid-template-columns: repeat(2, 1fr); }
            .media-bento { grid-template-columns: repeat(6, 1fr); }
            .mb-card.span-7 { grid-column: span 6; }
            .mb-card.span-5 { grid-column: span 6; }
            .mb-card.span-4 { grid-column: span 3; }
            .mb-card.span-8 { grid-column: span 6; }
            .ai-bento { grid-template-columns: repeat(6, 1fr); }
            .ai-card.span-7 { grid-column: span 6; }
            .ai-card.span-5 { grid-column: span 6; }
            .ai-card.span-4 { grid-column: span 3; }
            .ai-card.span-8 { grid-column: span 6; }
            .ai-card.span-6 { grid-column: span 6; }
            .ai-card.span-12 { grid-column: span 6; }
            .power-block { grid-template-columns: 1fr; min-height: auto; }
            .power-block.reverse .power-visual { order: 0; }
            .power-text { padding: 48px 24px; }
            .power-visual { min-height: 360px; }
            .pv-float.f1 { right: 24px; top: 24px; }
            .pv-float.f2 { left: 24px; bottom: 24px; }
            .cta-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .cta-inner p { margin: 0 auto; }
            .feat-header { grid-template-columns: 1fr; gap: 16px; }
            .api-grid { grid-template-columns: 1fr; }
            .atc-desc { display: none; }
        }

        @media (max-width: 768px) {
            nav { mix-blend-mode: normal; background: var(--black); }
            .nav-right a:not(.nav-btn) { display: none; }
            .hero { padding-top: 56px; }
            .hero-top h1 { font-size: 44px; letter-spacing: -1px; }
            .hero-desc { font-size: 15px; }
            .hero-actions { flex-direction: column; align-items: center; }
            .hero-cta, .hero-cta-ghost { width: auto; min-width: 280px; justify-content: center; }
            .hero-mockup-wrap { padding: 0; }
            .hm-body { grid-template-columns: 1fr; }
            .hm-sidebar { display: none; }
            .hero-float { display: none; }
            .hero-stats-bar { gap: 24px; flex-wrap: wrap; padding: 32px 0 48px; }
            .hero-stat-divider { display: none; }
            .power-grid-list { grid-template-columns: 1fr; }
            .pv-float { display: none; }
            .pub-mockup-body { grid-template-columns: 1fr; }
            .pub-sidebar-info { padding-left: 0; padding-top: 14px; border-left: none; border-top: 1px solid var(--gray-600); }
            .pub-mockup { max-width: 100%; }
            .deploy-content { grid-template-columns: 1fr; }
            .deploy-sidebar { padding-left: 0; padding-top: 14px; }
            .deploy-terminal { padding-right: 0; border-right: none; padding-bottom: 14px; border-bottom: 1px solid var(--gray-600); }
            .deploy-mockup { max-width: 100%; }
            .media-bento { grid-template-columns: 1fr; }
            .mb-card.span-7, .mb-card.span-5, .mb-card.span-4, .mb-card.span-8, .mb-card.span-6 { grid-column: span 1; }
            .feat-mini-grid { grid-template-columns: 1fr; }
            .lib-grid { grid-template-columns: repeat(3, 1fr); }
            .media-artifact { display: none; }
            .ai-bento { grid-template-columns: 1fr; }
            .ai-card.span-7, .ai-card.span-5, .ai-card.span-4, .ai-card.span-8, .ai-card.span-6, .ai-card.span-12 { grid-column: span 1; }
            .ai-float { display: none; }
            .ai-byok-row { flex-direction: column; gap: 12px; }
            .ai-feat-pills { justify-content: center; }
            .api-grid { grid-template-columns: 1fr; }
            .api-sec { padding: 80px 0; }
            .atc-desc { display: none; }
            .port-grid { flex-direction: column; gap: 0; }
            .port-card { max-width: 100%; width: 100%; }
            .port-card.highlight { transform: none; }
            .port-arrow-col { display: none; }
            .port-grid { flex-direction: column; gap: 20px; }
            .port-arrow-col { flex-direction: row; padding: 12px 0; }
            .port-arrow-line { width: 32px; height: 2px; }
            .port-sec { padding: 80px 0; }
            .cta-inner { padding: 80px 0; }
            .cta-btns { flex-direction: column; }
            .cta-btns .btn-cta, .cta-btns .btn-cta-ghost { width: 100%; justify-content: center; }
            .feat-num { font-size: 32px; }
            .feat-row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
            .feat-detail { grid-column: 1; margin-top: 4px; }
            .feat-header { margin-bottom: 32px; }
            .themes-grid { grid-template-columns: repeat(2, 1fr); }
            .themes-header { flex-direction: column; align-items: flex-start; gap: 16px; }
            .themes-header p { text-align: left; }
            .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
            .footer-links { flex-wrap: wrap; justify-content: center; }
        }