:root {
    color-scheme: light;
    --ink: #12313b;
    --muted: #60737a;
    --brand: #0f5367;
    --brand-dark: #082f3a;
    --accent: #e39a37;
    --accent-soft: rgba(227, 154, 55, .22);
    --hero-start: #f4faf9;
    --hero-end: #e7f1f0;
    --paper: #ffffff;
    --soft: #eef5f5;
    --line: #d9e5e5;
    --shadow: 0 18px 55px rgba(12, 50, 60, .11);
}

.theme-tech { --brand: #1557a0; --brand-dark: #0b2f59; --accent: #34a6a1; --accent-soft: rgba(52, 166, 161, .2); --hero-start: #f4f9ff; --hero-end: #e6f0fb; }
.theme-industrial { --brand: #525d69; --brand-dark: #252c34; --accent: #c5832f; --accent-soft: rgba(197, 131, 47, .2); --hero-start: #f7f8f8; --hero-end: #e8ecee; }
.theme-mobility { --brand: #245a75; --brand-dark: #123548; --accent: #e07a38; --accent-soft: rgba(224, 122, 56, .2); --hero-start: #f5fafc; --hero-end: #e5f0f5; }
.theme-commerce { --brand: #9a3f54; --brand-dark: #552333; --accent: #dd8b3f; --accent-soft: rgba(221, 139, 63, .22); --hero-start: #fff8f8; --hero-end: #f8e9ec; }
.theme-finance { --brand: #315c4b; --brand-dark: #18372c; --accent: #b89138; --accent-soft: rgba(184, 145, 56, .22); --hero-start: #f7faf6; --hero-end: #eaf1e7; }
.theme-wellness { --brand: #39786c; --brand-dark: #1f4942; --accent: #d58762; --accent-soft: rgba(213, 135, 98, .2); --hero-start: #f6fbf9; --hero-end: #e6f2ee; }
.theme-education { --brand: #4b55a3; --brand-dark: #292e65; --accent: #ce853c; --accent-soft: rgba(206, 133, 60, .2); --hero-start: #f8f8ff; --hero-end: #ebecf9; }
.theme-culture { --brand: #754766; --brand-dark: #43273b; --accent: #c88d3b; --accent-soft: rgba(200, 141, 59, .22); --hero-start: #fcf8fb; --hero-end: #f2e9ef; }
.theme-local { --brand: #356d58; --brand-dark: #1b4335; --accent: #d27b42; --accent-soft: rgba(210, 123, 66, .2); --hero-start: #f7fbf8; --hero-end: #e8f1ea; }
.theme-event { --brand: #7b466e; --brand-dark: #46273f; --accent: #e06f52; --accent-soft: rgba(224, 111, 82, .2); --hero-start: #fff8fc; --hero-end: #f4e8f0; }
.theme-entertainment { --brand: #5e4fa0; --brand-dark: #302960; --accent: #e27748; --accent-soft: rgba(226, 119, 72, .22); --hero-start: #faf8ff; --hero-end: #ece8f7; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
    line-height: 1.75;
}
a { color: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 760px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-size: 20px; font-weight: 800; text-decoration: none; letter-spacing: -.02em; }
nav { display: flex; align-items: center; gap: 24px; }
nav a { color: #36515a; font-size: 14px; text-decoration: none; }
.nav-cta { padding: 9px 16px; border-radius: 999px; background: var(--brand); color: #fff; }

.hero {
    overflow: hidden;
    padding: 92px 0 84px;
    background:
        radial-gradient(circle at 80% 15%, var(--accent-soft), transparent 28%),
        linear-gradient(135deg, var(--hero-start), var(--hero-end));
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 72px; align-items: center; }
.status-pill { display: inline-flex; padding: 6px 12px; border: 1px solid #a8c4c7; border-radius: 999px; color: var(--brand); font-size: 13px; font-weight: 700; background: rgba(255,255,255,.65); }
h1, h2, h3 { line-height: 1.22; }
h1 { margin: 20px 0 18px; font-size: clamp(44px, 8vw, 82px); letter-spacing: -.055em; overflow-wrap: anywhere; }
h2 { margin: 8px 0 20px; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.035em; }
h3 { font-size: 19px; }
.hero-lead { max-width: 700px; margin: 0; color: #38555e; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 22px; border-radius: 10px; font-weight: 700; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: var(--brand); box-shadow: 0 12px 24px rgba(15,83,103,.2); }
.button.secondary { border: 1px solid #a9c2c6; background: rgba(255,255,255,.65); }
.button.light { background: #fff; color: var(--brand-dark); }
.contact-note { margin-top: 18px; color: var(--muted); font-size: 14px; }
.price-card { padding: 30px; border: 1px solid rgba(255,255,255,.9); border-radius: 20px; background: rgba(255,255,255,.8); box-shadow: var(--shadow); }
.price-card > span { color: var(--muted); font-size: 13px; }
.price-card > strong { display: block; margin: 4px 0 22px; color: var(--brand); font-size: 32px; }
.price-card dl { margin: 0; }
.price-card dl div, .facts div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-top: 1px solid var(--line); }
dt { color: var(--muted); }
dd { margin: 0; text-align: right; font-weight: 650; }

.section { padding: 82px 0; }
.section-muted { background: var(--soft); }
.section-dark { background: var(--brand-dark); color: #fff; }
.two-column { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; }
.eyebrow { margin: 0 0 4px; color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.fact-panel { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 14px 42px rgba(24,58,66,.07); }
.fact-panel h2 { font-size: 25px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag-list span { padding: 5px 11px; border-radius: 999px; background: #edf5f4; color: var(--brand); font-size: 13px; }
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.use-card { min-height: 230px; padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.use-card > span { color: var(--accent); font-weight: 800; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 0; margin: 34px 0 0; list-style: none; counter-reset: step; }
.steps li { position: relative; padding: 24px; border: 1px solid var(--line); border-radius: 14px; }
.steps strong, .steps span { display: block; }
.steps span { margin-top: 8px; color: var(--muted); font-size: 14px; }
.steps.vertical { grid-template-columns: 1fr; }
.callout { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.callout h2 { margin-bottom: 10px; }
.callout p { margin-bottom: 0; color: #c5d8dc; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; }
.faq-list details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq-list summary { cursor: pointer; font-weight: 750; }
.faq-list p { color: var(--muted); }
.related-section { padding-top: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-grid a { padding: 20px; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; }
.related-grid strong, .related-grid span { display: block; }
.related-grid span { margin-top: 4px; color: var(--muted); font-size: 13px; }

.strategy-section { background: linear-gradient(180deg, #fff, var(--hero-start)); }
.section-intro { max-width: 820px; margin: -6px 0 34px; color: var(--muted); font-size: 17px; }
.strategy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.strategy-card { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.88); box-shadow: 0 12px 36px rgba(24,58,66,.06); }
.strategy-card > span { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.strategy-card h3 { margin: 10px 0 12px; }
.strategy-card p { margin: 0; color: var(--muted); }
.launch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.launch-panel { padding: 28px; border-radius: 16px; background: var(--brand-dark); color: #fff; }
.launch-panel h3 { margin: 0 0 18px; }
.topic-list { display: grid; gap: 12px; margin: 0; padding-left: 22px; color: #dbe8eb; }
.value-list { margin: 0; }
.value-list div { display: grid; grid-template-columns: 96px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.16); }
.value-list div:first-child { border-top: 0; padding-top: 0; }
.value-list dt { color: #fff; font-weight: 750; }
.value-list dd { color: #dbe8eb; text-align: left; font-weight: 400; }

.content-entry-section { background: var(--brand-dark); color: #fff; }
.content-entry-section .section-intro { color: #cbdcdf; }
.content-entry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.content-entry-card { padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.07); color: #fff; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.content-entry-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.11); }
.content-entry-card > span { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .1em; }
.content-entry-card h3 { margin: 10px 0 12px; font-size: 24px; }
.content-entry-card p { color: #cbdcdf; }
.content-entry-card strong { color: #fff; }

.narrow-wide { max-width: 900px; }
.content-hero { padding: 76px 0 68px; background: radial-gradient(circle at 82% 20%, var(--accent-soft), transparent 30%), linear-gradient(135deg, var(--hero-start), var(--hero-end)); }
.content-hero h1 { max-width: 900px; margin: 18px 0; font-size: clamp(42px, 7vw, 68px); }
.content-lead { max-width: 800px; margin: 0; color: #38555e; font-size: 20px; }
.breadcrumb { display: flex; gap: 9px; margin: 0 0 28px; color: var(--muted); font-size: 13px; }
.breadcrumb a { text-decoration: none; }
.content-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: var(--muted); font-size: 13px; }
.content-intro-grid { align-items: start; }
.guide-summary h2 { margin-top: 0; }
.clean-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding-left: 24px; }
.clean-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.pillar-card { min-height: 235px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.pillar-card > span { color: var(--accent); font-weight: 850; }
.pillar-card h3 { margin: 14px 0 10px; font-size: 23px; }
.pillar-card p { color: var(--muted); }
.guide-check-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 64px; align-items: start; }
.check-list { display: grid; gap: 14px; padding: 0; margin: 30px 0 0; list-style: none; counter-reset: content-check; }
.check-list li { counter-increment: content-check; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.check-list li::before { content: counter(content-check, decimal-leading-zero); display: inline-block; width: 42px; color: var(--accent); font-weight: 850; }
.notice-card { padding: 30px; border-left: 4px solid var(--accent); border-radius: 14px; background: var(--soft); }
.notice-card strong { display: block; margin-bottom: 8px; color: var(--brand); }
.notice-card p { margin: 0; color: var(--muted); }
.topic-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.topic-card { padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.topic-card h3 { margin-top: 0; }
.topic-card p { margin-bottom: 0; color: var(--muted); }
.section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.scenario-card { min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 36px rgba(24,58,66,.06); }
.scenario-card > span { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.scenario-card h3 { margin: 14px 0; font-size: 23px; }
.scenario-card p { color: var(--muted); }
.audience-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; }
.large-copy { max-width: 680px; color: #38555e; font-size: 21px; }
.audience-panel { padding: 30px; border-radius: 18px; background: var(--brand-dark); color: #fff; }
.audience-panel h3 { margin-top: 0; }
.audience-panel .clean-list li { color: #dbe8eb; }
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 0; margin: 34px 0 0; list-style: none; }
.roadmap-grid li { padding: 24px; border-top: 3px solid var(--accent); background: var(--soft); }
.roadmap-grid li > span { color: var(--accent); font-weight: 850; }
.roadmap-grid h3 { margin: 12px 0 9px; }
.roadmap-grid p { margin: 0; color: var(--muted); }
.callout-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button.outline-light { border: 1px solid rgba(255,255,255,.55); color: #fff; }

.static-page { min-height: 65vh; }
.static-page h1 { font-size: clamp(38px, 7vw, 66px); }
.static-page > .shell > p { font-size: 18px; }
.not-found { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.not-found h1 { font-size: 58px; }

.site-footer { padding: 52px 0 26px; border-top: 1px solid var(--line); background: #f8fbfb; }
.site-footer p { color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.copyright { padding-top: 26px; border-top: 1px solid var(--line); color: #789096; font-size: 12px; }

@media (max-width: 800px) {
    .shell { width: min(100% - 28px, 1120px); }
    .header-inner { min-height: 64px; }
    nav > a:not(.nav-cta) { display: none; }
    .hero { padding: 68px 0 56px; }
    .hero-grid, .two-column, .faq-layout { grid-template-columns: 1fr; gap: 36px; }
    .use-grid, .steps, .related-grid, .strategy-grid, .launch-grid, .content-entry-grid, .pillar-grid, .guide-check-grid, .topic-card-grid, .scenario-grid, .audience-grid, .roadmap-grid { grid-template-columns: 1fr; }
    .callout, .footer-grid { align-items: flex-start; flex-direction: column; }
    .section { padding: 58px 0; }
}
