:root {
    --bg: #f5efe6;
    --bg-strong: #efe6da;
    --surface: rgba(255, 255, 255, 0.8);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --ink: #1f2a33;
    --ink-soft: #5d6b73;
    --line: rgba(31, 42, 51, 0.1);
    --brand: #157a68;
    --brand-deep: #0f5a4c;
    --accent: #e98c4a;
    --accent-soft: #f6cba7;
    --shadow: 0 24px 60px rgba(35, 45, 55, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    line-height: 1.6;
    background:
        radial-gradient(circle at top left, rgba(255, 206, 168, 0.55), transparent 24%),
        radial-gradient(circle at 85% 10%, rgba(92, 181, 153, 0.22), transparent 22%),
        linear-gradient(180deg, #f8f3ec 0%, #f2ebe1 54%, #ede3d6 100%);
}

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

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

.page {
    width: min(calc(100% - 28px), var(--max-width));
    margin: 14px auto 44px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 28px rgba(24, 37, 50, 0.08);
    position: sticky;
    top: 10px;
    z-index: 20;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--brand) 0%, #49b391 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-copy strong {
    display: block;
    font-size: 0.96rem;
    white-space: nowrap;
}

.brand-copy span {
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
    background: rgba(21, 122, 104, 0.1);
    color: var(--brand-deep);
}

.hero,
.panel,
.contact-band {
    border-radius: 36px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.hero {
    padding: 42px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 221, 191, 0.92), transparent 24%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 249, 242, 0.92) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--brand-deep);
    background: rgba(21, 122, 104, 0.1);
}

.hero h1,
.section-title,
.project-hero h1 {
    font-family: "Noto Serif SC", serif;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.hero h1 {
    font-size: clamp(2.7rem, 5vw, 4.9rem);
    max-width: 8ch;
    margin-bottom: 16px;
}

.hero p {
    max-width: 580px;
    color: var(--ink-soft);
    font-size: 1.03rem;
    margin-bottom: 26px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease;
}

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

.button.primary {
    background: linear-gradient(135deg, var(--brand) 0%, #38b68d 100%);
    color: #fff;
}

.button.secondary {
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--line);
}

.hero-side {
    padding: 26px;
    border-radius: 30px;
    background: linear-gradient(155deg, #173734 0%, #244743 100%);
    color: #fff6ec;
}

.hero-side h2 {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.hero-side p {
    color: rgba(255, 246, 236, 0.74);
    margin-bottom: 18px;
}

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

.metric {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
}

.metric strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.grid-3,
.grid-2 {
    display: grid;
    gap: 16px;
}

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

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

.section {
    margin-top: 20px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-copy {
    max-width: 460px;
    color: var(--ink-soft);
}

.card {
    padding: 24px;
    border-radius: 28px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(24, 37, 50, 0.06);
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.project-card.featured {
    background: linear-gradient(160deg, #173a39 0%, #25504a 100%);
    color: #fff7ee;
}

.project-card.featured p,
.project-card.featured .muted {
    color: rgba(255, 247, 238, 0.76);
}

.project-card h3,
.mini-panel h3,
.detail-card h2 {
    font-size: 1.38rem;
    line-height: 1.16;
}

.project-card h3 {
    font-family: "Noto Serif SC", serif;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(21, 122, 104, 0.08);
    color: var(--brand-deep);
}

.project-card.featured .pill {
    background: rgba(255, 255, 255, 0.12);
    color: #fff2dd;
}

.project-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.mini-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 15px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
}

.project-card.featured .mini-link {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.12);
}

.mini-link.primary {
    background: linear-gradient(135deg, var(--brand) 0%, #38b68d 100%);
    color: #fff;
    border-color: transparent;
}

.project-card.featured .mini-link.primary {
    background: linear-gradient(135deg, #ffb486 0%, #ef8d55 100%);
    color: #1f2a33;
}

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

.intro-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 16px;
    align-items: stretch;
}

.intro-side {
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(21, 122, 104, 0.1) 0%, rgba(233, 140, 74, 0.08) 100%);
    border: 1px solid var(--line);
}

.intro-side strong {
    display: block;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-deep);
    margin-bottom: 12px;
}

.intro-side h3 {
    font-family: "Noto Serif SC", serif;
    font-size: 1.7rem;
    line-height: 1.18;
    margin-bottom: 12px;
}

.intro-points {
    display: grid;
    gap: 12px;
}

.intro-point {
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.intro-point strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 0.96rem;
    letter-spacing: 0;
    text-transform: none;
}

.mini-panel {
    padding: 22px;
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.mini-panel p,
.muted {
    color: var(--ink-soft);
}

.contact-band {
    margin-top: 20px;
    padding: 28px;
    background: linear-gradient(145deg, #173a39 0%, #234b46 100%);
    color: #fff4e6;
}

.contact-band p {
    color: rgba(255, 244, 230, 0.74);
    margin-top: 10px;
}

.project-hero {
    padding: 38px;
}

.project-hero h1 {
    font-size: clamp(2.4rem, 4vw, 4.3rem);
    margin: 12px 0 10px;
}

.project-hero p {
    color: var(--ink-soft);
    max-width: 680px;
}

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

.meta-box {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
}

.meta-box strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    margin-top: 20px;
}

.detail-card {
    padding: 26px;
    border-radius: 28px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.detail-card h2 {
    font-family: "Noto Serif SC", serif;
    margin-bottom: 14px;
}

.list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.list li {
    position: relative;
    padding-left: 18px;
    color: var(--ink-soft);
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.footer {
    text-align: center;
    padding: 24px 6px 8px;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.mood-hero {
    background:
        radial-gradient(circle at top right, rgba(255, 196, 174, 0.9), transparent 22%),
        radial-gradient(circle at left 18%, rgba(181, 234, 215, 0.55), transparent 26%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 242, 0.94) 100%);
}

.mood-hero-grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 18px;
    align-items: center;
}

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

.proof-box {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
}

.proof-box strong {
    display: block;
    font-size: 1.16rem;
    margin-bottom: 4px;
}

.phone-showcase {
    padding: 22px;
    border-radius: 32px;
    background: linear-gradient(160deg, #163938 0%, #224845 100%);
    color: #fff6eb;
    box-shadow: 0 28px 60px rgba(23, 44, 47, 0.22);
}

.phone-shell {
    width: min(100%, 320px);
    margin: 0 auto;
    padding: 14px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.14);
}

.phone-screen {
    border-radius: 24px;
    padding: 18px;
    background:
        radial-gradient(circle at top right, rgba(255, 183, 178, 0.34), transparent 30%),
        linear-gradient(180deg, #fffaf7 0%, #f5fff8 100%);
    color: var(--ink);
}

.phone-header {
    padding: 12px 14px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    background: var(--brand-gradient, linear-gradient(120deg, #ff9a9e 0%, #ffc3a0 100%));
    color: #fff;
}

.phone-header strong {
    display: block;
    font-size: 1.02rem;
}

.phone-header span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.86);
}

.phone-card {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.84);
    margin-bottom: 10px;
    box-shadow: 0 10px 22px rgba(255, 154, 162, 0.14);
}

.phone-card:last-child {
    margin-bottom: 0;
}

.phone-card p {
    font-size: 0.84rem;
    color: var(--ink-soft);
}

.tiny-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tiny-tags span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff3f0;
    color: #d16a58;
    font-size: 0.76rem;
    font-weight: 700;
}

.summary-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.timeline-compact {
    display: grid;
    gap: 12px;
}

.timeline-compact article {
    padding: 18px 18px 18px 22px;
    border-radius: 20px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    position: relative;
}

.timeline-compact article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff9aa2 0%, #ffb347 100%);
}

.timeline-compact small {
    display: block;
    color: var(--brand-deep);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.quote-card {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 250, 245, 0.94) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid var(--line);
}

.quote-card blockquote {
    font-family: "Noto Serif SC", serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--ink);
}

.quote-card p {
    margin-top: 12px;
    color: var(--ink-soft);
}

.visual-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 16px;
}

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

.feature-tile {
    padding: 18px;
    border-radius: 22px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    min-height: 152px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-tile strong {
    font-size: 1.02rem;
}

.tile-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #fff0ea 0%, #ffe1cf 100%);
}

.journey-card {
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(160deg, #183b39 0%, #244844 100%);
    color: #fff6eb;
}

.journey-card h3 {
    font-family: "Noto Serif SC", serif;
    font-size: 1.36rem;
    margin-bottom: 14px;
}

.journey-steps {
    display: grid;
    gap: 12px;
}

.journey-step {
    padding: 14px 14px 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    position: relative;
}

.journey-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffb486 0%, #ef8d55 100%);
}

.journey-step strong {
    display: block;
    margin-bottom: 4px;
}

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

.compact-metric {
    padding: 16px;
    border-radius: 18px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    text-align: center;
}

.compact-metric strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.module-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.module-chip {
    padding: 16px 12px;
    border-radius: 20px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    text-align: center;
}

.module-chip strong {
    display: block;
    font-size: 0.96rem;
    margin-bottom: 6px;
}

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

.screen-card {
    padding: 16px;
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.screen-mock {
    padding: 14px;
    border-radius: 22px;
    min-height: 220px;
    margin-bottom: 14px;
    background:
        radial-gradient(circle at top right, rgba(255, 183, 178, 0.34), transparent 28%),
        linear-gradient(180deg, #fffaf7 0%, #f4fff8 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72);
}

.mock-top {
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 10px;
    background: linear-gradient(120deg, #ff9a9e 0%, #ffc3a0 100%);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
}

.mock-block,
.mock-line,
.mock-tags {
    border-radius: 14px;
}

.mock-block {
    padding: 12px;
    background: rgba(255,255,255,0.84);
    margin-bottom: 10px;
}

.mock-line {
    height: 10px;
    background: rgba(31, 42, 51, 0.1);
    margin-bottom: 8px;
}

.mock-line.short {
    width: 58%;
}

.mock-line.mid {
    width: 76%;
}

.mock-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mock-tags span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff0ea;
    color: #d06b58;
    font-size: 0.75rem;
    font-weight: 700;
}

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

.highlight-card {
    padding: 18px;
    border-radius: 22px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.highlight-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.poster-roadmap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.roadmap-card {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(160deg, #173a39 0%, #244844 100%);
    color: #fff6eb;
}

.roadmap-card small {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.12);
    color: #ffe6c8;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.roadmap-card h3 {
    font-size: 1.06rem;
    margin-bottom: 8px;
}

.roadmap-card p {
    color: rgba(255,246,235,0.76);
    font-size: 0.9rem;
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.hero-mini-card {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid var(--line);
}

.hero-mini-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.hero-mini-card span {
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.big-screenshot {
    padding: 22px;
    border-radius: 30px;
    background: linear-gradient(160deg, #173a39 0%, #244844 100%);
    box-shadow: 0 28px 60px rgba(23, 44, 47, 0.22);
    display: grid;
    place-items: center;
}

.big-screen {
    width: min(100%, 320px);
    min-height: 620px;
    border-radius: 34px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.14);
}

.big-screen-inner {
    border-radius: 24px;
    padding: 18px;
    min-height: 592px;
    background:
        radial-gradient(circle at top right, rgba(255, 183, 178, 0.34), transparent 28%),
        linear-gradient(180deg, #fffaf7 0%, #f4fff8 100%);
}

.screen-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 16px;
    background: linear-gradient(120deg, #ff9a9e 0%, #ffc3a0 100%);
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.screen-stage {
    display: grid;
    gap: 12px;
}

.stage-block {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.84);
    box-shadow: 0 10px 22px rgba(255, 154, 162, 0.12);
}

.stage-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
}

.stage-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stage-pills span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff0ea;
    color: #d06b58;
    font-size: 0.75rem;
    font-weight: 700;
}

.stage-chart {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    align-items: end;
    height: 90px;
}

.stage-chart span {
    display: block;
    border-radius: 12px 12px 6px 6px;
    background: linear-gradient(180deg, #ffb6a6 0%, #f6c46d 100%);
}

.stage-chart span:nth-child(1) { height: 42%; }
.stage-chart span:nth-child(2) { height: 68%; }
.stage-chart span:nth-child(3) { height: 84%; }
.stage-chart span:nth-child(4) { height: 56%; }
.stage-chart span:nth-child(5) { height: 72%; }

.phone-bottom-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.phone-bottom-tabs span {
    padding: 8px 0;
    border-radius: 12px;
    background: rgba(255,255,255,0.7);
    text-align: center;
    font-size: 0.72rem;
    color: var(--ink-soft);
}

.phone-bottom-tabs span.active {
    background: #ffe7de;
    color: #d36d5b;
    font-weight: 700;
}

.dashboard-hero {
    background:
        radial-gradient(circle at top right, rgba(168, 208, 255, 0.44), transparent 24%),
        radial-gradient(circle at left 16%, rgba(191, 233, 220, 0.5), transparent 24%),
        linear-gradient(150deg, rgba(255,255,255,0.96) 0%, rgba(245,249,255,0.94) 100%);
}

.dashboard-shell {
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(160deg, #182b42 0%, #203a57 100%);
    box-shadow: 0 28px 60px rgba(17, 31, 50, 0.2);
}

.dashboard-screen {
    border-radius: 22px;
    padding: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.dashboard-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 16px;
    margin-bottom: 12px;
    background: linear-gradient(120deg, #3d7eff 0%, #66b1ff 100%);
    color: #fff;
    font-weight: 700;
}

.dashboard-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.dashboard-kpi {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.88);
}

.dashboard-kpi strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.dashboard-panels {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 10px;
}

.dashboard-panel {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.86);
}

.dashboard-panel h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.bars {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    align-items: end;
    height: 110px;
}

.bars span {
    display: block;
    border-radius: 12px 12px 6px 6px;
    background: linear-gradient(180deg, #8bb8ff 0%, #4d88ff 100%);
}

.bars span:nth-child(1) { height: 38%; }
.bars span:nth-child(2) { height: 55%; }
.bars span:nth-child(3) { height: 82%; }
.bars span:nth-child(4) { height: 62%; }
.bars span:nth-child(5) { height: 72%; }
.bars span:nth-child(6) { height: 48%; }

.donut-row {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 12px;
    align-items: center;
}

.donut {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: conic-gradient(#4d88ff 0 35%, #72d1c4 35% 62%, #ffb870 62% 100%);
    position: relative;
}

.donut::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: #f8fbff;
}

.legend-list {
    display: grid;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft);
    font-size: 0.84rem;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.blue { background: #4d88ff; }
.legend-dot.green { background: #72d1c4; }
.legend-dot.orange { background: #ffb870; }

@media (max-width: 980px) {
    .hero-grid,
    .detail-grid,
    .grid-3,
    .grid-2,
    .mini-panels,
    .project-meta,
    .intro-card,
    .mood-hero-grid,
    .mood-proof,
    .summary-strip,
    .visual-grid,
    .compact-metrics,
    .module-strip,
    .highlight-grid,
    .poster-roadmap,
    .hero-mini-grid {
        grid-template-columns: 1fr;
    }

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

    .screen-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .page {
        width: min(calc(100% - 16px), var(--max-width));
    }

    .topbar {
        padding: 14px;
        border-radius: 26px;
        align-items: flex-start;
    }

    .nav {
        justify-content: flex-start;
    }

    .hero,
    .project-hero,
    .contact-band {
        padding: 24px;
        border-radius: 28px;
    }

    .hero h1 {
        max-width: none;
    }
}
