:root {
    --teal-900: #003b3a;
    --teal-800: #004f4c;
    --teal-700: #006b66;
    --teal-600: #00877f;
    --teal-500: #00a19c;
    --teal-300: #67ccc5;
    --teal-100: #d9f2ef;
    --teal-050: #edf8f6;
    --ink-950: #101b1c;
    --ink-900: #172526;
    --ink-800: #253738;
    --ink-700: #405051;
    --ink-600: #5b6a6b;
    --sand-200: #e7e2d7;
    --sand-100: #f3f0e9;
    --sand-050: #faf8f3;
    --white: #fff;
    --danger: #a43d34;
    --success: #0c6f55;
    --border: rgba(16, 27, 28, .14);
    --shadow: 0 24px 70px rgba(13, 34, 35, .12);
    --font-display: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
    --font-body: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
    --container: 1240px;
    --header-height: 86px;
    --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
    margin: 0;
    color: var(--ink-900);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1.25rem; }
h1, h2, h3, h4 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.035em;
}
h1 { font-size: clamp(3rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
strong { font-weight: 650; }
address { font-style: normal; }
::selection { background: var(--teal-500); color: var(--white); }
:focus-visible { outline: 3px solid var(--teal-300); outline-offset: 4px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 900px; }
.container--article { max-width: 780px; }
.section { padding: 96px 0; }
.section--large { padding: 136px 0; }
.section--sand { background: var(--sand-050); }
.section--ink { color: var(--white); background: var(--ink-950); }
.lead { color: var(--ink-800); font-size: clamp(1.15rem, 2vw, 1.42rem); line-height: 1.55; }
.section--ink .lead { color: rgba(255,255,255,.78); }
.fine-print { color: var(--ink-600); font-size: .86rem; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; top: 10px; left: 10px; z-index: 9999; padding: 10px 16px;
    color: var(--white); background: var(--ink-950); transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
    display: flex; align-items: center; gap: 12px; margin: 0 0 20px;
    color: var(--teal-700); font-size: .72rem; font-weight: 700;
    line-height: 1; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 1px; content: ""; background: currentColor; }
.eyebrow--light { color: var(--teal-300); }

.button {
    display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 18px;
    padding: 13px 24px; border: 1px solid transparent; border-radius: var(--radius);
    font-size: .84rem; font-weight: 700; letter-spacing: .035em; line-height: 1.2;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 43px; padding: 10px 18px; color: var(--white) !important; background: var(--teal-700); }
.button--small:hover { background: var(--ink-950); }
.button--primary { color: var(--white); background: var(--teal-700); }
.button--primary:hover { background: var(--teal-900); }
.button--light { color: var(--ink-950); background: var(--white); }
.button--light:hover { color: var(--white); background: var(--teal-600); }
.button--outline { color: var(--teal-800); border-color: var(--teal-700); background: transparent; }
.button--outline:hover { color: var(--white); background: var(--teal-700); }
.button--full { width: 100%; }
.text-link {
    display: inline-flex; align-items: center; gap: 12px; padding-bottom: 5px; border-bottom: 1px solid currentColor;
    color: var(--teal-800); font-size: .85rem; font-weight: 700; line-height: 1.2;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: var(--white); }
.tag {
    display: inline-block; padding: 7px 10px; color: var(--teal-900); background: var(--teal-100);
    font-size: .68rem; font-weight: 750; letter-spacing: .1em; line-height: 1; text-transform: uppercase;
}

.notice-bar { color: var(--white); background: var(--teal-800); }
.notice-bar__inner {
    display: flex; min-height: 36px; align-items: center; justify-content: space-between;
    font-size: .72rem; letter-spacing: .03em;
}
.notice-bar__inner > span { display: flex; align-items: center; gap: 9px; font-weight: 700; text-transform: uppercase; }
.notice-bar__inner a { border-bottom: 1px solid rgba(255,255,255,.45); }
.notice-bar__dot { width: 6px; height: 6px; border-radius: 50%; background: #a8f0d1; box-shadow: 0 0 0 4px rgba(168,240,209,.12); }

.site-header {
    position: relative; z-index: 100; height: var(--header-height); border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.97); transition: box-shadow .25s ease;
}
.site-header.is-sticky { position: sticky; top: 0; box-shadow: 0 8px 30px rgba(16,27,28,.07); }
.site-header__inner { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img { width: 118px; height: auto; }
.brand__divider { width: 1px; height: 32px; background: var(--border); }
.brand__name { color: var(--ink-800); font-size: .74rem; font-weight: 700; letter-spacing: .08em; line-height: 1.28; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(17px, 2.4vw, 34px); }
.primary-nav > a:not(.button) {
    position: relative; padding: 31px 0 28px; color: var(--ink-700); font-size: .79rem; font-weight: 650;
}
.primary-nav > a:not(.button)::after {
    position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; content: "";
    background: var(--teal-600); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.primary-nav > a:hover::after, .primary-nav > a.is-active::after { transform: scaleX(1); }
.primary-nav > a.is-active { color: var(--teal-800); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink-900); transition: .2s ease; }

.home-hero { position: relative; min-height: calc(100svh - 122px); overflow: hidden; color: var(--white); background: var(--ink-950); }
.home-hero__media {
    position: absolute; inset: 0; background: url('../images/kertih-refinery-hero.webp') center / cover no-repeat;
    animation: hero-in 1.8s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes hero-in { from { opacity: .65; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
.home-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(7,25,26,.86) 0%, rgba(7,25,26,.58) 39%, rgba(7,25,26,.1) 70%), linear-gradient(0deg, rgba(7,25,26,.55), transparent 45%);
}
.home-hero__content { position: relative; z-index: 2; padding-top: clamp(100px, 16vh, 170px); padding-bottom: 170px; }
.home-hero h1 { max-width: 900px; margin-bottom: 26px; font-weight: 450; }
.home-hero h1 em { color: var(--teal-300); font-style: normal; }
.home-hero__lead { max-width: 600px; color: rgba(255,255,255,.84); font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.home-hero__actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.home-hero__capacity {
    position: absolute; z-index: 3; right: max(24px, calc((100vw - var(--container)) / 2)); bottom: 0;
    display: flex; min-width: 420px; align-items: center; gap: 22px; padding: 27px 35px; background: var(--teal-600);
}
.home-hero__capacity-number { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 550; letter-spacing: -.05em; line-height: 1; }
.home-hero__capacity span:last-child { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.78); font-size: .75rem; line-height: 1.45; }
.home-hero__capacity strong { color: var(--white); }
.home-hero__scroll {
    position: absolute; z-index: 3; bottom: 25px; left: max(24px, calc((100vw - var(--container)) / 2));
    display: flex; align-items: center; gap: 12px; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.home-hero__scroll span { display: block; width: 1px; height: 38px; background: rgba(255,255,255,.55); }

.fact-strip { color: var(--white); background: var(--ink-950); }
.fact-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { display: flex; flex-direction: column; justify-content: center; min-height: 150px; padding: 30px; border-left: 1px solid rgba(255,255,255,.11); }
.fact:last-child { border-right: 1px solid rgba(255,255,255,.11); }
.fact__value { color: var(--teal-300); font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 550; letter-spacing: -.03em; }
.fact__label { color: rgba(255,255,255,.55); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); align-items: center; gap: clamp(60px, 9vw, 130px); }
.split--overview { grid-template-columns: .82fr 1.18fr; }
.split--safety { grid-template-columns: 1.16fr .84fr; }
.split__content h2 { margin-bottom: 32px; }
.split__content > p:not(.eyebrow) { max-width: 590px; }
.split__content .text-link, .split__content .button { margin-top: 17px; }
.image-frame { position: relative; margin: 0; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame--portrait { height: min(660px, 62vw); }
.image-frame--portrait img { object-position: 56% center; }
.image-frame--wide { height: min(570px, 55vw); }
.image-frame figcaption {
    position: absolute; right: 0; bottom: 0; display: flex; min-width: 300px; align-items: center; gap: 18px;
    padding: 17px 22px; color: var(--white); background: var(--teal-800); font-size: .72rem; font-weight: 600;
}
.image-frame figcaption span { color: var(--teal-300); }
.stat-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); }
.stat-pair div { display: flex; flex-direction: column; }
.stat-pair strong { color: var(--teal-800); font-family: var(--font-display); font-size: 2.2rem; letter-spacing: -.05em; }
.stat-pair span { color: var(--ink-600); font-size: .72rem; }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 64px; }
.section-heading > div { flex: 1.2; }
.section-heading > p, .section-heading > a { max-width: 430px; }
.section-heading > p { color: var(--ink-600); }
.section-heading--light > p { color: rgba(255,255,255,.65); }
.section-heading h2 { margin-bottom: 0; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.capability-card { position: relative; min-height: 430px; padding: 40px; border-right: 1px solid rgba(255,255,255,.15); transition: background .25s ease, transform .25s ease; }
.capability-card:first-child { border-left: 1px solid rgba(255,255,255,.15); }
.capability-card:hover { background: rgba(0,161,156,.12); transform: translateY(-5px); }
.capability-card__number { color: rgba(255,255,255,.38); font-size: .72rem; letter-spacing: .1em; }
.capability-card__icon { display: flex; width: 66px; height: 66px; align-items: center; justify-content: center; margin: 64px 0 33px; border: 1px solid rgba(103,204,197,.55); border-radius: 50%; color: var(--teal-300); font-size: 1.8rem; }
.capability-card h3 { color: var(--white); }
.capability-card p { color: rgba(255,255,255,.6); font-size: .9rem; }
.capability-card__link { position: absolute; bottom: 35px; color: var(--teal-300); font-size: .73rem; font-weight: 700; }

.check-list { margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.check-list li { display: flex; align-items: center; gap: 19px; padding: 15px 0; border-bottom: 1px solid var(--border); color: var(--ink-800); font-size: .9rem; font-weight: 600; }
.check-list li span { color: var(--teal-700); font-size: .66rem; letter-spacing: .1em; }
.check-list--spaced li { padding: 19px 0; }

.supply-banner { position: relative; min-height: 680px; display: flex; align-items: center; overflow: hidden; color: var(--white); }
.supply-banner__image { position: absolute; inset: 0; background: url('../images/marine-crude-terminal.webp') center / cover no-repeat; }
.supply-banner__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,24,32,.92), rgba(4,24,32,.55) 50%, rgba(4,24,32,.15)); }
.supply-banner__content { position: relative; z-index: 1; }
.supply-banner h2 { margin-bottom: 28px; }
.supply-banner p:not(.eyebrow) { max-width: 590px; color: rgba(255,255,255,.75); font-size: 1.1rem; }
.supply-banner__content > div { display: flex; align-items: center; gap: 34px; margin-top: 38px; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: var(--white); }
.news-card__image { position: relative; display: block; height: 260px; overflow: hidden; background: var(--sand-100); }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-card__image img { transform: scale(1.035); }
.news-card__image span { position: absolute; bottom: 0; left: 0; padding: 9px 12px; color: var(--teal-900); background: var(--teal-100); font-size: .65rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.news-card__body { padding: 26px 4px 5px; }
.news-card__body time { display: block; margin-bottom: 12px; color: var(--ink-600); font-size: .7rem; letter-spacing: .04em; }
.news-card__body h3 { min-height: 53px; margin-bottom: 21px; font-size: 1.25rem; line-height: 1.28; }
.news-card__body h3 a:hover { color: var(--teal-700); }
.news-card__body p { color: var(--ink-600); font-size: .87rem; }
.contact-ribbon { padding: 72px 0; color: var(--white); background: var(--teal-800); }
.contact-ribbon__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-ribbon h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.4rem); }

.page-hero { position: relative; min-height: 610px; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--ink-950); }
.page-hero::before { position: absolute; inset: 0; content: ""; background: var(--hero-image) var(--hero-position, center) / cover no-repeat; }
.page-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,25,26,.85), rgba(6,25,26,.35) 65%, rgba(6,25,26,.12)), linear-gradient(0deg, rgba(6,25,26,.75), transparent 70%); }
.page-hero__content { position: relative; z-index: 1; padding-top: 130px; padding-bottom: 88px; }
.page-hero h1 { max-width: 930px; margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.6rem); }
.page-hero__content > p:last-child { max-width: 680px; margin-bottom: 0; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.8vw, 1.23rem); }

.timeline { position: relative; margin-top: 30px; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 134px; width: 1px; content: ""; background: var(--border); }
.timeline__item { display: grid; grid-template-columns: 110px 1fr; gap: 50px; padding: 37px 0; border-bottom: 1px solid var(--border); }
.timeline__year { color: var(--teal-700); font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; }
.timeline__item > div { position: relative; padding-left: 28px; }
.timeline__item > div::before { position: absolute; top: 7px; left: -31px; width: 11px; height: 11px; content: ""; border: 3px solid var(--sand-050); border-radius: 50%; background: var(--teal-600); box-shadow: 0 0 0 1px var(--teal-600); }
.timeline__item h3 { margin-bottom: 8px; }
.timeline__item p { max-width: 700px; margin-bottom: 0; color: var(--ink-600); }
.leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.14); }
.leadership-card { min-height: 280px; padding: 42px; background: var(--ink-950); transition: background .25s ease; }
.leadership-card:hover { background: #152d2e; }
.leadership-card > span { display: inline-block; margin-bottom: 68px; color: var(--teal-300); font-size: .68rem; }
.leadership-card h3 { font-size: 1.35rem; }
.leadership-card p { max-width: 440px; margin: 0; color: rgba(255,255,255,.55); font-size: .88rem; }
.section-note { margin-top: 30px; color: var(--ink-600); font-size: .78rem; }
.section-note--light { color: rgba(255,255,255,.47); }
.centred-heading { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.centred-heading .eyebrow { justify-content: center; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); }
.value-card { min-height: 300px; padding: 36px 30px; border-right: 1px solid var(--border); }
.value-card:last-child { border: 0; }
.value-card > strong { display: block; margin-bottom: 65px; color: var(--teal-700); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.value-card h3 { font-size: 1.2rem; }
.value-card p { color: var(--ink-600); font-size: .85rem; }

.operations-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; margin-bottom: 70px; }
.operations-intro h2 { max-width: 650px; }
.capacity-panel { padding: 52px 56px; color: var(--white); background: var(--teal-800); }
.capacity-panel__number { display: flex; align-items: flex-end; gap: 15px; }
.capacity-panel__number strong { font-family: var(--font-display); font-size: clamp(3.3rem, 8vw, 6.8rem); font-weight: 450; letter-spacing: -.06em; line-height: .9; }
.capacity-panel__number span { padding-bottom: 9px; color: var(--teal-300); font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.capacity-panel__bar { height: 4px; margin-top: 36px; overflow: hidden; background: rgba(255,255,255,.18); }
.capacity-panel__bar span { display: block; height: 100%; background: var(--teal-300); }
.capacity-panel__legend { display: flex; justify-content: space-between; margin-top: 12px; color: rgba(255,255,255,.62); font-size: .7rem; }
.process-flow { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.process-step { position: relative; min-height: 340px; padding: 35px 25px; border-right: 1px solid rgba(255,255,255,.15); }
.process-step:first-child { border-left: 1px solid rgba(255,255,255,.15); }
.process-step:not(:last-child)::after { position: absolute; top: 51px; right: -8px; z-index: 2; content: "→"; color: var(--teal-300); }
.process-step > span { display: inline-block; margin-bottom: 90px; color: var(--teal-300); font-size: .7rem; }
.process-step h3 { font-size: 1.08rem; line-height: 1.25; }
.process-step p { color: rgba(255,255,255,.55); font-size: .8rem; }
.accordion { margin-top: 30px; border-top: 1px solid var(--border); }
.accordion details { border-bottom: 1px solid var(--border); }
.accordion summary { position: relative; padding: 20px 42px 20px 0; font-size: .93rem; font-weight: 650; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { position: absolute; right: 4px; content: "+"; color: var(--teal-700); font-size: 1.25rem; font-weight: 400; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { padding: 0 34px 18px 0; color: var(--ink-600); font-size: .86rem; }
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); }
.feature { min-height: 250px; padding: 34px; border-right: 1px solid var(--border); }
.feature:last-child { border: 0; }
.feature > span { display: inline-block; margin-bottom: 66px; color: var(--teal-700); font-size: .68rem; }
.feature h3 { font-size: 1.2rem; }
.feature p { color: var(--ink-600); font-size: .86rem; }

.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product-card { position: relative; min-height: 430px; padding: 42px; border: 1px solid var(--border); background: var(--sand-050); }
.product-card__index { position: absolute; top: 28px; right: 30px; color: var(--ink-600); font-size: .67rem; }
.product-card__symbol { display: flex; width: 92px; height: 92px; align-items: center; justify-content: center; margin-bottom: 55px; border-radius: 50%; color: var(--teal-800); background: var(--teal-100); font-family: var(--font-display); font-size: 1.35rem; font-weight: 650; }
.product-card__symbol sub { font-size: .55em; }
.product-card h3 { font-size: 1.6rem; }
.product-card p { max-width: 480px; color: var(--ink-600); }
.product-card ul { display: flex; gap: 20px; margin: 25px 0 0; padding: 18px 0 0; border-top: 1px solid var(--border); list-style: none; }
.product-card li { color: var(--teal-800); font-size: .72rem; font-weight: 700; }
.split--market { align-items: start; }
.market-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.market-steps li { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.market-steps li > span { color: var(--teal-300); font-size: .67rem; }
.market-steps strong { display: block; margin-bottom: 4px; }
.market-steps p { margin: 0; color: rgba(255,255,255,.56); font-size: .84rem; }

.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--border); background: var(--border); }
.pillar-card { min-height: 300px; padding: 34px 28px; background: var(--white); }
.pillar-card span { display: block; margin-bottom: 75px; color: var(--teal-700); font-size: .68rem; }
.pillar-card h3 { font-size: 1.18rem; }
.pillar-card p { color: var(--ink-600); font-size: .84rem; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.metric-card { min-height: 315px; padding: 32px; border: 1px solid rgba(255,255,255,.15); }
.metric-card__icon { display: flex; width: 62px; height: 62px; align-items: center; justify-content: center; margin-bottom: 65px; border-radius: 50%; color: var(--teal-300); background: rgba(0,161,156,.13); font-size: .8rem; font-weight: 700; }
.metric-card h3 { font-size: 1.2rem; }
.metric-card p { color: rgba(255,255,255,.55); font-size: .84rem; }
.split--community { grid-template-columns: .9fr 1.1fr; }
.quote-panel { padding: clamp(40px, 7vw, 80px); color: var(--white); background: var(--teal-800); }
.quote-panel blockquote { margin: 0 0 36px; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.35rem); font-weight: 450; line-height: 1.35; letter-spacing: -.03em; }
.quote-panel p { margin: 0; color: var(--teal-300); font-size: .72rem; text-transform: uppercase; }

.supply-layout { display: grid; grid-template-columns: 1fr 370px; align-items: start; gap: 80px; }
.supply-main > h2 { margin-bottom: 30px; }
.supply-main > h3 { margin-top: 55px; }
.notice-meta { display: flex; flex-wrap: wrap; gap: 20px 36px; margin-bottom: 35px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); color: var(--ink-600); font-size: .72rem; }
.notice-meta span { display: flex; gap: 8px; }
.notice-meta strong { color: var(--ink-900); }
.data-table { margin-top: 25px; border-top: 1px solid var(--border); }
.data-table > div { display: grid; grid-template-columns: 210px 1fr; gap: 30px; padding: 18px 0; border-bottom: 1px solid var(--border); font-size: .86rem; }
.data-table span { color: var(--ink-600); }
.data-table strong { color: var(--ink-900); }
.supply-sidebar { position: sticky; top: 120px; }
.supply-sidebar__card { padding: 34px; border: 1px solid var(--border); background: var(--sand-050); }
.status-pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 11px; color: var(--success); background: #def2e9; font-size: .67rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.status-pill--neutral { color: var(--teal-800); background: var(--teal-100); }
.supply-sidebar__card h3 { margin-top: 28px; }
.supply-sidebar__card ul { margin: 25px 0 30px; padding: 0; list-style: none; }
.supply-sidebar__card li { padding: 10px 0 10px 20px; border-bottom: 1px solid var(--border); color: var(--ink-700); font-size: .81rem; }
.supply-sidebar__card li::before { float: left; margin-left: -20px; content: "✓"; color: var(--teal-700); }
.fraud-card { margin-top: 18px; padding: 26px; color: var(--white); background: var(--ink-950); }
.fraud-card strong { color: var(--teal-300); }
.fraud-card p { margin: 8px 0 0; color: rgba(255,255,255,.6); font-size: .78rem; }
.fraud-card p strong { color: var(--white); }
.evaluation-flow { display: grid; grid-template-columns: repeat(4, 1fr); }
.evaluation-step { position: relative; min-height: 230px; padding: 32px; border: 1px solid var(--border); border-right: 0; background: var(--white); }
.evaluation-step:last-child { border-right: 1px solid var(--border); }
.evaluation-step:not(:last-child)::after { position: absolute; z-index: 2; top: 50%; right: -11px; display: grid; width: 22px; height: 22px; place-items: center; content: "→"; color: var(--teal-700); background: var(--sand-050); }
.evaluation-step > span { display: block; margin-bottom: 62px; color: var(--teal-700); font-size: .68rem; }
.evaluation-step h3 { font-size: 1.15rem; }
.evaluation-step p { margin: 0; color: var(--ink-600); font-size: .82rem; }

.form-layout { display: grid; grid-template-columns: 330px minmax(0, 1fr); align-items: start; gap: 80px; }
.form-intro { position: sticky; top: 120px; }
.form-intro h2 { font-size: clamp(2.5rem, 4vw, 3.7rem); }
.form-help, .response-note { display: flex; flex-direction: column; margin-top: 35px; padding-top: 25px; border-top: 1px solid var(--border); color: var(--ink-600); font-size: .8rem; }
.form-help strong, .response-note strong { margin-bottom: 6px; color: var(--ink-900); }
.form-help a { color: var(--teal-800); }
.form-card { padding: clamp(28px, 5vw, 58px); border: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow); }
.form-card fieldset { margin: 0 0 45px; padding: 0; border: 0; }
.form-card legend { width: 100%; margin-bottom: 25px; padding-bottom: 13px; border-bottom: 1px solid var(--border); color: var(--teal-800); font-size: .75rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; color: var(--ink-800); font-size: .77rem; font-weight: 650; }
.field label span { color: var(--ink-600); font-weight: 400; }
.field input, .field select, .field textarea {
    width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #bac3c0; border-radius: 0;
    color: var(--ink-900); background: var(--white); transition: border .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(0,135,127,.12); }
.field input[type="file"] { padding: 9px; font-size: .78rem; }
.field small { display: block; margin-top: 7px; color: var(--ink-600); font-size: .68rem; }
.field-error { color: var(--danger) !important; }
.consent { margin: 18px 0; }
.consent label { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-700); font-size: .75rem; cursor: pointer; }
.consent input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 3px; accent-color: var(--teal-700); }
.consent a { color: var(--teal-800); text-decoration: underline; }
.consent + .button { margin-top: 25px; }
.form-disclaimer { margin: 18px 0 0; color: var(--ink-600); font-size: .68rem; text-align: center; }
.honeypot { position: absolute; left: -10000px; }
.alert { margin-bottom: 30px; padding: 18px 20px; border-left: 3px solid; font-size: .85rem; }
.alert p { margin: 5px 0 0; }
.alert--success { border-color: var(--success); color: #174e40; background: #e6f5ee; }
.alert--error { border-color: var(--danger); color: #753027; background: #fbefed; }

.news-feature { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 520px; margin-bottom: 80px; background: var(--sand-050); }
.news-feature__image { overflow: hidden; }
.news-feature__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-feature__image:hover img { transform: scale(1.025); }
.news-feature__body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 55px; }
.news-feature__body time { margin: 18px 0; color: var(--ink-600); font-size: .7rem; }
.news-feature__body h2 { font-size: clamp(2rem, 3.3vw, 3rem); }
.news-feature__body > p { color: var(--ink-600); }
.news-feature__body .button { margin-top: 15px; }
.news-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 35px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.news-toolbar p { margin: 0; font-size: .78rem; }
.news-filters { display: flex; gap: 8px; }
.news-filters button { padding: 7px 14px; border: 1px solid var(--border); color: var(--ink-600); background: transparent; font-size: .7rem; }
.news-filters button.is-active { color: var(--white); border-color: var(--teal-700); background: var(--teal-700); }

.article__header { padding: 110px 0 70px; background: var(--sand-050); }
.article__back { display: inline-block; margin-bottom: 55px; color: var(--teal-800); font-size: .76rem; font-weight: 650; }
.article__meta { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.article__meta time { color: var(--ink-600); font-size: .73rem; }
.article__header h1 { max-width: 950px; font-size: clamp(2.8rem, 5.6vw, 5.2rem); }
.article__header > .container > p:last-child { max-width: 760px; color: var(--ink-600); font-size: 1.15rem; }
.article__image { height: min(670px, 56vw); margin-top: 55px; }
.article__image img { width: 100%; height: 100%; object-fit: cover; }
.article__content { padding-top: 80px; padding-bottom: 110px; }
.article__content > p { font-size: 1.02rem; }
.article__content .lead { font-size: 1.38rem; }
.article__cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 55px; padding: 30px; background: var(--sand-050); }
.article__cta p { margin: 0; color: var(--ink-600); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.article__share { display: flex; align-items: center; gap: 20px; margin-top: 60px; padding-top: 22px; border-top: 1px solid var(--border); font-size: .72rem; }
.article__share > span:first-child { margin-right: auto; color: var(--ink-600); }
.article__share a, .article__share button { padding: 0; border: 0; color: var(--teal-800); background: transparent; font-weight: 650; }
.copy-status { color: var(--success); }

.career-paths { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); }
.career-card { min-height: 270px; padding: 32px; border-right: 1px solid var(--border); }
.career-card:last-child { border-right: 0; }
.career-card > span { display: block; margin-bottom: 70px; color: var(--teal-700); font-size: .68rem; }
.career-card h3 { font-size: 1.15rem; }
.career-card p { color: var(--ink-600); font-size: .82rem; }
.vacancy-panel { display: grid; grid-template-columns: 1fr 320px; align-items: center; gap: 80px; padding: 65px; color: var(--white); background: var(--ink-950); }
.vacancy-panel h2 { margin-top: 25px; }
.vacancy-panel p { max-width: 670px; color: rgba(255,255,255,.6); }
.vacancy-panel__action { display: flex; flex-direction: column; gap: 14px; }
.vacancy-panel__action small { color: rgba(255,255,255,.5); font-size: .68rem; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); }
.contact-card { min-height: 300px; padding: 38px; border-right: 1px solid var(--border); }
.contact-card:last-child { border: 0; }
.contact-card > span { display: block; margin-bottom: 68px; color: var(--teal-700); font-size: .68rem; }
.contact-card h2 { font-size: 1.35rem; }
.contact-card p, .contact-card address { margin-bottom: 12px; color: var(--ink-600); font-size: .86rem; }
.contact-card > a:not(.text-link) { display: block; color: var(--teal-800); font-size: .86rem; }
.verification-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.verification-panel > div:last-child { color: rgba(255,255,255,.67); }
.verification-panel ul { padding-left: 20px; }
.verification-panel strong { color: var(--white); }

.legal-hero, .checklist-hero { padding: 110px 0 80px; background: var(--sand-050); }
.legal-hero h1, .checklist-hero h1 { font-size: clamp(3rem, 6vw, 5rem); }
.legal-hero .container > p:last-child { color: var(--ink-600); }
.legal-content h2 { margin: 48px 0 16px; font-size: 1.55rem; letter-spacing: -.02em; }
.legal-content p { color: var(--ink-700); }
.legal-content a { color: var(--teal-800); text-decoration: underline; }
.checklist-hero p:not(.eyebrow) { max-width: 720px; color: var(--ink-600); font-size: 1.1rem; }
.checklist-hero .button { margin-top: 20px; }
.checklist__meta { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 55px; padding: 25px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.checklist__meta div { display: flex; flex-direction: column; }
.checklist__meta strong { font-size: .7rem; text-transform: uppercase; }
.checklist__meta span { color: var(--ink-600); font-size: .8rem; }
.checklist-group { margin-bottom: 48px; }
.checklist-group h2 { margin-bottom: 18px; font-size: 1.45rem; }
.checklist-group label { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--ink-700); font-size: .88rem; }
.checklist-group input { width: 18px; height: 18px; accent-color: var(--teal-700); }
.checklist-note { padding: 28px; border-left: 3px solid var(--teal-600); background: var(--sand-050); }
.checklist-note p { margin: 6px 0 0; color: var(--ink-600); font-size: .82rem; }
.checklist-actions { display: flex; gap: 14px; margin-top: 35px; }
.error-page { min-height: 70vh; display: grid; place-items: center; padding: 100px 0; background: var(--sand-050); }
.error-page .container { text-align: center; }
.error-page .container > span { display: block; color: var(--teal-100); font-family: var(--font-display); font-size: clamp(8rem, 22vw, 17rem); font-weight: 700; line-height: .75; }
.error-page .eyebrow { justify-content: center; margin-top: 35px; }
.error-page h1 { font-size: clamp(2.7rem, 5vw, 4.4rem); }
.error-page p:not(.eyebrow) { color: var(--ink-600); }
.error-page .container > div { display: flex; align-items: center; justify-content: center; gap: 30px; margin-top: 35px; }

.site-footer { padding: 85px 0 30px; color: var(--white); background: #091516; }
.site-footer__top { display: grid; grid-template-columns: 1.6fr .75fr .9fr 1fr; gap: 60px; padding-bottom: 65px; }
.brand--footer { align-items: center; }
.brand__logo-box { display: grid; place-items: center; padding: 10px 13px; background: var(--white); }
.brand--footer img { width: 96px; }
.brand--footer .brand__name { color: var(--white); }
.site-footer__brand > p { max-width: 350px; margin-top: 30px; color: rgba(255,255,255,.5); font-size: .8rem; }
.site-footer h2 { margin: 0 0 25px; color: var(--teal-300); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 10px 0; }
.footer-links a, .site-footer__contact { color: rgba(255,255,255,.65); font-size: .78rem; }
.footer-links a:hover, .site-footer__contact a:hover { color: var(--white); }
.site-footer__contact { display: flex; flex-direction: column; }
.site-footer__contact address { margin-bottom: 15px; }
.site-footer__bottom { display: flex; justify-content: space-between; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.43); font-size: .7rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom div { display: flex; gap: 24px; }
.site-footer__bottom a:hover { color: var(--white); }
.site-footer__disclosure { max-width: 900px; margin: 15px 0 0; color: rgba(255,255,255,.28); font-size: .62rem; }
.back-to-top { position: fixed; z-index: 80; right: 20px; bottom: 20px; width: 42px; height: 42px; border: 0; color: var(--white); background: var(--teal-700); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-revealed { opacity: 1; transform: none; }

@media (max-width: 1120px) {
    .primary-nav { gap: 17px; }
    .primary-nav > a:not(.button) { font-size: .71rem; }
    .brand img { width: 105px; }
    .supply-layout { gap: 45px; }
    .process-flow { grid-template-columns: repeat(3, 1fr); }
    .process-step { border-bottom: 1px solid rgba(255,255,255,.15); }
    .process-step:nth-child(4) { border-left: 1px solid rgba(255,255,255,.15); }
    .process-step::after { display: none; }
}

@media (max-width: 900px) {
    :root { --header-height: 72px; }
    .container { width: min(calc(100% - 36px), var(--container)); }
    .section { padding: 75px 0; }
    .section--large { padding: 90px 0; }
    .menu-toggle { display: block; }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
    .primary-nav {
        position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; gap: 0;
        padding: 12px 18px 24px; border-top: 1px solid var(--border); background: var(--white); box-shadow: 0 20px 35px rgba(16,27,28,.12);
    }
    .primary-nav.is-open { display: flex; flex-direction: column; }
    .primary-nav > a:not(.button) { padding: 13px 5px; border-bottom: 1px solid var(--border); font-size: .85rem; }
    .primary-nav > a:not(.button)::after { display: none; }
    .primary-nav .button { margin-top: 15px; }
    .home-hero { min-height: 770px; }
    .home-hero__content { padding-top: 115px; }
    .home-hero__capacity { right: 0; left: 18px; min-width: 0; }
    .home-hero__scroll { display: none; }
    .fact-strip__grid { grid-template-columns: 1fr 1fr; }
    .fact:nth-child(2) { border-right: 1px solid rgba(255,255,255,.11); }
    .fact:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.11); }
    .split, .split--overview, .split--safety, .split--community, .operations-intro, .form-layout, .verification-panel { grid-template-columns: 1fr; gap: 55px; }
    .image-frame--portrait, .image-frame--wide { height: 65vw; min-height: 390px; }
    .split--overview .image-frame, .split--safety .image-frame { order: 2; }
    .section-heading { align-items: flex-start; }
    .capability-card { min-height: 390px; padding: 32px 24px; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-grid .news-card:last-child:nth-child(odd) { grid-column: span 2; }
    .page-hero { min-height: 530px; }
    .values-grid, .pillar-grid, .metric-grid, .career-paths { grid-template-columns: 1fr 1fr; }
    .value-card:nth-child(2), .pillar-card:nth-child(2), .metric-card:nth-child(2), .career-card:nth-child(2) { border-right: 0; }
    .value-card:nth-child(-n+2), .career-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .supply-layout { grid-template-columns: 1fr; }
    .supply-sidebar, .form-intro { position: static; }
    .evaluation-flow { grid-template-columns: 1fr 1fr; }
    .evaluation-step:nth-child(2) { border-right: 1px solid var(--border); }
    .evaluation-step:nth-child(-n+2) { border-bottom: 0; }
    .evaluation-step::after { display: none; }
    .news-feature { grid-template-columns: 1fr; }
    .news-feature__image { height: 450px; }
    .vacancy-panel { grid-template-columns: 1fr; gap: 35px; padding: 45px; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--border); }
    .contact-card > span { margin-bottom: 35px; }
    .site-footer__top { grid-template-columns: 1.5fr 1fr 1fr; }
    .site-footer__brand { grid-column: span 3; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .notice-bar__inner { justify-content: center; }
    .notice-bar__inner > span { display: none; }
    .notice-bar__inner a { font-size: .66rem; }
    .brand img { width: 92px; }
    .brand__name { font-size: .62rem; }
    .home-hero { min-height: 720px; }
    .home-hero__media { background-position: 59% center; }
    .home-hero__overlay { background: linear-gradient(90deg, rgba(7,25,26,.85), rgba(7,25,26,.4)), linear-gradient(0deg, rgba(7,25,26,.65), transparent); }
    .home-hero__content { padding-top: 95px; }
    .home-hero__actions { align-items: flex-start; flex-direction: column; gap: 23px; }
    .home-hero__capacity { left: 0; gap: 15px; padding: 22px 18px; }
    .home-hero__capacity-number { font-size: 2.1rem; }
    .home-hero__capacity span:last-child { padding-left: 15px; font-size: .64rem; }
    .fact { min-height: 120px; padding: 20px 14px; }
    .fact__value { font-size: 1.25rem; }
    .fact__label { font-size: .61rem; }
    .section-heading { flex-direction: column; gap: 22px; margin-bottom: 42px; }
    .capability-grid { grid-template-columns: 1fr; }
    .capability-card { min-height: 340px; border-left: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
    .capability-card__icon { margin: 45px 0 27px; }
    .supply-banner { min-height: 650px; }
    .supply-banner__image { background-position: 67% center; }
    .supply-banner__content > div, .contact-ribbon__inner, .article__cta { align-items: flex-start; flex-direction: column; }
    .news-grid { grid-template-columns: 1fr; }
    .news-grid .news-card:last-child:nth-child(odd) { grid-column: auto; }
    .contact-ribbon h2 { font-size: 2.2rem; }
    .page-hero { min-height: 480px; }
    .page-hero__content { padding-top: 90px; padding-bottom: 58px; }
    .page-hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
    .stat-pair, .leadership-grid, .values-grid, .pillar-grid, .metric-grid, .product-grid, .process-flow, .feature-row, .evaluation-flow, .career-paths, .checklist__meta { grid-template-columns: 1fr; }
    .timeline::before { left: 84px; }
    .timeline__item { grid-template-columns: 68px 1fr; gap: 30px; }
    .timeline__year { font-size: 1rem; }
    .timeline__item > div::before { left: -36px; }
    .leadership-card { min-height: 240px; padding: 30px; }
    .leadership-card > span { margin-bottom: 45px; }
    .value-card, .pillar-card, .metric-card, .career-card { border-right: 0; border-bottom: 1px solid var(--border); }
    .operations-intro { gap: 25px; }
    .capacity-panel { padding: 35px 25px; }
    .process-step, .process-step:nth-child(4) { border-right: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
    .process-step { min-height: 265px; }
    .process-step > span { margin-bottom: 50px; }
    .feature { min-height: 215px; border-right: 0; border-bottom: 1px solid var(--border); }
    .product-card { min-height: 400px; padding: 32px 25px; }
    .product-card ul { flex-direction: column; gap: 5px; }
    .notice-meta { flex-direction: column; gap: 9px; }
    .data-table > div { grid-template-columns: 1fr; gap: 4px; }
    .evaluation-step, .evaluation-step:nth-child(2) { border: 1px solid var(--border); border-bottom: 0; }
    .evaluation-step:last-child { border-bottom: 1px solid var(--border); }
    .form-card { padding: 28px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .field--full { grid-column: auto; }
    .news-feature__image { height: 300px; }
    .news-feature__body { padding: 35px 25px; }
    .news-toolbar { align-items: flex-start; flex-direction: column; gap: 20px; }
    .news-filters { flex-wrap: wrap; }
    .article__header { padding-top: 70px; }
    .article__back { margin-bottom: 38px; }
    .article__image { width: 100%; height: 62vw; margin-top: 0; }
    .article__share { flex-wrap: wrap; }
    .article__share > span:first-child { flex-basis: 100%; }
    .vacancy-panel { width: 100%; padding: 35px 25px; }
    .site-footer__top { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
    .site-footer__brand { grid-column: span 2; }
    .site-footer__contact { grid-column: span 2; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
    .image-frame figcaption { right: 0; left: 0; min-width: 0; }
    .image-frame--portrait, .image-frame--wide { min-height: 320px; }
    .checklist-actions, .error-page .container > div { align-items: center; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media print {
    .notice-bar, .site-header, .site-footer, .no-print, .back-to-top { display: none !important; }
    body { color: #000; font-size: 11pt; }
    .section, .checklist-hero { padding: 25px 0; }
    .checklist-group { break-inside: avoid; margin-bottom: 25px; }
    .checklist-group label { padding: 7px 0; }
    .checklist-group input { appearance: none; width: 14px; height: 14px; border: 1px solid #000; }
    .checklist__meta { margin-bottom: 30px; }
}

