:root {
            --ink: #07111f;
            --muted: #4f6073;
            --soft: #f6f8fa;
            --line: #d9e1ea;
            --teal: #0f7c80;
            --teal-soft: #e8f5f3;
            --orange: #f47a18;
            --orange-soft: #fff2e8;
            --navy: #071827;
            --shadow: 0 18px 60px rgba(7, 17, 31, 0.10);
            color-scheme: light;
        }
        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            background: #ffffff;
            color: var(--ink);
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            font-size: 15px;
            line-height: 1.55;
            letter-spacing: 0;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }
        body.lang-zh {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", ui-sans-serif, system-ui, sans-serif;
            line-height: 1.72;
        }
        body:not(.lang-zh) .i18n-zh,
        body.lang-en .i18n-zh,
        body.lang-zh .i18n-en,
        html.lang-en-root .i18n-zh,
        html.lang-zh-root .i18n-en { display: none !important; }
        a { color: inherit; }
        img { max-width: 100%; display: block; }
        .asset-picture { display: block; width: 100%; height: 100%; }
        .asset-picture img { width: 100%; height: 100%; object-fit: cover; }
        .page-shell {
            width: min(100% - 48px, 1480px);
            margin: 0 auto;
            border: 1px solid rgba(202, 211, 221, 0.92);
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
            box-shadow: var(--shadow);
        }
        .site-nav {
            position: sticky;
            top: 0;
            z-index: 80;
            width: min(100% - 48px, 1480px);
            min-height: 64px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(220px, 1fr) minmax(0, auto) minmax(250px, 1fr);
            gap: 14px;
            align-items: center;
            padding: 10px 20px;
            border: 1px solid rgba(202, 211, 221, 0.92);
            border-bottom: 0;
            border-radius: 8px 8px 0 0;
            background: rgba(255, 255, 255, 0.96);
            box-shadow: 0 14px 44px rgba(7, 17, 31, 0.07);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }
        .brand-home {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-height: 44px;
            min-width: 0;
            text-decoration: none;
        }
        .site-logo { width: 42px; height: 42px; flex: 0 0 auto; }
        .brand-home b {
            display: block;
            font-size: 18px;
            line-height: 1.05;
            font-weight: 840;
        }
        .brand-home small {
            display: block;
            margin-top: 3px;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.1;
            font-weight: 760;
        }
        .nav-center {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            min-width: 0;
        }
        .nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            min-height: 36px;
            color: #172033;
            text-decoration: none;
            font-size: 13px;
            font-weight: 780;
            white-space: nowrap;
        }
        .nav-link.active::after,
        .nav-link:hover::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 2px;
            height: 2px;
            border-radius: 2px;
            background: var(--teal);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            min-width: 0;
        }
        .nav-lang,
        .nav-site-button {
            min-height: 40px;
            border: 1px solid var(--line);
            border-radius: 6px;
            background: #fff;
            color: var(--ink);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 0 15px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 800;
            white-space: nowrap;
            cursor: pointer;
        }
        .nav-site-button.research { border-color: rgba(15, 124, 128, 0.45); color: #0b666a; }
        .nav-site-button.travel { border-color: rgba(244, 122, 24, 0.48); color: #b74c08; }
        .language-dropdown { position: relative; }
        .language-menu {
            position: absolute;
            right: 0;
            top: calc(100% + 8px);
            min-width: 168px;
            padding: 7px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 18px 44px rgba(7, 17, 31, 0.12);
            opacity: 0;
            transform: translateY(-4px);
            pointer-events: none;
            transition: opacity .18s ease, transform .18s ease;
        }
        .language-dropdown.is-open .language-menu {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .language-option {
            width: 100%;
            min-height: 44px;
            border: 0;
            border-radius: 6px;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 9px 10px;
            color: var(--ink);
            text-decoration: none;
            font: inherit;
            font-size: 13px;
            cursor: pointer;
        }
        .language-option.active,
        .language-option:hover { background: var(--soft); }
        .hero-banner {
            position: relative;
            min-height: 318px;
            display: grid;
            place-items: center;
            overflow: hidden;
            border-bottom: 1px solid var(--line);
            isolation: isolate;
        }
        .hero-banner .asset-picture {
            position: absolute;
            inset: 0;
            z-index: -2;
        }
        .hero-banner .asset-picture img { object-position: center 52%; }
        .hero-banner::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background:
                linear-gradient(90deg, rgba(255,255,255,.78), rgba(255,255,255,.25) 42%, rgba(255,255,255,.02) 70%),
                linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.12) 36%, rgba(255,255,255,.06));
        }
        .hero-copy {
            width: min(820px, calc(100% - 52px));
            margin: 0 auto;
            padding: 42px 0 46px;
            text-align: center;
        }
        .hero-copy .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            color: #0a676c;
            font-size: 13px;
            font-weight: 830;
        }
        .hero-copy h1 {
            margin: 0;
            color: #07111f;
            font-size: 50px;
            line-height: 1.03;
            font-weight: 900;
        }
        .hero-copy h1 .zh-line {
            display: block;
            margin-top: 12px;
            font-size: 36px;
            line-height: 1.16;
            font-weight: 880;
        }
        body.lang-zh .hero-copy h1 {
            font-size: 44px;
            line-height: 1.12;
        }
        body.lang-zh .hero-copy h1 .en-kicker {
            display: block;
            margin-bottom: 9px;
            font-size: 30px;
            line-height: 1.08;
        }
        .hero-copy p {
            width: min(670px, 100%);
            margin: 16px auto 0;
            color: #172235;
            font-size: 17px;
            line-height: 1.55;
            font-weight: 600;
        }
        body.lang-zh .hero-copy p {
            width: min(680px, 100%);
            font-size: 17px;
            line-height: 1.78;
            font-weight: 620;
        }
        .product-row {
            display: grid;
            grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
            gap: clamp(30px, 4vw, 50px);
            align-items: center;
            padding: clamp(28px, 3.3vw, 46px) clamp(38px, 5vw, 70px);
            border-bottom: 1px solid var(--line);
            background: #fff;
        }
        .product-copy { min-width: 0; }
        .section-title {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 0 0 5px;
        }
        .section-title .business-svg-icon {
            width: 34px;
            height: 34px;
            flex: 0 0 auto;
        }
        .research-row .business-svg-icon,
        .qa-section .business-svg-icon,
        .news-section .business-svg-icon { color: var(--teal); }
        .travel-row .business-svg-icon { color: var(--orange); }
        .section-title h2 {
            margin: 0;
            font-size: 27px;
            line-height: 1.1;
            font-weight: 900;
        }
        .product-subtitle {
            margin: 0 0 16px 46px;
            color: #172235;
            font-size: 15px;
            line-height: 1.35;
            font-weight: 720;
        }
        .product-copy p {
            max-width: 34em;
            margin: 0 0 18px;
            color: #223249;
            font-size: 14px;
            line-height: 1.55;
            font-weight: 560;
        }
        body.lang-zh .product-copy p,
        body.lang-zh .product-subtitle {
            line-height: 1.76;
        }
        body.lang-zh .product-copy p { max-width: 31em; }
        .feature-list {
            display: grid;
            gap: 9px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .feature-list li {
            display: grid;
            grid-template-columns: 18px minmax(0, 1fr);
            gap: 9px;
            align-items: start;
            color: #172235;
            font-size: 14px;
            font-weight: 720;
        }
        .feature-list b {
            width: 16px;
            height: 16px;
            margin-top: 2px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            color: #fff;
            font-size: 10px;
            line-height: 1;
        }
        .research-row .feature-list b { background: var(--teal); }
        .travel-row .feature-list b { background: var(--orange); }
        .screenshot-frame {
            position: relative;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 12px 34px rgba(7, 17, 31, 0.08);
        }
        .research-shot-crop {
            aspect-ratio: 16 / 7.2;
        }
        .travel-shot-crop {
            aspect-ratio: 16 / 6.7;
        }
        .research-shot-crop .asset-picture img {
            object-position: center top;
        }
        .travel-shot-crop .asset-picture img { object-position: center top; }
        .matrix-language-shot { width: 100%; height: 100%; }
        body.lang-zh .matrix-language-shot.is-en,
        body:not(.lang-zh) .matrix-language-shot.is-zh { display: none; }
        .screenshot-label {
            position: absolute;
            left: 14px;
            bottom: 12px;
            padding: 5px 9px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.88);
            color: #243247;
            font-size: 12px;
            font-weight: 820;
            box-shadow: 0 8px 22px rgba(7,17,31,.10);
        }
        .qa-section,
        .news-section {
            padding: clamp(28px, 3.3vw, 44px) clamp(38px, 5vw, 70px);
            border-bottom: 1px solid var(--line);
            background: #fff;
        }
        .section-heading {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 20px;
            align-items: end;
            margin-bottom: 16px;
        }
        .section-heading p {
            max-width: 720px;
            margin: 6px 0 0 46px;
            color: var(--muted);
            font-weight: 610;
        }
        body.lang-zh .section-heading p {
            max-width: 780px;
            line-height: 1.78;
        }
        .section-action {
            min-height: 38px;
            border: 1px solid var(--line);
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 18px;
            color: #0a1727;
            text-decoration: none;
            font-size: 13px;
            font-weight: 820;
            white-space: nowrap;
        }
        .qa-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px 16px;
        }
        .qa-grid details {
            border: 1px solid var(--line);
            border-radius: 6px;
            background: #fff;
            overflow: hidden;
        }
        .qa-grid summary {
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 0 16px;
            color: #132034;
            font-weight: 800;
            cursor: pointer;
            list-style: none;
        }
        .qa-grid summary::-webkit-details-marker { display: none; }
        .qa-grid summary::after {
            content: "+";
            color: var(--teal);
            font-size: 18px;
            line-height: 1;
            font-weight: 700;
        }
        .qa-grid details[open] summary::after { content: "-"; }
        .qa-grid p {
            margin: 0;
            padding: 0 16px 14px;
            color: var(--muted);
            font-size: 14px;
            font-weight: 560;
        }
        .daily-board {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: clamp(14px, 2vw, 22px);
        }
        .daily-card {
            border: 1px solid var(--line);
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
        }
        .daily-card h3 {
            margin: 0;
            padding: 10px 14px;
            border-bottom: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 16px;
            line-height: 1.1;
        }
        .daily-card h3 span:first-child { font-weight: 900; }
        .daily-card h3 a {
            color: var(--teal);
            font-size: 12px;
            text-decoration: none;
            font-weight: 800;
        }
        .daily-card.ai h3 { color: #194ed6; }
        .daily-card.technology h3 { color: #07863c; }
        .daily-card.musk h3 { color: #d95d00; }
        .updates-main-feed {
            display: grid;
            gap: 0;
        }
        .update-text-row,
        .update-skeleton-card {
            display: grid;
            gap: 2px;
            min-height: 52px;
            padding: 8px 14px;
            border-bottom: 1px solid #edf1f5;
            text-decoration: none;
            color: var(--ink);
        }
        .update-text-row:last-child,
        .update-skeleton-card:last-child { border-bottom: 0; }
        .item-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            color: var(--muted);
            font-size: 11px;
            font-weight: 760;
        }
        .item-tag { display: none; }
        .item-title {
            margin: 0;
            overflow: hidden;
            color: #132034;
            font-size: 13px;
            line-height: 1.25;
            font-weight: 800;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .item-desc { display: none; }
        .updates-placeholder {
            margin: 0;
            padding: 18px 14px;
            color: var(--muted);
            font-size: 13px;
            font-weight: 620;
        }
        .update-skeleton-line {
            display: block;
            height: 9px;
            border-radius: 9px;
            background: linear-gradient(90deg, #eef3f7, #f7fafc, #eef3f7);
        }
        .update-skeleton-line.short { width: 30%; }
        .update-skeleton-line.medium { width: 55%; }
        .update-skeleton-line.long { width: 84%; }
        .site-footer {
            display: grid;
            grid-template-columns: minmax(220px, 1.05fr) minmax(160px, .75fr) minmax(220px, 1fr) minmax(210px, .86fr) minmax(150px, .7fr);
            gap: clamp(22px, 2.5vw, 34px);
            padding: 30px clamp(38px, 5vw, 70px) 18px;
            background: radial-gradient(circle at 16% 20%, rgba(18,80,96,.42), transparent 36%), var(--navy);
            color: #e8f1f6;
        }
        .footer-brand {
            display: grid;
            gap: 12px;
        }
        .footer-brand-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-brand-row .site-logo { background: rgba(255,255,255,.94); border-radius: 999px; }
        .footer-brand b {
            display: block;
            font-size: 18px;
            line-height: 1.08;
            font-weight: 880;
        }
        .footer-brand small,
        .footer-brand p,
        .footer-col span,
        .footer-bottom {
            color: rgba(232, 241, 246, 0.76);
        }
        .footer-brand p {
            margin: 0;
            font-size: 13px;
            line-height: 1.5;
        }
        .footer-col {
            display: grid;
            align-content: start;
            gap: 8px;
            font-size: 13px;
        }
        .footer-col h3 {
            margin: 0 0 5px;
            color: #fff;
            font-size: 14px;
            font-weight: 860;
        }
        .footer-col a {
            color: #fff;
            text-decoration: none;
            font-weight: 660;
        }
        .footer-bottom {
            grid-column: 1 / -1;
            display: flex;
            justify-content: space-between;
            gap: 18px;
            padding-top: 14px;
            border-top: 1px solid rgba(255,255,255,.12);
            font-size: 12px;
        }
        .mobile-menu-glyph {
            display: none;
            width: 34px;
            height: 34px;
            border: 0;
            background: transparent;
            color: var(--ink);
            font-size: 23px;
            line-height: 1;
            cursor: pointer;
        }
        body[data-surface="mobile"] {
            background: #fff;
        }
        body[data-surface="mobile"] .site-nav {
            width: 100%;
            min-height: 49px;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 6px;
            padding: 8px 14px;
            border: 0;
            border-bottom: 1px solid var(--line);
            border-radius: 0;
            box-shadow: none;
        }
        body[data-surface="mobile"] .site-logo { width: 31px; height: 31px; }
        body[data-surface="mobile"] .brand-home {
            width: 196px;
            min-height: 44px;
        }
        body[data-surface="mobile"] .brand-home b { font-size: 14px; }
        body[data-surface="mobile"] .brand-home span { min-width: 0; }
        body[data-surface="mobile"] .brand-home b {
            max-width: 146px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        body[data-surface="mobile"] .brand-home small { display: none; }
        body[data-surface="mobile"] .nav-center,
        body[data-surface="mobile"] .nav-site-button { display: none; }
        body[data-surface="mobile"] .nav-actions {
            position: fixed;
            right: max(8px, calc(100vw - 382px));
            top: 4px;
            z-index: 120;
            display: flex !important;
            gap: 2px;
            background: rgba(255, 255, 255, 0.92);
        }
        body[data-surface="mobile"] .nav-lang {
            min-height: 44px;
            padding: 0 9px;
            border: 0;
            font-size: 12px;
        }
        body[data-surface="mobile"] .mobile-menu-glyph {
            display: inline-grid;
            place-items: center;
            width: 44px;
            height: 44px;
        }
        body[data-surface="mobile"] .page-shell {
            width: 100%;
            border: 0;
            border-radius: 0;
            box-shadow: none;
        }
        body[data-surface="mobile"] .hero-banner {
            min-height: 252px;
            place-items: start;
            border-bottom: 1px solid var(--line);
        }
        body[data-surface="mobile"] .hero-banner .asset-picture img {
            object-position: center center;
            transform: scale(1.22) translateX(-54px);
            transform-origin: center center;
        }
        body[data-surface="mobile"] .hero-banner::after {
            background:
                linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.36) 66%, rgba(255,255,255,.04)),
                linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.10));
        }
        body[data-surface="mobile"] .hero-copy {
            width: 100%;
            margin: 0;
            padding: 30px 20px 20px;
            text-align: left;
        }
        body[data-surface="mobile"] .hero-copy .eyebrow { display: none; }
        body[data-surface="mobile"] .hero-copy h1,
        body[data-surface="mobile"].lang-zh .hero-copy h1 {
            width: 292px;
            max-width: calc(100vw - 40px);
            font-size: 27px;
            line-height: 1.14;
        }
        body[data-surface="mobile"] .hero-copy h1 .zh-line,
        body[data-surface="mobile"].lang-zh .hero-copy h1 .en-kicker {
            margin-top: 8px;
            font-size: 20px;
            line-height: 1.22;
        }
        body[data-surface="mobile"] .hero-copy p {
            width: 270px;
            max-width: calc(100vw - 40px);
            margin: 10px 0 0;
            font-size: 13px;
            line-height: 1.5;
            font-weight: 620;
        }
        body[data-surface="mobile"].lang-zh .hero-copy p {
            width: 282px;
            font-size: 13px;
            line-height: 1.62;
        }
        body[data-surface="mobile"] .product-row {
            grid-template-columns: 1fr;
            gap: 16px;
            padding: 26px 20px;
        }
        body[data-surface="mobile"] .section-title h2 { font-size: 21px; }
        body[data-surface="mobile"] .section-title .business-svg-icon {
            width: 25px;
            height: 25px;
        }
        body[data-surface="mobile"] .product-subtitle {
            margin-left: 37px;
            margin-bottom: 13px;
            font-size: 13px;
        }
        body[data-surface="mobile"] .product-copy p {
            font-size: 13px;
            line-height: 1.55;
            margin-bottom: 13px;
        }
        body[data-surface="mobile"] .feature-list { gap: 6px; }
        body[data-surface="mobile"] .feature-list li {
            font-size: 13px;
            grid-template-columns: 16px minmax(0, 1fr);
            gap: 8px;
        }
        body[data-surface="mobile"] .feature-list b {
            width: 15px;
            height: 15px;
            font-size: 9px;
        }
        body[data-surface="mobile"] .research-shot-crop,
        body[data-surface="mobile"] .travel-shot-crop {
            aspect-ratio: 16 / 8.2;
        }
        body[data-surface="mobile"] .qa-section,
        body[data-surface="mobile"] .news-section {
            padding: 24px 20px;
        }
        body[data-surface="mobile"] .section-heading {
            grid-template-columns: 1fr;
            gap: 10px;
            margin-bottom: 12px;
        }
        body[data-surface="mobile"] .section-heading p {
            margin-left: 37px;
            font-size: 13px;
        }
        body[data-surface="mobile"] .section-action { display: none; }
        body[data-surface="mobile"] .qa-grid,
        body[data-surface="mobile"] .daily-board {
            grid-template-columns: 1fr;
            gap: 10px;
        }
        body[data-surface="mobile"] .daily-card:not(:first-child) {
            display: block;
        }
        body[data-surface="mobile"] .daily-card h3 {
            min-height: 38px;
            padding: 9px 12px;
            font-size: 14px;
        }
        body[data-surface="mobile"] .update-text-row,
        body[data-surface="mobile"] .update-skeleton-card {
            min-height: 42px;
            padding: 7px 12px;
        }
        body[data-surface="mobile"] .item-title { font-size: 12px; }
        body[data-surface="mobile"] .site-footer {
            grid-template-columns: 1fr;
            gap: 18px;
            padding: 24px 20px 18px;
        }
        body[data-surface="mobile"] .footer-col { gap: 7px; }
        body[data-surface="mobile"] .footer-bottom {
            display: grid;
            gap: 8px;
        }


        /* v21: localized pages reuse the full homepage with locale-aware typography. */
        body.localized-home {
            --locale-hero-size: clamp(39px, 4.8vw, 62px);
            --locale-section-size: clamp(29px, 3.05vw, 41px);
            --locale-card-title-size: 25px;
            --locale-heading-leading: 1.13;
            --locale-body-leading: 1.68;
            --locale-copy-max: 64ch;
            hanging-punctuation: first last;
            font-kerning: normal;
        }
        body.localized-home.language-ja {
            font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", "Segoe UI", sans-serif;
            line-break: strict;
        }
        body.localized-home.language-ko {
            font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Segoe UI", sans-serif;
            line-break: strict;
            word-break: keep-all;
        }
        body.localized-home.language-ar {
            --locale-hero-size: clamp(40px, 4.9vw, 64px);
            --locale-section-size: clamp(30px, 3.15vw, 42px);
            --locale-heading-leading: 1.24;
            --locale-body-leading: 1.86;
            --locale-copy-max: 58ch;
            font-family: "Geeza Pro", "Noto Naskh Arabic", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
        }
        body.localized-home.language-de,
        body.localized-home.language-fr,
        body.localized-home.language-es,
        body.localized-home.language-pt,
        body.localized-home.language-it {
            --locale-hero-size: clamp(38px, 4.25vw, 58px);
            --locale-section-size: clamp(28px, 2.95vw, 39px);
            --locale-card-title-size: 24px;
            --locale-heading-leading: 1.16;
            --locale-body-leading: 1.72;
            --locale-copy-max: 66ch;
            font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }
        body.localized-home.language-ja,
        body.localized-home.language-ko {
            --locale-hero-size: clamp(38px, 4.55vw, 58px);
            --locale-section-size: clamp(29px, 3vw, 40px);
            --locale-card-title-size: 24px;
            --locale-heading-leading: 1.2;
            --locale-body-leading: 1.88;
            --locale-copy-max: 38em;
        }
        body.localized-home .hero-kicker,
        body.localized-home .section-eyebrow,
        body.localized-home .trial-eyebrow,
        body.localized-home .research-kicker {
            text-transform: none;
            letter-spacing: 0.01em;
            line-height: 1.25;
            font-weight: 760;
        }
        body.localized-home.language-ja .hero-kicker,
        body.localized-home.language-ja .section-eyebrow,
        body.localized-home.language-ja .trial-eyebrow,
        body.localized-home.language-ja .research-kicker,
        body.localized-home.language-ko .hero-kicker,
        body.localized-home.language-ko .section-eyebrow,
        body.localized-home.language-ko .trial-eyebrow,
        body.localized-home.language-ko .research-kicker,
        body.localized-home.language-ar .hero-kicker,
        body.localized-home.language-ar .section-eyebrow,
        body.localized-home.language-ar .trial-eyebrow,
        body.localized-home.language-ar .research-kicker {
            letter-spacing: 0;
        }
        body.localized-home .hero-stage {
            gap: clamp(30px, 4vw, 56px);
        }
        body.localized-home .hero-content {
            max-width: 720px;
        }
        body.localized-home .hero-title {
            max-width: min(760px, 15.8ch);
            font-size: var(--locale-hero-size);
            line-height: var(--locale-heading-leading);
            letter-spacing: -0.012em;
            font-weight: 820;
            text-wrap: balance;
        }
        body.localized-home.language-ja .hero-title,
        body.localized-home.language-ko .hero-title,
        body.localized-home.language-ar .hero-title {
            letter-spacing: 0;
            font-weight: 760;
        }
        body.localized-home.language-ja .hero-title,
        body.localized-home.language-ko .hero-title {
            max-width: 12.5em;
        }
        body.localized-home.language-ar .hero-title {
            max-width: 14.5ch;
        }
        body.localized-home .hero-sub,
        body.localized-home .trial-gate p,
        body.localized-home .section-head p,
        body.localized-home .research-lead,
        body.localized-home .business-head p,
        body.localized-home .faq-section > p,
        body.localized-home .updates-head p,
        body.localized-home .business-card p,
        body.localized-home .product-card p,
        body.localized-home .trust-pill span,
        body.localized-home .faq-item p {
            max-width: var(--locale-copy-max);
            line-height: var(--locale-body-leading);
            letter-spacing: 0;
        }
        body.localized-home .trial-gate h2,
        body.localized-home .section-head h2,
        body.localized-home .research-title,
        body.localized-home .business-head h2,
        body.localized-home .faq-section h2,
        body.localized-home .updates-head h2 {
            font-size: var(--locale-section-size);
            line-height: var(--locale-heading-leading);
            letter-spacing: -0.01em;
            font-weight: 790;
            text-wrap: balance;
        }
        body.localized-home.language-ja .trial-gate h2,
        body.localized-home.language-ja .section-head h2,
        body.localized-home.language-ja .research-title,
        body.localized-home.language-ja .business-head h2,
        body.localized-home.language-ja .faq-section h2,
        body.localized-home.language-ja .updates-head h2,
        body.localized-home.language-ko .trial-gate h2,
        body.localized-home.language-ko .section-head h2,
        body.localized-home.language-ko .research-title,
        body.localized-home.language-ko .business-head h2,
        body.localized-home.language-ko .faq-section h2,
        body.localized-home.language-ko .updates-head h2,
        body.localized-home.language-ar .trial-gate h2,
        body.localized-home.language-ar .section-head h2,
        body.localized-home.language-ar .research-title,
        body.localized-home.language-ar .business-head h2,
        body.localized-home.language-ar .faq-section h2,
        body.localized-home.language-ar .updates-head h2 {
            letter-spacing: 0;
            font-weight: 740;
        }
        body.localized-home .product-card h3,
        body.localized-home .business-card h3,
        body.localized-home .business-card-core h3,
        body.localized-home .preview-result h3,
        body.localized-home .item-title,
        body.localized-home .musk-title {
            font-size: var(--locale-card-title-size);
            line-height: 1.18;
            letter-spacing: 0;
            font-weight: 760;
        }
        body.localized-home .business-card-core h3 {
            font-size: calc(var(--locale-card-title-size) + 2px);
        }
        body.localized-home .nav-center,
        body.localized-home .nav-actions {
            gap: 6px;
        }
        body.localized-home .site-nav {
            min-height: 70px;
            grid-template-columns: minmax(220px, 0.9fr) minmax(0, auto) minmax(220px, 0.9fr);
        }
        body.localized-home .nav-link,
        body.localized-home .nav-login,
        body.localized-home .nav-lang,
        body.localized-home .nav-cta {
            min-height: 40px;
            padding-inline: 10px;
            font-size: 12.5px;
            font-weight: 690;
            letter-spacing: 0;
        }
        body.localized-home.language-de .nav-link,
        body.localized-home.language-fr .nav-link,
        body.localized-home.language-pt .nav-link {
            font-size: 12px;
            padding-inline: 9px;
        }
        body.localized-home .trial-gate {
            gap: clamp(26px, 3.6vw, 46px);
        }
        body.localized-home .product-grid,
        body.localized-home .business-grid,
        body.localized-home .conversion-strip {
            gap: 20px;
        }
        body.localized-home .product-card,
        body.localized-home .business-card,
        body.localized-home .trial-gate-card,
        body.localized-home .updates-panel {
            border-radius: 24px;
        }
        body.localized-home .nav-link,
        body.localized-home .nav-login,
        body.localized-home .nav-cta,
        body.localized-home .hero-btn,
        body.localized-home .hero-secondary,
        body.localized-home .research-actions a,
        body.localized-home .product-card a {
            white-space: normal;
            text-align: center;
            line-height: 1.2;
        }
        body.localized-home .product-thumb-glow {
            display: none;
        }
        body.localized-home .nav-center,
        body.localized-home .nav-actions {
            min-width: 0;
        }
        body.localized-home section[id],
        body.localized-home .hero-section[id] {
            scroll-margin-top: 92px;
        }
        body.localized-home .hero-title,
        body.localized-home .section-head h2,
        body.localized-home .research-title,
        body.localized-home .business-head h2,
        body.localized-home .faq-section > h2,
        body.localized-home .updates-head h2,
        body.localized-home .business-card h3,
        body.localized-home .product-card h3,
        body.localized-home .preview-result h3 {
            overflow-wrap: anywhere;
            word-break: normal;
            hyphens: auto;
        }
        body.localized-home .updates-grid,
        body.localized-home .updates-panel,
        body.localized-home .updates-main-feed,
        body.localized-home .insight-item,
        body.localized-home .musk-feed-item {
            min-width: 0;
            max-width: 100%;
        }
        body.localized-home .item-meta,
        body.localized-home .updates-panel-head {
            min-width: 0;
            flex-wrap: wrap;
        }
        body.localized-home .item-title,
        body.localized-home .item-desc,
        body.localized-home .musk-title,
        body.localized-home .musk-take {
            overflow-wrap: anywhere;
            hyphens: auto;
        }
        body.localized-home.language-ja,
        body.localized-home.language-ko {
            line-break: loose;
        }
        body.localized-home.language-ar .hero-title,
        body.localized-home.language-ar .section-head h2,
        body.localized-home.language-ar .research-title,
        body.localized-home.language-ar .business-head h2,
        body.localized-home.language-ar .faq-section > h2,
        body.localized-home.language-ar .updates-head h2,
        body.localized-home.language-ar .business-card h3,
        body.localized-home.language-ar .product-card h3,
        body.localized-home.language-ar .preview-result h3 {
            hyphens: none;
        }
        html[dir="rtl"] body.localized-home {
            direction: rtl;
        }
        html[dir="rtl"] body.localized-home .site-nav,
        html[dir="rtl"] body.localized-home .hero-stage,
        html[dir="rtl"] body.localized-home .trial-gate,
        html[dir="rtl"] body.localized-home .section-head,
        html[dir="rtl"] body.localized-home .research-copy,
        html[dir="rtl"] body.localized-home .business-head,
        html[dir="rtl"] body.localized-home .faq-section,
        html[dir="rtl"] body.localized-home .updates-head,
        html[dir="rtl"] body.localized-home .corporate-footer {
            direction: rtl;
            text-align: right;
        }
        html[dir="rtl"] body.localized-home .language-menu {
            right: auto;
            left: 0;
        }
        html[dir="rtl"] body.localized-home .hero-product-preview,
        html[dir="rtl"] body.localized-home .preview-window,
        html[dir="rtl"] body.localized-home .product-thumb,
        html[dir="rtl"] body.localized-home .research-visual-stage,
        html[dir="rtl"] body.localized-home .research-shot,
        html[dir="rtl"] body.localized-home .business-card-visual {
            direction: ltr;
            text-align: left;
        }
        html[dir="rtl"] body.localized-home .hero-actions,
        html[dir="rtl"] body.localized-home .research-actions,
        html[dir="rtl"] body.localized-home .trial-badges,
        html[dir="rtl"] body.localized-home .footer-legal {
            justify-content: flex-end;
        }
        /* v24: keep translated homepages on the same calmer desktop scale as the English base. */
        body.localized-home {
            --locale-hero-size: clamp(36px, 3.35vw, 50px);
            --locale-section-size: clamp(28px, 2.45vw, 38px);
            --locale-card-title-size: 21px;
            --locale-heading-leading: 1.2;
            --locale-body-leading: 1.74;
            --locale-copy-max: 58ch;
        }
        body.localized-home.language-ja,
        body.localized-home.language-ko {
            --locale-hero-size: clamp(34px, 3.1vw, 46px);
            --locale-section-size: clamp(27px, 2.3vw, 36px);
            --locale-card-title-size: 20px;
            --locale-heading-leading: 1.28;
            --locale-body-leading: 1.88;
            --locale-copy-max: 34em;
        }
        body.localized-home.language-ar {
            --locale-hero-size: clamp(36px, 3.25vw, 48px);
            --locale-section-size: clamp(29px, 2.45vw, 38px);
            --locale-card-title-size: 22px;
            --locale-heading-leading: 1.34;
            --locale-body-leading: 1.94;
            --locale-copy-max: 54ch;
        }
        body.localized-home.language-de,
        body.localized-home.language-fr,
        body.localized-home.language-es,
        body.localized-home.language-pt,
        body.localized-home.language-it {
            --locale-hero-size: clamp(34px, 3vw, 46px);
            --locale-section-size: clamp(27px, 2.25vw, 36px);
            --locale-card-title-size: 20px;
            --locale-heading-leading: 1.22;
            --locale-copy-max: 60ch;
        }
        body.localized-home .container,
        body.localized-home .product-showcase > .container,
        body.localized-home .business-ecosystem > .container,
        body.localized-home .faq-section.container,
        body.localized-home .updates-section > .container {
            width: min(100% - 48px, 1120px);
        }
        body.localized-home .hero-section {
            padding-top: clamp(50px, 5vw, 68px);
            padding-bottom: clamp(66px, 6vw, 86px);
        }
        body.localized-home .hero-stage {
            grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.62fr);
            gap: clamp(26px, 4vw, 44px);
        }
        body.localized-home .hero-product-preview {
            width: min(100%, 500px);
            justify-self: end;
        }
        body.localized-home .hero-title {
            max-width: min(640px, 14.5ch);
            letter-spacing: 0;
            font-weight: 760;
        }
        body.localized-home.language-ja .hero-title,
        body.localized-home.language-ko .hero-title {
            max-width: 13em;
            font-weight: 720;
        }
        body.localized-home .trial-gate {
            margin-top: -34px;
            padding: clamp(24px, 3vw, 32px);
            border-radius: 28px;
            grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.52fr);
        }
        body.localized-home .section-head h2,
        body.localized-home .research-title,
        body.localized-home .business-head h2,
        body.localized-home .faq-section > h2,
        body.localized-home .updates-head h2 {
            letter-spacing: 0;
            font-weight: 750;
        }
        body.localized-home .product-showcase,
        body.localized-home .research-showcase,
        body.localized-home .business-ecosystem,
        body.localized-home .updates-section {
            padding-top: clamp(56px, 5.8vw, 82px);
            padding-bottom: clamp(58px, 5.8vw, 86px);
        }
        body.localized-home .product-showcase > .container,
        body.localized-home .faq-section.container,
        body.localized-home .updates-panel {
            border-radius: 28px;
        }
        body.localized-home .product-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }
        body.localized-home .product-card {
            min-height: 0;
            padding: 16px;
        }
        body.localized-home .product-thumb,
        body.localized-home .product-card:nth-child(1) .product-thumb {
            height: 118px;
        }
        body.localized-home .research-hero-free {
            width: min(100% - 48px, 1120px);
            grid-template-columns: minmax(300px, 0.43fr) minmax(520px, 0.57fr);
            gap: clamp(30px, 4.6vw, 56px);
        }
        body.localized-home .research-copy {
            max-width: 430px;
        }
        body.localized-home .research-visual-stage {
            width: min(100%, 680px);
        }
        body.localized-home .business-grid {
            grid-template-columns: minmax(0, 1fr) minmax(230px, 0.52fr) minmax(230px, 0.52fr) !important;
            gap: 18px;
        }
        body.localized-home .business-card-core {
            min-height: 430px;
        }
        body.localized-home .updates-main-feed {
            grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
            column-gap: 22px;
        }
        body.localized-home .updates-main-feed > :is(.insight-item, .github-update-card, .musk-feed-item):first-child .item-title,
        body.localized-home .updates-main-feed > :is(.insight-item, .github-update-card, .musk-feed-item):first-child .musk-title {
            font-size: clamp(21px, 1.8vw, 27px);
        }
        html[dir="rtl"] body.localized-home .hero-product-preview {
            justify-self: start;
        }
        /* v56: localized travel intro uses language-specific reading logic. */
        body.localized-home .travel-showcase > .container {
            grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr) !important;
            column-gap: clamp(30px, 4.2vw, 60px) !important;
            row-gap: clamp(30px, 4vw, 54px) !important;
        }
        body.localized-home .travel-copy {
            position: relative !important;
            top: auto !important;
            max-width: min(100%, 650px) !important;
        }
        body.localized-home .travel-title {
            max-width: var(--locale-travel-title-max, 14.5ch) !important;
            font-size: var(--locale-travel-title-size, clamp(32px, 3.15vw, 48px)) !important;
            line-height: var(--locale-travel-title-leading, 1.12) !important;
            letter-spacing: 0 !important;
            overflow-wrap: anywhere !important;
            hyphens: auto !important;
        }
        body.localized-home .travel-lead,
        body.localized-home .travel-feature-list span,
        body.localized-home .travel-screen-card span,
        body.localized-home .travel-source-note {
            line-height: var(--locale-travel-body-leading, 1.72) !important;
        }
        body.localized-home .travel-feature-list li {
            grid-template-columns: 34px minmax(0, 1fr) !important;
        }
        body.localized-home .travel-actions {
            align-items: stretch !important;
        }
        body.localized-home .travel-actions a {
            min-width: min(100%, 238px) !important;
            min-height: 50px !important;
            line-height: 1.18 !important;
            white-space: normal !important;
        }
        body.localized-home .travel-visual-composition {
            max-width: 800px !important;
            margin-top: 0 !important;
        }
        body.localized-home .travel-screen-gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        }
        body.localized-home .travel-screen-card figcaption {
            min-height: 0 !important;
        }
        body.localized-home.language-de,
        body.localized-home.language-fr,
        body.localized-home.language-es,
        body.localized-home.language-pt,
        body.localized-home.language-it {
            --locale-travel-title-size: clamp(29px, 2.7vw, 40px);
            --locale-travel-title-leading: 1.18;
            --locale-travel-title-max: 20ch;
            --locale-travel-body-leading: 1.76;
        }
        body.localized-home.language-de .travel-actions a,
        body.localized-home.language-fr .travel-actions a,
        body.localized-home.language-pt .travel-actions a {
            min-width: min(100%, 260px) !important;
            padding-inline: 16px !important;
        }
        body.localized-home.language-ja,
        body.localized-home.language-ko {
            --locale-travel-title-size: clamp(31px, 3vw, 44px);
            --locale-travel-title-leading: 1.24;
            --locale-travel-title-max: 12em;
            --locale-travel-body-leading: 1.88;
        }
        body.localized-home.language-ja .travel-title,
        body.localized-home.language-ko .travel-title,
        body.localized-home.language-ja .travel-lead,
        body.localized-home.language-ko .travel-lead,
        body.localized-home.language-ja .travel-feature-list span,
        body.localized-home.language-ko .travel-feature-list span {
            word-break: keep-all !important;
            overflow-wrap: anywhere !important;
            hyphens: none !important;
        }
        body.localized-home.language-ar {
            --locale-travel-title-size: clamp(32px, 3vw, 44px);
            --locale-travel-title-leading: 1.34;
            --locale-travel-title-max: 14ch;
            --locale-travel-body-leading: 1.95;
        }
        html[dir="rtl"] body.localized-home .travel-copy,
        html[dir="rtl"] body.localized-home .travel-lead,
        html[dir="rtl"] body.localized-home .travel-feature-list,
        html[dir="rtl"] body.localized-home .travel-screen-card figcaption,
        html[dir="rtl"] body.localized-home .travel-source-note {
            direction: rtl !important;
            text-align: right !important;
        }
        html[dir="rtl"] body.localized-home .travel-actions {
            justify-content: flex-end !important;
        }
        html[dir="rtl"] body.localized-home .travel-visual-composition,
        html[dir="rtl"] body.localized-home .travel-screenshot-frame,
        html[dir="rtl"] body.localized-home .travel-screenshot-frame img,
        html[dir="rtl"] body.localized-home .travel-screen-card img {
            direction: ltr !important;
            text-align: left !important;
        }
        @media (max-width: 1180px) {
            body.localized-home .site-nav {
                grid-template-columns: minmax(180px, 1fr) auto;
            }
            body.localized-home .hero-stage,
            body.localized-home .trial-gate,
            body.localized-home .research-hero-free,
            body.localized-home .travel-showcase > .container,
            body.localized-home .business-head,
            body.localized-home .updates-head {
                grid-template-columns: 1fr;
            }
            body.localized-home .hero-product-preview,
            body.localized-home .research-visual-stage,
            body.localized-home .travel-visual-composition {
                justify-self: stretch;
                width: 100%;
            }
            body.localized-home .product-grid,
            body.localized-home .updates-main-feed,
            body.localized-home .travel-screen-gallery {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            body.localized-home .travel-screen-card {
                grid-template-columns: 1fr !important;
            }
            body.localized-home .business-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            }
            body.localized-home .business-card-core,
            body.localized-home .business-card-wide {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 760px) {
            body.localized-home {
                --locale-hero-size: clamp(32px, 9vw, 40px);
                --locale-section-size: clamp(27px, 7.4vw, 35px);
                --locale-card-title-size: 23px;
                --locale-heading-leading: 1.2;
                --locale-body-leading: 1.76;
                max-width: 100%;
                overflow-x: hidden;
            }
            body.localized-home.language-ja,
            body.localized-home.language-ko {
                --locale-hero-size: clamp(30px, 8.4vw, 36px);
                --locale-section-size: clamp(27px, 7.3vw, 34px);
                --locale-heading-leading: 1.26;
                --locale-body-leading: 1.9;
            }
            body.localized-home.language-ar {
                --locale-hero-size: clamp(33px, 9.4vw, 42px);
                --locale-section-size: clamp(28px, 7.8vw, 36px);
                --locale-heading-leading: 1.28;
                --locale-body-leading: 1.9;
            }
            body.localized-home .container,
            body.localized-home .hero-stage,
            body.localized-home .hero-content,
            body.localized-home .hero-actions,
            body.localized-home .hero-proof-row,
            body.localized-home .hero-proof,
            body.localized-home .hero-product-preview,
            body.localized-home .preview-window,
            body.localized-home .trial-gate,
            body.localized-home .trial-gate-card,
            body.localized-home .product-grid,
            body.localized-home .product-card,
            body.localized-home .conversion-strip,
            body.localized-home .trust-pill,
            body.localized-home .research-hero-free,
            body.localized-home .research-copy,
            body.localized-home .research-visual-stage,
            body.localized-home .travel-copy,
            body.localized-home .travel-visual-composition,
            body.localized-home .travel-screenshot-frame,
            body.localized-home .travel-screen-gallery,
            body.localized-home .travel-screen-card,
            body.localized-home .research-visual-notes,
            body.localized-home .research-visual-note,
            body.localized-home .business-grid,
            body.localized-home .business-card,
            body.localized-home .faq-section,
            body.localized-home .updates-head,
            body.localized-home .updates-panel {
                min-width: 0;
                max-width: 100%;
            }
            body.localized-home .hero-section {
                padding-top: 52px;
                padding-bottom: 56px;
            }
            body.localized-home .hero-stage,
            body.localized-home .trial-gate,
            body.localized-home .travel-showcase > .container,
            body.localized-home .section-head,
            body.localized-home .business-head,
            body.localized-home .updates-head {
                gap: 22px;
            }
            body.localized-home .hero-title {
                max-width: 100%;
                margin-top: 16px;
                margin-bottom: 16px;
                overflow-wrap: anywhere;
                word-break: break-word;
                text-wrap: wrap;
            }
            body.localized-home .hero-sub,
            body.localized-home .trial-gate p,
            body.localized-home .section-head p,
            body.localized-home .research-lead,
            body.localized-home .business-head p,
            body.localized-home .faq-section > p,
            body.localized-home .updates-head p {
                font-size: 15.5px;
            }
            body.localized-home .trial-gate,
            body.localized-home .product-card,
            body.localized-home .business-card,
            body.localized-home .faq-section.container {
                padding: 24px;
            }
            body.localized-home .hero-actions,
            body.localized-home .research-actions,
            body.localized-home .travel-actions {
                gap: 12px;
                width: 100%;
            }
            body.localized-home .hero-actions a,
            body.localized-home .research-actions a,
            body.localized-home .travel-actions a {
                width: 100%;
                max-width: 100%;
            }
            body.localized-home .travel-title {
                max-width: 100% !important;
                font-size: clamp(29px, 8vw, 38px) !important;
                overflow-wrap: anywhere !important;
                text-wrap: wrap !important;
            }
            body.localized-home .travel-screen-gallery {
                grid-template-columns: minmax(0, 1fr) !important;
            }
            body.localized-home .travel-screen-card figcaption {
                min-height: 0 !important;
            }
            body.localized-home .hero-proof-row {
                grid-template-columns: minmax(0, 1fr);
            }
            body.localized-home .hero-proof strong,
            body.localized-home .hero-proof span,
            body.localized-home .trust-pill strong,
            body.localized-home .trust-pill span,
            body.localized-home .research-visual-note strong,
            body.localized-home .research-visual-note span {
                overflow-wrap: anywhere;
                word-break: break-word;
            }
            body.localized-home .research-visual-notes {
                display: grid;
                grid-template-columns: minmax(0, 1fr) !important;
                gap: 10px;
            }
            body.localized-home .research-visual-note {
                width: 100%;
                min-height: 0;
            }
            body.localized-home .updates-grid {
                grid-template-columns: minmax(0, 1fr);
            }
            body.localized-home .updates-panel {
                width: 100%;
                overflow: hidden;
            }
            body.localized-home .updates-panel-head,
            body.localized-home .updates-main-feed,
            body.localized-home .insight-item,
            body.localized-home .musk-feed-item {
                width: 100%;
            }
            body.localized-home .hero-title,
            body.localized-home .section-head h2,
            body.localized-home .research-title,
            body.localized-home .business-head h2,
            body.localized-home .faq-section > h2,
            body.localized-home .updates-head h2 {
                overflow-wrap: anywhere;
            }
        }
        @media (max-width: 1180px) {
            .site-nav {
                grid-template-columns: minmax(210px, 1fr) auto;
            }
            .nav-center { display: none; }
            .product-row {
                grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
                gap: 28px;
                padding-left: 42px;
                padding-right: 42px;
            }
            .qa-section,
            .news-section,
            .site-footer {
                padding-left: 42px;
                padding-right: 42px;
            }
            .site-footer {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (max-width: 860px) {
            body[data-surface="desktop"] .site-nav,
            body[data-surface="desktop"] .page-shell { width: min(100% - 24px, 520px); }
            body[data-surface="desktop"] .site-nav {
                grid-template-columns: minmax(0, 1fr) auto;
                border-bottom: 1px solid var(--line);
            }
            body[data-surface="desktop"] .nav-site-button { display: none; }
            body[data-surface="desktop"] .product-row,
            body[data-surface="desktop"] .qa-section,
            body[data-surface="desktop"] .news-section {
                padding-left: 22px;
                padding-right: 22px;
            }
            body[data-surface="desktop"] .product-row {
                grid-template-columns: 1fr;
            }
            body[data-surface="desktop"] .daily-board,
            body[data-surface="desktop"] .qa-grid {
                grid-template-columns: 1fr;
            }
            body[data-surface="desktop"] .site-footer {
                grid-template-columns: 1fr;
                padding-left: 22px;
                padding-right: 22px;
            }
            body[data-surface="desktop"] .hero-copy h1 { font-size: 36px; }
            body[data-surface="desktop"] .hero-copy h1 .zh-line { font-size: 26px; }
        }
