:root {
    --bg: #f5f0e8;
    --bg-soft: #fbf8f3;
    --surface: #ffffff;
    --surface-alt: #f7f3ec;
    --ink: #18222c;
    --muted: #586572;
    --soft: #7c8893;
    --line: #d8d1c6;
    --line-strong: #bbb2a5;
    --brand: #17354d;
    --brand-2: #24576b;
    --accent: #a8692e;
    --accent-soft: #fff1df;
    --good: #2f6a53;
    --danger: #b35245;
    --shadow-sm: 0 12px 30px rgba(24, 34, 44, 0.06);
    --shadow-lg: 0 24px 60px rgba(24, 34, 44, 0.1);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
}

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

body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(36, 87, 107, 0.08), transparent 28%),
        linear-gradient(180deg, #f7f2ea 0%, #f4efe7 32%, #f8f5ef 100%);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 242, 234, 0.88);
    border-bottom: 1px solid rgba(187, 178, 165, 0.45);
    backdrop-filter: blur(16px);
}

.nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: grid;
    gap: 2px;
}

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

.brand span {
    font-size: 0.72rem;
    color: var(--soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.94rem;
    color: var(--muted);
}

.nav-links a {
    position: relative;
    padding: 8px 0;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--ink);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--accent);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 24px rgba(23, 53, 77, 0.22);
}

.btn-primary:hover {
    background: #10283a;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    border-color: rgba(187, 178, 165, 0.82);
}

.btn-secondary:hover {
    background: #fff;
    border-color: var(--line-strong);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: currentColor;
}

.section {
    padding: 86px 0;
}

.section-sm {
    padding: 56px 0;
}

.section-band {
    padding: 82px 0;
    background: rgba(255, 255, 255, 0.42);
    border-top: 1px solid rgba(187, 178, 165, 0.35);
    border-bottom: 1px solid rgba(187, 178, 165, 0.35);
}

.section-header {
    max-width: 700px;
    margin-bottom: 34px;
}

.section-header h2,
.hero-copy h1,
.page-hero-copy h1,
.statement h2,
.apply-copy h2 {
    font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", serif;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.section-header h2 {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    margin: 14px 0 12px;
}

.section-header p,
.hero-copy p,
.page-hero-copy p,
.card p,
.note,
.muted,
.sidebar li,
.list li,
.plain-list li,
.problem-body p,
.result-block p,
.proof-caption p,
.timeline-item p,
.report-card p,
.check-item p {
    color: var(--muted);
}

.hero,
.page-hero {
    padding: 40px 0 20px;
}

.home-main {
    display: grid;
    gap: 24px;
}

.hero-shell,
.page-hero-shell,
.apply-shell,
.about-shell,
.sample-shell,
.split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 380px);
    gap: 24px;
    align-items: start;
}

.hero-copy,
.page-hero-copy,
.hero-panel,
.card,
.sidebar,
.form-shell,
.portrait-panel,
.about-panel,
.report-frame,
.table-box,
.statement,
.process-panel,
.process-note {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(187, 178, 165, 0.72);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.hero-copy,
.page-hero-copy,
.form-shell,
.report-frame,
.statement,
.process-panel,
.about-panel,
.portrait-panel,
.hero-panel,
.table-box,
.sidebar,
.card {
    padding: 30px;
}

.hero-copy {
    padding: 44px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 236, 0.92)),
        #fff;
}

.hero-copy h1,
.page-hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    margin: 16px 0 16px;
    max-width: none;
}

.hero-copy p,
.page-hero-copy p {
    font-size: 1.04rem;
    max-width: 40rem;
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 241, 223, 0.72);
    border: 1px solid rgba(168, 105, 46, 0.16);
    color: #815226;
    font-size: 0.84rem;
    font-weight: 600;
}

.hero-panel {
    background:
        linear-gradient(180deg, #17354d 0%, #21455f 100%);
    color: #f7f8fa;
    border-color: rgba(23, 53, 77, 0.82);
    box-shadow: var(--shadow-lg);
}

.hero-panel .eyebrow,
.proof-caption .eyebrow {
    color: rgba(255, 231, 205, 0.88);
}

.hero-panel .eyebrow::before,
.proof-caption .eyebrow::before {
    background: currentColor;
}

.hero-panel h3,
.proof-caption h2,
.sidebar h3,
.card h3,
.about-panel h3,
.form-shell h3,
.table-box h3,
.report-frame h3,
.process-panel h3,
.statement h2 {
    font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", serif;
    letter-spacing: -0.02em;
}

.hero-panel h3 {
    font-size: 1.55rem;
    margin: 10px 0 14px;
}

.hero-questions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.hero-question {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-question strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.98rem;
}

.hero-question span {
    display: block;
    color: rgba(240, 243, 246, 0.76);
    font-size: 0.88rem;
    line-height: 1.55;
}

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

.hero-stat {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(247, 243, 236, 0.88);
    border: 1px solid rgba(187, 178, 165, 0.72);
}

.hero-stat strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--brand);
    margin-bottom: 8px;
}

.hero-stat span {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.hero-panel p {
    color: rgba(240, 243, 246, 0.78);
}

.hero-grid,
.stats-grid,
.grid-2,
.grid-3,
.metric-grid,
.mini-grid {
    display: grid;
    gap: 16px;
}

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

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

.hero-cell {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cell strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 6px;
}

.hero-cell span {
    display: block;
    color: rgba(240, 243, 246, 0.75);
    font-size: 0.88rem;
    line-height: 1.55;
}

.hero-meta {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 10px;
    color: rgba(240, 243, 246, 0.78);
    font-size: 0.9rem;
}

.proof-strip {
    margin-top: 18px;
}

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

.proof-stat {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(187, 178, 165, 0.72);
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
}

.proof-stat strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1;
    margin-bottom: 8px;
    color: var(--brand);
}

.proof-stat span {
    display: block;
    font-size: 0.93rem;
    color: var(--muted);
}

.problems-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: start;
}

.statement {
    padding: 34px;
    position: sticky;
    top: 108px;
}

.statement h2 {
    font-size: clamp(2.2rem, 4vw, 3.35rem);
    margin: 14px 0 14px;
}

.statement .btn-row {
    margin-top: 24px;
}

.problem-stack {
    display: grid;
    gap: 18px;
}

.problem-item,
.result-block,
.timeline-item,
.check-item,
.contact-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(187, 178, 165, 0.72);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.problem-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 22px;
    padding: 24px;
}

.problem-no {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(23, 53, 77, 0.12), rgba(36, 87, 107, 0.08));
    color: var(--brand);
    font-size: 1.8rem;
    font-weight: 800;
}

.problem-body h3,
.result-block h3,
.timeline-item h3,
.check-item h3,
.contact-card h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", serif;
    letter-spacing: -0.02em;
}

.results-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

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

.result-block {
    padding: 24px;
}

.result-block strong {
    display: inline-flex;
    min-width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(23, 53, 77, 0.08);
    color: var(--brand);
    font-size: 0.9rem;
}

.cta-side {
    display: grid;
    gap: 16px;
}

.home-deck {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(340px, 420px);
    gap: 24px;
    align-items: stretch;
}

.deck-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(187, 178, 165, 0.72);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

.deck-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.deck-intro h2 {
    font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", serif;
    font-size: clamp(1.95rem, 3.4vw, 2.8rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-top: 10px;
}

.deck-tag {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(23, 53, 77, 0.08);
    color: var(--brand);
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

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

.deliverable-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(247, 243, 236, 0.78);
    border: 1px solid rgba(187, 178, 165, 0.66);
}

.deliverable-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(23, 53, 77, 0.08);
    color: var(--brand);
    margin-bottom: 12px;
    font-size: 0.88rem;
}

.deliverable-card h3 {
    font-size: 1.16rem;
    margin-bottom: 6px;
    font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", serif;
}

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

.proof-mini {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(187, 178, 165, 0.62);
    background: #fff;
}

.proof-mini strong {
    display: block;
    font-size: 1.15rem;
    color: var(--brand);
    margin-bottom: 6px;
}

.proof-mini span {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.deck-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(23, 53, 77, 0.06), rgba(23, 53, 77, 0.03));
    border: 1px solid rgba(187, 178, 165, 0.62);
}

.deck-footer strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.deck-footer p {
    color: var(--muted);
    font-size: 0.9rem;
}

.compact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 420px);
    gap: 24px;
    align-items: start;
}

.compact-stack {
    display: grid;
    gap: 18px;
}

.compact-intro {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(187, 178, 165, 0.72);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

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

.compact-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(187, 178, 165, 0.7);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

.compact-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(23, 53, 77, 0.08);
    color: var(--brand);
    margin-bottom: 12px;
    font-size: 0.88rem;
}

.compact-card h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", serif;
}

.cta-panel {
    background: #fff;
    border: 1px solid rgba(187, 178, 165, 0.72);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.cta-panel h3 {
    font-size: 1.35rem;
    margin: 10px 0 10px;
    font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", serif;
}

.cta-panel .btn-row {
    margin-top: 18px;
}

.list,
.plain-list,
.sidebar ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.list li,
.sidebar li {
    position: relative;
    padding-left: 18px;
}

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

.proof-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 24px;
    align-items: stretch;
}

.proof-caption {
    background: linear-gradient(180deg, #17354d 0%, #20435e 100%);
    color: #f7f8fa;
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow-lg);
}

.proof-caption h2 {
    font-size: clamp(2.1rem, 4vw, 3.15rem);
    margin: 12px 0 14px;
    font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", serif;
    letter-spacing: -0.03em;
}

.proof-board {
    display: grid;
    gap: 18px;
}

.proof-card {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 22px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(187, 178, 165, 0.72);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.proof-kpi {
    display: grid;
    align-content: start;
    gap: 6px;
}

.proof-kpi strong {
    font-size: 2rem;
    line-height: 1;
    color: var(--brand);
}

.proof-kpi span {
    color: var(--soft);
    font-size: 0.86rem;
}

.proof-card h3 {
    font-size: 1.32rem;
    margin-bottom: 6px;
    font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", serif;
}

.proof-card p + p {
    margin-top: 8px;
}

.process-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
}

.process-panel {
    display: grid;
    gap: 18px;
}

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

.timeline-item {
    padding: 24px;
}

.timeline-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(23, 53, 77, 0.09);
    color: var(--brand);
    font-weight: 800;
}

.process-note {
    padding: 28px;
}

.sidebar h3,
.card h3,
.about-panel h3,
.form-shell h3,
.report-frame h3,
.table-box h3,
.process-note h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.note {
    font-size: 0.92rem;
}

.contact-grid {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.contact-card {
    padding: 18px 20px;
}

.contact-card span {
    display: block;
    font-size: 0.82rem;
    color: var(--soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

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

.form-shell {
    background: rgba(255, 255, 255, 0.94);
}

.form-shell.compact-form {
    padding: 24px;
}

.compact-form .form-grid {
    margin-top: 16px;
}

.compact-form .field textarea {
    min-height: 100px;
}

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

.contact-inline .contact-card {
    padding: 14px 16px;
}

.contact-inline .contact-card strong {
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.field {
    display: grid;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.88rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border-radius: 14px;
    border: 1px solid rgba(187, 178, 165, 0.92);
    background: #fffdfa;
    color: var(--ink);
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

textarea {
    min-height: 128px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(36, 87, 107, 0.78);
    box-shadow: 0 0 0 4px rgba(36, 87, 107, 0.1);
    background: #fff;
}

.form-note {
    margin-top: 14px;
    font-size: 0.84rem;
    color: var(--soft);
}

.thanks {
    display: none;
    margin-top: 18px;
    padding: 20px;
    border-radius: 18px;
    background: #f1f8f4;
    border: 1px solid rgba(47, 106, 83, 0.18);
}

.thanks.show {
    display: grid;
    gap: 12px;
}

.summary-box {
    padding: 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(187, 178, 165, 0.72);
    color: var(--muted);
    white-space: pre-line;
    font-size: 0.9rem;
}

.page-hero-copy {
    background: rgba(255, 255, 255, 0.88);
}

.report-frame {
    display: grid;
    gap: 24px;
}

.report-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(187, 178, 165, 0.72);
}

.report-head p {
    max-width: 38rem;
}

.report-tag {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    height: 36px;
    border-radius: 999px;
    background: rgba(23, 53, 77, 0.08);
    color: var(--brand);
    font-size: 0.84rem;
    font-weight: 700;
}

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

.metric {
    padding: 18px;
    border-radius: 18px;
    background: var(--bg-soft);
    border: 1px solid rgba(187, 178, 165, 0.62);
}

.metric strong {
    display: block;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--brand);
    margin-bottom: 8px;
}

.metric span {
    display: block;
    font-size: 0.86rem;
    color: var(--muted);
}

.report-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
}

.report-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(247, 243, 236, 0.7);
    border: 1px solid rgba(187, 178, 165, 0.68);
}

.report-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.table-box {
    overflow: hidden;
}

.table-box table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.table-box th,
.table-box td {
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid rgba(187, 178, 165, 0.62);
}

.table-box th {
    color: var(--soft);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.good {
    color: var(--good);
    font-weight: 700;
}

.danger {
    color: var(--danger);
    font-weight: 700;
}

.checks {
    display: grid;
    gap: 14px;
}

.check-item {
    padding: 22px;
}

.resource-table {
    display: grid;
    gap: 12px;
}

.resource-row {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 150px;
    gap: 18px;
    align-items: start;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(187, 178, 165, 0.72);
    box-shadow: var(--shadow-sm);
}

.resource-row strong {
    font-size: 1rem;
}

.resource-row span {
    color: var(--soft);
    font-size: 0.85rem;
}

.resource-tag {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(23, 53, 77, 0.08);
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 700;
}

.about-shell {
    grid-template-columns: 360px minmax(0, 1fr);
}

.portrait {
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 1 / 1.08;
    margin-bottom: 18px;
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.quote {
    padding: 18px 20px;
    border-left: 3px solid var(--accent);
    background: rgba(255, 241, 223, 0.6);
    border-radius: 0 14px 14px 0;
    margin-top: 18px;
}

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

.workflow span {
    display: grid;
    place-items: center;
    min-height: 56px;
    padding: 10px 12px;
    text-align: center;
    font-size: 0.88rem;
    border-radius: 16px;
    background: rgba(247, 243, 236, 0.86);
    border: 1px solid rgba(187, 178, 165, 0.62);
    color: var(--muted);
}

.footer-shell {
    padding: 26px 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--muted);
    font-size: 0.92rem;
}

.mobile-bar {
    display: none !important;
}

@media (max-width: 1080px) {
    .hero-shell,
    .page-hero-shell,
    .apply-shell,
    .about-shell,
    .sample-shell,
    .split,
    .proof-shell,
    .results-layout,
    .process-shell,
    .problems-shell {
        grid-template-columns: 1fr;
    }

    .statement {
        position: static;
    }

    .proof-strip .container,
    .results-board,
    .timeline,
    .report-metrics,
    .report-grid,
    .home-deck,
    .deliverables-grid,
    .proof-line,
    .hero-stats,
    .contact-inline,
    .compact-shell,
    .compact-deliverables,
    .resource-row,
    .workflow {
        grid-template-columns: 1fr;
    }

    .resource-tag {
        justify-self: start;
    }
}

@media (max-width: 860px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

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

    .section,
    .section-band {
        padding: 64px 0;
    }

    .section-sm {
        padding: 44px 0;
    }

    .hero-copy,
    .page-hero-copy,
    .form-shell,
    .report-frame,
    .statement,
    .process-panel,
    .about-panel,
    .portrait-panel,
    .hero-panel,
    .table-box,
    .sidebar,
    .card,
    .proof-caption {
        padding: 22px;
        border-radius: 22px;
    }

    .hero-copy h1,
    .page-hero-copy h1 {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .hero-grid,
    .form-grid,
    .grid-2,
    .grid-3,
    .metric-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .problem-item,
    .proof-card {
        grid-template-columns: 1fr;
    }

    .problem-no {
        width: 62px;
        height: 62px;
        border-radius: 18px;
        font-size: 1.3rem;
    }

    .proof-kpi strong {
        font-size: 1.6rem;
    }

    .proof-strip {
        margin-top: 16px;
    }

    .footer-shell {
        padding-bottom: 24px;
        flex-direction: column;
    }

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