:root {
    --bg: #f5efe6;
    --bg-soft: #fffaf3;
    --ink: #17202f;
    --ink-soft: #536074;
    --line: rgba(23, 32, 47, 0.1);
    --card: rgba(255, 255, 255, 0.82);
    --brand: #ff7a18;
    --brand-dark: #d95f06;
    --teal: #0f766e;
    --gold: #f3d17a;
    --shadow: 0 18px 50px rgba(23, 32, 47, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
    --cat-shell: #ffc98a;
    --cat-shell-soft: #ffe7c7;
    --cat-mark-bg: #ffffff;
    --cat-mark-bg-soft: #f4fbfd;
    --cat-band-start: #9bf2ff;
    --cat-band-end: #39d2e8;
    --cat-band-shadow: rgba(57, 210, 232, 0.34);
    --cat-core-start: #ffc07a;
    --cat-core-end: #ff7a18;
    --cat-stroke: rgba(18, 40, 56, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 24, 0.16), transparent 24rem),
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 30rem),
        linear-gradient(180deg, #fffaf4 0%, #f5efe6 100%);
}

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

img,
video {
    max-width: 100%;
    display: block;
    border-radius: 18px;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section {
    padding: 3.5rem 0;
}

.page-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(255, 250, 243, 0.82);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.42rem 0.82rem 0.42rem 0.48rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.brand:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.82);
}

.brand-copy {
    display: grid;
    gap: 0.08rem;
}

.brand strong,
.brand small {
    display: block;
}

.brand small,
.muted {
    color: var(--ink-soft);
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 18% 18%, rgba(155, 242, 255, 0.46), transparent 38%),
        radial-gradient(circle at 78% 82%, rgba(255, 192, 122, 0.22), transparent 44%),
        linear-gradient(180deg, var(--cat-mark-bg), var(--cat-mark-bg-soft));
    border: 1px solid rgba(57, 210, 232, 0.18);
    box-shadow:
        0 12px 24px rgba(16, 38, 55, 0.1),
        0 0 14px rgba(57, 210, 232, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
}

.brand-mark::before {
    inset: 4px;
    border-radius: 14px;
    border: 1px solid rgba(18, 40, 56, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 252, 0.72));
}

.brand-mark::after {
    top: 7px;
    right: 7px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 210, 232, 0.18), transparent 72%);
    opacity: 0.8;
}

.brand-face {
    position: relative;
    z-index: 1;
    width: 26px;
    height: 21px;
    border-radius: 42% 42% 50% 50%;
    background: linear-gradient(180deg, var(--cat-shell), var(--cat-shell-soft));
    box-shadow:
        inset 0 -4px 6px rgba(255, 255, 255, 0.56),
        0 4px 10px rgba(16, 38, 55, 0.08);
}

.brand-face::before,
.brand-face::after {
    content: "";
    position: absolute;
    top: -5px;
    width: 10px;
    height: 11px;
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(180deg, var(--cat-shell), var(--cat-shell-soft));
    box-shadow: inset 0 -2px 4px rgba(255, 255, 255, 0.22);
}

.brand-face::before {
    left: 2px;
    transform: rotate(-28deg);
}

.brand-face::after {
    right: 2px;
    transform: rotate(28deg);
}

.brand-eye-band {
    position: absolute;
    left: 50%;
    top: 5px;
    width: 15px;
    height: 6px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cat-band-start), var(--cat-band-end));
    box-shadow:
        0 0 10px var(--cat-band-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.brand-core {
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 7px;
    height: 7px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: linear-gradient(180deg, var(--cat-core-start), var(--cat-core-end));
    box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.12);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.site-nav a,
.ghost-link {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: var(--ink-soft);
    transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.ghost-link:hover {
    color: var(--ink);
    background: rgba(23, 32, 47, 0.06);
}

.nav-toggle {
    display: none;
    border: 0;
    background: rgba(23, 32, 47, 0.06);
    padding: 0.75rem 1rem;
    border-radius: 999px;
}

.hero-section {
    padding-top: 4rem;
}

.hero-grid,
.split-grid,
.tool-layout,
.admin-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0.35rem 0 1rem;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.lead {
    max-width: 62ch;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--ink-soft);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 700;
}

.button-row,
.chip-row,
.hero-points,
.footer-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    background: linear-gradient(135deg, var(--brand), #ff9d45);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(255, 122, 24, 0.18);
}

.button.secondary {
    background: linear-gradient(135deg, var(--teal), #2ea89f);
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.16);
}

.button.ghost,
.section-link {
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    box-shadow: none;
    border: 1px solid var(--line);
}

.button.small {
    padding: 0.6rem 0.9rem;
    font-size: 0.92rem;
}

.hero-stage,
.hero-card,
.tool-card,
.story-card,
.nav-cluster,
.nav-link-card,
.nav-tool-card,
.process-card,
.editor-panel,
.result-panel,
.admin-panel,
.metric-card,
.auth-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-stage {
    padding: 1.35rem;
}

.home-hero-section {
    padding-top: 4.6rem;
    padding-bottom: 1.75rem;
    overflow: hidden;
}

.home-hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 1.5rem;
    align-items: center;
}

.home-hero-copy {
    position: relative;
    z-index: 1;
}

.home-hero-copy h1 {
    max-width: 11ch;
}

.home-platform-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.home-platform-row span,
.home-deliverable-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.56rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(23, 32, 47, 0.08);
    color: var(--ink-soft);
    backdrop-filter: blur(14px);
}

.home-hero-note-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.home-hero-note,
.home-value-card,
.home-flow-card,
.home-tool-card,
.home-story-panel,
.home-nav-cluster,
.home-cta-panel {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.home-hero-note {
    padding: 1rem 1rem 1.05rem;
    border-radius: 24px;
}

.home-hero-note strong,
.home-value-card h3,
.home-flow-card h3,
.home-tool-card h3,
.home-nav-head h3,
.home-story-card h3,
.home-news-card h3,
.home-deliverable-head h3 {
    margin: 0;
}

.home-hero-note p,
.home-value-card p,
.home-flow-card p,
.home-tool-card p,
.home-nav-head p,
.home-story-card p,
.home-news-card p,
.home-cta-panel p {
    color: var(--ink-soft);
}

.home-hero-note p,
.home-value-card p,
.home-flow-card p,
.home-tool-card p,
.home-nav-head p,
.home-story-card p,
.home-news-card p {
    margin-bottom: 0;
    line-height: 1.68;
}

.home-hero-stage {
    position: relative;
    min-height: 600px;
    padding: 1.4rem;
    border-radius: 36px;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 179, 95, 0.48), transparent 22rem),
        radial-gradient(circle at 78% 28%, rgba(15, 118, 110, 0.22), transparent 20rem),
        linear-gradient(145deg, rgba(255, 250, 244, 0.98), rgba(255, 243, 228, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 24px 60px rgba(23, 32, 47, 0.12);
}

.hero-blob,
.hero-gridline {
    position: absolute;
    inset: auto;
    pointer-events: none;
}

.hero-blob {
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.75;
}

.hero-blob-a {
    top: 42px;
    right: 38px;
    width: 140px;
    height: 140px;
    background: rgba(255, 122, 24, 0.28);
    animation: heroBlob 7s ease-in-out infinite;
}

.hero-blob-b {
    bottom: 48px;
    left: 54px;
    width: 170px;
    height: 170px;
    background: rgba(15, 118, 110, 0.2);
    animation: heroBlob 9s ease-in-out infinite reverse;
}

.hero-gridline {
    inset: 0;
    background-image:
        linear-gradient(rgba(23, 32, 47, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 32, 47, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
    opacity: 0.4;
}

.launch-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 272px;
    min-height: 272px;
    padding: 1.35rem 1.2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 55px rgba(23, 32, 47, 0.14);
    animation: coreLift 6s ease-in-out infinite;
}

.launch-core-tag {
    position: absolute;
    top: 20px;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 122, 24, 0.12);
    color: var(--brand-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.launch-core strong {
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.launch-core p {
    margin: 0;
    color: var(--ink-soft);
}

.launch-core-cat {
    position: relative;
    width: 128px;
    height: 128px;
    display: grid;
    place-items: center;
}

.launch-cat-face {
    position: absolute;
    inset: 18px;
    border-radius: 30px;
    background: linear-gradient(145deg, var(--brand), #ffcf92);
    box-shadow: inset 0 -8px 16px rgba(255, 255, 255, 0.18);
}

.launch-cat-face::before,
.launch-cat-face::after {
    content: "";
    position: absolute;
    top: -18px;
    width: 34px;
    height: 34px;
    background: linear-gradient(145deg, var(--brand), #ffcf92);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.launch-cat-face::before {
    left: 10px;
}

.launch-cat-face::after {
    right: 10px;
}

.launch-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(23, 32, 47, 0.14);
}

.launch-ring-a {
    inset: 2px;
    animation: spin 18s linear infinite;
}

.launch-ring-b {
    inset: 16px;
    animation: spin 13s linear infinite reverse;
}

.launch-ring-c {
    inset: 30px;
    animation: spin 22s linear infinite;
}

.launch-card {
    position: absolute;
    width: 220px;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 40px rgba(23, 32, 47, 0.1);
    backdrop-filter: blur(14px);
    animation: floatCard 7s ease-in-out infinite;
}

.launch-card span,
.home-flow-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 122, 24, 0.12);
    color: var(--brand-dark);
    font-weight: 700;
}

.launch-card strong {
    display: block;
    margin-top: 0.7rem;
    margin-bottom: 0.45rem;
    font-size: 1rem;
}

.launch-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.58;
    font-size: 0.92rem;
}

.launch-card-a {
    top: 42px;
    left: 28px;
}

.launch-card-b {
    top: 58px;
    right: 28px;
    animation-delay: -1.3s;
}

.launch-card-c {
    top: 230px;
    right: 8px;
    animation-delay: -2.6s;
}

.launch-card-d {
    bottom: 42px;
    left: 26px;
    animation-delay: -1.8s;
}

.launch-card-e {
    right: 76px;
    bottom: 64px;
    animation-delay: -3.2s;
}

.home-value-section {
    padding-top: 1.4rem;
}

.home-value-grid,
.home-flow-grid,
.home-tool-grid,
.home-nav-grid {
    display: grid;
    gap: 1rem;
}

.home-value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-value-card,
.home-flow-card,
.home-nav-cluster,
.home-cta-panel {
    padding: 1.2rem;
    border-radius: 28px;
}

.home-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.14), rgba(15, 118, 110, 0.12));
    color: var(--teal);
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.home-flow-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 246, 235, 0.72));
}

.home-flow-shell {
    display: grid;
    gap: 1.2rem;
}

.home-flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-flow-card {
    position: relative;
}

.home-flow-card strong {
    margin-bottom: 1rem;
}

.home-deliverable-board {
    padding: 1.15rem 1.2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(23, 32, 47, 0.08);
}

.home-deliverable-head {
    margin-bottom: 1rem;
}

.home-deliverable-head h3 {
    margin-top: 0.3rem;
    font-size: 1.4rem;
}

.home-deliverable-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-marquee {
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(23, 32, 47, 0.08);
    background: rgba(255, 255, 255, 0.66);
}

.home-marquee-track {
    display: flex;
    gap: 0.8rem;
    width: max-content;
    padding: 0.75rem 0.8rem;
    animation: marqueeMove 22s linear infinite;
}

.home-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.88rem;
    border-radius: 999px;
    background: rgba(255, 250, 243, 0.92);
    color: var(--ink-soft);
    white-space: nowrap;
}

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

.home-tool-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 24px;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.home-tool-card:hover,
.home-value-card:hover,
.home-flow-card:hover,
.home-nav-cluster:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 24, 0.22);
    box-shadow: 0 20px 48px rgba(23, 32, 47, 0.12);
}

.home-tool-arrow {
    color: var(--ink-soft);
    font-size: 1.15rem;
}

.home-story-section {
    padding-top: 2rem;
}

.home-story-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-story-panel {
    padding: 1.2rem;
    border-radius: 30px;
}

.home-story-list,
.home-news-list,
.home-nav-list {
    display: grid;
    gap: 0.85rem;
}

.home-story-card,
.home-news-card,
.home-nav-link {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(23, 32, 47, 0.04);
    border: 1px solid rgba(23, 32, 47, 0.06);
}

.home-story-card strong {
    display: inline-block;
    margin-top: 0.85rem;
    color: var(--brand-dark);
}

.home-nav-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-nav-head {
    margin-bottom: 0.9rem;
}

.home-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ink);
}

.home-nav-link small {
    color: var(--ink-soft);
}

.home-cta-panel {
    text-align: center;
    padding: 2rem 1.4rem;
    background:
        radial-gradient(circle at top center, rgba(255, 179, 95, 0.28), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 243, 228, 0.9));
}

.home-cta-panel h2 {
    margin: 0.35rem auto 0.85rem;
    max-width: 12ch;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.home-cta-panel p {
    max-width: 36rem;
    margin: 0 auto 1.2rem;
    font-size: 1.04rem;
    line-height: 1.75;
}

.home-hero-shell-v2 {
    grid-template-columns: minmax(0, 1fr) minmax(560px, 1.04fr);
    gap: 1.1rem;
    align-items: center;
}

.home-hero-copy-v2 {
    display: grid;
    align-content: center;
    gap: 0.05rem;
    padding-right: 0.4rem;
}

.home-hero-copy-v2 h1 {
    max-width: 9.1ch;
}

.home-hero-copy-v2 .lead {
    max-width: 31rem;
    margin-bottom: 0.55rem;
}

.home-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.home-promise-card,
.home-outcome-card,
.home-proof-panel,
.home-proof-card,
.home-stage-strip article {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.home-promise-card {
    padding: 1rem 1rem 1.05rem;
    border-radius: 24px;
}

.home-promise-card strong,
.home-outcome-card h3,
.home-proof-card h3 {
    display: block;
    margin: 0 0 0.45rem;
}

.home-promise-card p,
.home-outcome-card p,
.home-proof-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.66;
}

.home-promise-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.home-promise-strip article {
    position: relative;
    display: grid;
    gap: 0.14rem;
    padding: 0.82rem 0.95rem 0.82rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
}

.home-promise-strip article::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0.8rem;
    width: 0.28rem;
    height: 1.2rem;
    transform: translateY(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand), var(--teal));
    opacity: 0.9;
}

.home-promise-strip strong {
    display: block;
    margin: 0;
    font-size: 0.95rem;
}

.home-promise-strip small {
    display: block;
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.82rem;
    line-height: 1.45;
}

.home-cat-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(250px, 0.88fr);
    gap: 0.9rem;
    align-items: start;
    padding: 1.08rem;
    border-radius: 36px;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 177, 92, 0.34), transparent 20rem),
        radial-gradient(circle at 84% 20%, rgba(88, 198, 255, 0.18), transparent 18rem),
        linear-gradient(145deg, rgba(255, 250, 244, 0.98), rgba(241, 247, 250, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 60px rgba(23, 32, 47, 0.12);
}

.home-cat-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: translateX(-100%);
    animation: sheenSweep 7s ease-in-out infinite;
    pointer-events: none;
}

.home-cat-visual {
    position: relative;
    min-height: 438px;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.94), rgba(255, 249, 242, 0.7) 46%, transparent 70%),
        linear-gradient(180deg, rgba(12, 26, 39, 0.03), rgba(12, 26, 39, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.78);
}

.cat-stage-glow,
.cat-stage-grid,
.cat-orbit,
.cat-floating-chip {
    position: absolute;
    pointer-events: none;
}

.cat-stage-glow {
    border-radius: 999px;
    filter: blur(22px);
    opacity: 0.75;
}

.cat-stage-glow-a {
    top: 32px;
    left: 44px;
    width: 128px;
    height: 128px;
    background: rgba(255, 122, 24, 0.26);
    animation: heroBlob 8s ease-in-out infinite;
}

.cat-stage-glow-b {
    right: 34px;
    bottom: 30px;
    width: 160px;
    height: 160px;
    background: rgba(15, 118, 110, 0.18);
    animation: heroBlob 10s ease-in-out infinite reverse;
}

.cat-stage-grid {
    inset: 0;
    background-image:
        linear-gradient(rgba(23, 32, 47, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 32, 47, 0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
    opacity: 0.42;
}

.cat-orbit {
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(23, 32, 47, 0.16);
    transform: translate(-50%, -50%);
}

.cat-orbit-a {
    width: 330px;
    height: 330px;
    animation: spin 24s linear infinite;
}

.cat-orbit-b {
    width: 264px;
    height: 264px;
    animation: spin 18s linear infinite reverse;
}

.cat-orbit-c {
    width: 204px;
    height: 204px;
    animation: spin 12s linear infinite;
}

.smart-cat {
    position: relative;
    width: 250px;
    height: 300px;
    display: grid;
    place-items: center;
    z-index: 1;
    animation: catFloat 6.5s ease-in-out infinite;
}

.smart-cat-pulse {
    position: absolute;
    inset: 54px 34px 60px;
    border-radius: 50%;
    border: 1px solid rgba(15, 118, 110, 0.16);
    box-shadow:
        0 0 0 18px rgba(15, 118, 110, 0.05),
        0 0 0 36px rgba(255, 122, 24, 0.05);
    animation: catPulse 3.4s ease-in-out infinite;
}

.smart-cat-ear {
    position: absolute;
    top: 22px;
    width: 82px;
    height: 98px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(180deg, var(--cat-shell), var(--cat-shell-soft));
    transform-origin: 50% 88%;
    filter: drop-shadow(0 10px 18px rgba(23, 32, 47, 0.12));
}

.smart-cat-ear::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 42px;
    height: 48px;
    transform: translateX(-50%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(180deg, rgba(202, 246, 255, 0.84), rgba(139, 232, 248, 0.58));
}

.smart-cat-ear-left {
    left: 20px;
    animation: catEarLeft 4s ease-in-out infinite;
}

.smart-cat-ear-right {
    right: 20px;
    animation: catEarRight 4s ease-in-out infinite;
}

.smart-cat-face {
    position: absolute;
    bottom: 34px;
    width: 196px;
    height: 188px;
    border-radius: 34% 34% 42% 42%;
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.72), transparent 26%),
        linear-gradient(180deg, var(--cat-shell), var(--cat-shell-soft));
    box-shadow:
        inset 0 -12px 16px rgba(255, 255, 255, 0.38),
        0 24px 46px rgba(23, 32, 47, 0.12);
}

.smart-cat-face::before {
    content: "";
    position: absolute;
    inset: 18px 22px 20px;
    border-radius: 40% 40% 44% 44%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(210, 246, 252, 0.18));
}

.smart-cat-face::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 34%;
    width: 45%;
    height: 11%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cat-band-start), var(--cat-band-end));
    box-shadow:
        0 0 18px var(--cat-band-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.smart-cat-eye {
    position: absolute;
    top: 78px;
    width: 18px;
    height: 8px;
    border-radius: 999px;
    background: rgba(18, 40, 56, 0.82);
    box-shadow: none;
    animation: catBlink 6s ease-in-out infinite;
    z-index: 2;
}

.smart-cat-eye::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 3px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
}

.smart-cat-eye-left {
    left: 58px;
}

.smart-cat-eye-right {
    right: 58px;
}

.smart-cat-nose {
    position: absolute;
    top: 114px;
    left: 50%;
    width: 12px;
    height: 10px;
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background: rgba(255, 122, 24, 0.86);
}

.smart-cat-mouth {
    position: absolute;
    top: 128px;
    left: 50%;
    width: 22px;
    height: 10px;
    transform: translateX(-50%);
    border-bottom: 2px solid rgba(18, 40, 56, 0.48);
    border-radius: 0 0 18px 18px;
}

.smart-cat-whisker {
    position: absolute;
    width: 52px;
    height: 2px;
    background: rgba(18, 40, 56, 0.14);
}

.smart-cat-whisker-left-top {
    top: 120px;
    left: 4px;
    transform: rotate(14deg);
}

.smart-cat-whisker-left-bottom {
    top: 134px;
    left: 2px;
    transform: rotate(-6deg);
}

.smart-cat-whisker-right-top {
    top: 120px;
    right: 4px;
    transform: rotate(-14deg);
}

.smart-cat-whisker-right-bottom {
    top: 134px;
    right: 2px;
    transform: rotate(6deg);
}

.smart-cat-core {
    position: absolute;
    bottom: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--cat-core-start), var(--cat-core-end));
    box-shadow:
        0 0 0 10px rgba(255, 122, 24, 0.08),
        0 10px 22px rgba(255, 122, 24, 0.18);
}

.cat-floating-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.54rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.78);
    color: var(--ink);
    box-shadow: 0 12px 24px rgba(23, 32, 47, 0.1);
    font-size: 0.84rem;
    font-weight: 700;
}

.cat-floating-chip-a {
    top: 40px;
    left: 34px;
    animation: floatCard 7s ease-in-out infinite;
}

.cat-floating-chip-b {
    top: 76px;
    right: 34px;
    animation: floatCard 7s ease-in-out infinite -1.8s;
}

.cat-floating-chip-c {
    bottom: 48px;
    right: 62px;
    animation: floatCard 7s ease-in-out infinite -3.1s;
}

.home-position-panel {
    display: grid;
    align-content: start;
    align-self: center;
    gap: 0.68rem;
    padding: 0.95rem;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(18, 31, 46, 0.96), rgba(14, 26, 39, 0.92));
    color: #eff7fb;
    border: 1px solid rgba(112, 212, 255, 0.16);
    box-shadow: 0 18px 42px rgba(10, 20, 30, 0.18);
}

.home-position-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.home-position-panel .eyebrow {
    color: #8ee4de;
}

.home-position-panel h2 {
    margin: 0;
    font-size: clamp(1.12rem, 1.55vw, 1.48rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.home-position-summary {
    margin: 0;
    color: rgba(239, 247, 251, 0.76);
    font-size: 0.94rem;
    line-height: 1.56;
}

.home-position-matrix {
    display: grid;
    gap: 0.52rem;
}

.home-position-row {
    display: grid;
    gap: 0.2rem;
    padding: 0.72rem 0.82rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-position-row span {
    color: #8ee4de;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-position-row strong {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.4;
}

.home-position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.home-position-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.74rem;
    border-radius: 999px;
    background: rgba(112, 212, 255, 0.12);
    border: 1px solid rgba(112, 212, 255, 0.16);
    color: #def8ff;
    font-size: 0.82rem;
}

.home-stage-strip {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem;
}

.home-stage-strip article {
    padding: 0.78rem 0.92rem;
    border-radius: 20px;
}

.home-stage-strip strong {
    display: block;
    margin-bottom: 0.18rem;
    font-size: 0.92rem;
}

.home-stage-strip p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.84rem;
    line-height: 1.45;
}

.home-outcome-section {
    padding-top: 1.1rem;
}

.home-outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-outcome-card {
    padding: 1.2rem;
    border-radius: 28px;
}

.home-outcome-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0.9rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.14), rgba(88, 198, 255, 0.12));
    color: var(--teal);
    font-weight: 800;
}

.home-tool-grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-tool-card-compact {
    min-height: 176px;
}

.home-proof-section {
    padding-top: 1.6rem;
}

.home-proof-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-proof-panel {
    padding: 1.2rem;
    border-radius: 30px;
}

.home-proof-list {
    display: grid;
    gap: 0.85rem;
}

.home-proof-card {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(23, 32, 47, 0.04);
    border: 1px solid rgba(23, 32, 47, 0.06);
}

.home-proof-card .story-meta strong {
    color: var(--brand-dark);
}

.home-proof-card .section-link {
    margin-top: 0.9rem;
}

.home-cta-panel-v2 {
    padding: 2rem 1.4rem;
    background:
        radial-gradient(circle at top center, rgba(255, 179, 95, 0.28), transparent 18rem),
        radial-gradient(circle at 80% 20%, rgba(88, 198, 255, 0.14), transparent 12rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 243, 228, 0.9));
}

@keyframes sheenSweep {
    0%, 100% {
        transform: translateX(-110%);
    }
    45%, 55% {
        transform: translateX(120%);
    }
}

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

@keyframes catEarLeft {
    0%, 100% {
        transform: rotate(-6deg);
    }
    14%, 22% {
        transform: rotate(-14deg);
    }
    48% {
        transform: rotate(-4deg);
    }
}

@keyframes catEarRight {
    0%, 100% {
        transform: rotate(6deg);
    }
    14%, 22% {
        transform: rotate(14deg);
    }
    48% {
        transform: rotate(4deg);
    }
}

@keyframes catBlink {
    0%, 44%, 48%, 100% {
        transform: scaleY(1);
    }
    46% {
        transform: scaleY(0.18);
    }
}

@keyframes catPulse {
    0%, 100% {
        transform: scale(0.98);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.06);
        opacity: 0.75;
    }
}

@keyframes heroBlob {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -14px, 0) scale(1.04);
    }
}

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

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

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.hero-card-main {
    display: grid;
    gap: 1rem;
    align-items: center;
    grid-template-columns: 180px 1fr;
    padding: 1.2rem;
}

.cat-constellation {
    position: relative;
    aspect-ratio: 1;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 122, 24, 0.16), rgba(15, 118, 110, 0.1)),
        #fff8f0;
    overflow: hidden;
}

.cat-face {
    position: absolute;
    inset: 28px;
    border-radius: 28px;
    background: linear-gradient(145deg, #ff8d36, #ffcd8c);
}

.cat-face::before,
.cat-face::after {
    content: "";
    position: absolute;
    top: -18px;
    width: 38px;
    height: 38px;
    background: linear-gradient(145deg, #ff8d36, #ffcd8c);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.cat-face::before {
    left: 12px;
}

.cat-face::after {
    right: 12px;
}

.orbit {
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 1px dashed rgba(23, 32, 47, 0.15);
}

.orbit-a {
    animation: spin 18s linear infinite;
}

.orbit-b {
    inset: 30px;
    animation: spin 14s linear infinite reverse;
}

.orbit-c {
    inset: 46px;
    animation: spin 22s linear infinite;
}

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

.hero-card-label,
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(23, 32, 47, 0.06);
    color: var(--ink);
    font-size: 0.82rem;
}

.stat-grid,
.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.stat-card,
.metric-card {
    padding: 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.stat-card strong,
.metric-card strong {
    display: block;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.section-head h2,
.panel-head h2,
.admin-head h1,
.auth-card h1 {
    margin: 0.3rem 0 0;
    font-size: clamp(1.6rem, 2vw, 2.5rem);
    letter-spacing: -0.03em;
}

.card-grid,
.process-grid,
.nav-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.tool-card,
.process-card,
.story-card,
.nav-cluster,
.nav-tool-card,
.editor-panel,
.result-panel,
.admin-panel,
.auth-card {
    padding: 1.2rem;
}

.tool-card-top,
.story-meta,
.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.icon-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 0.75rem 0.9rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.14), rgba(15, 118, 110, 0.14));
    color: var(--teal);
    font-weight: 700;
}

.chip {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(23, 32, 47, 0.05);
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.process-card strong {
    color: var(--brand-dark);
    font-size: 1.1rem;
}

.warm-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 244, 230, 0.85));
}

.stack-list {
    display: grid;
    gap: 1rem;
}

.story-card.large h2 {
    margin-top: 0;
}

.nav-link-card,
.nav-tool-card {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
}

.nav-cluster .stack-list {
    margin-top: 1rem;
}

.link-arrow {
    color: var(--ink-soft);
    font-size: 1.2rem;
}

.tool-form,
.editor-form {
    display: grid;
    gap: 1rem;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

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

.field {
    display: grid;
    gap: 0.55rem;
}

.field span {
    font-weight: 700;
}

.field small {
    color: var(--ink-soft);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    color: var(--ink);
}

.field textarea {
    resize: vertical;
}

.checkbox-field {
    align-content: end;
}

.checkbox-field input {
    width: auto;
    justify-self: start;
}

.result-card,
.empty-state {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.result-toolbar {
    display: flex;
    justify-content: end;
    margin-bottom: 1rem;
}

.result-body,
.article-body {
    color: var(--ink-soft);
    line-height: 1.8;
}

.result-media {
    margin-top: 1rem;
}

.page-hero {
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.compact-page-hero h1 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.group-block + .group-block,
.top-gap {
    margin-top: 2rem;
}

.toolbox-page-hero {
    padding-top: 1.9rem;
    padding-bottom: 0.25rem;
}

.toolbox-hero-shell,
.toolbox-group,
.toolbox-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.toolbox-hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 179, 95, 0.24), transparent 20rem),
        radial-gradient(circle at 88% 18%, rgba(88, 198, 255, 0.16), transparent 18rem),
        linear-gradient(145deg, rgba(255, 250, 244, 0.98), rgba(242, 247, 250, 0.95));
}

.toolbox-hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: sheenSweep 8s ease-in-out infinite;
}

.toolbox-hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 0.1rem;
}

.toolbox-hero-copy h1 {
    margin: 0.28rem 0 0.72rem;
    font-size: clamp(2.1rem, 3.2vw, 3.45rem);
    line-height: 1.02;
    max-width: 10.4ch;
}

.toolbox-hero-copy .lead {
    max-width: 34rem;
    margin: 0.28rem 0 0;
    font-size: 1rem;
    line-height: 1.68;
}

.toolbox-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.toolbox-hero-meta article {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.78rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow);
}

.toolbox-hero-meta strong {
    display: inline-flex;
    align-items: baseline;
    font-size: 1.25rem;
    letter-spacing: -0.05em;
}

.toolbox-hero-meta span {
    color: var(--ink-soft);
    font-size: 0.88rem;
    white-space: nowrap;
}

.toolbox-hero-stage {
    position: relative;
    z-index: 1;
    min-height: 232px;
}

.toolbox-hero-console {
    position: relative;
    min-height: 100%;
    padding: 1rem;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 28%, rgba(255, 161, 72, 0.18), transparent 11rem),
        linear-gradient(160deg, rgba(15, 30, 44, 0.96), rgba(9, 20, 34, 0.94));
    border: 1px solid rgba(112, 212, 255, 0.14);
    box-shadow: 0 18px 42px rgba(10, 20, 30, 0.16);
}

.toolbox-hero-console::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.44), transparent 92%);
    opacity: 0.36;
}

.toolbox-search {
    display: grid;
    gap: 0.55rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(23, 32, 47, 0.04);
    border: 1px solid var(--line);
}

.toolbox-search-compact {
    position: relative;
    z-index: 1;
    max-width: calc(100% - 168px);
    padding: 0;
    border: 0;
    background: none;
}

.toolbox-search span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.toolbox-search-compact span {
    color: rgba(223, 238, 248, 0.78);
}

.toolbox-search input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.toolbox-search-compact input {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 24px rgba(4, 13, 24, 0.14);
}

.toolbox-index {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.toolbox-index-compact {
    position: relative;
    z-index: 1;
    max-width: calc(100% - 168px);
    margin-top: 0.7rem;
    gap: 0.55rem;
}

.toolbox-index a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(23, 32, 47, 0.04);
    border: 1px solid transparent;
    color: var(--ink-soft);
    transition: 180ms ease;
}

.toolbox-index-compact a {
    padding: 0.62rem 0.82rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(239, 247, 251, 0.86);
}

.toolbox-index a strong {
    display: inline-flex;
    min-width: 30px;
    justify-content: center;
    padding: 0.25rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font-size: 0.82rem;
}

.toolbox-index-compact a strong {
    background: rgba(255, 255, 255, 0.14);
    color: #eff7fb;
}

.toolbox-index a.active,
.toolbox-index a:hover {
    color: var(--ink);
    border-color: rgba(255, 122, 24, 0.22);
    background: rgba(255, 122, 24, 0.08);
}

.toolbox-index-compact a.active,
.toolbox-index-compact a:hover {
    color: #fff;
    border-color: rgba(255, 161, 72, 0.28);
    background: rgba(255, 161, 72, 0.16);
}

.toolbox-cat-pocket,
.toolbox-cat-grid,
.toolbox-cat-orbit,
.toolbox-cat-glow,
.toolbox-cat-chip {
    position: absolute;
    pointer-events: none;
}

.toolbox-cat-pocket {
    right: 0.75rem;
    bottom: 0.65rem;
    width: 150px;
    height: 172px;
}

.toolbox-cat-grid {
    inset: 16px 0 0 16px;
    border-radius: 22px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 92%);
    opacity: 0.4;
}

.toolbox-cat-orbit {
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    transform: translate(-50%, -50%);
}

.toolbox-cat-orbit-a {
    width: 118px;
    height: 118px;
    animation: spin 16s linear infinite;
}

.toolbox-cat-orbit-b {
    width: 84px;
    height: 84px;
    animation: spin 12s linear infinite reverse;
}

.toolbox-cat-glow {
    border-radius: 999px;
    filter: blur(16px);
    opacity: 0.72;
}

.toolbox-cat-glow-a {
    top: 10px;
    right: 8px;
    width: 66px;
    height: 66px;
    background: rgba(255, 145, 68, 0.34);
    animation: heroBlob 8s ease-in-out infinite;
}

.toolbox-cat-glow-b {
    left: 8px;
    bottom: 12px;
    width: 72px;
    height: 72px;
    background: rgba(88, 198, 255, 0.22);
    animation: heroBlob 10s ease-in-out infinite reverse;
}

.toolbox-cat {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    animation: catFloat 5.8s ease-in-out infinite;
}

.toolbox-cat-ear {
    position: absolute;
    top: 24px;
    width: 40px;
    height: 52px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(180deg, var(--cat-shell), var(--cat-shell-soft));
    transform-origin: 50% 88%;
    filter: drop-shadow(0 8px 14px rgba(7, 15, 24, 0.2));
}

.toolbox-cat-ear::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 20px;
    height: 24px;
    transform: translateX(-50%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(180deg, rgba(202, 246, 255, 0.84), rgba(139, 232, 248, 0.58));
}

.toolbox-cat-ear-left {
    left: 32px;
    animation: catEarLeft 4.2s ease-in-out infinite;
}

.toolbox-cat-ear-right {
    right: 32px;
    animation: catEarRight 4.2s ease-in-out infinite;
}

.toolbox-cat-face {
    position: absolute;
    bottom: 30px;
    width: 92px;
    height: 90px;
    border-radius: 34% 34% 42% 42%;
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.72), transparent 26%),
        linear-gradient(180deg, var(--cat-shell), var(--cat-shell-soft));
    box-shadow:
        inset 0 -8px 14px rgba(255, 255, 255, 0.26),
        0 16px 28px rgba(6, 14, 22, 0.2);
}

.toolbox-cat-face::before {
    content: "";
    position: absolute;
    inset: 10px 12px 12px;
    border-radius: 38% 38% 44% 44%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(210, 246, 252, 0.18));
}

.toolbox-cat-face::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 34%;
    width: 44%;
    height: 11%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cat-band-start), var(--cat-band-end));
    box-shadow:
        0 0 12px var(--cat-band-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.toolbox-cat-eye {
    position: absolute;
    top: 38px;
    width: 8px;
    height: 4px;
    border-radius: 999px;
    background: rgba(18, 40, 56, 0.82);
    box-shadow: none;
    animation: catBlink 6s ease-in-out infinite;
    z-index: 2;
}

.toolbox-cat-eye-left {
    left: 27px;
}

.toolbox-cat-eye-right {
    right: 27px;
}

.toolbox-cat-nose {
    position: absolute;
    top: 53px;
    left: 50%;
    width: 7px;
    height: 6px;
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background: rgba(255, 122, 24, 0.86);
}

.toolbox-cat-mouth {
    position: absolute;
    top: 64px;
    left: 50%;
    width: 12px;
    height: 6px;
    transform: translateX(-50%);
    border-bottom: 2px solid rgba(18, 40, 56, 0.44);
    border-radius: 0 0 12px 12px;
}

.toolbox-cat-core {
    position: absolute;
    bottom: 14px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--cat-core-start), var(--cat-core-end));
    box-shadow:
        0 0 0 6px rgba(255, 122, 24, 0.08),
        0 8px 18px rgba(255, 122, 24, 0.18);
}

.toolbox-cat-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.34rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #eef7fb;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(4, 13, 24, 0.16);
}

.toolbox-cat-chip-a {
    left: 6px;
    top: 20px;
    animation: floatCard 7s ease-in-out infinite;
}

.toolbox-cat-chip-b {
    right: 0;
    bottom: 18px;
    animation: floatCard 7s ease-in-out infinite -2.1s;
}

.toolbox-section {
    padding-top: 0.65rem;
}

.toolbox-group + .toolbox-group {
    margin-top: 1rem;
}

.toolbox-group {
    padding: 1.25rem;
    border-radius: 30px;
}

.toolbox-group-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.toolbox-group-head h2 {
    margin: 0.28rem 0 0;
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    letter-spacing: -0.03em;
}

.toolbox-counter {
    margin: 0;
    color: var(--ink-soft);
    font-weight: 700;
}

.toolbox-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.toolbox-card {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 24px;
}

.toolbox-card-top,
.toolbox-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.toolbox-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.14), rgba(15, 118, 110, 0.12));
    font-size: 1.25rem;
}

.toolbox-card-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 0.5rem;
}

.ghost-badge {
    background: rgba(23, 32, 47, 0.06);
    color: var(--ink-soft);
}

.toolbox-card h3 {
    margin: 0;
    font-size: 1.06rem;
}

.toolbox-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.66;
    min-height: 3.2em;
}

.toolbox-page-shell {
    display: grid;
    gap: 0.85rem;
}

.toolbox-hero-shell-dual {
    align-items: center;
}

.toolbox-hero-shell-dual .toolbox-hero-copy .lead {
    max-width: 38rem;
}

.toolbox-lane-preview {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.75rem;
    max-width: calc(100% - 168px);
}

.toolbox-lane-card {
    display: grid;
    gap: 0.24rem;
    padding: 0.85rem 0.95rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #eef7fb;
}

.toolbox-lane-card.is-primary {
    background: linear-gradient(145deg, rgba(255, 161, 72, 0.22), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 161, 72, 0.22);
}

.toolbox-lane-card span {
    color: rgba(142, 228, 222, 0.9);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.toolbox-lane-card strong {
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.toolbox-lane-card p {
    margin: 0;
    color: rgba(239, 247, 251, 0.78);
    line-height: 1.55;
    font-size: 0.9rem;
}

.toolbox-dual-section {
    padding-top: 0.4rem;
}

.toolbox-mode-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
}

.toolbox-mode-switch button {
    border: 0;
    padding: 0.78rem 1.2rem;
    border-radius: 999px;
    background: transparent;
    color: var(--ink-soft);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: 180ms ease;
}

.toolbox-mode-switch button.is-active {
    background: linear-gradient(135deg, var(--brand), #ff9d45);
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 122, 24, 0.18);
}

.toolbox-mode-pane {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.toolbox-mode-pane[hidden] {
    display: none;
}

.toolbox-pane-head,
.toolbox-control-bar,
.foundation-capability-card,
.toolbox-summary-card,
.toolbox-empty-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.toolbox-pane-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border-radius: 28px;
}

.toolbox-pane-head h2 {
    margin: 0.28rem 0 0;
    font-size: clamp(1.55rem, 2.2vw, 2.4rem);
    letter-spacing: -0.04em;
}

.toolbox-pane-head p {
    max-width: 30rem;
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.toolbox-mode-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.toolbox-summary-card {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 24px;
}

.toolbox-summary-card span {
    color: var(--teal);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.toolbox-summary-card strong {
    font-size: 1.06rem;
}

.toolbox-summary-card p,
.toolbox-summary-card small {
    margin: 0;
    color: var(--ink-soft);
}

.toolbox-control-bar {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 28px;
}

.toolbox-surface-search {
    padding: 0;
    border: 0;
    background: none;
}

.toolbox-surface-index {
    gap: 0.6rem;
}

.toolbox-surface-index a {
    background: rgba(23, 32, 47, 0.04);
    border-color: rgba(23, 32, 47, 0.06);
}

.foundation-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.foundation-capability-card {
    display: grid;
    gap: 0.65rem;
    padding: 1rem;
    border-radius: 26px;
}

.foundation-capability-card.is-live {
    background:
        radial-gradient(circle at top right, rgba(255, 179, 95, 0.18), transparent 10rem),
        rgba(255, 255, 255, 0.9);
}

.foundation-capability-card.is-planned {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 249, 251, 0.9));
}

.foundation-capability-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.foundation-io {
    color: var(--ink-soft);
    font-size: 0.82rem;
    white-space: nowrap;
}

.foundation-capability-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

.foundation-capability-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.62;
    min-height: 4.8em;
}

.foundation-capability-foot {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
}

.foundation-capability-foot strong {
    font-size: 1.4rem;
    letter-spacing: -0.04em;
}

.foundation-capability-foot span {
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.foundation-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.foundation-tool-card {
    background: rgba(255, 255, 255, 0.9);
}

.foundation-group.is-planned {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 248, 251, 0.95));
}

.foundation-plan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(23, 32, 47, 0.06);
}

.toolbox-empty-card {
    display: grid;
    gap: 0.7rem;
    padding: 1.2rem;
    border-radius: 24px;
}

.toolbox-empty-card strong {
    font-size: 1.05rem;
}

.toolbox-empty-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.68;
}

.button.is-disabled {
    pointer-events: none;
    opacity: 0.72;
}

.navigation-hero {
    padding-bottom: 0.75rem;
}

.navigation-hero-panel,
.navigation-sidebar-card,
.navigation-group,
.navigation-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.navigation-hero-panel {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 30px;
}

.navigation-hero-copy {
    max-width: 760px;
}

.navigation-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    min-width: 260px;
}

.navigation-stat-card {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(23, 32, 47, 0.04);
    border: 1px solid var(--line);
}

.navigation-stat-card strong {
    display: block;
    font-size: 1.8rem;
    letter-spacing: -0.05em;
}

.navigation-filter-bar {
    display: grid;
    gap: 1rem;
    margin-top: 1.1rem;
}

.navigation-search {
    display: grid;
    gap: 0.5rem;
}

.navigation-search span {
    font-weight: 700;
}

.navigation-search input {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
}

.navigation-mobile-index {
    display: none;
    gap: 0.7rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.navigation-mobile-chip {
    flex: 0 0 auto;
    padding: 0.68rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.navigation-section-wrap {
    padding-top: 1.5rem;
}

.navigation-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.navigation-sidebar {
    position: sticky;
    top: 6rem;
}

.navigation-sidebar-card {
    border-radius: 28px;
    padding: 1.2rem;
}

.navigation-sidebar-head {
    margin-bottom: 1rem;
}

.navigation-sidebar-head h2 {
    margin: 0.3rem 0 0;
    font-size: 1.45rem;
}

.navigation-index {
    display: grid;
    gap: 0.55rem;
}

.navigation-index-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.88rem 0.95rem;
    border-radius: 18px;
    background: rgba(23, 32, 47, 0.03);
    color: var(--ink-soft);
    transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.navigation-index-link:hover,
.navigation-index-link.active {
    background: rgba(255, 122, 24, 0.12);
    color: var(--ink);
    transform: translateX(2px);
}

.navigation-index-link strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 0.3rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
}

.navigation-main {
    display: grid;
    gap: 1.2rem;
}

.navigation-group {
    padding: 1.2rem;
    border-radius: 28px;
    scroll-margin-top: 6.5rem;
}

.navigation-group-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.navigation-group-head h2 {
    margin: 0.35rem 0 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ink-soft);
    font-weight: 500;
}

.navigation-count {
    flex: 0 0 auto;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(23, 32, 47, 0.06);
    color: var(--ink-soft);
    font-size: 0.85rem;
}

.navigation-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 0.8rem;
}

.navigation-card {
    display: grid;
    gap: 0.75rem;
    padding: 0.95rem;
    border-radius: 22px;
    min-height: 160px;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.navigation-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 122, 24, 0.28);
    box-shadow: 0 18px 40px rgba(23, 32, 47, 0.1);
}

.navigation-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.navigation-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.14), rgba(15, 118, 110, 0.12));
    color: var(--teal);
    font-weight: 700;
    font-size: 0.88rem;
}

.navigation-card-icon-text {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.navigation-card-icon.is-text-visible .navigation-card-icon-text {
    display: inline-flex;
}

.navigation-card-icon.is-text-visible img {
    display: none;
}

.navigation-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.navigation-card-copy h3 {
    margin: 0;
    font-size: 1rem;
}

.navigation-card-copy small {
    display: inline-block;
    margin-top: 0.25rem;
    color: var(--teal);
    font-size: 0.76rem;
    letter-spacing: 0.02em;
}

.navigation-card-copy p {
    margin: 0.55rem 0 0;
    color: var(--ink-soft);
    line-height: 1.55;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.navigation-group[hidden],
.navigation-card[hidden] {
    display: none;
}

.flash-stack {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.flash {
    padding: 0.95rem 1.1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
}

.flash-success {
    background: rgba(15, 118, 110, 0.12);
}

.flash-error {
    background: rgba(220, 38, 38, 0.12);
}

.site-footer {
    padding: 3rem 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1.5rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.auth-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.auth-card {
    width: min(100%, 520px);
}

.theme-admin {
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.1), transparent 28rem),
        linear-gradient(180deg, #f7f7fb, #efeff5);
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 290px 1fr;
}

.admin-sidebar {
    padding: 1.4rem;
    border-right: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-main {
    padding: 1.5rem;
}

.admin-brand {
    margin-bottom: 0.6rem;
}

.admin-user-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(23, 32, 47, 0.04);
}

.avatar-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--gold));
    box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.14);
}

.admin-nav {
    display: grid;
    gap: 0.35rem;
}

.admin-nav a,
.admin-logout {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    color: var(--ink-soft);
}

.admin-nav a.active,
.admin-nav a:hover {
    color: var(--ink);
    background: rgba(23, 32, 47, 0.06);
}

.admin-head {
    margin-bottom: 1rem;
}

.admin-section {
    display: grid;
    gap: 1rem;
}

.details-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.details-card summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.details-card[open] summary {
    border-bottom: 1px solid var(--line);
}

.details-card > :not(summary) {
    padding: 1rem 1.2rem 1.2rem;
}

.table-wrap {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    text-align: left;
    padding: 0.9rem;
    border-bottom: 1px solid var(--line);
}

@media (max-width: 1080px) {
    .card-grid,
    .process-grid,
    .nav-preview-grid,
    .toolbox-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .split-grid,
    .tool-layout,
    .admin-two-col,
    .footer-grid,
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .navigation-shell,
    .navigation-hero-panel {
        grid-template-columns: 1fr;
    }

    .navigation-hero-panel {
        display: grid;
    }

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

    .toolbox-search-compact,
    .toolbox-index-compact {
        max-width: calc(100% - 156px);
    }

    .toolbox-hero-stage {
        min-height: 220px;
    }

    .toolbox-lane-preview {
        max-width: calc(100% - 156px);
    }

    .toolbox-mode-summary,
    .foundation-capability-grid,
    .foundation-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .toolbox-pane-head {
        display: grid;
        align-items: start;
    }

    .navigation-sidebar {
        display: none;
    }

    .navigation-mobile-index {
        display: flex;
    }

    .home-hero-shell,
    .home-hero-shell-v2,
    .home-story-shell {
        grid-template-columns: 1fr;
    }

    .home-value-grid,
    .home-nav-grid,
    .home-promise-grid,
    .home-promise-strip,
    .home-outcome-grid,
    .home-tool-grid-compact,
    .home-proof-shell,
    .home-stage-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero-copy h1 {
        max-width: 13ch;
    }

    .home-cat-stage {
        grid-template-columns: 1fr;
    }

    .home-cat-visual {
        min-height: 390px;
    }
}

@media (max-width: 760px) {
    .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        background: rgba(255, 250, 243, 0.98);
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

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

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

    .card-grid,
    .process-grid,
    .nav-preview-grid,
    .toolbox-card-grid,
    .form-grid.two,
    .stat-grid,
    .metric-grid {
        grid-template-columns: 1fr;
    }

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

    .home-hero-shell,
    .home-hero-shell-v2,
    .home-hero-note-grid,
    .home-value-grid,
    .home-flow-grid,
    .home-tool-grid,
    .home-story-shell,
    .home-nav-grid,
    .home-promise-grid,
    .home-promise-strip,
    .home-outcome-grid,
    .home-tool-grid-compact,
    .home-proof-shell,
    .home-stage-strip {
        grid-template-columns: 1fr;
    }

    .home-hero-copy h1,
    .home-cta-panel h2 {
        max-width: none;
    }

    .home-platform-row {
        gap: 0.5rem;
    }

    .home-cat-stage,
    .home-position-panel,
    .home-proof-panel,
    .home-cta-panel-v2 {
        padding: 1rem;
    }

    .home-cat-visual {
        min-height: 340px;
    }

    .smart-cat {
        width: 204px;
        height: 252px;
    }

    .smart-cat-ear {
        width: 68px;
        height: 82px;
        top: 20px;
    }

    .smart-cat-face {
        width: 160px;
        height: 154px;
        bottom: 28px;
    }

    .smart-cat-eye {
        top: 64px;
        width: 14px;
        height: 6px;
    }

    .smart-cat-eye-left {
        left: 48px;
    }

    .smart-cat-eye-right {
        right: 48px;
    }

    .smart-cat-nose {
        top: 94px;
    }

    .smart-cat-mouth {
        top: 106px;
    }

    .smart-cat-whisker {
        width: 44px;
    }

    .cat-orbit-a {
        width: 260px;
        height: 260px;
    }

    .cat-orbit-b {
        width: 210px;
        height: 210px;
    }

    .cat-orbit-c {
        width: 162px;
        height: 162px;
    }

    .cat-floating-chip-c {
        right: 30px;
        bottom: 28px;
    }

    .navigation-hero-stats,
    .navigation-card-grid {
        grid-template-columns: 1fr;
    }

    .toolbox-page-hero {
        padding-top: 1.3rem;
    }

    .toolbox-hero-shell,
    .toolbox-hero-console {
        padding: 0.92rem;
    }

    .toolbox-hero-stage {
        min-height: auto;
    }

    .toolbox-hero-meta {
        gap: 0.55rem;
        margin-top: 0.82rem;
    }

    .toolbox-search-compact,
    .toolbox-index-compact {
        max-width: none;
    }

    .toolbox-lane-preview {
        max-width: none;
    }

    .toolbox-mode-switch {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .toolbox-mode-switch button {
        width: 100%;
    }

    .toolbox-pane-head,
    .toolbox-control-bar {
        padding: 0.95rem;
    }

    .toolbox-mode-summary,
    .foundation-capability-grid,
    .foundation-card-grid {
        grid-template-columns: 1fr;
    }

    .toolbox-cat-pocket {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 128px;
        margin-top: 0.45rem;
    }

    .toolbox-cat-grid {
        inset: 8px 0 0;
    }

    .toolbox-cat-chip-a {
        left: 0;
        top: 10px;
    }

    .toolbox-cat-chip-b {
        right: 8px;
        bottom: 8px;
    }

    .toolbox-cat-ear {
        width: 34px;
        height: 44px;
        top: 18px;
    }

    .toolbox-cat-ear-left {
        left: 36px;
    }

    .toolbox-cat-ear-right {
        right: 36px;
    }

    .toolbox-cat-face {
        width: 80px;
        height: 78px;
        bottom: 20px;
    }

    .toolbox-cat-eye {
        top: 33px;
        width: 7px;
        height: 3px;
    }

    .toolbox-cat-eye-left {
        left: 23px;
    }

    .toolbox-cat-eye-right {
        right: 23px;
    }

    .toolbox-cat-nose {
        top: 46px;
    }

    .toolbox-cat-mouth {
        top: 56px;
    }

    .foundation-capability-card p {
        min-height: auto;
    }

    .toolbox-group-head {
        display: grid;
        align-items: start;
    }

    .toolbox-card p {
        min-height: auto;
    }

    .navigation-group-head {
        display: grid;
        align-items: start;
    }

    .navigation-card {
        min-height: auto;
    }
}

.site-nav-cta {
    margin-left: 0.2rem;
}

.site-announce-bar {
    border-top: 1px solid rgba(23, 32, 47, 0.06);
    background: linear-gradient(180deg, rgba(255, 122, 24, 0.08), rgba(255, 255, 255, 0.02));
}

.site-announce-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.72rem 0;
}

.site-announce-inner p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.6;
}

.site-announce-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 122, 24, 0.12);
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.launch-stat-grid,
.launch-surface-shell,
.category-pill-grid,
.resource-feature-grid,
.faq-shell,
.story-timeline {
    display: grid;
    gap: 1rem;
}

.launch-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.1rem;
}

.launch-stat-card,
.launch-surface-panel,
.category-pill-card,
.resource-feature-card,
.tool-detail-hero-shell,
.tool-detail-brief,
.tool-detail-note,
.timeline-card,
.faq-panel,
.faq-item,
.news-feature-card,
.showcase-story-card,
.news-story-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.launch-stat-card {
    padding: 1rem 1.1rem;
    border-radius: 22px;
}

.launch-stat-card strong {
    display: block;
    font-size: 1.7rem;
    letter-spacing: -0.05em;
}

.launch-stat-card span {
    color: var(--ink-soft);
}

.launch-surface-section {
    padding-top: 0;
}

.launch-surface-shell {
    grid-template-columns: 1.1fr 1fr;
}

.launch-surface-panel,
.faq-panel,
.news-feature-card,
.tool-detail-hero-shell {
    padding: 1.25rem;
    border-radius: 30px;
}

.category-pill-grid,
.resource-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-pill-card,
.resource-feature-card,
.timeline-card,
.tool-detail-brief,
.tool-detail-note {
    padding: 1rem 1.05rem;
    border-radius: 24px;
}

.category-pill-card strong,
.resource-feature-card strong,
.tool-detail-brief strong,
.tool-detail-note h3,
.timeline-card h3 {
    display: block;
    margin: 0 0 0.55rem;
    font-size: 1rem;
}

.category-pill-card p,
.resource-feature-card p,
.tool-detail-brief p,
.tool-detail-note p,
.timeline-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

.resource-feature-card small {
    display: inline-block;
    margin-top: 0.7rem;
    color: var(--teal);
    font-weight: 600;
}

.editorial-hero .lead,
.tool-detail-hero .lead {
    max-width: 760px;
}

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

.showcase-story-card,
.news-story-card {
    min-height: 100%;
}

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

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border-radius: 24px;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    cursor: pointer;
    list-style: none;
}

.faq-item summary span {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.faq-item[open] summary {
    border-bottom: 1px solid rgba(23, 32, 47, 0.08);
}

.faq-answer {
    padding: 1rem 1.1rem 1.15rem;
}

.faq-answer p {
    margin: 0 0 0.8rem;
    color: var(--ink-soft);
}

.news-feature-section {
    padding-top: 0;
}

.news-feature-card h2 {
    margin: 0.6rem 0 0.9rem;
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.1;
}

.news-feature-card p {
    max-width: 760px;
    margin: 0 0 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

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

.tool-detail-hero {
    padding-bottom: 1.6rem;
}

.tool-detail-hero-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.15rem;
}

.tool-detail-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tool-detail-hero-side,
.tool-detail-side-stack {
    display: grid;
    gap: 0.9rem;
}

.tool-detail-side-stack {
    margin-top: 1rem;
}

.footer-summary {
    max-width: 38rem;
}

@media (max-width: 1080px) {
    .launch-stat-grid,
    .news-grid,
    .showcase-grid,
    .faq-shell,
    .launch-surface-shell,
    .tool-detail-hero-shell {
        grid-template-columns: 1fr 1fr;
    }

    .launch-surface-shell,
    .faq-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-announce-inner {
        display: grid;
        gap: 0.45rem;
    }

    .launch-stat-grid,
    .category-pill-grid,
    .resource-feature-grid,
    .showcase-grid,
    .news-grid,
    .tool-detail-hero-shell {
        grid-template-columns: 1fr;
    }

    .launch-surface-panel,
    .faq-panel,
    .tool-detail-hero-shell,
    .news-feature-card {
        padding: 1rem;
    }

    .news-feature-card h2 {
        font-size: 1.7rem;
    }
}

.home-refresh-hero {
    padding-top: 4.8rem;
    padding-bottom: 2.2rem;
}

.home-refresh-hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
    gap: 1.2rem;
    align-items: start;
}

.home-refresh-copy {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 0.2rem 0;
}

.home-refresh-copy h1 {
    margin: 0;
    max-width: 10ch;
    font-size: clamp(3rem, 5.3vw, 5.25rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.home-refresh-copy .lead {
    max-width: 37rem;
    margin: 0;
}

.home-refresh-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.home-refresh-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.58rem 0.92rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(23, 32, 47, 0.08);
    color: var(--ink-soft);
    backdrop-filter: blur(14px);
}

.home-refresh-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.85rem;
}

.home-refresh-stat,
.home-module-card,
.home-curated-card,
.home-refresh-cta {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow);
}

.home-refresh-stat {
    display: grid;
    gap: 0.35rem;
    min-height: 124px;
    padding: 1rem 1.05rem;
    border-radius: 24px;
}

.home-refresh-stat strong {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.15rem);
    letter-spacing: -0.06em;
}

.home-refresh-stat span {
    color: var(--ink-soft);
    line-height: 1.55;
}

.home-refresh-side {
    display: grid;
    gap: 1rem;
}

.home-surface-card {
    position: relative;
    overflow: hidden;
    padding: 1.3rem;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
}

.home-surface-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 12rem;
    height: 12rem;
    background: radial-gradient(circle, rgba(255, 122, 24, 0.12), transparent 70%);
    pointer-events: none;
}

.home-mini-head,
.home-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.home-hero-summary {
    background:
        radial-gradient(circle at top left, rgba(255, 179, 95, 0.18), transparent 14rem),
        linear-gradient(180deg, rgba(20, 30, 44, 0.98), rgba(14, 24, 38, 0.94));
    border-color: rgba(88, 198, 255, 0.14);
    color: #f4fbff;
}

.home-hero-summary::before {
    background: radial-gradient(circle, rgba(88, 198, 255, 0.14), transparent 70%);
}

.home-hero-summary .badge,
.home-hero-summary .eyebrow {
    color: #d4f6ff;
    background: rgba(255, 255, 255, 0.08);
}

.home-hero-summary h2,
.home-panel-head h3,
.home-refresh-cta h2 {
    margin: 0;
    letter-spacing: -0.04em;
}

.home-hero-summary h2 {
    margin-top: 0.85rem;
    font-size: clamp(1.65rem, 2.3vw, 2.3rem);
    line-height: 1.04;
}

.home-hero-summary > p {
    margin: 0.7rem 0 0;
    color: rgba(244, 251, 255, 0.76);
    line-height: 1.68;
}

.home-summary-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.1rem;
}

.home-summary-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    padding: 0.92rem 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-summary-item > span,
.home-module-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.home-summary-item > span {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.home-summary-item strong,
.home-sequence-item strong,
.home-module-card strong,
.home-link-item strong,
.home-story-item h3,
.home-news-item h3,
.home-curated-card h3 {
    display: block;
    margin: 0;
}

.home-summary-item p {
    margin: 0.3rem 0 0;
    color: rgba(244, 251, 255, 0.72);
    line-height: 1.58;
}

.home-hero-sequence {
    background:
        radial-gradient(circle at top center, rgba(255, 179, 95, 0.2), transparent 14rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 231, 0.92));
}

.home-sequence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.home-sequence-item,
.home-link-item,
.home-story-item,
.home-news-item {
    display: grid;
    gap: 0.35rem;
    padding: 0.95rem 1rem;
    border-radius: 22px;
    background: rgba(23, 32, 47, 0.04);
    border: 1px solid rgba(23, 32, 47, 0.06);
}

.home-sequence-item small {
    color: var(--brand-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-sequence-item p,
.home-module-card p,
.home-curated-card p,
.home-link-item p,
.home-story-item p,
.home-news-item p,
.home-refresh-cta p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.68;
}

.home-refresh-section {
    padding-top: 1.8rem;
}

.home-tools-section {
    padding-top: 1.2rem;
}

.home-module-grid,
.home-curated-grid,
.home-library-grid {
    display: grid;
    gap: 1rem;
}

.home-module-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.home-module-card {
    display: grid;
    gap: 0.9rem;
    min-height: 220px;
    padding: 1.15rem;
    border-radius: 28px;
}

.home-module-index {
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.14), rgba(88, 198, 255, 0.14));
    color: var(--teal);
}

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

.home-curated-card {
    display: grid;
    gap: 0.85rem;
    min-height: 210px;
    padding: 1.2rem;
    border-radius: 28px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-curated-card:hover,
.home-link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(23, 32, 47, 0.12);
}

.home-curated-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.home-curated-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(23, 32, 47, 0.06);
    color: var(--ink);
    font-size: 1rem;
}

.home-library-section {
    padding-top: 1.2rem;
}

.home-library-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.home-library-panel {
    display: grid;
    align-content: start;
    gap: 1rem;
    min-height: 100%;
}

.home-panel-head h3 {
    margin-top: 0.35rem;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    line-height: 1.1;
}

.home-link-list,
.home-story-list-refresh,
.home-news-list-refresh {
    display: grid;
    gap: 0.75rem;
}

.home-link-item,
.home-story-item,
.home-news-item {
    position: relative;
    overflow: hidden;
}

.home-link-item small {
    color: var(--teal);
    font-weight: 700;
}

.home-story-item .story-meta strong {
    color: var(--brand-dark);
}

.home-news-item .story-meta small {
    color: var(--ink-soft);
}

.home-refresh-cta {
    padding: 2.2rem 1.4rem;
    border-radius: 36px;
    text-align: center;
    background:
        radial-gradient(circle at top center, rgba(255, 179, 95, 0.24), transparent 18rem),
        radial-gradient(circle at 82% 24%, rgba(88, 198, 255, 0.12), transparent 14rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 231, 0.92));
}

.home-refresh-cta h2 {
    max-width: 16ch;
    margin: 0.45rem auto 0;
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    line-height: 0.98;
}

.home-refresh-cta p {
    max-width: 42rem;
    margin: 0.95rem auto 0;
}

.home-refresh-cta .button-row {
    justify-content: center;
    margin-top: 1.3rem;
}

@media (max-width: 1180px) {
    .home-refresh-hero-shell {
        grid-template-columns: 1fr;
    }

    .home-refresh-copy h1 {
        max-width: 11ch;
    }
}

@media (max-width: 760px) {
    .home-refresh-hero {
        padding-top: 3.8rem;
        padding-bottom: 1.4rem;
    }

    .home-refresh-copy h1 {
        max-width: none;
        font-size: clamp(2.35rem, 12vw, 3.45rem);
    }

    .home-surface-card,
    .home-refresh-cta {
        padding: 1rem;
        border-radius: 28px;
    }

    .home-summary-item {
        grid-template-columns: 1fr;
    }

    .home-mini-head,
    .home-panel-head {
        display: grid;
    }

    .home-refresh-section .section-head,
    .home-tools-section .section-head,
    .home-library-section .section-head {
        display: grid;
        align-items: flex-start;
    }

    .home-refresh-stats,
    .home-sequence-grid {
        grid-template-columns: 1fr;
    }

    .home-module-card,
    .home-curated-card {
        min-height: auto;
    }

    .home-refresh-cta h2 {
        max-width: none;
    }
}

body {
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
}

.page-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: clip;
}

main {
    flex: 1;
    display: block;
    min-width: 0;
}

.section {
    padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.page-hero {
    padding-top: clamp(2.25rem, 4vw, 3.2rem);
}

.section-head {
    flex-wrap: wrap;
    align-items: flex-end;
}

.section-head h2,
.panel-head h2,
.toolbox-group-head h2 {
    line-height: 1.08;
}

.story-meta,
.panel-head,
.tool-card-top,
.toolbox-card-top,
.toolbox-card-footer,
.toolbox-group-head,
.navigation-group-head {
    flex-wrap: wrap;
}

.hero-grid,
.split-grid,
.tool-layout {
    align-items: start;
}

.card-grid,
.showcase-grid,
.news-grid,
.faq-shell {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.toolbox-card-grid,
.foundation-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.navigation-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tool-layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.story-card,
.tool-card,
.nav-cluster,
.nav-link-card,
.nav-tool-card,
.editor-panel,
.result-panel,
.toolbox-group,
.navigation-group,
.faq-panel,
.launch-surface-panel,
.tool-detail-hero-shell {
    min-height: 100%;
}

.footer-grid > div,
.toolbox-page-shell,
.navigation-main {
    min-width: 0;
}

.related-tools {
    display: grid;
    gap: 0.9rem;
}

.related-tools h3 {
    margin: 0;
}

.site-footer {
    margin-top: auto;
}

.home-stable-hero {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.home-stable-hero-grid {
    align-items: stretch;
}

.home-stable-copy {
    display: grid;
    align-content: center;
    gap: 1rem;
}

.home-stable-chip-row {
    margin-top: 0.1rem;
}

.home-stable-chip-row .chip {
    padding: 0.55rem 0.85rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(23, 32, 47, 0.08);
}

.home-stable-stage {
    padding: 1.25rem;
}

.home-stable-stage .panel-head {
    align-items: flex-start;
    margin-bottom: 1rem;
}

.home-stable-stage .panel-head h2 {
    max-width: 16ch;
}

.home-stable-stat-grid {
    margin-top: 0;
}

.home-stable-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-stable-step-card,
.home-stable-panel,
.home-stable-module-card {
    min-height: 100%;
}

.home-stable-step-card p,
.home-stable-module-card p,
.home-stable-list-card p,
.nav-link-card p {
    margin: 0.35rem 0 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

.home-stable-module-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.home-stable-section {
    padding-top: 1.25rem;
}

.home-stable-module-card {
    display: grid;
    gap: 0.8rem;
}

.home-stable-surface-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-stable-list-card {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(23, 32, 47, 0.04);
    border: 1px solid rgba(23, 32, 47, 0.06);
}

.home-stable-list-card h3 {
    margin: 0;
    font-size: 1.02rem;
}

.home-stable-list-card .story-meta {
    margin-bottom: 0.65rem;
}

.home-stable-list-card .story-meta strong {
    color: var(--brand-dark);
}

.home-stable-cta h2 {
    max-width: 13ch;
}

@media (max-width: 1080px) {
    .home-stable-step-grid,
    .home-stable-surface-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .section {
        padding: 2.35rem 0;
    }

    .hero-stage,
    .tool-card,
    .story-card,
    .nav-cluster,
    .editor-panel,
    .result-panel,
    .toolbox-group,
    .navigation-group,
    .faq-panel,
    .news-feature-card,
    .launch-surface-panel,
    .tool-detail-hero-shell {
        padding: 1rem;
        border-radius: 24px;
    }

    .panel-head,
    .section-head,
    .toolbox-pane-head,
    .toolbox-group-head,
    .navigation-group-head {
        display: grid;
        align-items: flex-start;
    }

    .toolbox-card-footer,
    .nav-link-card,
    .nav-tool-card {
        display: grid;
        align-items: flex-start;
    }

    .home-stable-hero {
        padding-top: 3.4rem;
    }

    .home-stable-step-grid,
    .home-stable-surface-grid {
        grid-template-columns: 1fr;
    }

    .home-stable-stage .panel-head h2,
    .home-stable-cta h2 {
        max-width: none;
    }

    .home-stable-hero .button-row,
    .home-stable-cta .button-row {
        flex-direction: column;
    }

    .home-stable-hero .button-row .button,
    .home-stable-cta .button-row .button {
        width: 100%;
    }
}

:root {
    --bg: #fff7ec;
    --bg-soft: #fffdf9;
    --ink: #182033;
    --ink-soft: #616b82;
    --line: rgba(24, 32, 51, 0.08);
    --card: rgba(255, 255, 255, 0.84);
    --brand: #ff8c4b;
    --brand-dark: #f36d2c;
    --teal: #18b29a;
    --gold: #ffd06d;
    --shadow: 0 28px 70px rgba(24, 32, 51, 0.1);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --container: 1220px;
}

body {
    color: var(--ink);
    font-family: "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 140, 75, 0.18), transparent 28rem),
        radial-gradient(circle at 85% 12%, rgba(24, 178, 154, 0.1), transparent 24rem),
        linear-gradient(180deg, #fffdf8 0%, #fff7ec 48%, #fffaf3 100%);
}

img,
video {
    border-radius: 24px;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
}

.site-header {
    position: sticky;
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(255, 252, 247, 0.82);
    border-bottom: 1px solid rgba(24, 32, 51, 0.06);
    box-shadow: 0 10px 28px rgba(24, 32, 51, 0.04);
}

.site-header-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    pointer-events: none;
    opacity: 0.64;
}

.site-header-glow-a {
    width: 160px;
    height: 56px;
    left: 8%;
    top: -12px;
    background: rgba(255, 140, 75, 0.18);
}

.site-header-glow-b {
    width: 180px;
    height: 60px;
    right: 10%;
    top: -10px;
    background: rgba(24, 178, 154, 0.12);
}

.header-inner {
    position: relative;
    z-index: 1;
    padding: 1rem 0;
}

.brand {
    gap: 0.72rem;
    padding: 0.34rem 0.78rem 0.34rem 0.38rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(24, 32, 51, 0.06);
    box-shadow: 0 12px 28px rgba(24, 32, 51, 0.06);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 239, 0.96));
    border: 1px solid rgba(24, 32, 51, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 10px 22px rgba(24, 32, 51, 0.06);
}

.brand-mark::before {
    inset: 7px;
    border-radius: 14px;
    border: 1px solid rgba(24, 32, 51, 0.04);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.08));
}

.brand-mark::after {
    top: auto;
    right: 8px;
    bottom: 8px;
    width: 10px;
    height: 10px;
    background: rgba(24, 178, 154, 0.16);
    animation: none;
}

.brand-mark img {
    position: relative;
    z-index: 2;
    width: 74%;
    height: 74%;
    object-fit: contain;
    animation: none;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.brand-copy small {
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-nav {
    gap: 0.5rem;
}

.site-nav a,
.ghost-link {
    padding: 0.78rem 1rem;
    color: var(--ink-soft);
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a.active,
.ghost-link:hover {
    color: var(--ink);
    background: rgba(24, 32, 51, 0.05);
}

.site-nav-cta {
    margin-left: 0.35rem;
}

.button {
    padding: 0.92rem 1.3rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff9959, #ff7c3a 58%, #ff6a2d);
    box-shadow: 0 16px 32px rgba(255, 124, 58, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(255, 124, 58, 0.28);
    filter: saturate(1.03);
}

.button.secondary {
    background: linear-gradient(135deg, #18b29a, #36c4b0);
    box-shadow: 0 16px 32px rgba(24, 178, 154, 0.18);
}

.button.ghost,
.section-link {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(24, 32, 51, 0.08);
}

.button.ghost:hover,
.section-link:hover {
    background: rgba(255, 255, 255, 0.94);
}

.section-head h2,
.panel-head h2,
.toolbox-group-head h2,
.navigation-group-head h2,
.news-feature-card h2 {
    letter-spacing: -0.045em;
}

.hero-surface,
.story-card,
.tool-card,
.nav-cluster,
.nav-link-card,
.nav-tool-card,
.editor-panel,
.result-panel,
.toolbox-group,
.toolbox-pane-head,
.toolbox-control-bar,
.toolbox-summary-card,
.toolbox-card,
.foundation-capability-card,
.toolbox-empty-card,
.navigation-sidebar-card,
.navigation-group,
.navigation-card,
.news-feature-card,
.faq-panel,
.faq-item,
.launch-surface-panel,
.tool-detail-note,
.tool-detail-brief,
.tool-detail-hero-shell {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-surface,
.toolbox-pane-head,
.toolbox-control-bar,
.navigation-sidebar-card,
.navigation-group,
.news-feature-card,
.story-card,
.editor-panel,
.result-panel,
.faq-panel {
    border-radius: 34px;
}

.hero-surface {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: clamp(1rem, 1.8vw, 1.45rem);
    padding: clamp(1.3rem, 2.4vw, 1.85rem);
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 176, 108, 0.16), transparent 20rem),
        radial-gradient(circle at 84% 18%, rgba(79, 183, 227, 0.1), transparent 18rem),
        linear-gradient(145deg, rgba(255, 252, 247, 0.98), rgba(255, 246, 237, 0.96));
}

.hero-surface::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 48%);
    opacity: 0.8;
}

.neo-page-hero {
    padding-top: 2.1rem;
    padding-bottom: 1rem;
}

.neo-page-hero-shell {
    align-items: center;
}

.neo-page-hero-shell-compact {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.82fr);
}

.neo-page-hero-copy,
.home-neo-copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 1.05rem;
    min-width: 0;
}

.neo-page-hero-copy h1,
.home-neo-copy h1 {
    margin: 0;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.neo-page-hero-copy h1 {
    font-size: clamp(2.15rem, 3.9vw, 3.55rem);
    max-width: min(100%, 12.5em);
}

.home-neo-copy h1 {
    font-size: clamp(2.8rem, 5vw, 4.55rem);
    max-width: min(100%, 11.2em);
}

.lead {
    max-width: 40rem;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.82;
}

.neo-metric-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.neo-metric-row article {
    display: grid;
    gap: 0.3rem;
    padding: 0.9rem 0.95rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.88);
}

.neo-metric-row strong {
    display: block;
    font-size: 1.55rem;
    letter-spacing: -0.05em;
}

.neo-metric-row span {
    color: var(--ink-soft);
}

.hero-visual-card {
    position: relative;
    min-height: 320px;
    padding: 1.15rem;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.78), rgba(255, 247, 238, 0.3) 42%, transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18));
    border: 1px solid rgba(24, 32, 51, 0.05);
}

.hero-visual-card::before,
.hero-visual-card::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    pointer-events: none;
}

.hero-visual-card::before {
    width: 120px;
    height: 120px;
    top: 18px;
    left: 24px;
    background: rgba(255, 140, 75, 0.09);
}

.hero-visual-card::after {
    width: 128px;
    height: 128px;
    right: 18px;
    bottom: 18px;
    background: rgba(24, 178, 154, 0.08);
}

.hero-visual-image {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 500px);
    margin: 0 auto;
    filter: drop-shadow(0 18px 24px rgba(24, 32, 51, 0.08));
    animation: mascotFloat 8s ease-in-out infinite;
}

.floating-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 32, 51, 0.05);
    color: #556077;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: 0 10px 18px rgba(24, 32, 51, 0.06);
    animation: chipDrift 6.2s ease-in-out infinite;
}

.floating-chip-a {
    top: 24px;
    left: 22px;
}

.floating-chip-b {
    top: 58px;
    right: 24px;
    animation-delay: -1.9s;
}

.floating-chip-c {
    right: 48px;
    bottom: 28px;
    animation-delay: -3.4s;
}

.home-neo-hero {
    padding-top: 4.5rem;
    padding-bottom: 1.25rem;
}

.home-neo-hero-shell {
    margin-bottom: 1rem;
}

.home-neo-visual,
.neo-page-hero-visual {
    align-self: stretch;
}

.neo-page-hero-visual-small {
    min-height: 280px;
}

.home-neo-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.home-neo-tag-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 0.94rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(24, 32, 51, 0.08);
    color: var(--ink-soft);
}

.home-neo-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.home-neo-stat-card {
    min-height: 126px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
}

.home-neo-stat-card span {
    color: var(--ink-soft);
}

.home-neo-section {
    padding-top: 1.4rem;
}

.home-neo-foundation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
    gap: 1rem;
    align-items: stretch;
}

.home-neo-module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.neo-module-card {
    height: 100%;
    min-height: 206px;
    display: grid;
    gap: 0.85rem;
}

.home-neo-workboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-content: start;
    height: 100%;
    padding: 1.35rem;
}

.home-neo-workboard-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(248px, 0.72fr);
    gap: 1rem;
    align-items: stretch;
}

.home-neo-step-list {
    display: grid;
    gap: 0.78rem;
    align-content: start;
}

.home-neo-step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(24, 32, 51, 0.04);
    border: 1px solid rgba(24, 32, 51, 0.06);
    min-height: 104px;
    align-items: start;
}

.home-neo-step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 140, 75, 0.18), rgba(79, 183, 227, 0.14));
    color: var(--teal);
    font-weight: 800;
}

.home-neo-step-card strong,
.neo-module-card h3,
.neo-tool-card h3,
.neo-list-card h3 {
    display: block;
    margin: 0;
}

.home-neo-step-card p,
.neo-module-card p,
.neo-tool-card p,
.neo-link-card p,
.neo-list-card p,
.home-neo-cta p {
    margin: 0.32rem 0 0;
    color: var(--ink-soft);
    line-height: 1.66;
}

.home-neo-inline-visual img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    animation: mascotFloat 7.2s ease-in-out infinite;
}

.home-neo-inline-visual {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 1rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 248, 241, 0.82));
    border: 1px solid rgba(24, 32, 51, 0.05);
}

.home-neo-tool-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.neo-tool-card {
    display: grid;
    gap: 0.9rem;
    min-height: 230px;
    padding: 1.15rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.neo-tool-card:hover,
.neo-link-card:hover,
.neo-list-card:hover,
.toolbox-card:hover,
.navigation-card:hover,
.story-card:hover,
.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 60px rgba(24, 32, 51, 0.12);
}

.neo-tool-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.neo-tool-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(24, 32, 51, 0.05);
    color: var(--ink);
    font-size: 1rem;
}

.home-neo-surface-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.neo-surface-panel {
    padding: 1.2rem;
}

.neo-link-card {
    align-items: flex-start;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(24, 32, 51, 0.04);
    border: 1px solid rgba(24, 32, 51, 0.06);
}

.neo-link-card strong {
    display: block;
    margin: 0;
}

.neo-link-card small {
    display: inline-block;
    margin-top: 0.55rem;
    color: var(--teal);
    font-weight: 700;
}

.neo-list-card {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(24, 32, 51, 0.04);
    border: 1px solid rgba(24, 32, 51, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.neo-list-card .story-meta {
    margin-bottom: 0.75rem;
}

.neo-list-card .story-meta strong {
    color: var(--brand-dark);
}

.home-neo-cta {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    align-items: center;
}

.home-neo-cta-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.95rem;
}

.home-neo-cta h2 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(2.25rem, 4vw, 3.7rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.home-neo-cta-visual img {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    animation: mascotFloat 7.4s ease-in-out infinite;
}

.neo-filter-bar {
    padding-top: 0.85rem;
}

.neo-toolbox-section {
    padding-top: 0.6rem;
}

.navigation-sidebar-card,
.navigation-group {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 244, 0.94));
}

.toolbox-mode-switch {
    margin-bottom: 1rem;
}

.toolbox-pane-head,
.toolbox-control-bar,
.toolbox-group,
.navigation-sidebar-card,
.navigation-group,
.news-feature-card,
.faq-panel {
    border: 1px solid rgba(255, 255, 255, 0.92);
}

.toolbox-card,
.toolbox-summary-card,
.foundation-capability-card,
.toolbox-empty-card,
.navigation-card,
.news-story-card,
.showcase-story-card,
.faq-item {
    border-radius: 24px;
}

.toolbox-card,
.toolbox-summary-card,
.foundation-capability-card,
.toolbox-empty-card {
    background: rgba(255, 255, 255, 0.82);
}

.toolbox-card,
.toolbox-summary-card,
.foundation-capability-card,
.toolbox-empty-card,
.navigation-card,
.story-card,
.tool-card,
.nav-link-card,
.faq-item,
.news-feature-card {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.toolbox-card h3,
.navigation-card-copy h3 {
    letter-spacing: -0.025em;
}

.navigation-filter-bar,
.toolbox-control-bar {
    gap: 1rem;
}

.toolbox-control-bar,
.toolbox-pane-head {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 241, 0.92));
}

.toolbox-index a,
.navigation-index-link,
.navigation-mobile-chip {
    background: rgba(255, 255, 255, 0.74);
}

.news-feature-card {
    background:
        radial-gradient(circle at 92% 18%, rgba(79, 183, 227, 0.12), transparent 12rem),
        radial-gradient(circle at 10% 0%, rgba(255, 140, 75, 0.12), transparent 12rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 241, 0.92));
}

.tool-layout {
    gap: 1rem;
}

.result-panel {
    position: sticky;
    top: 6.4rem;
    align-self: start;
}

.field input,
.field textarea,
.field select,
.navigation-search input,
.toolbox-search input {
    border-radius: 18px;
    border: 1px solid rgba(24, 32, 51, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.navigation-search input:focus,
.toolbox-search input:focus {
    outline: 0;
    border-color: rgba(255, 140, 75, 0.38);
    box-shadow: 0 0 0 4px rgba(255, 140, 75, 0.12);
}

.result-card,
.empty-state {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
}

.site-footer {
    position: relative;
    padding: 3.2rem 0 4rem;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 1.2rem 0 auto;
    height: 220px;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 140, 75, 0.12), transparent 22rem),
        radial-gradient(circle at 88% 8%, rgba(24, 178, 154, 0.1), transparent 20rem);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 238, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-summary {
    line-height: 1.72;
}

body.has-motion [data-reveal] {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    transition: opacity 520ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.has-motion [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@keyframes brandPulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.72;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

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

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

@media (max-width: 1180px) {
    .hero-surface,
    .neo-page-hero-shell,
    .neo-page-hero-shell-compact,
    .home-neo-foundation-grid,
    .home-neo-workboard-main,
    .home-neo-cta {
        grid-template-columns: 1fr;
    }

    .home-neo-stats,
    .home-neo-tool-grid,
    .home-neo-surface-grid,
    .neo-metric-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .brand {
        padding-right: 0.7rem;
    }

    .brand-copy small {
        letter-spacing: 0.02em;
    }

    .site-nav {
        background: rgba(255, 252, 247, 0.98);
    }

    .hero-surface,
    .toolbox-pane-head,
    .toolbox-control-bar,
    .toolbox-group,
    .navigation-sidebar-card,
    .navigation-group,
    .news-feature-card,
    .story-card,
    .editor-panel,
    .result-panel,
    .faq-panel,
    .footer-grid {
        padding: 1rem;
        border-radius: 28px;
    }

    .home-neo-hero {
        padding-top: 3.8rem;
    }

    .home-neo-copy h1,
    .neo-page-hero-copy h1,
    .home-neo-cta h2 {
        max-width: none;
    }

    .home-neo-stats,
    .home-neo-module-grid,
    .home-neo-tool-grid,
    .home-neo-surface-grid,
    .neo-metric-row {
        grid-template-columns: 1fr;
    }

    .hero-visual-card {
        min-height: 260px;
    }

    .floating-chip {
        display: none;
    }

    .floating-chip-c {
        right: 22px;
        bottom: 20px;
    }

    .result-panel {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-mark img,
    .hero-visual-image,
    .floating-chip,
    .brand-mark::after {
        animation: none !important;
    }

    body.has-motion [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Visual refinement pass */

html {
    scroll-behavior: smooth;
}

body::before {
    content: "";
    position: fixed;
    inset: -12% -10% auto;
    height: 58vh;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 158, 92, 0.18), transparent 24rem),
        radial-gradient(circle at 88% 14%, rgba(24, 178, 154, 0.12), transparent 22rem);
    filter: blur(14px);
    z-index: 0;
    animation: ambientSweep 22s ease-in-out infinite;
}

.page-shell {
    position: relative;
    isolation: isolate;
}

main {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(2.2rem, 4vw, 3.3rem);
    padding-bottom: 2rem;
}

.section {
    position: relative;
    padding: clamp(1.2rem, 2.5vw, 1.85rem) 0;
}

.container {
    width: min(calc(100% - 2rem), 1180px);
}

.site-header {
    background: rgba(255, 251, 246, 0.78);
    box-shadow: 0 12px 30px rgba(24, 32, 51, 0.05);
}

.site-header-glow {
    animation: headerGlowDrift 14s ease-in-out infinite;
}

.site-header-glow-b {
    animation-delay: -6.5s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    padding: 0.32rem 0.82rem 0.32rem 0.36rem;
    background: rgba(255, 255, 255, 0.82);
}

.brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 17px;
}

.brand-mark::after {
    background: linear-gradient(135deg, rgba(255, 140, 75, 0.2), rgba(24, 178, 154, 0.14));
}

.brand-copy strong {
    font-size: 1.02rem;
}

.brand-copy small {
    letter-spacing: 0.08em;
    text-transform: none;
}

.site-nav {
    align-items: center;
}

.site-nav a,
.ghost-link {
    position: relative;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.ghost-link:hover {
    transform: translateY(-1px);
}

.site-nav a.active::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.46rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--teal));
}

.eyebrow {
    letter-spacing: 0.12em;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.78rem;
}

.section-head,
.panel-head,
.toolbox-group-head,
.navigation-group-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.section-head,
.panel-head {
    margin-bottom: 1rem;
}

.section-head h2,
.panel-head h2,
.toolbox-group-head h2,
.navigation-group-head h2 {
    margin: 0.3rem 0 0;
    max-width: 18ch;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.hero-surface,
.story-card,
.tool-card,
.nav-link-card,
.editor-panel,
.result-panel,
.toolbox-group,
.toolbox-pane-head,
.toolbox-control-bar,
.toolbox-summary-card,
.toolbox-card,
.foundation-capability-card,
.toolbox-empty-card,
.navigation-sidebar-card,
.navigation-group,
.navigation-card,
.news-feature-card,
.faq-panel,
.faq-item,
.tool-detail-note,
.tool-detail-brief,
.neo-tool-card,
.neo-list-card,
.neo-link-card {
    border-color: rgba(24, 32, 51, 0.06);
    box-shadow: 0 22px 52px rgba(24, 32, 51, 0.08);
}

.hero-surface {
    gap: clamp(1.2rem, 2.2vw, 1.8rem);
    padding: clamp(1.5rem, 2.8vw, 2.1rem);
    border-radius: 36px;
}

.hero-surface::after {
    content: "";
    position: absolute;
    inset: auto -4% -18% 48%;
    height: 180px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 170, 108, 0.18), transparent 68%);
    filter: blur(28px);
    opacity: 0.72;
    animation: heroGlowDrift 18s ease-in-out infinite;
}

.home-neo-hero-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.neo-page-hero-shell {
    grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.84fr);
}

.neo-page-hero-shell-compact {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.76fr);
}

.neo-page-hero-copy,
.home-neo-copy {
    gap: 1.08rem;
}

.neo-page-hero-copy h1 {
    max-width: 12em;
}

.home-neo-copy h1 {
    max-width: 10.6em;
}

.lead {
    max-width: 38rem;
}

.hero-visual-card {
    display: grid;
    place-items: center;
}

.hero-visual-card::before,
.hero-visual-card::after {
    animation: auraPulse 16s ease-in-out infinite;
}

.hero-visual-card::after {
    animation-delay: -8s;
}

.hero-visual-image {
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.hero-visual-card:hover .hero-visual-image {
    transform: translateY(-6px) scale(1.018);
    filter: drop-shadow(0 22px 30px rgba(24, 32, 51, 0.1));
}

.home-neo-tag-row span,
.toolbox-index a,
.navigation-index-link,
.navigation-mobile-chip {
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-neo-tag-row span:hover,
.toolbox-index a:hover,
.navigation-index-link:hover,
.navigation-mobile-chip:hover {
    transform: translateY(-2px);
}

.home-neo-stats,
.neo-metric-row {
    gap: 1rem;
}

.home-neo-stat-card,
.neo-metric-row article {
    padding: 1.05rem 1.1rem;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(24, 32, 51, 0.05);
}

.home-neo-stat-card strong,
.neo-metric-row strong {
    transition: transform 220ms ease;
}

.home-neo-stat-card:hover strong,
.neo-metric-row article:hover strong {
    transform: translateY(-2px);
}

.home-neo-foundation-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    gap: 1.15rem;
}

.home-neo-module-grid {
    gap: 1.05rem;
}

.neo-module-card {
    padding: 1.08rem;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 241, 0.86));
}

.home-neo-workboard {
    gap: 1.05rem;
    background:
        radial-gradient(circle at 85% 15%, rgba(79, 183, 227, 0.12), transparent 14rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 239, 0.94));
}

.home-neo-workboard-main {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.68fr);
}

.home-neo-step-card {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(24, 32, 51, 0.05);
}

.home-neo-inline-visual {
    padding: 1.2rem;
}

.home-neo-inline-visual img {
    max-width: 248px;
}

.home-neo-tool-grid {
    gap: 1.05rem;
}

.neo-tool-card,
.navigation-card,
.showcase-story-card,
.news-story-card,
.toolbox-card,
.toolbox-summary-card,
.foundation-capability-card,
.neo-list-card,
.neo-link-card {
    height: 100%;
}

.home-neo-surface-grid {
    grid-template-columns: minmax(0, 1.04fr) repeat(2, minmax(0, 0.98fr));
    gap: 1.05rem;
    align-items: stretch;
}

.neo-surface-panel {
    height: 100%;
}

.toolbox-pane-head,
.toolbox-control-bar,
.navigation-sidebar-card,
.navigation-group,
.news-feature-card,
.faq-panel,
.editor-panel,
.result-panel {
    padding: clamp(1.1rem, 2vw, 1.35rem);
}

.toolbox-mode-summary {
    gap: 1rem;
}

.toolbox-summary-card {
    padding: 1.05rem;
}

.toolbox-control-bar {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
    align-items: start;
}

.toolbox-control-bar > * {
    min-width: 0;
}

.toolbox-surface-index {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
}

.navigation-shell {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 1rem;
}

.navigation-main {
    gap: 1rem;
}

.navigation-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

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

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

.faq-shell {
    max-width: 980px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

.faq-panel {
    overflow: hidden;
}

.tool-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 1rem;
}

.result-card,
.empty-state {
    padding: 1rem;
    border: 1px solid rgba(24, 32, 51, 0.05);
}

.footer-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr) minmax(0, 0.82fr);
    gap: 1rem;
}

body.has-motion [data-reveal] {
    transition-delay: var(--reveal-delay, 0ms);
}

@keyframes ambientSweep {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate3d(0, 22px, 0) scale(1.04);
        opacity: 1;
    }
}

@keyframes headerGlowDrift {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.55;
    }
    50% {
        transform: translateX(18px) scale(1.08);
        opacity: 0.82;
    }
}

@keyframes auraPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.08) translateY(8px);
        opacity: 1;
    }
}

@keyframes heroGlowDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-16px, -10px, 0);
    }
}

@media (max-width: 1180px) {
    .home-neo-surface-grid,
    .tool-layout,
    .toolbox-control-bar,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .home-neo-foundation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .navigation-shell,
    .neo-page-hero-shell,
    .neo-page-hero-shell-compact,
    .home-neo-workboard-main {
        grid-template-columns: 1fr;
    }

    .navigation-sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    main {
        gap: 1.8rem;
    }

    .home-neo-stats,
    .neo-metric-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .toolbox-mode-summary,
    .foundation-capability-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .home-neo-stats,
    .neo-metric-row,
    .toolbox-surface-index {
        grid-template-columns: 1fr;
    }
}

/* Responsive architecture pass */

body.theme-public,
.page-shell {
    overflow-x: clip;
}

.navigation-mobile-index,
.home-neo-tag-row,
.home-neo-stats,
.neo-metric-row,
.toolbox-mode-summary,
.toolbox-surface-index {
    scrollbar-width: none;
}

.navigation-mobile-index::-webkit-scrollbar,
.home-neo-tag-row::-webkit-scrollbar,
.home-neo-stats::-webkit-scrollbar,
.neo-metric-row::-webkit-scrollbar,
.toolbox-mode-summary::-webkit-scrollbar,
.toolbox-surface-index::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1100px) {
    .container {
        width: min(calc(100% - 3rem), 1240px);
    }

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

    .faq-shell {
        max-width: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tool-layout {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.84fr);
    }

    .home-neo-surface-grid {
        grid-template-columns: minmax(0, 1.06fr) repeat(2, minmax(0, 0.97fr));
    }
}

@media (max-width: 900px) {
    .section {
        padding: 1rem 0;
    }

    .site-header {
        z-index: 40;
        backdrop-filter: blur(16px);
    }

    .header-inner {
        padding: 0.8rem 0;
        gap: 0.75rem;
    }

    .brand {
        min-width: 0;
        max-width: calc(100% - 68px);
        padding: 0.28rem 0.7rem 0.28rem 0.34rem;
        box-shadow: 0 10px 22px rgba(24, 32, 51, 0.06);
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .brand-copy {
        min-width: 0;
    }

    .brand-copy small {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 44px;
        padding: 0 0.95rem;
        border-radius: 999px;
        border: 1px solid rgba(24, 32, 51, 0.08);
        background: rgba(255, 255, 255, 0.88);
        box-shadow: 0 10px 24px rgba(24, 32, 51, 0.06);
    }

    .site-nav {
        position: fixed;
        top: 4.6rem;
        left: 0.8rem;
        right: 0.8rem;
        z-index: 42;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
        max-height: calc(100vh - 5.4rem);
        padding: 0.75rem;
        overflow-y: auto;
        background: rgba(255, 251, 246, 0.97);
        border: 1px solid rgba(24, 32, 51, 0.08);
        border-radius: 24px;
        box-shadow: 0 24px 60px rgba(24, 32, 51, 0.18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px) scale(0.985);
        transition: opacity 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .site-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(24, 32, 51, 0.18);
        backdrop-filter: blur(3px);
        z-index: 35;
    }

    .site-nav a,
    .site-nav .site-nav-cta {
        width: 100%;
        padding: 0.95rem 1rem;
        border-radius: 18px;
        background: rgba(24, 32, 51, 0.035);
    }

    .site-nav a.active::after {
        display: none;
    }

    .site-nav-cta {
        margin-left: 0;
    }

    .site-announce-inner {
        padding: 0.58rem 0;
        gap: 0.55rem;
    }

    .site-announce-label {
        font-size: 0.7rem;
    }

    .home-neo-hero,
    .neo-page-hero {
        padding-top: 0.75rem;
    }

    .hero-surface,
    .home-neo-hero-shell,
    .neo-page-hero-shell,
    .neo-page-hero-shell-compact,
    .home-neo-cta,
    .home-neo-foundation-grid,
    .home-neo-workboard-main,
    .tool-layout,
    .toolbox-control-bar,
    .navigation-shell,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-surface {
        gap: 1rem;
        padding: 1.1rem;
        border-radius: 28px;
    }

    .hero-surface::after {
        inset: auto -10% -22% 30%;
        height: 150px;
    }

    .home-neo-copy,
    .neo-page-hero-copy {
        gap: 0.85rem;
    }

    .home-neo-copy h1 {
        font-size: clamp(2.2rem, 8.6vw, 3.25rem);
        max-width: none;
    }

    .neo-page-hero-copy h1 {
        font-size: clamp(1.95rem, 8vw, 2.8rem);
        max-width: none;
    }

    .lead {
        max-width: none;
        font-size: 0.97rem;
        line-height: 1.72;
    }

    .button-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .button-row .button {
        width: 100%;
        justify-content: center;
    }

    .hero-visual-card {
        min-height: 220px;
        padding: 0.95rem;
        order: 2;
    }

    .hero-visual-image {
        width: min(100%, 320px);
    }

    .home-neo-tag-row {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        gap: 0.6rem;
        overflow-x: auto;
        padding-bottom: 0.2rem;
    }

    .home-neo-tag-row span {
        white-space: nowrap;
    }

    .home-neo-stats,
    .neo-metric-row,
    .toolbox-mode-summary {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(168px, 76vw);
        gap: 0.8rem;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        scroll-snap-type: x proximity;
    }

    .home-neo-stat-card,
    .neo-metric-row article,
    .toolbox-summary-card {
        scroll-snap-align: start;
    }

    .home-neo-module-grid,
    .home-neo-tool-grid,
    .home-neo-surface-grid,
    .navigation-card-grid,
    .showcase-grid,
    .news-grid,
    .faq-shell,
    .toolbox-card-grid,
    .foundation-capability-grid,
    .foundation-card-grid {
        grid-template-columns: 1fr;
    }

    .home-neo-workboard {
        padding: 1rem;
    }

    .home-neo-inline-visual {
        min-height: 180px;
        padding: 0.95rem;
    }

    .home-neo-inline-visual img,
    .home-neo-cta-visual img {
        max-width: 220px;
        margin: 0 auto;
    }

    .section-head,
    .panel-head,
    .toolbox-group-head,
    .navigation-group-head {
        display: grid;
        align-items: start;
    }

    .section-head h2,
    .panel-head h2,
    .toolbox-group-head h2,
    .navigation-group-head h2 {
        max-width: none;
        font-size: clamp(1.45rem, 6vw, 2.05rem);
    }

    .toolbox-mode-switch {
        position: sticky;
        top: 5rem;
        z-index: 8;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        margin-bottom: 0.85rem;
    }

    .toolbox-mode-switch button {
        width: 100%;
    }

    .toolbox-surface-index,
    .navigation-mobile-index {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        gap: 0.6rem;
        overflow-x: auto;
        padding-bottom: 0.2rem;
    }

    .toolbox-surface-index a,
    .navigation-mobile-chip {
        white-space: nowrap;
    }

    .navigation-mobile-index {
        margin-top: 0.25rem;
    }

    .navigation-sidebar {
        display: none;
    }

    .navigation-card {
        min-height: auto;
    }

    .tool-layout {
        gap: 0.9rem;
    }

    .editor-panel,
    .result-panel,
    .toolbox-group,
    .toolbox-pane-head,
    .toolbox-control-bar,
    .navigation-group,
    .faq-panel,
    .news-feature-card,
    .footer-grid {
        border-radius: 24px;
        padding: 1rem;
    }

    .result-panel {
        position: static;
        order: 2;
    }

    .editor-panel {
        order: 1;
    }

    .footer-grid {
        gap: 0.9rem;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 1rem), 100%);
    }

    main {
        gap: 1.5rem;
    }

    .header-inner {
        gap: 0.55rem;
    }

    .brand {
        max-width: calc(100% - 62px);
        padding-right: 0.55rem;
    }

    .brand-copy strong {
        font-size: 0.94rem;
    }

    .site-nav {
        top: 4.35rem;
        left: 0.5rem;
        right: 0.5rem;
        max-height: calc(100vh - 4.95rem);
        padding: 0.6rem;
    }

    .site-announce-inner {
        display: grid;
        gap: 0.35rem;
    }

    .button-row {
        grid-template-columns: 1fr;
    }

    .home-neo-copy h1 {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }

    .neo-page-hero-copy h1 {
        font-size: clamp(1.8rem, 9vw, 2.35rem);
    }

    .hero-visual-card {
        min-height: 190px;
    }

    .hero-visual-image {
        width: min(100%, 260px);
    }

    .home-neo-inline-visual {
        min-height: 150px;
    }

    .home-neo-stats,
    .neo-metric-row,
    .toolbox-mode-summary {
        grid-auto-columns: minmax(154px, 82vw);
    }

    .toolbox-mode-switch {
        top: 4.65rem;
    }

    .toolbox-mode-switch button {
        padding: 0.72rem 0.85rem;
        font-size: 0.92rem;
    }

    .toolbox-surface-index {
        grid-auto-columns: max-content;
    }

    .home-neo-tag-row span,
    .navigation-mobile-chip,
    .toolbox-surface-index a {
        font-size: 0.82rem;
    }
}
