/* Policy Yatra — simple insurance education */
:root {
  --ink: #08313c;
  --ink-soft: #48646b;
  --muted: #6d8287;
  --blue: #0f51a8;
  --blue-dark: #0a3d7e;
  --blue-soft: #eaf3ff;
  --green: #84bd54;
  --green-dark: #4f7f2d;
  --green-soft: #eff8e8;
  --paper: #fafaf7;
  --white: #fff;
  --line: #dce7e5;
  --line-blue: #d9e6f5;
  --night: #062f45;
  --sans: Inter, Aptos, "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  --container: 1200px;
  --header: 76px;
  --radius: 24px;
  --shadow-sm: 0 12px 34px rgba(8, 49, 60, .08);
  --shadow: 0 24px 70px rgba(8, 49, 60, .12);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 24px); }
body { margin: 0; overflow-x: hidden; background: var(--white); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, summary { font: inherit; color: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { margin-bottom: 24px; font-weight: 780; letter-spacing: -.055em; line-height: 1.02; }
h2 { font-size: clamp(2.4rem, 5vw, 4.65rem); }
h3 { line-height: 1.18; }
p { text-wrap: pretty; }
::selection { background: var(--green); color: var(--ink); }
:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
summary:focus-visible { border-radius: 12px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(88px, 10vw, 144px) 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 12px; padding: 10px 16px; border-radius: 10px; background: var(--green); color: var(--ink); font-weight: 800; transform: translateY(-160%); transition: transform .2s var(--ease); }
.skip-link:focus { transform: translateY(0); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 17px; color: var(--blue); font-size: .75rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow > span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(132, 189, 84, .15); }
.eyebrow--light { color: #cdeead; }
.section-heading { margin-bottom: clamp(42px, 6vw, 72px); }
.section-heading h2 { max-width: 820px; margin-bottom: 0; }
.section-heading > p, .section-heading--split > p { max-width: 560px; margin-bottom: 0; color: var(--ink-soft); font-size: clamp(1rem, 1.4vw, 1.14rem); }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); align-items: end; gap: clamp(38px, 7vw, 90px); }
.section-heading--center { max-width: 900px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center > p { margin-inline: auto; }
.card-label { margin-bottom: 10px; color: var(--blue); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; line-height: 1; transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s; }
.button--primary { background: var(--blue); color: var(--white); box-shadow: 0 14px 30px rgba(15, 81, 168, .2); }
.button--secondary { border-color: #c9d9e7; background: rgba(255, 255, 255, .7); color: var(--ink); }

/* Header */
.site-header { position: sticky; z-index: 100; top: 0; height: var(--header); border-bottom: 1px solid rgba(8, 49, 60, .08); background: rgba(255, 255, 255, .94); backdrop-filter: blur(16px); transition: box-shadow .25s, border-color .25s; }
.site-header.is-scrolled { border-color: transparent; box-shadow: 0 10px 34px rgba(8, 49, 60, .09); }
.header-inner { height: var(--header); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 210px; display: inline-flex; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 36px); margin-left: auto; }
.desktop-nav a, .mobile-nav a { position: relative; color: var(--ink-soft); font-size: .82rem; font-weight: 750; }
.desktop-nav a::after { position: absolute; content: ""; right: 0; bottom: -11px; left: 0; height: 2px; border-radius: 2px; background: var(--blue); transform: scaleX(0); transition: transform .25s var(--ease); }
.desktop-nav a:hover, .desktop-nav a.is-current { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a.is-current::after { transform: scaleX(1); }
.menu-toggle { width: 46px; height: 46px; display: none; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; }
.menu-toggle i { position: absolute; width: 19px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s var(--ease); }
.menu-toggle i:nth-of-type(1) { transform: translateY(-4px); }
.menu-toggle i:nth-of-type(2) { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] i:nth-of-type(1) { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:nth-of-type(2) { transform: rotate(-45deg); }
.mobile-nav { display: none; }

/* Hero */
.hero { position: relative; min-height: calc(100svh - var(--header)); display: flex; align-items: center; overflow: hidden; padding: clamp(70px, 8vw, 112px) 0; background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 50%, #f4faee 100%); }
.hero::before { position: absolute; content: ""; inset: 0; opacity: .42; background-image: radial-gradient(rgba(15, 81, 168, .12) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to right, #000, transparent 50%); }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-shape--one { top: -180px; right: -120px; width: 520px; height: 520px; background: rgba(132, 189, 84, .15); }
.hero-shape--two { bottom: -230px; left: 35%; width: 520px; height: 520px; border: 90px solid rgba(15, 81, 168, .045); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); align-items: center; gap: clamp(52px, 8vw, 110px); }
.hero h1 { max-width: 740px; margin-bottom: 28px; font-size: clamp(3.5rem, 6.4vw, 6.5rem); letter-spacing: -.072em; }
.hero h1 em { position: relative; color: var(--blue); font-style: normal; }
.hero h1 em::after { position: absolute; content: ""; right: 1px; bottom: 0; left: 1px; height: 6px; border-radius: 50%; background: var(--green); opacity: .72; transform: rotate(-1deg); }
.hero-lead { max-width: 650px; margin-bottom: 32px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.55vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-promises { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 34px 0 0; padding: 0; list-style: none; }
.hero-promises li { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: .78rem; font-weight: 700; }
.hero-promises .icon { width: 16px; height: 16px; padding: 2px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); stroke-width: 2.4; }
.hero-guide { position: relative; padding: 30px; border: 1px solid rgba(15, 81, 168, .13); border-radius: 30px; background: rgba(255, 255, 255, .92); box-shadow: var(--shadow); }
.hero-guide::before { position: absolute; content: ""; inset: 12px; border: 1px solid rgba(15, 81, 168, .07); border-radius: 21px; pointer-events: none; }
.hero-guide__top { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 26px; padding: 4px 4px 25px; border-bottom: 1px solid var(--line); }
.hero-guide__top span:not(.hero-guide__mark) { color: var(--blue); font-size: .64rem; font-weight: 850; letter-spacing: .12em; }
.hero-guide__top h2 { max-width: 330px; margin: 8px 0 0; font-size: clamp(1.65rem, 2.5vw, 2.35rem); letter-spacing: -.045em; }
.hero-guide__mark { width: 58px; height: 58px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 17px; background: var(--green-soft); }
.hero-guide__mark img { width: 27px; height: 38px; object-fit: contain; }
.hero-route { position: relative; display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.hero-route::before { position: absolute; content: ""; top: 25px; bottom: 25px; left: 24px; width: 2px; background: linear-gradient(var(--blue), var(--green)); opacity: .25; }
.hero-route li { position: relative; display: grid; grid-template-columns: 50px 1fr; align-items: center; gap: 14px; min-height: 62px; padding: 8px 12px 8px 0; border-radius: 14px; transition: background .22s, transform .22s var(--ease); }
.hero-route b { z-index: 1; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--line-blue); border-radius: 50%; background: var(--white); color: var(--blue); font-size: .69rem; }
.hero-route span { display: grid; }
.hero-route strong { font-size: .88rem; }
.hero-route small { color: var(--muted); font-size: .75rem; }
.hero-guide__note { position: relative; display: flex; align-items: center; gap: 9px; margin: 22px 0 0; padding: 14px 15px; border-radius: 12px; background: var(--blue-soft); color: var(--blue-dark); font-size: .73rem; font-weight: 750; }

/* Insurance types */
.types-section { background: var(--white); }
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.type-card { min-width: 0; display: flex; flex-direction: column; min-height: 390px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 28px rgba(8, 49, 60, .035); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.type-card__icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 32px; border-radius: 18px; }
.type-card__icon .icon { width: 28px; height: 28px; }
.icon-blue { background: #e5f1ff; color: #0f63bd; }
.icon-green { background: #ecf7e4; color: #548a32; }
.icon-orange { background: #fff0df; color: #b65e16; }
.icon-violet { background: #f0eaff; color: #6d4bb6; }
.icon-pink { background: #ffeaf1; color: #b64b71; }
.icon-teal { background: #e3f6f3; color: #177f75; }
.type-card h3 { margin-bottom: 13px; font-size: 1.45rem; letter-spacing: -.035em; }
.type-card > p:not(.card-label) { margin-bottom: 25px; color: var(--ink-soft); font-size: .92rem; }
.type-card__check { display: grid; gap: 4px; margin-top: auto; padding-top: 19px; border-top: 1px solid var(--line); }
.type-card__check strong { color: var(--blue); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.type-card__check span { color: var(--ink-soft); font-size: .79rem; line-height: 1.5; }
.more-types { display: grid; grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr); gap: clamp(35px, 7vw, 90px); margin-top: 70px; padding: clamp(30px, 5vw, 58px); border-radius: 30px; background: var(--paper); }
.more-types__heading h3 { margin-bottom: 13px; font-size: clamp(1.7rem, 3vw, 2.55rem); letter-spacing: -.045em; }
.more-types__heading > p:last-child { color: var(--ink-soft); font-size: .9rem; }
.type-disclosures { display: grid; align-content: start; }
.type-disclosures details { border-bottom: 1px solid #ccdcd9; }
.type-disclosures details:first-child { border-top: 1px solid #ccdcd9; }
.type-disclosures summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 3px; cursor: pointer; list-style: none; }
.type-disclosures summary::-webkit-details-marker, .faq-list summary::-webkit-details-marker { display: none; }
.type-disclosures summary > span { display: grid; gap: 2px; }
.type-disclosures summary strong { font-size: .96rem; }
.type-disclosures summary small { color: var(--muted); font-size: .75rem; }
.type-disclosures summary > .icon { color: var(--blue); transition: transform .25s var(--ease); }
.type-disclosures details[open] summary > .icon { transform: rotate(45deg); }
.mini-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 0 22px; }
.mini-type-grid article { padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.mini-type-grid h4 { margin-bottom: 5px; font-size: .82rem; }
.mini-type-grid p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.5; }

/* Five-check scroll journey */
.checks-section { overflow: clip; background: linear-gradient(180deg, #f4f8fc, #eef5fb); }
.checks-section::before { position: absolute; content: ""; top: 8%; right: -170px; width: 430px; height: 430px; border: 70px solid rgba(132, 189, 84, .08); border-radius: 50%; }
.journey { position: relative; display: grid; grid-template-columns: 340px minmax(0, 1fr); align-items: start; gap: clamp(44px, 8vw, 110px); }
.journey-rail { position: sticky; top: calc(var(--header) + 28px); }
.journey-rail__card { padding: 30px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 28px; background: var(--night); box-shadow: var(--shadow); color: var(--white); }
.journey-rail__label { margin-bottom: 10px; color: #bfe39f; font-size: .65rem; font-weight: 850; letter-spacing: .12em; }
.journey-rail__current { display: flex; align-items: baseline; gap: 9px; margin-bottom: 5px; }
.journey-rail__current span { color: var(--green); font-size: 4.4rem; font-weight: 800; letter-spacing: -.08em; line-height: 1; }
.journey-rail__current small { color: rgba(255, 255, 255, .4); font-size: .75rem; }
.journey-rail__card > h3 { margin-bottom: 8px; font-size: 1.7rem; }
.journey-rail__card > p:not(.journey-rail__label) { margin-bottom: 23px; color: rgba(255, 255, 255, .6); font-size: .79rem; }
.journey-markers { display: grid; gap: 3px; }
.journey-markers a { display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 10px; padding: 8px 9px; border-radius: 9px; color: rgba(255, 255, 255, .5); font-size: .76rem; transition: background .25s, color .25s, transform .25s var(--ease); }
.journey-markers b { color: inherit; font-size: .62rem; }
.journey-markers a.is-active { background: rgba(255, 255, 255, .09); color: var(--white); transform: translateX(4px); }
.journey-markers a.is-active b { color: var(--green); }
.journey-progress { height: 3px; margin-top: 24px; overflow: hidden; border-radius: 3px; background: rgba(255, 255, 255, .12); }
.journey-progress span { display: block; width: 20%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--green)); transition: width .45s var(--ease); }
.journey-steps { display: grid; gap: 24px; }
.journey-step { position: relative; min-height: 68vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: clamp(34px, 5vw, 62px); border: 1px solid var(--line-blue); border-radius: 30px; background: rgba(255, 255, 255, .86); box-shadow: 0 10px 35px rgba(8, 49, 60, .04); }
.journey-step__number { position: absolute; top: 17px; right: 24px; color: #e5eef8; font-size: clamp(5rem, 10vw, 9rem); font-weight: 850; letter-spacing: -.09em; line-height: 1; }
.journey-step > *:not(.journey-step__number) { position: relative; z-index: 1; }
.journey-step h3 { max-width: 700px; margin-bottom: 18px; font-size: clamp(1.8rem, 3.4vw, 3.15rem); letter-spacing: -.05em; }
.journey-step > p:not(.card-label) { max-width: 720px; color: var(--ink-soft); font-size: clamp(.98rem, 1.35vw, 1.1rem); }
.question-box { max-width: 740px; margin-top: 25px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.question-box strong { display: block; margin-bottom: 9px; color: var(--blue); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.question-box ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.question-box li { position: relative; padding-left: 17px; color: var(--ink-soft); font-size: .78rem; line-height: 1.45; }
.question-box li::before { position: absolute; content: ""; top: .55em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.motion-ready .journey-step { opacity: .66; transform: translateY(24px) scale(.975); transition: opacity .55s var(--ease), transform .55s var(--ease), border-color .55s, box-shadow .55s; }
.motion-ready .journey-step.is-active { opacity: 1; border-color: rgba(15, 81, 168, .32); box-shadow: 0 26px 70px rgba(8, 49, 60, .1); transform: none; }

/* Policy guide */
.policy-section { background: var(--white); }
.document-parts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; counter-reset: parts; }
.document-part { min-height: 230px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.document-part > span { width: 36px; height: 36px; display: grid; place-items: center; margin-bottom: 40px; border-radius: 10px; background: var(--blue-soft); color: var(--blue); font-size: .65rem; font-weight: 850; }
.document-part h3 { margin-bottom: 10px; font-size: 1.12rem; }
.document-part p { margin-bottom: 0; color: var(--ink-soft); font-size: .83rem; }
.decoder { display: grid; grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr); gap: clamp(36px, 7vw, 90px); margin-top: 62px; padding: clamp(32px, 5vw, 58px); border-radius: 30px; background: var(--blue); color: var(--white); }
.decoder-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 16px; background: rgba(255, 255, 255, .13); color: #d7f4bd; }
.decoder-icon .icon { width: 27px; height: 27px; }
.decoder .card-label { color: #ccebad; }
.decoder-intro h3 { margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -.045em; }
.decoder-intro > p:last-child { color: rgba(255, 255, 255, .65); font-size: .85rem; }
.term-list { margin: 0; }
.term-list > div { display: grid; grid-template-columns: 155px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.term-list > div:first-child { border-top: 1px solid rgba(255, 255, 255, .16); }
.term-list dt { color: #d9f2c3; font-size: .8rem; font-weight: 800; }
.term-list dd { margin: 0; color: rgba(255, 255, 255, .72); font-size: .8rem; }

/* Examples */
.examples-section { background: var(--green-soft); }
.example-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.example-card { padding: 28px; border: 1px solid rgba(79, 127, 45, .16); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 34px rgba(63, 100, 41, .055); }
.example-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; color: var(--muted); font-size: .65rem; font-weight: 850; letter-spacing: .1em; }
.example-card__top .type-card__icon { width: 52px; height: 52px; margin: 0; border-radius: 15px; }
.example-card h3 { margin-bottom: 10px; font-size: 1.35rem; letter-spacing: -.035em; }
.example-card > p { min-height: 52px; margin-bottom: 22px; color: var(--ink-soft); font-size: .84rem; }
.example-card dl { margin: 0; }
.example-card dl > div { display: grid; grid-template-columns: 70px 1fr; gap: 11px; padding: 13px 0; border-top: 1px solid var(--line); }
.example-card dt { color: var(--blue); font-size: .68rem; font-weight: 850; text-transform: uppercase; }
.example-card dd { margin: 0; color: var(--ink-soft); font-size: .76rem; line-height: 1.5; }

/* Claims */
.claims-section { overflow: hidden; background: var(--night); color: var(--white); }
.claims-section::before { position: absolute; content: ""; top: -250px; left: -180px; width: 600px; height: 600px; border: 100px solid rgba(132, 189, 84, .055); border-radius: 50%; }
.claims-layout { position: relative; display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); align-items: start; gap: clamp(55px, 10vw, 130px); }
.claims-intro { position: sticky; top: calc(var(--header) + 30px); }
.claims-intro h2 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.claims-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, .65); }
.claims-note { display: flex; align-items: flex-start; gap: 13px; margin-top: 32px; padding: 17px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 14px; background: rgba(255, 255, 255, .055); }
.claims-note .icon { margin-top: 2px; color: var(--green); }
.claims-note p { margin: 0; color: rgba(255, 255, 255, .65); font-size: .76rem; }
.claims-note strong { color: var(--white); }
.claim-steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.claim-steps li { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 25px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px; background: rgba(255, 255, 255, .05); }
.claim-steps li > span { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(132, 189, 84, .42); border-radius: 50%; color: var(--green); font-size: .68rem; font-weight: 850; }
.claim-steps h3 { margin: 1px 0 7px; font-size: 1.05rem; }
.claim-steps p { margin: 0; color: rgba(255, 255, 255, .6); font-size: .8rem; }

/* FAQ */
.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: clamp(50px, 9vw, 120px); }
.faq-intro h2 { font-size: clamp(2.6rem, 5vw, 4.7rem); }
.faq-intro > p:not(.eyebrow) { color: var(--ink-soft); }
.education-note { margin-top: 32px; padding: 20px; border: 1px solid #d8e6cf; border-radius: 16px; background: var(--green-soft); }
.education-note span { color: var(--green-dark); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.education-note p { margin: 7px 0 0; color: var(--ink-soft); font-size: .78rem; }
.faq-list { align-self: start; border-top: 1px solid #cddbd9; }
.faq-list details { border-bottom: 1px solid #cddbd9; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 3px; cursor: pointer; list-style: none; font-size: 1rem; font-weight: 780; }
.faq-list summary .icon { color: var(--blue); transition: transform .25s var(--ease); }
.faq-list details[open] summary .icon { transform: rotate(45deg); }
.faq-list details > p { margin: -5px 42px 24px 3px; color: var(--ink-soft); font-size: .86rem; }

/* Footer */
.site-footer { padding: 58px 0 24px; background: var(--white); }
.footer-top { display: grid; grid-template-columns: 230px 1fr auto; align-items: center; gap: 35px; padding-bottom: 40px; }
.brand--footer { width: 190px; }
.footer-top > p { margin: 0; color: var(--ink-soft); font-size: .87rem; }
.footer-top nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; }
.footer-top nav a { color: var(--ink-soft); font-size: .78rem; font-weight: 750; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: var(--muted); font-size: .7rem; }

/* Progressive motion enhancement; all content is visible without JavaScript. */
.motion-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }
.motion-ready .hero-copy { animation: enter-up .75s var(--ease) both; }
.motion-ready .hero-guide { animation: enter-up .85s .12s var(--ease) both; }

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-3px); }
  .button--primary:hover { background: var(--blue-dark); box-shadow: 0 18px 38px rgba(15, 81, 168, .26); }
  .button--secondary:hover { border-color: var(--blue); background: var(--white); }
  .hero-route li:hover { background: var(--paper); transform: translateX(4px); }
  .type-card:hover, .document-part:hover { border-color: rgba(15, 81, 168, .28); box-shadow: var(--shadow-sm); transform: translateY(-6px); }
  .footer-top nav a:hover { color: var(--blue); }
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-toggle { position: relative; display: grid; }
  .mobile-nav { display: grid; padding: 10px 24px 22px; border-top: 1px solid var(--line); background: var(--white); }
  .mobile-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .js .mobile-nav { position: absolute; top: 100%; right: 0; left: 0; max-height: 0; overflow: hidden; padding-block: 0; visibility: hidden; opacity: 0; box-shadow: 0 20px 30px rgba(8, 49, 60, .08); transition: max-height .3s var(--ease), padding .3s, opacity .2s, visibility .2s; }
  .js .mobile-nav.is-open { max-height: 420px; padding-block: 10px 22px; visibility: visible; opacity: 1; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr); gap: 45px; }
  .hero h1 { font-size: clamp(3.4rem, 6.5vw, 5.3rem); }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: 290px minmax(0, 1fr); gap: 42px; }
  .journey-rail__card { padding: 24px; }
  .question-box ul { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --header: 70px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section-heading--split, .hero-layout, .more-types, .decoder, .claims-layout, .faq-layout { grid-template-columns: 1fr; }
  .section-heading--split { align-items: start; gap: 22px; }
  .hero { min-height: auto; }
  .hero-layout { gap: 55px; }
  .hero-copy { max-width: 720px; }
  .hero-guide { width: min(100%, 620px); margin-inline: auto; }
  .journey { grid-template-columns: 1fr; gap: 24px; }
  .journey-rail { position: relative; top: auto; z-index: 3; }
  .journey-rail__card { padding: 22px; }
  .journey-rail__label, .journey-rail__card > p:not(.journey-rail__label) { display: none; }
  .journey-rail__current { margin: 0 0 5px; }
  .journey-rail__current span { font-size: 2.6rem; }
  .journey-rail__card > h3 { margin-bottom: 16px; font-size: 1.25rem; }
  .journey-markers { grid-template-columns: repeat(5, 1fr); }
  .journey-markers a { display: flex; justify-content: center; padding: 8px 4px; text-align: center; }
  .journey-markers a span { display: none; }
  .journey-markers a.is-active { transform: none; }
  .journey-progress { margin-top: 15px; }
  .journey-step { min-height: auto; padding-block: 55px; }
  .document-parts { grid-template-columns: repeat(2, 1fr); }
  .example-grid { grid-template-columns: 1fr; }
  .example-card > p { min-height: 0; }
  .claims-intro { position: relative; top: auto; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .brand { width: 170px; }
  .hero { padding: 62px 0 72px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.35rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-promises { display: grid; gap: 10px; }
  .hero-guide { padding: 20px; border-radius: 23px; }
  .hero-guide::before { inset: 8px; border-radius: 17px; }
  .hero-guide__top { padding-inline: 2px; }
  .hero-guide__top h2 { font-size: 1.55rem; }
  .hero-guide__mark { width: 50px; height: 50px; }
  .hero-route { gap: 5px; }
  .hero-route li { grid-template-columns: 44px 1fr; gap: 11px; min-height: 57px; }
  .hero-route b { width: 44px; height: 44px; }
  .hero-route::before { left: 21px; }
  .hero-route strong { font-size: .8rem; }
  .hero-route small { font-size: .69rem; }
  .hero-guide__note { font-size: .68rem; }
  .type-grid, .document-parts { grid-template-columns: 1fr; }
  .type-card { min-height: 350px; padding: 24px; }
  .more-types { margin-top: 48px; padding: 25px 20px; border-radius: 22px; }
  .type-disclosures summary small { display: none; }
  .mini-type-grid { grid-template-columns: 1fr; }
  .journey-step { padding: 45px 24px 30px; border-radius: 22px; }
  .journey-step__number { top: 11px; right: 18px; font-size: 5.5rem; }
  .journey-step h3 { font-size: 1.75rem; }
  .question-box { padding: 18px; }
  .document-part { min-height: 200px; }
  .document-part > span { margin-bottom: 30px; }
  .decoder { padding: 28px 22px; border-radius: 23px; }
  .term-list > div { grid-template-columns: 1fr; gap: 5px; }
  .example-card { padding: 23px; }
  .claims-section, .faq-section { padding-block: 82px; }
  .claim-steps li { grid-template-columns: 46px 1fr; gap: 14px; padding: 20px 17px; }
  .claim-steps li > span { width: 42px; height: 42px; }
  .faq-list summary { padding-block: 20px; font-size: .92rem; }
  .footer-top { grid-template-columns: 1fr; gap: 22px; }
  .footer-top nav { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@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; }
  .motion-ready .reveal, .motion-ready .journey-step { opacity: 1; transform: none; }
}

@media print {
  @page { margin: 15mm; }
  * { box-shadow: none !important; text-shadow: none !important; }
  html, body { background: #fff !important; color: #000 !important; font-size: 10pt; }
  .site-header, .hero-shape, .hero-actions, .journey-rail, .site-footer nav { display: none !important; }
  .hero, .section, .site-footer { min-height: 0; padding: 22px 0; background: #fff !important; color: #000 !important; }
  .hero-layout, .section-heading--split, .more-types, .journey, .decoder, .claims-layout, .faq-layout, .footer-top { display: block; }
  .hero-guide, .more-types, .decoder, .claims-section, .education-note { margin-top: 18px; border: 1px solid #bbb; background: #fff !important; color: #000 !important; }
  .type-grid, .document-parts, .example-grid { grid-template-columns: repeat(2, 1fr); }
  .type-card, .document-part, .example-card, .journey-step { min-height: 0; break-inside: avoid; }
  .journey-step { margin-bottom: 14px; padding: 24px; opacity: 1 !important; transform: none !important; }
  .claim-steps li { break-inside: avoid; border-color: #bbb; background: #fff; color: #000; }
  .claims-intro, .claims-note, .decoder, .term-list dd, .claim-steps p { color: #000 !important; }
  details:not([open]) > :not(summary) { display: block !important; }
  .motion-ready .reveal { opacity: 1 !important; transform: none !important; }
}

@keyframes enter-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Multi-page company and learning pages */
.mobile-nav a.is-current { color: var(--blue); }
.mobile-nav a.is-current::after { content: "Current page"; margin-left: auto; color: var(--green-dark); font-size: .62rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.page-hero { --page-accent: var(--blue); position: relative; min-height: 650px; display: flex; align-items: center; overflow: hidden; padding: clamp(82px, 10vw, 138px) 0; background: linear-gradient(135deg, #f7fbff, #edf5ff 58%, #f4faee); }
.page-hero--vision { --page-accent: #4f7f2d; background: linear-gradient(135deg, #fbfcf8, #eff8e8 56%, #edf5ff); }
.page-hero--team { --page-accent: #6d4bb6; background: linear-gradient(135deg, #fbf9ff, #f1ecff 56%, #edf6ff); }
.page-hero--blogs { --page-accent: #b65e16; background: linear-gradient(135deg, #fffaf4, #fff0df 55%, #eff8e8); }
.page-hero--contact { --page-accent: #177f75; background: linear-gradient(135deg, #f5fcfb, #e3f6f3 55%, #edf5ff); }
.page-hero::before { position: absolute; content: ""; inset: 0; opacity: .36; background-image: radial-gradient(rgba(15, 81, 168, .14) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(90deg, #000, transparent 65%); }
.page-orb { position: absolute; top: -190px; right: -130px; width: 570px; height: 570px; border: 95px solid color-mix(in srgb, var(--page-accent) 10%, transparent); border-radius: 50%; pointer-events: none; }
.page-orb::after { position: absolute; content: ""; inset: 60px; border: 1px solid color-mix(in srgb, var(--page-accent) 18%, transparent); border-radius: inherit; }
.page-hero__layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); align-items: center; gap: clamp(50px, 9vw, 120px); }
.page-hero__copy h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(3.5rem, 6.5vw, 6.6rem); letter-spacing: -.072em; }
.page-hero__copy h1 em { position: relative; color: var(--page-accent); font-style: normal; }
.page-hero__copy h1 em::after { position: absolute; content: ""; right: 0; bottom: 1px; left: 0; height: 5px; border-radius: 50%; background: var(--green); opacity: .7; }
.page-hero__copy > p:last-child { max-width: 680px; margin-bottom: 0; color: var(--ink-soft); font-size: clamp(1.04rem, 1.5vw, 1.22rem); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 36px; color: var(--muted); font-size: .72rem; font-weight: 750; }
.breadcrumb a { color: var(--blue); }
.breadcrumb span[aria-hidden] { color: #a5b4b7; }
.page-hero__card { position: relative; padding: clamp(28px, 4vw, 42px); border: 1px solid rgba(15, 81, 168, .13); border-radius: 28px; background: rgba(255, 255, 255, .9); box-shadow: var(--shadow); }
.page-hero__card::before { position: absolute; content: ""; top: 0; left: 38px; width: 72px; height: 4px; border-radius: 0 0 4px 4px; background: var(--page-accent); }
.page-hero__card h2 { margin-bottom: 16px; font-size: clamp(1.65rem, 2.6vw, 2.45rem); letter-spacing: -.045em; }
.page-hero__card > p:not(.card-label) { color: var(--ink-soft); font-size: .9rem; }
.page-hero__card--quote blockquote { margin: 10px 0 22px; color: var(--ink); font-size: clamp(1.65rem, 3vw, 2.6rem); font-weight: 780; letter-spacing: -.045em; line-height: 1.14; }
.simple-checks { display: grid; gap: 9px; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.simple-checks li { position: relative; padding-left: 23px; color: var(--ink-soft); font-size: .78rem; font-weight: 700; }
.simple-checks li::before { position: absolute; content: "✓"; top: 0; left: 0; color: var(--green-dark); font-weight: 900; }
.motion-ready .page-hero .reveal { opacity: 1; transform: none; }

.inner-section { position: relative; padding: clamp(88px, 10vw, 140px) 0; }
.inner-section--tint { background: var(--paper); }
.inner-section--night { overflow: hidden; background: var(--night); color: var(--white); }
.inner-section--night::before { position: absolute; content: ""; top: -230px; right: -170px; width: 560px; height: 560px; border: 90px solid rgba(132, 189, 84, .055); border-radius: 50%; }
.inner-heading { max-width: 850px; margin-bottom: clamp(42px, 6vw, 70px); }
.inner-heading h2 { margin-bottom: 20px; }
.inner-heading > p:last-child { max-width: 650px; margin-bottom: 0; color: var(--ink-soft); font-size: 1.05rem; }
.inner-heading--center { margin-inline: auto; text-align: center; }
.inner-heading--center .eyebrow { justify-content: center; }
.inner-heading--center > p:last-child { margin-inline: auto; }
.inner-section--night .inner-heading > p:last-child { color: rgba(255, 255, 255, .62); }

.info-grid { display: grid; gap: 16px; }
.info-grid--three { grid-template-columns: repeat(3, 1fr); }
.info-card { min-height: 285px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 10px 32px rgba(8, 49, 60, .04); }
.info-card > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 60px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); font-size: .68rem; font-weight: 850; }
.info-card h3 { margin-bottom: 12px; font-size: 1.3rem; letter-spacing: -.035em; }
.info-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .86rem; }
.content-split { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); align-items: start; gap: clamp(50px, 9vw, 120px); }
.content-split__lead { position: sticky; top: calc(var(--header) + 32px); }
.content-split__lead h2 { font-size: clamp(2.5rem, 5vw, 4.6rem); }
.content-split__lead > p:last-child { color: var(--ink-soft); }
.value-list { border-top: 1px solid #ccd9d7; }
.value-list article { display: grid; grid-template-columns: 42px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid #ccd9d7; }
.value-list b { color: var(--blue); font-size: .68rem; }
.value-list h3 { margin-bottom: 7px; font-size: 1.06rem; }
.value-list p { margin: 0; color: var(--ink-soft); font-size: .82rem; }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.audience-card { min-height: 210px; padding: 26px; border: 1px solid var(--line); border-radius: 19px; background: linear-gradient(145deg, var(--white), #f8fbfb); }
.audience-card h3 { margin-bottom: 11px; font-size: 1.05rem; }
.audience-card p { margin: 0; color: var(--ink-soft); font-size: .79rem; }

.page-cta { padding: clamp(60px, 8vw, 100px) 0; background: var(--blue-soft); }
.page-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(30px, 5vw, 54px); border: 1px solid var(--line-blue); border-radius: 28px; background: var(--white); box-shadow: var(--shadow-sm); }
.page-cta__inner h2 { max-width: 650px; margin-bottom: 0; font-size: clamp(1.9rem, 3.5vw, 3.2rem); }
.page-cta__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; flex: 0 0 auto; }

.statement-layout { display: grid; grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr); align-items: start; gap: clamp(45px, 8vw, 105px); }
.statement-number { color: #e5eff8; font-size: clamp(9rem, 20vw, 17rem); font-weight: 850; letter-spacing: -.1em; line-height: .8; }
.statement-copy h2 { max-width: 900px; font-size: clamp(2.8rem, 5.5vw, 5.4rem); }
.statement-copy > p:last-child { max-width: 720px; color: var(--ink-soft); font-size: 1.08rem; }
.pillar-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.pillar-card { min-height: 310px; padding: 27px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 20px; background: rgba(255, 255, 255, .055); }
.pillar-card > span { display: block; margin-bottom: 80px; color: var(--green); font-size: .68rem; font-weight: 850; }
.pillar-card h3 { margin-bottom: 11px; font-size: 1.15rem; }
.pillar-card p { margin: 0; color: rgba(255, 255, 255, .62); font-size: .79rem; }
.outcome-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.outcome-list li { display: grid; grid-template-columns: 120px 1fr; gap: 25px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.outcome-list b { color: var(--blue); font-size: .83rem; }
.outcome-list span { color: var(--ink-soft); font-size: .86rem; }
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.roadmap-card { min-height: 255px; padding: 29px; border: 1px solid #d8e6cf; border-radius: 21px; background: var(--white); }
.roadmap-card > span { display: inline-flex; margin-bottom: 54px; padding: 6px 10px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); font-size: .65rem; font-weight: 850; text-transform: uppercase; }
.roadmap-card h3 { margin-bottom: 11px; font-size: 1.2rem; }
.roadmap-card p { margin: 0; color: var(--ink-soft); font-size: .82rem; }

.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.role-card { min-height: 410px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.role-card__badge { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 18px; background: #f0eaff; color: #6d4bb6; font-size: .76rem; font-weight: 900; letter-spacing: .05em; }
.role-card h3 { margin-bottom: 12px; font-size: 1.32rem; }
.role-card > p:not(.card-label) { color: var(--ink-soft); font-size: .84rem; }
.role-card ul { display: grid; gap: 7px; margin: auto 0 0; padding: 19px 0 0; border-top: 1px solid var(--line); list-style: none; }
.role-card li { position: relative; padding-left: 17px; color: var(--muted); font-size: .74rem; }
.role-card li::before { position: absolute; content: ""; top: .65em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.workflow-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.workflow-list li { min-height: 260px; padding: 26px; border: 1px solid var(--line); border-radius: 19px; background: var(--white); }
.workflow-list li > span { display: block; margin-bottom: 60px; color: var(--blue); font-size: .67rem; font-weight: 850; }
.workflow-list h3 { margin-bottom: 9px; font-size: 1.08rem; }
.workflow-list p { margin: 0; color: var(--ink-soft); font-size: .79rem; }
.culture-panel { padding: clamp(28px, 5vw, 50px); border-left: 4px solid var(--green); border-radius: 0 22px 22px 0; background: var(--paper); }
.culture-panel > p { color: var(--ink-soft); font-size: 1.03rem; }
.culture-panel blockquote { margin: 32px 0 0; color: var(--ink); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 780; letter-spacing: -.04em; line-height: 1.2; }

.featured-note { padding: clamp(32px, 6vw, 64px); border: 1px solid var(--line-blue); border-radius: 30px; background: linear-gradient(135deg, #f8fbff, var(--blue-soft)); box-shadow: var(--shadow-sm); }
.featured-note__meta { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 58px; color: var(--blue); font-size: .64rem; font-weight: 850; letter-spacing: .1em; }
.featured-note__layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); gap: clamp(45px, 8vw, 100px); }
.featured-note__layout h2 { font-size: clamp(2.4rem, 4.8vw, 4.5rem); }
.featured-note__layout > div > p:not(.eyebrow) { color: var(--ink-soft); }
.featured-note__layout ol { margin: 0; padding: 0; border-top: 1px solid #cbdced; list-style: none; }
.featured-note__layout li { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid #cbdced; }
.featured-note__layout li b { color: var(--blue); font-size: .75rem; }
.featured-note__layout li span { color: var(--ink-soft); font-size: .76rem; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; color: var(--blue); font-size: .79rem; font-weight: 850; }
.text-link span { transition: transform .2s var(--ease); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card { min-height: 360px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 21px; background: var(--white); }
.blog-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 45px; color: var(--muted); font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.blog-card__meta b { color: var(--blue); }
.blog-card h3 { margin-bottom: 13px; font-size: 1.25rem; letter-spacing: -.035em; }
.blog-card > p { color: var(--ink-soft); font-size: .82rem; }
.blog-card .text-link { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.editorial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.editorial-grid > div { padding: 24px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.editorial-grid span { display: block; margin-bottom: 30px; color: var(--blue); font-size: .65rem; font-weight: 850; }
.editorial-grid h3 { margin-bottom: 6px; font-size: 1rem; }
.editorial-grid p { margin: 0; color: var(--ink-soft); font-size: .76rem; }

.contact-route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-route { min-height: 385px; display: flex; flex-direction: column; padding: 29px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.contact-route > span:first-child { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 45px; border-radius: 12px; background: #e3f6f3; color: #177f75; font-size: .68rem; font-weight: 850; }
.contact-route h3 { margin-bottom: 13px; font-size: 1.3rem; letter-spacing: -.035em; }
.contact-route > p:not(.card-label) { color: var(--ink-soft); font-size: .83rem; }
.contact-route .text-link, .contact-route .route-note { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.route-note { display: block; color: var(--green-dark); font-size: .74rem; font-weight: 750; }
.contact-status-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr); align-items: center; gap: clamp(50px, 9vw, 120px); }
.contact-status-layout .content-split__lead { position: relative; top: auto; }
.contact-status { display: grid; grid-template-columns: 16px 1fr; gap: 17px; padding: 28px; border: 1px solid #d6e3ca; border-radius: 20px; background: var(--white); }
.contact-status__dot { width: 13px; height: 13px; margin-top: 3px; border: 3px solid var(--green); border-radius: 50%; box-shadow: 0 0 0 5px var(--green-soft); }
.contact-status h3 { margin-bottom: 10px; font-size: 1.2rem; }
.contact-status p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: .8rem; }
.safety-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.safety-list article { padding: 24px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.safety-list span { display: block; margin-bottom: 22px; color: var(--blue); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.safety-list p { margin: 0; color: var(--ink-soft); font-size: .78rem; }
.scope-panel { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .75fr); align-items: center; gap: clamp(45px, 8vw, 100px); }
.scope-panel h2 { margin-bottom: 0; }
.scope-panel ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.scope-panel li { position: relative; padding: 14px 15px 14px 42px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; background: rgba(255, 255, 255, .05); color: rgba(255, 255, 255, .72); font-size: .8rem; }
.scope-panel li::before { position: absolute; content: "—"; left: 17px; color: var(--green); font-weight: 900; }

@media (hover: hover) and (pointer: fine) {
  .info-card, .audience-card, .roadmap-card, .role-card, .blog-card, .contact-route { transition: transform .28s var(--ease), border-color .28s, box-shadow .28s; }
  .info-card:hover, .audience-card:hover, .roadmap-card:hover, .role-card:hover, .blog-card:hover, .contact-route:hover { border-color: rgba(15, 81, 168, .28); box-shadow: var(--shadow-sm); transform: translateY(-5px); }
  .text-link:hover span { transform: translateX(4px); }
}

@media (max-width: 1080px) {
  .page-hero__layout { grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr); gap: 45px; }
  .page-hero__copy h1 { font-size: clamp(3.3rem, 6.5vw, 5.4rem); }
  .role-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid, .workflow-list, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-route-grid { grid-template-columns: 1fr; }
  .contact-route { min-height: 270px; }
}

@media (max-width: 860px) {
  .page-hero { min-height: auto; }
  .page-hero__layout, .content-split, .statement-layout, .featured-note__layout, .contact-status-layout, .scope-panel { grid-template-columns: 1fr; }
  .page-hero__copy { max-width: 720px; }
  .page-hero__card { width: min(100%, 620px); }
  .content-split__lead { position: relative; top: auto; }
  .info-grid--three, .roadmap-grid { grid-template-columns: 1fr; }
  .info-card { min-height: 230px; }
  .info-card > span { margin-bottom: 35px; }
  .statement-number { font-size: 8rem; }
  .statement-layout { gap: 25px; }
  .featured-note__meta { margin-bottom: 38px; }
  .page-cta__inner { align-items: flex-start; flex-direction: column; }
  .page-cta__actions { justify-content: flex-start; }
  .footer-top nav { max-width: 470px; }
}

@media (max-width: 600px) {
  .page-hero { padding: 64px 0 76px; }
  .page-orb { top: -150px; right: -230px; width: 440px; height: 440px; border-width: 70px; }
  .breadcrumb { margin-bottom: 28px; }
  .page-hero__copy h1 { font-size: clamp(2.85rem, 13vw, 4.1rem); }
  .page-hero__copy > p:last-child { font-size: .98rem; }
  .page-hero__card { padding: 26px 22px; border-radius: 22px; }
  .inner-section { padding: 76px 0; }
  .inner-heading > p:last-child { font-size: .95rem; }
  .audience-grid, .pillar-grid, .role-grid, .workflow-list, .blog-grid, .editorial-grid, .safety-list { grid-template-columns: 1fr; }
  .pillar-card, .workflow-list li { min-height: 230px; }
  .pillar-card > span, .workflow-list li > span { margin-bottom: 45px; }
  .role-card { min-height: 370px; }
  .outcome-list li, .featured-note__layout li { grid-template-columns: 1fr; gap: 5px; }
  .featured-note { padding: 26px 21px; border-radius: 22px; }
  .featured-note__meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .blog-card { min-height: 330px; padding: 24px; }
  .contact-route { min-height: 330px; padding: 24px; }
  .page-cta__inner { padding: 27px 22px; border-radius: 22px; }
  .page-cta__actions { width: 100%; }
  .page-cta__actions .button { width: 100%; }
  .mobile-nav a.is-current::after { font-size: .56rem; }
}

@media print {
  .page-hero, .inner-section, .page-cta { min-height: 0; padding: 22px 0; background: #fff !important; color: #000 !important; }
  .page-orb, .breadcrumb { display: none !important; }
  .page-hero__layout, .content-split, .statement-layout, .featured-note__layout, .contact-status-layout, .scope-panel { display: block; }
  .page-hero__card, .info-card, .audience-card, .pillar-card, .roadmap-card, .role-card, .workflow-list li, .blog-card, .contact-route, .contact-status { break-inside: avoid; border-color: #bbb; background: #fff !important; color: #000 !important; }
  .info-grid--three, .role-grid, .blog-grid, .contact-route-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-section--night p, .inner-section--night li, .pillar-card p { color: #000 !important; }
}

@media (max-width: 1080px) {
  html:not(.js) .site-header { position: relative; height: auto; }
  html:not(.js) .menu-toggle { display: none; }
  html:not(.js) .mobile-nav { position: static; visibility: visible; }
}

@media (max-width: 1080px) {
  .menu-toggle { width: 82px; min-width: 82px; height: 42px; display: flex; align-items: center; justify-content: flex-start; padding: 0 36px 0 14px; border-color: var(--blue); border-radius: 999px; background: var(--blue); color: var(--white); }
  .menu-toggle::before { content: "Menu"; font-size: .7rem; font-weight: 850; letter-spacing: .03em; }
  .menu-toggle i { right: 13px; width: 15px; background: var(--white); }
  .menu-toggle[aria-expanded="true"]::before { content: "Close"; }
}

@media (max-width: 420px) {
  .brand { width: 155px; }
  .header-inner { gap: 14px; }
}
