@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;600;700;800;900&display=swap");

:root {
    --navy-950: #06172d;
    --navy-900: #0a2547;
    --navy-800: #123a66;
    --navy-700: #174f82;
    --blue-100: #eaf3fb;
    --gold-700: #a86c00;
    --gold-600: #c7830c;
    --gold-500: #dfa52f;
    --gold-200: #f4d89c;
    --gold-100: #fff7e8;
    --slate-900: #17263b;
    --slate-700: #41536b;
    --slate-600: #607086;
    --slate-500: #8290a3;
    --slate-300: #cfd8e3;
    --slate-200: #e6ebf1;
    --slate-100: #f3f6f9;
    --white: #ffffff;
    --green: #219567;
    --purple: #7056a8;
    --shadow-soft: 0 24px 70px rgba(17, 47, 82, 0.12);
    --shadow-card: 0 12px 35px rgba(17, 47, 82, 0.08);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--slate-900);
    background: var(--white);
    font-family: "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 999;
    padding: 10px 14px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 112px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(207, 216, 227, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 28px rgba(10, 37, 71, 0.08);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-copy strong {
    color: var(--navy-950);
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.brand-copy small {
    color: var(--slate-600);
    font-size: 13px;
    letter-spacing: 0.08em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-nav > a:not(.button) {
    position: relative;
    color: var(--slate-700);
    font-size: 15px;
    font-weight: 700;
}

.site-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--gold-600);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
    transform: scaleX(1);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--slate-300);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--navy-900);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 800;
    line-height: 1.2;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-small {
    min-height: 46px;
    padding-inline: 20px;
}

.button-primary {
    color: var(--white);
    background: var(--navy-900);
    box-shadow: 0 12px 28px rgba(10, 37, 71, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--navy-800);
    box-shadow: 0 16px 32px rgba(10, 37, 71, 0.24);
}

.button-secondary,
.button-outline {
    color: var(--navy-900);
    background: var(--white);
    border-color: var(--slate-300);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
    border-color: var(--navy-700);
    box-shadow: 0 10px 24px rgba(17, 47, 82, 0.08);
}

.hero {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 92px;
    padding-bottom: 96px;
    background:
        radial-gradient(circle at 5% 30%, rgba(223, 165, 47, 0.08), transparent 27%),
        radial-gradient(circle at 94% 35%, rgba(18, 58, 102, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.34;
    background-image: radial-gradient(rgba(10, 37, 71, 0.15) 0.7px, transparent 0.7px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.18;
}

.hero-glow-one {
    top: 10%;
    left: -240px;
    background: var(--gold-500);
}

.hero-glow-two {
    right: -180px;
    bottom: 4%;
    background: #7db5e2;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(550px, 1.07fr);
    align-items: center;
    gap: 64px;
}

.eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 25px;
    padding: 9px 15px;
    color: #8b5d0d;
    background: rgba(255, 247, 232, 0.9);
    border: 1px solid var(--gold-200);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.eyebrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 0 6px rgba(223, 165, 47, 0.12);
}

.hero h1 {
    max-width: 680px;
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(42px, 4.45vw, 70px);
    font-weight: 900;
    line-height: 1.17;
    letter-spacing: -0.045em;
}

.hero h1 span {
    display: block;
    color: var(--gold-600);
}

.hero-description {
    max-width: 670px;
    margin: 28px 0 0;
    color: var(--slate-700);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.9;
}

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 24px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--slate-600);
    font-size: 14px;
    font-weight: 700;
}

.hero-points li::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: var(--gold-500);
}

.hero-visual {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 116px;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(199, 131, 12, 0.2);
    border-radius: 50%;
}

.orbit-one {
    width: 480px;
    height: 480px;
}

.orbit-two {
    width: 610px;
    height: 610px;
}

.dashboard-window {
    position: relative;
    z-index: 2;
    width: min(100%, 620px);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(207, 216, 227, 0.95);
    border-radius: 23px;
    box-shadow: 0 35px 85px rgba(10, 37, 71, 0.16);
    transform: perspective(1300px) rotateY(-1.2deg) rotateX(0.8deg);
}

.dashboard-topbar {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-bottom: 1px solid var(--slate-200);
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--navy-900);
    font-size: 14px;
}

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

.window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--slate-300);
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 455px;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 15px;
    color: var(--slate-500);
    background: #f8fafc;
    border-right: 1px solid var(--slate-200);
    font-size: 11px;
    font-weight: 700;
}

.dashboard-sidebar strong {
    margin-bottom: 8px;
    color: var(--navy-900);
}

.dashboard-sidebar span {
    padding: 9px 11px;
    border-radius: 8px;
}

.dashboard-sidebar .active {
    color: var(--white);
    background: var(--navy-900);
}

.dashboard-main {
    min-width: 0;
    padding: 28px 25px;
}

.dashboard-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.dashboard-heading small {
    color: var(--slate-500);
    font-size: 10px;
}

.dashboard-heading h2 {
    margin: 3px 0 0;
    color: var(--navy-950);
    font-size: 18px;
    line-height: 1.3;
}

.mini-button {
    padding: 9px 11px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 8px;
    font-size: 9px;
    font-weight: 800;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.metric-grid article {
    position: relative;
    min-height: 88px;
    overflow: hidden;
    padding: 15px;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
}

.metric-grid small {
    display: block;
    color: var(--slate-500);
    font-size: 9px;
}

.metric-grid strong {
    display: block;
    margin-top: 6px;
    color: var(--navy-950);
    font-size: 24px;
    line-height: 1;
}

.metric-accent {
    position: absolute;
    right: -12px;
    bottom: -18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.metric-accent.gold {
    background: #fae8bd;
}

.metric-accent.blue {
    background: #dbe9f8;
}

.metric-accent.green {
    background: #dbeee5;
}

.task-panel {
    margin-top: 17px;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: 13px;
}

.task-panel-head,
.task-row {
    display: flex;
    align-items: center;
}

.task-panel-head {
    justify-content: space-between;
    padding: 13px 15px;
    border-bottom: 1px solid var(--slate-200);
    font-size: 10px;
}

.task-panel-head span {
    color: var(--navy-700);
}

.task-row {
    gap: 10px;
    padding: 13px 15px;
    border-bottom: 1px solid var(--slate-100);
}

.task-row:last-child {
    border-bottom: 0;
}

.task-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    display: grid;
    place-items: center;
    color: var(--navy-700);
    background: var(--blue-100);
    border-radius: 8px;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.task-icon.done {
    color: var(--green);
    background: #e6f5ee;
}

.task-row div {
    min-width: 0;
    flex: 1;
}

.task-row strong,
.task-row small {
    display: block;
}

.task-row strong {
    overflow: hidden;
    color: var(--slate-900);
    font-size: 9px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.task-row small {
    margin-top: 2px;
    color: var(--slate-500);
    font-size: 7px;
}

.status {
    padding: 5px 7px;
    border-radius: 999px;
    font-size: 7px;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.status-blue {
    color: #2a6a9f;
    background: #eaf3fb;
}

.status-gold {
    color: #9b650b;
    background: #fff4da;
}

.status-purple {
    color: #654b95;
    background: #efeafb;
}

.hero-flow-rail {
    position: absolute;
    top: 26px;
    bottom: 26px;
    left: 0;
    z-index: 4;
    width: 205px;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 13px;
}

.hero-flow-rail::before {
    content: "";
    position: absolute;
    top: 44px;
    bottom: 44px;
    left: 23px;
    width: 2px;
    background: linear-gradient(var(--gold-500), #93b7d9, var(--green));
}

.hero-flow-node {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 82px;
    padding: 12px 12px 12px 46px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(207, 216, 227, 0.95);
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
}

.hero-flow-node b {
    position: absolute;
    left: 7px;
    z-index: 2;
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    background: var(--gold-100);
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 14px rgba(10, 37, 71, 0.12);
    font-size: 10px;
    font-weight: 900;
}

.hero-flow-node:nth-child(4) b {
    color: #14704d;
    background: #e9f6f0;
}

.hero-flow-node strong,
.hero-flow-node small {
    display: block;
}

.hero-flow-node strong {
    color: var(--navy-950);
    font-size: 12px;
    line-height: 1.35;
}

.hero-flow-node small {
    margin-top: 3px;
    color: var(--slate-500);
    font-size: 8px;
    line-height: 1.45;
}

.trust-strip {
    position: relative;
    z-index: 4;
    padding: 30px 0;
    background: var(--navy-950);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-grid div {
    padding: 2px 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-grid div:first-child {
    padding-left: 0;
}

.trust-grid div:last-child {
    padding-right: 0;
    border-right: 0;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    color: var(--white);
    font-size: 16px;
}

.trust-grid span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--gold-700);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.section-kicker.light {
    color: #f1c86d;
}

.section-heading h2,
.pain-copy h2,
.difference-panel h2,
.contact-panel h2 {
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(32px, 3.4vw, 48px);
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: -0.035em;
}

.section-heading > p:last-child,
.pain-copy > p,
.contact-panel > div > p:last-child {
    margin: 18px auto 0;
    color: var(--slate-600);
    font-size: 17px;
}

.scenarios {
    background: var(--white);
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.scenario-card {
    position: relative;
    min-height: 425px;
    overflow: hidden;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(17, 47, 82, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.scenario-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold-200);
    box-shadow: var(--shadow-card);
}

.scenario-number {
    position: absolute;
    top: 20px;
    right: 26px;
    color: rgba(10, 37, 71, 0.08);
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
}

.scenario-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: var(--navy-900);
    background: var(--gold-100);
    border: 1px solid var(--gold-200);
    border-radius: 17px;
    font-size: 27px;
    font-weight: 900;
}

.scenario-card h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 26px;
}

.scenario-card > p {
    min-height: 84px;
    margin: 13px 0 20px;
    color: var(--slate-600);
}

.scenario-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--slate-200);
    list-style: none;
}

.scenario-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--slate-700);
    font-size: 14px;
    font-weight: 600;
}

.scenario-card li::before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
}

.pain-points {
    background:
        linear-gradient(90deg, rgba(243, 246, 249, 0.88), rgba(255, 255, 255, 0.96)),
        var(--slate-100);
}

.pain-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 90px;
}

.pain-copy {
    position: sticky;
    top: 140px;
    align-self: start;
}

.pain-copy h2 {
    font-size: clamp(32px, 3.1vw, 46px);
}

.text-link {
    display: inline-flex;
    margin-top: 26px;
    color: var(--navy-800);
    font-weight: 800;
}

.pain-list {
    display: grid;
    gap: 14px;
}

.pain-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 27px 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
}

.pain-item > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--gold-700);
    background: var(--gold-100);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
}

.pain-item h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 20px;
}

.pain-item p {
    margin: 7px 0 0;
    color: var(--slate-600);
    font-size: 15px;
}

.features {
    background: var(--white);
}

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

.feature-card {
    position: relative;
    min-height: 250px;
    padding: 30px;
    background: linear-gradient(180deg, #ffffff, #fbfcfe);
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-200);
    box-shadow: var(--shadow-card);
}

.feature-index {
    display: inline-flex;
    margin-bottom: 35px;
    color: var(--gold-700);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.feature-card h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 22px;
}

.feature-card p {
    margin: 12px 0 0;
    color: var(--slate-600);
    font-size: 15px;
}

.difference {
    padding-top: 0;
    background: var(--white);
}

.difference-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 64px;
    padding: 56px;
    background: var(--navy-950);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.difference-panel h2 {
    color: var(--white);
    font-size: clamp(30px, 3vw, 44px);
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.difference-grid > div {
    min-height: 205px;
    padding: 25px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
}

.difference-grid .highlight {
    color: var(--slate-700);
    background: var(--white);
    border-color: var(--white);
}

.difference-grid strong {
    display: block;
    color: var(--white);
    font-size: 18px;
}

.difference-grid .highlight strong {
    color: var(--navy-950);
}

.difference-grid p {
    margin: 15px 0 0;
    font-size: 14px;
}

.implementation {
    background: var(--slate-100);
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.step-grid li {
    position: relative;
    min-height: 270px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 18px;
}

.step-grid li:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 48px;
    right: -14px;
    z-index: 2;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    color: var(--navy-700);
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}

.step-grid li > span {
    display: inline-flex;
    padding: 6px 9px;
    color: var(--gold-700);
    background: var(--gold-100);
    border-radius: 7px;
    font-size: 12px;
    font-weight: 900;
}

.step-grid h3 {
    margin: 40px 0 0;
    color: var(--navy-950);
    font-size: 22px;
}

.step-grid p {
    margin: 12px 0 0;
    color: var(--slate-600);
    font-size: 15px;
}


/* v1.5 - Google 需求評估問卷 */
.survey {
    background:
        radial-gradient(circle at 14% 18%, rgba(223, 165, 47, 0.1), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.survey-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    align-items: center;
    gap: 64px;
    padding: 58px 64px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.survey-copy h2 {
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(32px, 3.2vw, 46px);
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: -0.035em;
}

.survey-copy > p:not(.section-kicker) {
    margin: 18px 0 0;
    color: var(--slate-600);
    font-size: 17px;
}

.survey-benefits {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.survey-benefits li {
    position: relative;
    padding-left: 34px;
    color: var(--slate-700);
    font-weight: 700;
}

.survey-benefits li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    color: var(--green);
    background: #e9f6f0;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
}

.survey-action-card {
    display: grid;
    gap: 16px;
    padding: 34px;
    background:
        radial-gradient(circle at 100% 0%, rgba(223, 165, 47, 0.17), transparent 35%),
        linear-gradient(145deg, #f8fafc, #ffffff);
    border: 1px solid var(--slate-200);
    border-radius: 22px;
}

.survey-label {
    width: fit-content;
    padding: 7px 10px;
    color: var(--gold-700);
    background: var(--gold-100);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.survey-action-card > strong {
    color: var(--navy-950);
    font-size: 24px;
    line-height: 1.35;
}

.survey-action-card > p {
    margin: -2px 0 2px;
    color: var(--slate-600);
    font-size: 15px;
}

.survey-button {
    width: 100%;
}

.survey-action-card small {
    color: var(--slate-500);
    font-size: 12px;
    line-height: 1.6;
}

.contact {
    padding: 90px 0;
    background: var(--white);
}

.contact-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    padding: 58px 64px;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 10%, rgba(223, 165, 47, 0.22), transparent 29%),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.contact-panel h2 {
    color: var(--white);
}

.contact-panel > div > p:last-child {
    max-width: 690px;
    margin-left: 0;
    color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
    min-width: 275px;
    display: grid;
    gap: 10px;
    text-align: center;
}

.button-light {
    color: var(--navy-950);
    background: var(--white);
}

.contact-secondary {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.56);
}

.contact-secondary:hover {
    color: var(--navy-950);
    background: var(--white);
    border-color: var(--white);
}

.contact-actions small {
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
}

.site-footer {
    padding: 34px 0;
    background: #f8fafc;
    border-top: 1px solid var(--slate-200);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 34px;
}

.footer-brand .brand-copy strong {
    font-size: 17px;
}

.footer-brand .brand-copy small {
    font-size: 11px;
}

.footer-inner p {
    margin: 0;
    color: var(--slate-500);
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1120px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-copy {
        max-width: 820px;
        margin-inline: auto;
        text-align: center;
    }

    .hero h1,
    .hero-description {
        margin-inline: auto;
    }

    .eyebrow,
    .hero-actions,
    .hero-points {
        justify-content: center;
        margin-inline: auto;
    }

    .hero-visual {
        width: min(100%, 840px);
        min-height: 660px;
        margin-inline: auto;
    }

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

    .scenario-card:last-child {
        grid-column: 1 / -1;
        min-height: auto;
    }

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

    .difference-panel {
        grid-template-columns: 1fr;
    }

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

    .step-grid li:nth-child(2)::after {
        display: none;
    }

    .survey-panel,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        width: fit-content;
        min-width: 300px;
        text-align: left;
    }
}

@media (max-width: 920px) {
    .site-nav {
        position: fixed;
        top: 77px;
        right: 18px;
        left: 18px;
        display: grid;
        gap: 0;
        padding: 14px;
        visibility: hidden;
        opacity: 0;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--slate-200);
        border-radius: 18px;
        box-shadow: var(--shadow-soft);
        transform: translateY(-12px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .site-nav.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav > a {
        padding: 14px 16px;
    }

    .site-nav .button {
        margin-top: 7px;
    }

    .menu-button {
        display: block;
    }

    .header-inner {
        min-height: 76px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .pain-copy {
        position: static;
        max-width: 720px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-grid div,
    .trust-grid div:first-child,
    .trust-grid div:last-child {
        padding: 0 0 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .trust-grid div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .brand-copy small {
        font-size: 11px;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: clamp(36px, 10vw, 52px);
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
        width: 100%;
    }

    .button {
        width: 100%;
    }

    .hero-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: fit-content;
        text-align: left;
    }

    .hero-visual {
        min-height: auto;
        display: block;
        margin-top: 28px;
        padding-left: 0;
    }

    .hero-flow-rail {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        gap: 10px;
        margin-bottom: 18px;
    }

    .hero-flow-rail::before {
        display: none;
    }

    .hero-flow-node {
        min-height: 78px;
        padding-right: 10px;
    }

    .orbit-one {
        width: 340px;
        height: 340px;
    }

    .orbit-two {
        width: 440px;
        height: 440px;
    }

    .dashboard-window {
        width: calc(100% - 4px);
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
        min-height: 390px;
    }

    .dashboard-sidebar {
        display: none;
    }

    .dashboard-main {
        padding: 22px 17px;
    }


    .scenario-grid,
    .feature-grid,
    .difference-grid,
    .step-grid {
        grid-template-columns: 1fr;
    }

    .scenario-card:last-child {
        grid-column: auto;
    }

    .scenario-card {
        min-height: auto;
        padding: 28px;
    }

    .scenario-card > p {
        min-height: auto;
    }

    .section-heading {
        margin-bottom: 38px;
        text-align: left;
    }

    .section-heading h2,
    .pain-copy h2,
    .difference-panel h2,
    .contact-panel h2 {
        font-size: 32px;
    }

    .section-heading > p:last-child,
    .pain-copy > p,
    .contact-panel > div > p:last-child {
        font-size: 15px;
    }

    .pain-item {
        grid-template-columns: 44px 1fr;
        gap: 14px;
        padding: 21px;
    }

    .pain-item > span {
        width: 38px;
        height: 38px;
    }

    .pain-item h3 {
        font-size: 18px;
    }

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

    .difference-panel {
        gap: 38px;
        padding: 34px 24px;
        border-radius: 24px;
    }

    .difference-grid > div {
        min-height: auto;
    }

    .step-grid li:not(:last-child)::after {
        display: none;
    }

    .step-grid li {
        min-height: auto;
    }

    .survey-panel {
        gap: 34px;
        padding: 36px 24px;
        border-radius: 24px;
    }

    .survey-copy h2 {
        font-size: 32px;
    }

    .survey-copy > p:not(.section-kicker) {
        font-size: 15px;
    }

    .survey-action-card {
        padding: 26px 22px;
    }

    .contact {
        padding: 70px 0;
    }

    .contact-panel {
        padding: 36px 24px;
        border-radius: 24px;
    }

    .contact-actions {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 460px) {
    .eyebrow {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.22;
    }

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

    .dashboard-heading {
        align-items: flex-start;
    }

    .metric-grid {
        gap: 7px;
    }

    .metric-grid article {
        min-height: 78px;
        padding: 12px;
    }

    .task-row {
        padding: 12px 10px;
    }

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

    .hero-flow-node {
        min-height: 70px;
    }
}


/* v1.1 正式品牌 Logo */
.brand > img,
.dashboard-brand > img,
.footer-brand > img {
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.brand > img {
    border-radius: 8px;
}

.dashboard-brand > img {
    border-radius: 5px;
}


/* 系統架構區塊 */
.workflow-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 50%, rgba(223, 165, 47, 0.08), transparent 30%),
        linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
}

.workflow-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
    align-items: center;
    gap: 72px;
}

.workflow-kicker {
    margin: 0 0 18px;
    color: var(--gold-700);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.22em;
}

.workflow-copy h2 {
    max-width: 650px;
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.035em;
}

.workflow-copy > p:not(.workflow-kicker) {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--slate-600);
    font-size: 17px;
    line-height: 1.95;
}

.workflow-checks {
    display: grid;
    gap: 15px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.workflow-checks li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--slate-700);
    font-weight: 700;
}

.workflow-checks li::before {
    content: "✓";
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    color: var(--green);
    background: #e9f6f0;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

.workflow-visual {
    position: relative;
    min-height: 630px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(247,249,252,0.92));
    border: 1px solid var(--slate-200);
    border-radius: 30px;
    box-shadow: var(--shadow-card);
}

.workflow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.workflow-ring-outer {
    width: 500px;
    height: 500px;
    border: 1px dashed #d5dde7;
}

.workflow-ring-middle {
    width: 380px;
    height: 380px;
    border: 1px solid rgba(223, 165, 47, 0.22);
}

.workflow-ring-inner {
    width: 245px;
    height: 245px;
    border: 1px solid rgba(223, 165, 47, 0.55);
    box-shadow: 0 20px 55px rgba(10, 37, 71, 0.08);
}

.workflow-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 210px;
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(255,255,255,0.97);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.workflow-core img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    border-radius: 14px;
}

.workflow-core strong {
    margin-top: 10px;
    color: var(--navy-950);
    font-size: 20px;
}

.workflow-core span {
    color: var(--slate-500);
    font-size: 12px;
}

.workflow-node {
    position: absolute;
    z-index: 4;
    min-width: 190px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.97);
    border: 1px solid var(--slate-200);
    border-radius: 15px;
    box-shadow: 0 12px 28px rgba(10, 37, 71, 0.07);
}

.workflow-node b {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    color: var(--gold-700);
    background: var(--gold-100);
    border-radius: 11px;
    font-size: 12px;
}

.workflow-node strong,
.workflow-node span {
    display: block;
}

.workflow-node strong {
    color: var(--navy-950);
    font-size: 15px;
}

.workflow-node span {
    margin-top: 2px;
    color: var(--slate-500);
    font-size: 11px;
}

.workflow-node-one { top: 95px; left: 52px; }
.workflow-node-two { top: 120px; right: 42px; }
.workflow-node-three { right: 42px; bottom: 110px; }
.workflow-node-four { bottom: 86px; left: 58px; }

.feature-card ul {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--slate-200);
    list-style: none;
}

.feature-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--slate-700);
    font-size: 13px;
    font-weight: 600;
}

.feature-card li::before {
    content: "•";
    color: var(--gold-600);
    font-weight: 900;
}

.ai-assist {
    background: var(--white);
}

.ai-assist-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
    align-items: center;
    gap: 62px;
    padding: 62px;
    color: var(--white);
    background:
        radial-gradient(circle at 5% 10%, rgba(223, 165, 47, 0.22), transparent 28%),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.ai-assist-copy h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(34px, 3.5vw, 50px);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.035em;
}

.ai-assist-copy > p:not(.section-kicker) {
    margin: 22px 0 0;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

.ai-principle {
    margin-top: 28px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 15px;
}

.ai-principle strong,
.ai-principle span {
    display: block;
}

.ai-principle strong {
    color: #f1c86d;
    font-size: 13px;
}

.ai-principle span {
    margin-top: 5px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
}

.ai-capability-list {
    display: grid;
    gap: 12px;
}

.ai-capability-list article {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 16px;
    padding: 19px 21px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
}

.ai-capability-list b {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--gold-700);
    background: var(--gold-100);
    border-radius: 12px;
    font-size: 12px;
}

.ai-capability-list strong,
.ai-capability-list span {
    display: block;
}

.ai-capability-list strong {
    color: var(--navy-950);
    font-size: 17px;
}

.ai-capability-list span {
    margin-top: 3px;
    color: var(--slate-600);
    font-size: 13px;
}

.completion-clarity-section {
    padding: 0 0 112px;
    background: var(--white);
}

.completion-clarity-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: 64px;
    padding: 52px 56px;
    background:
        radial-gradient(circle at 10% 10%, rgba(223, 165, 47, 0.09), transparent 28%),
        linear-gradient(135deg, #f5f8fb, #ffffff);
    border: 1px solid var(--slate-200);
    border-radius: 24px;
}

.completion-clarity-copy h2 {
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(31px, 3vw, 45px);
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.completion-clarity-copy > p:last-child {
    margin: 18px 0 0;
    color: var(--slate-600);
}

.completion-clarity-list {
    display: grid;
    gap: 13px;
}

.completion-clarity-list article {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: start;
    gap: 16px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(17, 47, 82, 0.05);
}

.completion-clarity-list article > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--gold-700);
    background: var(--gold-100);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 900;
}

.completion-clarity-list strong {
    display: block;
    color: var(--navy-950);
    font-size: 17px;
}

.completion-clarity-list p {
    margin: 4px 0 0;
    color: var(--slate-600);
    font-size: 13px;
}

@media (max-width: 1120px) {
    .workflow-grid,
    .ai-assist-panel,
    .completion-clarity-grid {
        grid-template-columns: 1fr;
    }

    .workflow-copy {
        max-width: 800px;
    }

    .workflow-visual {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .ai-assist-panel {
        gap: 40px;
    }
}

@media (max-width: 1120px) {
    .completion-clarity-grid {
        gap: 38px;
    }
}

@media (max-width: 700px) {
    .workflow-grid {
        gap: 42px;
    }

    .workflow-copy h2 {
        font-size: 34px;
    }

    .workflow-copy > p:not(.workflow-kicker) {
        font-size: 15px;
    }

    .workflow-visual {
        min-height: 550px;
        border-radius: 22px;
    }

    .workflow-ring-outer { width: 420px; height: 420px; }
    .workflow-ring-middle { width: 310px; height: 310px; }
    .workflow-ring-inner { width: 205px; height: 205px; }

    .workflow-core {
        width: 175px;
        height: 175px;
    }

    .workflow-core img {
        width: 68px;
        height: 68px;
    }

    .workflow-core strong {
        font-size: 17px;
    }

    .workflow-node {
        min-width: 154px;
        gap: 9px;
        padding: 12px;
    }

    .workflow-node b {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .workflow-node strong { font-size: 13px; }
    .workflow-node span { display: none; }
    .workflow-node-one { top: 45px; left: 14px; }
    .workflow-node-two { top: 72px; right: 12px; }
    .workflow-node-three { right: 12px; bottom: 72px; }
    .workflow-node-four { bottom: 42px; left: 14px; }

    .ai-assist-panel {
        padding: 36px 24px;
        border-radius: 24px;
    }

    .ai-assist-copy h2 {
        font-size: 32px;
    }

    .ai-capability-list article {
        grid-template-columns: 38px 1fr;
        padding: 15px;
    }

    .ai-capability-list b {
        width: 36px;
        height: 36px;
    }

    .completion-clarity-section {
        padding-bottom: 78px;
    }

    .completion-clarity-grid {
        gap: 32px;
        padding: 32px 22px;
    }

    .completion-clarity-copy h2 {
        font-size: 31px;
    }
}

@media (max-width: 460px) {
    .workflow-visual {
        min-height: 500px;
    }

    .workflow-ring-outer { width: 350px; height: 350px; }
    .workflow-ring-middle { width: 270px; height: 270px; }
    .workflow-ring-inner { width: 180px; height: 180px; }

    .workflow-core {
        width: 155px;
        height: 155px;
        padding: 14px;
    }

    .workflow-core img {
        width: 58px;
        height: 58px;
    }

    .workflow-node {
        min-width: 128px;
    }

    .workflow-node-one { top: 30px; left: 8px; }
    .workflow-node-two { top: 78px; right: 7px; }
    .workflow-node-three { right: 7px; bottom: 65px; }
    .workflow-node-four { bottom: 25px; left: 8px; }
}

/* =========================================================
   v1.7 — 工作流視覺、完成標準與企業知識累積
   ========================================================= */

.pain-points-v16 {
    background:
        radial-gradient(circle at 94% 14%, rgba(223, 165, 47, 0.08), transparent 26%),
        var(--slate-100);
}

.workflow-explainer {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(23, 79, 130, 0.08), transparent 28%),
        radial-gradient(circle at 92% 82%, rgba(223, 165, 47, 0.11), transparent 26%),
        var(--white);
}

.workflow-heading {
    max-width: 850px;
}

.workflow-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr) 58px minmax(0, 1fr) 58px minmax(0, 1fr);
    align-items: stretch;
    margin-top: 54px;
}

.workflow-step-card {
    position: relative;
    min-height: 315px;
    padding: 30px 25px 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--slate-200);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.workflow-step-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-200);
    box-shadow: 0 20px 46px rgba(17, 47, 82, 0.13);
}

.workflow-step-number {
    position: absolute;
    top: 21px;
    right: 22px;
    color: var(--slate-300);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.workflow-step-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: var(--gold-700);
    background: linear-gradient(145deg, var(--gold-100), #ffffff);
    border: 1px solid var(--gold-200);
    border-radius: 18px;
    font-size: 25px;
    font-weight: 900;
}

.workflow-step-en {
    margin: 25px 0 0;
    color: var(--gold-700);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.workflow-step-card h3 {
    margin: 5px 0 0;
    color: var(--navy-950);
    font-size: 24px;
    line-height: 1.35;
}

.workflow-step-card > p:last-child {
    margin: 14px 0 0;
    color: var(--slate-600);
    font-size: 14px;
    line-height: 1.8;
}

.workflow-arrow {
    display: grid;
    place-items: center;
    color: var(--gold-600);
    font-size: 31px;
    font-weight: 500;
}

.workflow-outcomes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.workflow-outcomes span {
    min-width: 142px;
    padding: 11px 18px;
    color: var(--navy-900);
    background: var(--blue-100);
    border: 1px solid rgba(23, 79, 130, 0.12);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.role-benefits {
    background: var(--slate-100);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.benefit-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px 30px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: var(--navy-700);
}

.benefit-manager::before {
    background: var(--gold-600);
}

.benefit-employee::before {
    background: var(--green);
}

.benefit-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.benefit-audience {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    color: var(--navy-900);
    background: var(--blue-100);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.benefit-manager .benefit-audience {
    color: var(--gold-700);
    background: var(--gold-100);
}

.benefit-employee .benefit-audience {
    color: #14704d;
    background: #e9f6f0;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: var(--navy-800);
    background: var(--slate-100);
    border-radius: 13px;
    font-size: 19px;
    font-weight: 900;
}

.benefit-card h3 {
    margin: 26px 0 0;
    color: var(--navy-950);
    font-size: 25px;
    line-height: 1.45;
}

.benefit-card > p {
    margin: 15px 0 0;
    color: var(--slate-600);
    font-size: 14px;
}

.benefit-card ul {
    display: grid;
    gap: 11px;
    margin: 24px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--slate-200);
    list-style: none;
}

.benefit-card li {
    position: relative;
    padding-left: 25px;
    color: var(--slate-700);
    font-size: 14px;
    font-weight: 700;
}

.benefit-card li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.benefit-saving {
    margin-top: auto;
    padding-top: 28px;
}

.benefit-saving strong,
.benefit-saving span {
    display: block;
}

.benefit-saving strong {
    color: var(--gold-700);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.benefit-saving span {
    margin-top: 5px;
    color: var(--slate-600);
    font-size: 13px;
}

.benefit-note {
    max-width: 900px;
    margin: 32px auto 0;
    padding: 17px 22px;
    color: var(--navy-900);
    background: rgba(234, 243, 251, 0.85);
    border: 1px solid rgba(23, 79, 130, 0.12);
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 1120px) {
    .workflow-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .workflow-arrow {
        display: none;
    }

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

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

@media (max-width: 700px) {
    .workflow-flow {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 36px;
    }

    .workflow-step-card {
        min-height: auto;
        padding: 25px 22px;
    }

    .workflow-step-card:not(:last-of-type)::after {
        content: "↓";
        position: absolute;
        right: 50%;
        bottom: -27px;
        z-index: 3;
        color: var(--gold-600);
        font-size: 22px;
        transform: translateX(50%);
    }

    .workflow-step-card h3 {
        font-size: 22px;
    }

    .workflow-outcomes {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin-top: 35px;
    }

    .workflow-outcomes span {
        min-width: 0;
        padding-inline: 10px;
        font-size: 13px;
    }

    .benefit-grid {
        margin-top: 36px;
    }

    .benefit-card {
        padding: 27px 22px;
    }

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

    .benefit-note {
        text-align: left;
    }
}

@media (max-width: 460px) {
    .workflow-outcomes {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   v1.9 — GitHub Pages cache-safe build
   同一工作流架構、現場修正與主管核准閉環
   ========================================================= */

:root {
    --navy-950: #07182f;
    --navy-900: #0a2749;
    --navy-800: #103b68;
    --navy-700: #1e5b8f;
    --gold-700: #9b6504;
    --gold-600: #c4820e;
    --gold-500: #e1a735;
    --green: #1f8b64;
    --shadow-soft: 0 28px 80px rgba(7, 30, 59, 0.12);
    --shadow-card: 0 14px 38px rgba(7, 30, 59, 0.08);
}

body {
    background: #fbfcfe;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
}

.header-inner {
    min-height: 82px;
}

.hero {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 94px;
    background:
        radial-gradient(circle at 4% 12%, rgba(225, 167, 53, 0.12), transparent 26%),
        radial-gradient(circle at 94% 76%, rgba(59, 132, 184, 0.12), transparent 30%),
        linear-gradient(145deg, #ffffff 0%, #f5f8fc 100%);
}

.hero::before {
    opacity: 0.2;
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(610px, 1.12fr);
    gap: 54px;
}

.hero-copy {
    padding-block: 28px;
}

.eyebrow {
    margin-bottom: 22px;
    color: #875809;
    background: rgba(255, 247, 232, 0.78);
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(42px, 4.2vw, 66px);
    line-height: 1.22;
    letter-spacing: -0.048em;
}

.hero h1 span {
    margin-top: 5px;
}

.hero-description {
    max-width: 650px;
    margin-top: 26px;
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.95;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 24px;
    row-gap: 10px;
}

.hero-visual {
    min-height: 0;
    display: block;
    padding: 0;
}

.workflow-board {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 24px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 8%, rgba(225, 167, 53, 0.18), transparent 25%),
        linear-gradient(145deg, #081b34, #0b3159);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 34px 90px rgba(7, 30, 59, 0.24);
}

.workflow-board::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.32;
    background-image: radial-gradient(rgba(255, 255, 255, 0.28) 0.65px, transparent 0.65px);
    background-size: 22px 22px;
    mask-image: linear-gradient(135deg, black, transparent 62%);
}

.board-topbar,
.board-summary,
.board-timeline,
.board-note {
    position: relative;
    z-index: 1;
}

.board-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 2px 19px;
}

.board-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.board-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 8px;
}

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

.board-brand strong {
    font-size: 14px;
    line-height: 1.25;
}

.board-brand small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    letter-spacing: 0.08em;
}

.board-status {
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    padding: 0 11px;
    color: #f7d583;
    background: rgba(225, 167, 53, 0.12);
    border: 1px solid rgba(225, 167, 53, 0.24);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}

.board-summary {
    display: grid;
    grid-template-columns: 0.8fr 1.35fr 0.85fr;
    align-items: center;
    gap: 12px;
    padding: 16px 17px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
}

.board-summary small,
.board-summary strong {
    display: block;
}

.board-summary small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
}

.board-summary strong {
    margin-top: 3px;
    overflow: hidden;
    font-size: 11px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.board-progress {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 9px;
}

.board-progress > span {
    height: 5px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 99px;
}

.board-progress i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-500), #f4d37c);
    border-radius: inherit;
}

.board-timeline {
    display: grid;
    gap: 8px;
    margin-top: 13px;
}

.board-timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 19px;
    width: 2px;
    background: linear-gradient(var(--gold-500), #65a3cf 54%, #65bb97);
}

.board-step {
    position: relative;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 11px 13px 11px 9px;
    color: var(--slate-900);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(2, 18, 38, 0.09);
}

.board-step-number {
    position: relative;
    z-index: 2;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    background: var(--gold-100);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(7, 30, 59, 0.12);
    font-size: 9px;
    font-weight: 900;
}

.board-step > div {
    min-width: 0;
}

.board-step strong {
    display: inline;
    margin-left: 7px;
    color: var(--navy-950);
    font-size: 12px;
    line-height: 1.4;
}

.board-step p {
    margin: 4px 0 0;
    color: var(--slate-500);
    font-size: 9px;
    line-height: 1.45;
}

.role-tag {
    display: inline-flex;
    min-height: 21px;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    white-space: nowrap;
}

.role-manager {
    color: #8d5b04;
    background: #fff2d4;
}

.role-system {
    color: #2d6592;
    background: #e7f2fb;
}

.role-executor {
    color: #176d4e;
    background: #e5f5ee;
}

.step-state {
    min-width: 52px;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;
}

.step-state.done {
    color: #236a50;
    background: #e5f5ee;
}

.step-state.review {
    color: #8c5a04;
    background: #fff1cf;
}

.step-state.waiting {
    color: #5f4d8b;
    background: #eee8fb;
}

.board-step-change {
    border-color: rgba(225, 167, 53, 0.7);
    box-shadow: 0 0 0 2px rgba(225, 167, 53, 0.1), 0 8px 20px rgba(2, 18, 38, 0.09);
}

.board-step-approved {
    background: linear-gradient(135deg, #ffffff, #f0f7ff);
}

.board-note {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    margin-top: 13px;
    padding: 13px 15px;
    background: rgba(225, 167, 53, 0.1);
    border: 1px solid rgba(225, 167, 53, 0.22);
    border-radius: 13px;
}

.board-note span {
    color: #f2cd73;
    font-size: 10px;
    font-weight: 900;
    white-space: nowrap;
}

.board-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 9px;
    line-height: 1.5;
}

.trust-strip {
    padding: 32px 0;
    background:
        radial-gradient(circle at 84% 30%, rgba(225, 167, 53, 0.14), transparent 26%),
        var(--navy-950);
}

.trust-grid strong {
    color: #f8d581;
}

.workflow-explainer {
    background:
        radial-gradient(circle at 8% 15%, rgba(23, 79, 130, 0.07), transparent 28%),
        radial-gradient(circle at 92% 82%, rgba(223, 165, 47, 0.09), transparent 26%),
        #f8fafc;
}

.workflow-heading {
    max-width: 920px;
}

.workflow-heading > p:last-child {
    max-width: 780px;
}

.workflow-loop {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 50px;
}

.workflow-phase-card {
    position: relative;
    min-height: 292px;
    display: flex;
    flex-direction: column;
    padding: 27px 25px 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--slate-200);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.workflow-phase-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: #8cb5d5;
}

.workflow-phase-card:hover {
    transform: translateY(-5px);
    border-color: #c8d9e8;
    box-shadow: 0 20px 48px rgba(7, 30, 59, 0.12);
}

.workflow-phase-change {
    border-color: var(--gold-200);
}

.workflow-phase-change::before {
    background: var(--gold-500);
}

.workflow-phase-approved {
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0%, rgba(225, 167, 53, 0.2), transparent 38%),
        linear-gradient(145deg, var(--navy-950), var(--navy-800));
    border-color: transparent;
}

.workflow-phase-approved::before {
    background: var(--gold-500);
}

.phase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.phase-number {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    background: var(--blue-100);
    border-radius: 13px;
    font-size: 12px;
    font-weight: 900;
}

.workflow-phase-change .phase-number {
    color: var(--gold-700);
    background: var(--gold-100);
}

.workflow-phase-approved .phase-number {
    color: #f8d581;
    background: rgba(255, 255, 255, 0.1);
}

.workflow-phase-card .workflow-step-en {
    margin-top: 26px;
    margin-bottom: 0;
}

.workflow-phase-card h3 {
    margin: 6px 0 0;
    color: var(--navy-950);
    font-size: 23px;
    line-height: 1.35;
}

.workflow-phase-card > p:not(.workflow-step-en) {
    margin: 13px 0 0;
    color: var(--slate-600);
    font-size: 14px;
    line-height: 1.75;
}

.workflow-phase-approved h3 {
    color: var(--white);
}

.workflow-phase-approved > p:not(.workflow-step-en) {
    color: rgba(255, 255, 255, 0.68);
}

.phase-output {
    width: fit-content;
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    margin-top: auto;
    padding: 0 10px;
    color: var(--navy-800);
    background: var(--slate-100);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
}

.workflow-phase-change .phase-output {
    color: var(--gold-700);
    background: var(--gold-100);
}

.workflow-phase-approved .phase-output {
    color: #f8d581;
    background: rgba(255, 255, 255, 0.1);
}

.workflow-principle {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: 42px;
    margin-top: 28px;
    padding: 30px 34px;
    color: var(--white);
    background:
        radial-gradient(circle at 92% 0%, rgba(225, 167, 53, 0.18), transparent 30%),
        var(--navy-950);
    border-radius: 21px;
}

.workflow-principle strong {
    color: #f5d47f;
    font-size: 21px;
}

.workflow-principle p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.workflow-section {
    background:
        radial-gradient(circle at 74% 48%, rgba(223, 165, 47, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff, #f7f9fc);
}

.workflow-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
    gap: 70px;
}

.architecture-board {
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 27px;
    box-shadow: var(--shadow-soft);
}

.architecture-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 3px 19px;
    border-bottom: 1px solid var(--slate-200);
}

.architecture-head small,
.architecture-head strong {
    display: block;
}

.architecture-head small {
    color: var(--slate-500);
    font-size: 11px;
}

.architecture-head strong {
    margin-top: 2px;
    color: var(--navy-950);
    font-size: 18px;
}

.architecture-head > span {
    padding: 7px 11px;
    color: #176d4e;
    background: #e5f5ee;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
}

.architecture-layer {
    padding: 19px;
    background: #f7f9fc;
    border: 1px solid var(--slate-200);
    border-radius: 16px;
}

.architecture-layer:first-of-type {
    margin-top: 19px;
}

.layer-label {
    display: block;
    margin-bottom: 11px;
    color: var(--slate-500);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.layer-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.layer-items span {
    flex: 1 1 auto;
    min-width: 92px;
    padding: 9px 11px;
    color: var(--navy-900);
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 9px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.architecture-core {
    background:
        radial-gradient(circle at 90% 0%, rgba(225, 167, 53, 0.14), transparent 32%),
        var(--navy-950);
    border-color: var(--navy-950);
}

.architecture-core .layer-label {
    color: #f3d17c;
}

.architecture-core .layer-items span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.architecture-connector {
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--gold-600);
    font-size: 18px;
    font-weight: 900;
}

.architecture-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 15px;
    padding: 15px 18px;
    color: #176d4e;
    background: #e5f5ee;
    border: 1px solid #cce9dc;
    border-radius: 13px;
}

.architecture-result span {
    font-size: 11px;
    font-weight: 900;
}

.architecture-result strong {
    color: var(--navy-900);
    font-size: 13px;
}

.difference {
    padding-top: 112px;
    background:
        radial-gradient(circle at 8% 20%, rgba(225, 167, 53, 0.08), transparent 24%),
        #f5f8fb;
}

.difference-panel {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: stretch;
    gap: 48px;
    padding: 54px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.difference-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.difference-panel .difference-copy h2 {
    color: var(--navy-950);
    font-size: clamp(32px, 3.3vw, 47px);
}

.difference-copy > p:last-child {
    margin: 21px 0 0;
    color: var(--slate-600);
    font-size: 15px;
}

.difference-grid {
    gap: 14px;
}

.difference-grid > .difference-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 27px;
    color: var(--slate-700);
    background: #f4f6f9;
    border: 1px solid var(--slate-200);
    border-radius: 20px;
}

.difference-grid > .difference-card.highlight {
    color: rgba(255, 255, 255, 0.72);
    background:
        radial-gradient(circle at 100% 0%, rgba(225, 167, 53, 0.2), transparent 38%),
        linear-gradient(145deg, var(--navy-950), var(--navy-800));
    border-color: transparent;
}

.difference-label {
    width: fit-content;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    color: var(--slate-600);
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.difference-card.highlight .difference-label {
    color: #f5d47f;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.difference-grid .difference-card > strong {
    margin-top: 20px;
    color: var(--navy-950);
    font-size: 20px;
    line-height: 1.45;
}

.difference-grid .difference-card.highlight > strong {
    color: var(--white);
}

.difference-card ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--slate-200);
    list-style: none;
}

.difference-card.highlight ul {
    border-color: rgba(255, 255, 255, 0.12);
}

.difference-card li {
    position: relative;
    padding-left: 20px;
    font-size: 13px;
}

.difference-card li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--slate-300);
    border-radius: 50%;
}

.difference-card.highlight li::before {
    background: var(--gold-500);
}

@media (max-width: 1120px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero-copy {
        max-width: 860px;
        margin-inline: auto;
        text-align: left;
    }

    .hero h1,
    .hero-description {
        margin-left: 0;
    }

    .eyebrow,
    .hero-actions,
    .hero-points {
        justify-content: flex-start;
        margin-left: 0;
    }

    .hero-visual {
        width: min(100%, 820px);
        margin-inline: auto;
    }

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

    .workflow-principle {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .architecture-board {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .difference-panel {
        grid-template-columns: 1fr;
    }

    .difference-copy {
        max-width: 820px;
    }
}

@media (max-width: 700px) {
    .hero {
        padding-top: 62px;
        padding-bottom: 68px;
    }

    .hero-grid {
        gap: 32px;
    }

    .hero-copy {
        padding-block: 0;
    }

    .hero h1 {
        font-size: clamp(36px, 10.3vw, 48px);
        line-height: 1.25;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.85;
    }

    .hero-points {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .workflow-board {
        padding: 16px;
        border-radius: 22px;
    }

    .board-summary {
        grid-template-columns: 1fr 1.4fr;
    }

    .board-progress {
        grid-column: 1 / -1;
    }

    .board-step {
        grid-template-columns: 37px minmax(0, 1fr);
        padding: 11px 12px 11px 8px;
    }

    .board-step strong {
        display: block;
        margin: 5px 0 0;
    }

    .step-state {
        grid-column: 2;
        justify-self: start;
        margin-top: -3px;
    }

    .board-note {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .workflow-loop {
        grid-template-columns: 1fr;
        margin-top: 36px;
    }

    .workflow-phase-card {
        min-height: auto;
    }

    .phase-output {
        margin-top: 24px;
    }

    .workflow-principle {
        padding: 25px 22px;
    }

    .workflow-principle strong {
        font-size: 19px;
    }

    .workflow-grid {
        gap: 40px;
    }

    .architecture-board {
        padding: 18px;
        border-radius: 22px;
    }

    .architecture-result {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .difference {
        padding-top: 78px;
    }

    .difference-panel {
        gap: 34px;
        padding: 32px 22px;
        border-radius: 23px;
    }

    .difference-panel .difference-copy h2 {
        font-size: 31px;
    }

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

@media (max-width: 460px) {
    .hero-points {
        grid-template-columns: 1fr;
    }

    .board-topbar {
        align-items: flex-start;
    }

    .board-status {
        min-height: 26px;
        padding-inline: 8px;
        font-size: 8px;
    }

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

    .board-progress {
        grid-column: auto;
    }

    .board-step p {
        font-size: 8px;
    }

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

    .layer-items span {
        min-width: 0;
    }
}
