.assistant { max-width: 1180px; margin: 18px auto 0; padding: 55px 32px 42px; background: #e5eee7; }
.assistant-heading { display: flex; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.assistant-heading h2 { margin-bottom: 15px; }
.assistant-heading p:not(.eyebrow) { max-width: 520px; color: var(--muted); line-height: 1.5; }
.chat-window { display: grid; gap: 14px; max-height: 290px; overflow-y: auto; margin: 28px 0 15px; padding: 20px; border: 1px solid var(--line); background: var(--cream); }
.chat-message { display: flex; align-items: flex-start; gap: 10px; max-width: 78%; }
.chat-message p { margin: 0; padding: 12px 14px; color: var(--ink); background: var(--paper); font-size: .85rem; line-height: 1.5; }
.user-message { justify-self: end; }
.user-message p { color: var(--cream); background: var(--ink); }
.chat-avatar { display: grid; width: 25px; height: 25px; flex: 0 0 auto; place-items: center; color: var(--cream); background: var(--coral); border-radius: 50%; font: 700 .75rem 'Space Grotesk', sans-serif; }
.chat-form { display: flex; gap: 10px; }
.chat-form input { flex: 1; min-width: 0; padding: 14px; border: 1px solid var(--line); background: var(--cream); font: inherit; }
.chat-form input:focus { outline: 2px solid var(--coral); outline-offset: 2px; }
.assistant-disclaimer { margin: 14px 0 0; color: var(--muted); font-size: .7rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #1e293b;
  --muted: #6b7280;
  --paper: #f2f4f7;
  --cream: #ffffff;
  --coral: #c9a84c;
  --sage: #dbe5f2;
  --line: #d7dee8;
  --navy: #1a2b4a;
  --navy-dark: #111d33;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #dfe4ea; font-family: 'DM Sans', sans-serif; }
body::before { position: fixed; inset: 0; z-index: -1; background: linear-gradient(135deg, #dfe4ea, #eef1f4 48%, #d5dce5); content: ''; }
.site-header, .welcome-screen, .auth-screen, .account-screen, #citizen-home, .site-footer { width: min(100%, 1280px); margin-right: auto; margin-left: auto; }
.site-header, #citizen-home { border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
.welcome-screen, .auth-screen, .account-screen { border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
a { color: inherit; }
.site-header, .site-footer { display: flex; align-items: center; justify-content: space-between; padding: 26px 32px; }
.site-header { border-bottom: 1px solid var(--line); background: var(--cream); }
.wordmark { display: flex; align-items: center; gap: 10px; min-width: 0; font: 700 1.08rem 'Space Grotesk', sans-serif; text-decoration: none; }
.wordmark > span:last-child { display: grid; gap: 2px; }.wordmark small { color: var(--muted); font: 500 .58rem 'DM Sans', sans-serif; letter-spacing: .04em; text-transform: uppercase; }.wordmark strong { color: var(--navy); }
.wordmark-muted { color: var(--muted); font-weight: 500; }
.wordmark strong { color: var(--navy); }
.boot-logo { display: block; width: 39px; height: 34px; flex: 0 0 auto; object-fit: contain; }.boot-logo.small { width: 32px; height: 28px; }
.suite-label { margin-left: auto; color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: none; }
.site-nav a, .menu-button { color: var(--muted); font-size: .82rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--coral); }
.site-nav a.active { color: var(--navy); border-bottom: 2px solid var(--coral); padding-bottom: 5px; }
.menu-button { display: none; border: 0; background: transparent; cursor: pointer; }
.splash-tools { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0 auto 22px; }.a11y-button { padding: 9px 12px; border: 1px solid var(--line); color: var(--navy); background: var(--cream); font: 700 .72rem 'DM Sans', sans-serif; cursor: pointer; }.mock-badge { padding: 6px 9px; color: var(--navy); background: var(--sage); font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }.splash-auth-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.mode-switch { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: .65rem; font-weight: 700; }.mode-switch input { position: absolute; opacity: 0; }.mode-switch i { position: relative; width: 34px; height: 18px; border-radius: 20px; background: var(--navy); cursor: pointer; }.mode-switch i::after { position: absolute; top: 3px; left: 3px; width: 12px; height: 12px; border-radius: 50%; background: var(--cream); content: ''; transition: transform .2s ease; }.mode-switch input:checked + i::after { transform: translateX(16px); }.mode-switch input:focus-visible + i { outline: 2px solid var(--coral); outline-offset: 2px; }
.user-tools { display: flex; align-items: center; gap: 18px; }
.user-switcher { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .76rem; font-weight: 700; }
.user-switcher select { padding: 7px 25px 7px 9px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--cream); font: inherit; }
.site-nav a, .button, .card-action, .text-button, .menu-button { transition: color .2s ease, background-color .2s ease, transform .2s ease; }
.button span, .card-action span, .text-button span { margin-left: 8px; }
.app-frame { border: 1px solid var(--line); border-top: 0; box-shadow: 0 18px 50px rgba(23, 35, 43, .06); }
.hero { position: relative; max-width: 1180px; min-height: 590px; margin: auto; padding: 0 32px 100px; background: radial-gradient(circle at 78% 48%, rgba(183, 201, 176, .6), transparent 28%), radial-gradient(circle at 86% 52%, var(--coral) 0 8%, transparent 8.2%); }
.frame-bar { display: flex; align-items: center; gap: 9px; height: 38px; padding: 0 18px; border-bottom: 1px solid var(--line); color: var(--muted); background: rgba(255, 253, 248, .65); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.frame-context { margin-left: auto; font-weight: 500; letter-spacing: .04em; text-transform: none; }
.status-dot { width: 7px; height: 7px; background: var(--coral); border-radius: 50%; }
.hero-content { padding-top: 76px; }
.hero-panel { position: absolute; right: 32px; bottom: 80px; display: grid; width: 235px; gap: 11px; padding: 20px; border: 1px solid var(--line); background: rgba(255, 253, 248, .85); box-shadow: 0 12px 30px rgba(23, 35, 43, .08); }
.panel-kicker { color: var(--coral); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero-panel strong { font: 600 1.1rem 'Space Grotesk', sans-serif; }
.hero-panel span:not(.panel-kicker) { color: var(--muted); font-size: .78rem; line-height: 1.45; }
.hero-panel a { font-size: .76rem; font-weight: 700; text-decoration: none; }
.welcome-screen { min-height: calc(100vh - 84px); display: grid; place-items: center; padding: 70px 32px; background: radial-gradient(circle at 78% 44%, rgba(183, 201, 176, .7), transparent 25%), var(--paper); }
.welcome-inner { max-width: 920px; text-align: center; }.welcome-inner h1 { max-width: 850px; margin: 0 auto; font-size: clamp(3.3rem, 8vw, 7rem); }.welcome-inner > p:not(.eyebrow) { max-width: 520px; margin: 28px auto; color: var(--muted); font-size: 1.08rem; line-height: 1.6; }.welcome-note { display: block; margin-top: 22px; color: var(--muted); font-size: .75rem; }
.auth-screen, .account-screen { min-height: calc(100vh - 84px); display: grid; place-items: center; padding: 50px 20px; background: var(--paper); }.auth-card { width: min(100%, 600px); padding: 42px; background: var(--cream); }.auth-card h1 { font-size: clamp(2.8rem, 6vw, 5rem); }.auth-copy { max-width: 480px; color: var(--muted); line-height: 1.55; }.disclaimer-check { display: flex; gap: 10px; align-items: flex-start; margin: 28px 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }.disclaimer-check input { margin-top: 3px; accent-color: var(--coral); }.auth-actions { display: flex; flex-wrap: wrap; gap: 10px; }.auth-actions button:disabled { cursor: not-allowed; opacity: .45; }.back-link { margin-top: 24px; padding: 0; border: 0; color: var(--muted); background: transparent; font: 700 .75rem 'DM Sans', sans-serif; cursor: pointer; }.role-options { display: grid; gap: 10px; margin: 22px 0; }.role-option { display: grid; gap: 5px; padding: 16px; border: 1px solid var(--line); color: var(--ink); background: var(--cream); text-align: left; cursor: pointer; }.role-option.selected { border-color: var(--coral); background: #f8e6d7; }.role-option span { color: var(--muted); font-size: .78rem; }.account-fields { display: grid; gap: 7px; margin-bottom: 22px; }.account-fields label { color: var(--muted); font-size: .75rem; font-weight: 700; }.account-fields input { padding: 12px; border: 1px solid var(--line); background: var(--paper); font: inherit; }.auth-footnote { color: var(--muted); font-size: .7rem; line-height: 1.5; }.home-banner { display: flex; align-items: baseline; gap: 18px; max-width: 1180px; margin: auto; padding: 20px 32px; border-bottom: 1px solid var(--line); }.home-banner .eyebrow { margin: 0; }.home-banner strong { font: 600 1rem 'Space Grotesk', sans-serif; }.home-banner > span:last-child { color: var(--muted); font-size: .78rem; }
.eyebrow { margin: 0 0 22px; color: var(--coral); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; }
h1 { max-width: 720px; margin: 0; font-size: clamp(3.2rem, 7vw, 6.8rem); line-height: .94; letter-spacing: -.04em; }
.hero-copy { max-width: 460px; margin: 30px 0; color: var(--muted); font-size: 1.08rem; line-height: 1.6; }
.button { display: inline-block; padding: 15px 21px; color: var(--cream); background: var(--ink); font-weight: 700; text-decoration: none; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 68px; color: var(--muted); font-size: .8rem; }
.hero-status { padding-left: 12px; border-left: 1px solid var(--line); color: var(--ink); font-weight: 700; }
.dot { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; }
.foundations { max-width: 1180px; margin: auto; padding: 80px 32px 105px; background: var(--cream); }
.section-intro { display: flex; align-items: baseline; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
h2 { max-width: 470px; margin: 0 0 38px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.04em; }
.tools-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; }
.search-label { color: var(--muted); font-size: .8rem; font-weight: 700; }
.search-label span { display: inline-grid; width: 22px; height: 22px; margin-left: 7px; place-items: center; color: var(--cream); background: var(--ink); border-radius: 50%; }
#foundation-search { width: min(100%, 290px); padding: 12px 15px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--paper); font: inherit; }
#foundation-search:focus { outline: 2px solid var(--coral); outline-offset: 2px; }
.foundation-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.foundation-card { min-height: 280px; padding: 27px; background: var(--cream); }
.foundation-card.featured { background: var(--sage); }
.foundation-card.warm { background: #f8e6d7; }
.foundation-card.cool { background: #dbe6e6; }
.card-topline { display: flex; align-items: center; justify-content: space-between; }
.visited-label { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.card-number { color: var(--coral); font: 700 .8rem 'Space Grotesk', sans-serif; }
h3 { margin: 42px 0 12px; font-size: 2rem; }
.foundation-card p { min-height: 76px; margin: 0 0 20px; color: var(--muted); line-height: 1.5; }
.card-action, .text-button { padding: 0; border: 0; color: var(--ink); background: transparent; font: 700 .85rem 'DM Sans', sans-serif; cursor: pointer; }
.card-action:hover, .text-button:hover { color: var(--coral); }
.primer { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(23, 35, 43, .2); color: var(--ink); font-size: .9rem; line-height: 1.6; animation: reveal .3s ease both; }
.empty-state { margin: 0; padding: 28px; color: var(--muted); background: var(--paper); text-align: center; }
.roadmap, .greenbook { max-width: 1180px; margin: 18px auto 0; padding: 55px 32px 62px; background: var(--cream); }
.roadmap .section-intro, .greenbook .section-intro { margin-bottom: 12px; }
.roadmap .section-intro h2, .greenbook .section-intro h2 { margin-bottom: 25px; }
.roadmap-list { display: grid; gap: 1px; background: var(--line); }
.roadmap-step { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 20px; padding: 20px; background: var(--cream); }
.roadmap-step.active { background: #f8e6d7; }
.step-number { color: var(--coral); font: 700 .8rem 'Space Grotesk', sans-serif; }
.roadmap-step strong { font: 600 1.15rem 'Space Grotesk', sans-serif; }
.roadmap-step p { margin: 5px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.45; }
.step-state { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.greenbook { background: #dbe6e6; }
.greenbook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.greenbook-grid article { min-height: 220px; padding: 24px; background: var(--cream); }
.section-copy { max-width: 610px; margin: 0 0 24px; color: var(--muted); line-height: 1.5; }
.source-card { min-height: 265px; padding: 24px; background: var(--cream); }
.source-status { color: var(--muted); font-size: .65rem; text-align: right; }
.source-meta { display: grid; gap: 5px; min-height: 48px; margin: 15px 0 19px; color: var(--muted); font-size: .68rem; line-height: 1.4; }
.source-tools { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; }
#source-search { width: min(100%, 330px); padding: 12px 15px; border: 1px solid var(--line); color: var(--ink); background: var(--paper); font: inherit; }
#source-search:focus { outline: 2px solid var(--coral); outline-offset: 2px; }
.source-lightbox { width: min(680px, calc(100% - 32px)); padding: 0; border: 1px solid var(--line); color: var(--ink); background: var(--cream); box-shadow: 0 24px 80px rgba(23, 35, 43, .25); }
.source-lightbox::backdrop { background: rgba(23, 35, 43, .58); }
.source-modal-header { display: flex; justify-content: space-between; gap: 20px; padding: 28px 30px 0; border-bottom: 1px solid var(--line); }
.source-modal-header h2 { margin-bottom: 25px; font-size: clamp(2rem, 5vw, 3.2rem); }
.modal-close { width: 34px; height: 34px; border: 1px solid var(--line); color: var(--ink); background: transparent; font-size: 1.5rem; cursor: pointer; }
.source-record { display: grid; gap: 0; margin: 0; padding: 8px 30px; }
.source-record div { display: grid; grid-template-columns: 150px 1fr; gap: 15px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.source-record dt { color: var(--muted); font-size: .72rem; font-weight: 700; }
.source-record dd { margin: 0; font-size: .85rem; }
.source-note { margin: 18px 30px 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.source-modal-actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 25px 30px 30px; }
.resource-type { color: var(--coral); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.greenbook-grid h3 { margin: 35px 0 10px; font-size: 1.45rem; }
.greenbook-grid p { min-height: 48px; margin: 0 0 20px; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.greenbook-grid a { font-size: .78rem; font-weight: 700; text-decoration: none; }
.roadmap-toolbar { display: flex; align-items: center; gap: 10px; padding: 20px 0; }
.roadmap-toolbar label { color: var(--muted); font-size: .75rem; font-weight: 700; }
#map-search { flex: 1; min-width: 150px; padding: 12px 14px; border: 1px solid var(--line); color: var(--ink); background: var(--paper); font: inherit; }
#map-search:focus { outline: 2px solid var(--coral); outline-offset: 2px; }
.map-control, .emergency-button { padding: 11px 14px; border: 1px solid var(--ink); color: var(--cream); background: var(--ink); font: 700 .72rem 'DM Sans', sans-serif; cursor: pointer; }
.roadmap-layout { display: grid; grid-template-columns: 1.5fr .7fr; min-height: 310px; border: 1px solid var(--line); }
.map-canvas { position: relative; overflow: hidden; background: #cbd9d1; }
.map-grid { position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(28deg, transparent 48%, #8fa99d 49%, transparent 51%), linear-gradient(112deg, transparent 48%, #8fa99d 49%, transparent 51%), linear-gradient(#a8c0b6 1px, transparent 1px), linear-gradient(90deg, #a8c0b6 1px, transparent 1px); background-size: 130px 100px, 170px 140px, 42px 42px, 42px 42px; }
.map-road { position: absolute; display: block; height: 9px; background: rgba(255, 253, 248, .85); box-shadow: 0 1px 0 #99ada5; transform: rotate(-28deg); }
.road-one { top: 35%; left: -5%; width: 112%; }.road-two { top: 62%; left: 8%; width: 85%; transform: rotate(20deg); }.road-three { top: 5%; left: 54%; width: 100%; transform: rotate(84deg); }
.map-pin { position: absolute; display: grid; width: 30px; height: 30px; place-items: center; border: 3px solid var(--cream); border-radius: 50%; color: var(--cream); background: var(--coral); box-shadow: 0 3px 8px rgba(23, 35, 43, .2); font-weight: 700; cursor: pointer; }
.pin-one { top: 27%; left: 31%; }.pin-two { top: 57%; left: 63%; background: var(--ink); }.pin-three { top: 67%; left: 22%; background: #5c8977; }
.map-location { position: absolute; right: 18px; bottom: 15px; padding: 7px 9px; color: var(--ink); background: rgba(255, 253, 248, .85); font-size: .68rem; font-weight: 700; }
.map-details { padding: 22px; background: var(--cream); }.details-header { display: flex; justify-content: space-between; font: 600 1rem 'Space Grotesk', sans-serif; }.live-indicator { color: #4d836b; font: 700 .65rem 'DM Sans', sans-serif; text-transform: uppercase; }.live-indicator i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; background: #4d836b; border-radius: 50%; }
.map-details > p { margin: 12px 0 19px; color: var(--muted); font-size: .75rem; }.map-alert { display: flex; gap: 10px; margin: 12px 0; padding-bottom: 12px; border-bottom: 1px solid var(--line); }.alert-icon { display: grid; width: 22px; height: 22px; flex: 0 0 auto; place-items: center; color: var(--cream); background: var(--coral); border-radius: 50%; font-weight: 700; }.alert-icon.calm { background: #5c8977; }.map-alert div { display: grid; gap: 3px; }.map-alert strong { font-size: .76rem; }.map-alert span { color: var(--muted); font-size: .68rem; }.map-details a { display: block; margin-top: 20px; font-size: .72rem; font-weight: 700; text-decoration: none; }
.roadmap-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0 0; }.roadmap-actions .eyebrow { margin-bottom: 6px; }.roadmap-actions strong { font: 600 1.1rem 'Space Grotesk', sans-serif; }.action-buttons { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }.map-feedback { margin: 18px 0 0; color: var(--muted); font-size: .7rem; }
.practice { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; max-width: 1180px; margin: auto; padding: 95px 32px; background: var(--ink); color: var(--cream); }
.practice .eyebrow { color: var(--sage); }
.practice h2 { margin-bottom: 0; }
.practice-prompt { position: relative; padding: 28px 30px 30px 82px; border: 1px solid rgba(255, 253, 248, .25); }
.practice-prompt p { max-width: 520px; margin: 0 0 28px; font: 600 clamp(1.3rem, 2.4vw, 2rem) 'Space Grotesk', sans-serif; line-height: 1.15; }
.prompt-mark { position: absolute; top: 27px; left: 28px; display: grid; width: 36px; height: 36px; place-items: center; color: var(--ink); background: var(--sage); border-radius: 50%; font: 700 1.2rem 'Space Grotesk', sans-serif; }
.practice .text-button { color: var(--sage); }
.practice .text-button:hover { color: var(--cream); }
.workspace-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1180px; margin: auto; padding: 18px 0 0; }
.workspace-panel { min-height: 355px; padding: 30px; background: var(--cream); }
.dev-panel { color: var(--cream); background: var(--ink); }
.panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.panel-heading h2 { margin-bottom: 25px; font-size: clamp(2rem, 3vw, 3rem); }
.dev-panel .panel-heading { border-color: rgba(255, 253, 248, .22); }
.dev-panel .eyebrow { color: var(--sage); }
.preview-badge { padding: 6px 9px; color: var(--coral); border: 1px solid var(--coral); font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.preview-badge.dark { color: var(--sage); border-color: var(--sage); }
.profile-summary { display: flex; align-items: center; gap: 13px; padding: 24px 0; }
.avatar { display: grid; width: 42px; height: 42px; place-items: center; color: var(--cream); background: var(--coral); border-radius: 50%; font: 700 1.2rem 'Space Grotesk', sans-serif; }
.profile-summary div { display: grid; gap: 4px; }
.profile-summary span { color: var(--muted); font-size: .78rem; }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.profile-stats div { display: grid; gap: 5px; padding: 15px 10px 15px 0; }
.profile-stats strong { font: 700 1.35rem 'Space Grotesk', sans-serif; }
.profile-stats span, .panel-footnote { color: var(--muted); font-size: .7rem; }
.profile-actions, .dev-actions { display: flex; gap: 10px; padding-top: 20px; }
.outline-button { display: inline-block; padding: 9px 12px; border: 1px solid var(--line); color: var(--ink); background: transparent; font: 700 .72rem 'DM Sans', sans-serif; text-decoration: none; cursor: pointer; }
.outline-button:hover { color: var(--coral); border-color: var(--coral); }
.dev-panel .outline-button { color: var(--cream); border-color: rgba(255, 253, 248, .35); }
.dev-panel .outline-button:hover { color: var(--sage); border-color: var(--sage); }
.panel-footnote { margin: 18px 0 0; }
.dev-intro { max-width: 430px; color: #c6d0cc; font-size: .88rem; line-height: 1.5; }
.health-list { display: grid; gap: 10px; margin-top: 20px; }
.health-list div { display: grid; grid-template-columns: 10px 1fr auto; align-items: center; gap: 9px; padding-bottom: 9px; border-bottom: 1px solid rgba(255, 253, 248, .12); font-size: .78rem; }
.health-list strong { color: var(--sage); font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; }
.health-indicator { width: 7px; height: 7px; border-radius: 50%; }
.health-indicator.good { background: var(--sage); }.health-indicator.pending { background: var(--coral); }
.settings-panel { max-width: 1180px; margin: 18px auto 0; padding: 30px 32px; background: var(--cream); }.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }.settings-grid h3 { margin: 24px 0 15px; font-size: 1.35rem; }.toggle-row, .credential-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }.toggle-row span, .credential-row span:nth-child(2) { display: grid; gap: 4px; }.toggle-row strong, .credential-row strong { font-size: .8rem; }.toggle-row small, .credential-row small { color: var(--muted); font-size: .68rem; line-height: 1.35; }.toggle { position: absolute; opacity: 0; }.toggle + i { position: relative; display: block; width: 39px; height: 22px; flex: 0 0 auto; border-radius: 20px; background: var(--line); cursor: pointer; }.toggle + i::after { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--cream); content: ''; transition: transform .2s ease; }.toggle:checked + i { background: var(--coral); }.toggle:checked + i::after { transform: translateX(17px); }.toggle:focus-visible + i { outline: 2px solid var(--coral); outline-offset: 3px; }.credential-row b { color: var(--muted); font-size: .65rem; letter-spacing: .05em; text-transform: uppercase; text-align: right; }
.bottom-nav { position: fixed; right: 16px; bottom: 14px; left: 16px; z-index: 20; display: flex; align-items: center; gap: 8px; min-height: 64px; padding: 10px 12px; border: 1px solid rgba(201,168,76,.3); border-radius: 12px; color: var(--cream); background: linear-gradient(90deg, rgba(26,43,74,.95), rgba(17,29,51,.96)); box-shadow: 0 10px 28px rgba(2,6,23,.24); }.bottom-brand { display: flex; align-items: center; gap: 6px; min-width: 110px; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }.boot-mark.small { width: 27px; height: 24px; transform: scale(.72) rotate(-10deg); transform-origin: left center; margin-right: -6px; }.bottom-nav-link { flex: 1; padding: 7px 3px; color: var(--coral); font-size: .7rem; font-weight: 800; text-align: center; text-decoration: none; }.bottom-nav-link.active { color: var(--cream); background: rgba(201,168,76,.24); border-radius: 7px; }
body.accessible-view { font-size: 108%; } body.accessible-view .bottom-nav { border: 2px solid var(--cream); } body.accessible-view :focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
@keyframes reveal { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.site-footer { color: var(--muted); font-size: .8rem; }
.site-footer a { color: var(--ink); font-weight: 700; }
@media (max-width: 700px) {
  .site-header, .site-footer { padding: 20px; }
  .suite-label, .user-switcher { display: none; }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 70px; right: 20px; z-index: 2; display: none; margin: 0; padding: 16px; background: var(--cream); box-shadow: 0 12px 30px rgba(23, 35, 43, .12); }
  .site-nav.open { display: none; }
  .hero { min-height: 690px; padding: 0 20px 70px; background: radial-gradient(circle at 80% 58%, rgba(183, 201, 176, .7), transparent 35%), radial-gradient(circle at 89% 63%, var(--coral) 0 9%, transparent 9.3%); }
  .hero-content { padding-top: 62px; }
  .hero-panel { position: static; width: 100%; margin-top: 58px; }
  .frame-context { display: none; }
  h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .foundations { padding: 65px 20px; }
  .section-intro { display: block; }
  .foundation-list { grid-template-columns: 1fr; }
  .foundation-card { min-height: 0; }
  h3 { margin-top: 30px; }
  .foundation-card p { min-height: 0; }
  .tools-row { display: block; }
  #foundation-search { width: 100%; margin-top: 16px; }
  .practice { grid-template-columns: 1fr; gap: 35px; padding: 70px 20px; }
  .practice-prompt { padding-left: 72px; }
  .workspace-grid { grid-template-columns: 1fr; padding: 18px 0 0; }
  .settings-panel { padding: 28px 20px; }.settings-grid { grid-template-columns: 1fr; gap: 10px; }
  .bottom-nav { right: 8px; bottom: 8px; left: 8px; }.bottom-brand { min-width: 42px; }.bottom-brand strong { display: none; }.bottom-nav-link { font-size: .62rem; }
  .workspace-panel { padding: 24px 20px; }
    .assistant { padding: 45px 20px 30px; }
    .assistant-heading { display: block; }
    .chat-message { max-width: 94%; }
    .chat-form { display: grid; }
    .chat-form .button { width: 100%; }
  .welcome-screen { min-height: calc(100vh - 72px); padding: 50px 20px; }.welcome-inner h1 { font-size: clamp(3rem, 15vw, 5rem); }.auth-card { padding: 28px 22px; }.home-banner { display: block; padding: 18px 20px; }.home-banner strong, .home-banner > span:last-child { display: block; margin-top: 7px; }
  .roadmap, .greenbook { margin-top: 18px; padding: 45px 20px; }
  .roadmap-step { grid-template-columns: 35px 1fr; gap: 12px; }
  .step-state { grid-column: 2; }
  .greenbook-grid { grid-template-columns: 1fr; }
  .source-tools { display: block; }.source-tools #source-search { width: 100%; margin-top: 16px; }
  .source-record div { grid-template-columns: 1fr; gap: 5px; }
  .roadmap-toolbar { display: grid; grid-template-columns: 1fr 1fr; }
  #map-search { grid-column: 1 / -1; }
  .roadmap-layout { grid-template-columns: 1fr; }
  .map-canvas { min-height: 260px; }
  .roadmap-actions { display: block; }.action-buttons { justify-content: flex-start; margin-top: 18px; }
}