:root {
    --bg: #0f0d11;
    --bg-soft: #17141a;
    --panel: rgba(25, 21, 29, 0.78);
    --panel-strong: rgba(34, 29, 38, 0.92);
    --line: rgba(229, 192, 123, 0.14);
    --gold: #e5c07b;
    --gold-soft: #f2d7a1;
    --text: #f3efe8;
    --text-soft: #b8b0a8;
    --text-dim: #8e867f;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Noto Sans SC", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(229, 192, 123, 0.12), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 18%),
        linear-gradient(180deg, #120f14 0%, #0f0d11 56%, #120f14 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    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: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
}

.site-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding-bottom: 72px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229, 192, 123, 0.3), rgba(229, 192, 123, 0.06));
    border: 1px solid rgba(229, 192, 123, 0.28);
    font-family: "Noto Serif SC", serif;
    color: var(--gold-soft);
    font-size: 18px;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-size: 15px;
    letter-spacing: 0.04em;
}

.brand-copy small {
    color: var(--text-dim);
    font-size: 12px;
}

.nav {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.nav a,
.ghost-button {
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.ghost-button:hover {
    color: var(--gold-soft);
    transform: translateY(-1px);
}

.ghost-button {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(229, 192, 123, 0.18);
    background: rgba(255, 255, 255, 0.02);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 28px;
    align-items: stretch;
    padding: 48px 0 24px;
}

.hero-copy,
.hero-panel-card,
.feature-card,
.guide-steps,
.side-card,
.faq-card,
.deploy-card,
.author-card {
    position: relative;
}

.glow-card {
    background: linear-gradient(180deg, var(--panel) 0%, var(--panel-strong) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-copy {
    padding: 30px 6px 12px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.deploy-card h2 {
    margin: 0;
    font-family: "Noto Serif SC", serif;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 {
    font-size: clamp(34px, 6vw, 62px);
    max-width: 10.5em;
}

.hero-text {
    margin: 22px 0 0;
    max-width: 640px;
    color: var(--text-soft);
    line-height: 1.9;
    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    background: linear-gradient(135deg, #f0cc8a, #d8ae63);
    color: #201710;
    box-shadow: 0 12px 28px rgba(216, 174, 99, 0.28);
}

.secondary-button {
    color: var(--gold-soft);
    border: 1px solid rgba(229, 192, 123, 0.24);
    background: rgba(255, 255, 255, 0.03);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.hero-meta div {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.hero-meta strong {
    display: block;
    color: var(--gold-soft);
    font-size: 14px;
}

.hero-meta span {
    display: block;
    margin-top: 6px;
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.7;
}

.hero-panel-card {
    height: 100%;
    padding: 24px;
}

.panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.panel-badge {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(229, 192, 123, 0.08);
    border: 1px solid rgba(229, 192, 123, 0.18);
    color: var(--gold);
    font-size: 12px;
}

.panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 16px rgba(229, 192, 123, 0.7);
}

.panel-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.panel-list li {
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-list strong,
.feature-card h3,
.guide-step h3,
.side-card h3,
.faq-card h3,
.author-card h3 {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-soft);
    font-size: 18px;
}

.panel-list span,
.feature-card p,
.guide-step p,
.side-card p,
.faq-card p,
.author-copy p {
    color: var(--text-soft);
    line-height: 1.8;
}

.section {
    padding: 58px 0 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    padding: 22px;
    min-height: 220px;
}

.feature-index {
    display: inline-block;
    margin-bottom: 18px;
    color: rgba(229, 192, 123, 0.45);
    font-size: 14px;
    letter-spacing: 0.2em;
}

.side-card,
.deploy-card,
.author-card,
.guide-stage {
    padding: 24px;
}

.guide-section {
    overflow: hidden;
}

.guide-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.guide-tab {
    appearance: none;
    border: 1px solid rgba(229, 192, 123, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.guide-tab:hover {
    color: var(--gold-soft);
    border-color: rgba(229, 192, 123, 0.24);
    transform: translateY(-1px);
}

.guide-tab.is-active {
    color: #201710;
    border-color: rgba(240, 204, 138, 0.55);
    background: linear-gradient(135deg, #f0cc8a, #d8ae63);
    box-shadow: 0 14px 30px rgba(216, 174, 99, 0.22);
}

.guide-stage {
    min-height: 520px;
}

.guide-panel {
    display: none;
}

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

.guide-panel-main {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 24px;
    align-items: start;
}

.guide-panel-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(229, 192, 123, 0.08);
    border: 1px solid rgba(229, 192, 123, 0.18);
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.14em;
}

.guide-panel-copy h3 {
    margin: 18px 0 0;
    font-family: "Noto Serif SC", serif;
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 1.25;
    color: var(--text);
}

.guide-panel-lead {
    margin: 16px 0 0;
    color: var(--text-soft);
    line-height: 1.9;
    font-size: 15px;
}

.guide-panel-steps {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.guide-panel-steps li {
    position: relative;
    padding: 16px 18px 16px 56px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-soft);
    line-height: 1.85;
}

.guide-panel-steps li::before {
    content: counter(guide-step, decimal-leading-zero);
    counter-increment: guide-step;
    position: absolute;
    left: 18px;
    top: 16px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.18em;
}

.guide-panel-steps {
    counter-reset: guide-step;
}

.guide-panel-media {
    display: grid;
    gap: 14px;
}

.guide-shot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.guide-shot {
    margin: 0;
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(229, 192, 123, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at top right, rgba(229, 192, 123, 0.14), transparent 38%);
    display: grid;
    gap: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.guide-shot-large {
    gap: 14px;
}

.guide-shot-ratio-main {
    max-width: 520px;
}

.guide-shot-ratio-tall {
    max-width: 220px;
}

.guide-shot img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    opacity: 0.96;
    border-radius: 16px;
    border: 1px solid rgba(229, 192, 123, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.guide-shot span {
    display: block;
    color: var(--gold-soft);
    font-family: "Noto Serif SC", serif;
    font-size: 18px;
    line-height: 1.3;
}

.guide-shot small {
    display: block;
    max-width: 28ch;
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.8;
}

.guide-panel[data-guide-panel="permissions"] .guide-panel-main {
    grid-template-columns: minmax(320px, 1fr) auto;
    align-items: start;
}

.guide-panel[data-guide-panel="permissions"] .guide-panel-media {
    width: fit-content;
}

.guide-panel[data-guide-panel="permissions"] .guide-shot {
    width: fit-content;
}

.guide-panel[data-guide-panel="permissions"] .guide-shot-large,
.guide-panel[data-guide-panel="permissions"] .guide-shot-ratio-main,
.guide-panel[data-guide-panel="permissions"] .guide-shot-ratio-tall {
    max-width: none;
}

.guide-panel[data-guide-panel="permissions"] .guide-shot-grid {
    grid-template-columns: repeat(2, auto);
    width: fit-content;
}

.guide-panel[data-guide-panel="permissions"] .guide-shot img {
    height: 200px;
    width: auto;
    max-width: none;
    margin: 0 auto;
    object-fit: contain;
}

.guide-panel[data-guide-panel="record"] .guide-panel-main {
    grid-template-columns: minmax(320px, 1fr) auto;
    align-items: start;
}

.guide-panel[data-guide-panel="record"] .guide-panel-media {
    width: fit-content;
    gap: 14px;
}

.guide-panel[data-guide-panel="record"] .guide-shot-grid-record-top {
    grid-template-columns: repeat(2, auto);
    width: fit-content;
}

.guide-panel[data-guide-panel="record"] .guide-shot-grid-record-bottom {
    grid-template-columns: 1fr;
    width: fit-content;
}

.guide-panel[data-guide-panel="record"] .guide-shot {
    width: fit-content;
}

.guide-panel[data-guide-panel="record"] .guide-shot-large,
.guide-panel[data-guide-panel="record"] .guide-shot-ratio-tall {
    max-width: none;
}

.guide-panel[data-guide-panel="record"] .guide-shot img {
    height: 200px;
    width: auto;
    max-width: none;
    margin: 0 auto;
    object-fit: contain;
}

.guide-panel[data-guide-panel="overlay"] .guide-panel-main {
    grid-template-columns: minmax(320px, 1fr) auto;
    align-items: start;
}

.guide-panel[data-guide-panel="overlay"] .guide-panel-media {
    width: fit-content;
    gap: 14px;
}

.guide-panel[data-guide-panel="overlay"] .guide-shot-grid-overlay-top {
    grid-template-columns: 1fr;
    width: fit-content;
}

.guide-panel[data-guide-panel="overlay"] .guide-shot-grid-overlay-middle,
.guide-panel[data-guide-panel="overlay"] .guide-shot-grid-overlay-bottom {
    grid-template-columns: repeat(2, auto);
    width: fit-content;
}

.guide-panel[data-guide-panel="overlay"] .guide-shot {
    width: fit-content;
}

.guide-panel[data-guide-panel="overlay"] .guide-shot-large {
    max-width: none;
}

.guide-panel[data-guide-panel="overlay"] .guide-shot img {
    height: 150px;
    width: auto;
    max-width: none;
    margin: 0 auto;
    object-fit: contain;
}

.guide-panel[data-guide-panel="import"] .guide-panel-main {
    grid-template-columns: minmax(320px, 1fr) auto;
    align-items: start;
}

.guide-panel[data-guide-panel="import"] .guide-panel-media {
    width: fit-content;
}

.guide-panel[data-guide-panel="import"] .guide-shot-grid-import {
    grid-template-columns: repeat(2, auto);
    width: fit-content;
}

.guide-panel[data-guide-panel="import"] .guide-shot {
    width: fit-content;
}

.guide-panel[data-guide-panel="import"] .guide-shot img {
    height: 200px;
    width: auto;
    max-width: none;
    margin: 0 auto;
    object-fit: contain;
}

.guide-panel[data-guide-panel="battle"] .guide-panel-main {
    grid-template-columns: minmax(320px, 1fr) auto;
    align-items: start;
}

.guide-panel[data-guide-panel="battle"] .guide-panel-media {
    width: fit-content;
}

.guide-panel[data-guide-panel="battle"] .guide-shot-grid-battle {
    grid-template-columns: repeat(2, auto);
    width: fit-content;
}

.guide-panel[data-guide-panel="battle"] .guide-shot {
    width: fit-content;
}

.guide-panel[data-guide-panel="battle"] .guide-shot img {
    height: 200px;
    width: auto;
    max-width: none;
    margin: 0 auto;
    object-fit: contain;
}

.side-card ul {
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--text-soft);
    line-height: 1.9;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.faq-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px 24px;
}

.faq-mark {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(229, 192, 123, 0.08);
    border: 1px solid rgba(229, 192, 123, 0.16);
    color: var(--gold-soft);
    font-family: "Noto Serif SC", serif;
    font-size: 22px;
    font-weight: 700;
}

.faq-copy h3 {
    margin: 0 0 8px;
}

.faq-copy p {
    margin: 0;
}

.deploy-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) auto;
    gap: 18px;
    align-items: center;
}

.deploy-card p {
    color: var(--text-soft);
    line-height: 1.85;
}

.deploy-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deploy-checklist span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 12px 14px;
    border-radius: 999px;
    color: var(--gold-soft);
    border: 1px solid rgba(229, 192, 123, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.author-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.author-avatar {
    width: 128px;
    height: 128px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 192, 123, 0.18), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(229, 192, 123, 0.22);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.author-copy h3 {
    margin: 0 0 10px;
}

.author-copy p {
    margin: 0;
}

.author-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.author-action-button {
    appearance: none;
    border: 1px solid rgba(229, 192, 123, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold-soft);
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.author-action-button:hover {
    transform: translateY(-1px);
    border-color: rgba(229, 192, 123, 0.3);
}

.author-action-button.is-copied {
    color: #201710;
    border-color: rgba(240, 204, 138, 0.55);
    background: linear-gradient(135deg, #f0cc8a, #d8ae63);
}

@media (max-width: 960px) {
    .topbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero,
    .guide-panel-main,
    .author-card {
        grid-template-columns: 1fr;
    }

    .guide-panel[data-guide-panel="permissions"] .guide-panel-main {
        grid-template-columns: 1fr;
    }

    .guide-panel[data-guide-panel="record"] .guide-panel-main {
        grid-template-columns: 1fr;
    }

    .guide-panel[data-guide-panel="overlay"] .guide-panel-main {
        grid-template-columns: 1fr;
    }

    .guide-panel[data-guide-panel="import"] .guide-panel-main {
        grid-template-columns: 1fr;
    }

    .guide-panel[data-guide-panel="battle"] .guide-panel-main {
        grid-template-columns: 1fr;
    }

    .guide-panel[data-guide-panel="permissions"] .guide-panel-media,
    .guide-panel[data-guide-panel="permissions"] .guide-shot,
    .guide-panel[data-guide-panel="permissions"] .guide-shot-grid {
        width: auto;
    }

    .guide-panel[data-guide-panel="record"] .guide-panel-media,
    .guide-panel[data-guide-panel="record"] .guide-shot,
    .guide-panel[data-guide-panel="record"] .guide-shot-grid-record-top,
    .guide-panel[data-guide-panel="record"] .guide-shot-grid-record-bottom {
        width: auto;
    }

    .guide-panel[data-guide-panel="overlay"] .guide-panel-media,
    .guide-panel[data-guide-panel="overlay"] .guide-shot,
    .guide-panel[data-guide-panel="overlay"] .guide-shot-grid-overlay-top,
    .guide-panel[data-guide-panel="overlay"] .guide-shot-grid-overlay-middle,
    .guide-panel[data-guide-panel="overlay"] .guide-shot-grid-overlay-bottom {
        width: auto;
    }

    .guide-panel[data-guide-panel="import"] .guide-panel-media,
    .guide-panel[data-guide-panel="import"] .guide-shot,
    .guide-panel[data-guide-panel="import"] .guide-shot-grid-import {
        width: auto;
    }

    .guide-panel[data-guide-panel="battle"] .guide-panel-media,
    .guide-panel[data-guide-panel="battle"] .guide-shot,
    .guide-panel[data-guide-panel="battle"] .guide-shot-grid-battle {
        width: auto;
    }

    .guide-panel[data-guide-panel="permissions"] .guide-shot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-panel[data-guide-panel="record"] .guide-shot-grid-record-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-panel[data-guide-panel="record"] .guide-shot-grid-record-bottom {
        grid-template-columns: 1fr;
    }

    .guide-panel[data-guide-panel="overlay"] .guide-shot-grid-overlay-top {
        grid-template-columns: 1fr;
    }

    .guide-panel[data-guide-panel="overlay"] .guide-shot-grid-overlay-middle,
    .guide-panel[data-guide-panel="overlay"] .guide-shot-grid-overlay-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-panel[data-guide-panel="import"] .guide-shot-grid-import {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-panel[data-guide-panel="battle"] .guide-shot-grid-battle {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-panel[data-guide-panel="permissions"] .guide-shot img {
        height: auto;
        width: 100%;
        max-width: 100%;
    }

    .guide-panel[data-guide-panel="record"] .guide-shot img {
        height: auto;
        width: 100%;
        max-width: 100%;
    }

    .guide-panel[data-guide-panel="overlay"] .guide-shot img {
        height: auto;
        width: 100%;
        max-width: 100%;
    }

    .guide-panel[data-guide-panel="import"] .guide-shot img {
        height: auto;
        width: 100%;
        max-width: 100%;
    }

    .guide-panel[data-guide-panel="battle"] .guide-shot img {
        height: auto;
        width: 100%;
        max-width: 100%;
    }

    .feature-grid,
    .faq-list {
        grid-template-columns: 1fr 1fr;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 640px) {
    .site-shell {
        width: min(100% - 20px, 1180px);
    }

    .nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero {
        padding-top: 24px;
    }

    .guide-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .guide-tabs::-webkit-scrollbar {
        display: none;
    }

    .guide-tab {
        white-space: nowrap;
    }

    .guide-shot-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .hero-panel-card,
    .feature-card,
    .side-card,
    .faq-card,
    .deploy-card,
    .author-card,
    .guide-stage {
        padding: 20px;
    }

    .faq-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .author-avatar {
        width: 96px;
        height: 96px;
        border-radius: 28px;
    }

    .guide-panel-copy h3 {
        font-size: 28px;
    }

    .guide-panel-steps li {
        padding: 14px 14px 14px 48px;
    }
}
