:root {
    --ink: #182123;
    --muted: #627073;
    --line: #dbe3df;
    --paper: #fbfcfa;
    --white: #ffffff;
    --teal: #0f766e;
    --teal-dark: #0b4f4a;
    --green: #2f7d4d;
    --gold: #b8871b;
    --blue: #2d5b87;
    --coral: #bb5a4b;
    --panel: #f3f7f4;
    --shadow: 0 18px 50px rgba(24, 33, 35, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(251, 252, 250, .93);
    border-bottom: 1px solid rgba(219, 227, 223, .85);
    backdrop-filter: blur(18px);
}

.nav-shell,
.section-inner,
.hero-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section-inner.narrow {
    width: min(860px, calc(100% - 40px));
}

.center {
    text-align: center;
}

.nav-shell {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.brand img {
    width: 142px;
    height: auto;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #334143;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a {
    padding: 26px 0;
    border-bottom: 2px solid transparent;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--teal-dark);
    border-bottom-color: var(--teal);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu {
    display: none;
    position: relative;
}

.mobile-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(310px, calc(100vw - 28px));
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.mobile-menu-panel a {
    padding: 12px;
    border-radius: 8px;
    color: #334143;
    font-weight: 800;
}

.mobile-menu-panel a.active,
.mobile-menu-panel a:hover {
    background: var(--panel);
    color: var(--teal-dark);
}

.mobile-menu-panel .mobile-primary {
    background: var(--teal-dark);
    color: var(--white);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.button.primary {
    background: var(--teal-dark);
    color: var(--white);
}

.button.secondary {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
}

.button.ghost {
    color: var(--teal-dark);
}

.button:disabled {
    cursor: not-allowed;
    opacity: .62;
}

.hero {
    min-height: 560px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #182123;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16, 27, 29, .94), rgba(16, 27, 29, .68) 48%, rgba(16, 27, 29, .28)),
        url("/assets/about-team.png") center / cover no-repeat;
}

.hero-inner {
    position: relative;
    padding: 58px 0 70px;
    color: var(--white);
}

.eyebrow {
    color: #9bd5ce;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1 {
    width: min(820px, 100%);
    margin-top: 18px;
    font-size: clamp(44px, 6vw, 72px);
    line-height: .98;
    letter-spacing: 0;
}

.hero-copy {
    width: min(650px, 100%);
    margin-top: 26px;
    color: #e2ece8;
    font-size: 20px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 46px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .24);
    color: #edf7f2;
    font-size: 13px;
    font-weight: 700;
}

.section {
    padding: 86px 0;
}

.section.alt {
    background: #eef4f0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.section-title {
    width: min(740px, 100%);
}

.section-title h2 {
    margin-top: 10px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.04;
}

.section-title p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.free-cta {
    display: grid;
    gap: 10px;
    justify-items: end;
}

.free-cta span,
.mini-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: #dcefe9;
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.free-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: -10px 0 26px;
    padding: 16px 18px;
    border: 1px solid #bcdcd3;
    border-radius: 8px;
    background: #e9f7f2;
}

.free-strip strong {
    color: var(--teal-dark);
    font-size: 18px;
}

.free-strip span {
    color: #415457;
    line-height: 1.5;
}

.grid {
    display: grid;
    gap: 18px;
}

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

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

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 28px;
    align-items: start;
}

.card,
.panel,
.metric,
.form-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.card {
    padding: 26px;
}

.card h3 {
    font-size: 21px;
    line-height: 1.2;
}

.card p,
.card li {
    color: var(--muted);
    line-height: 1.62;
}

.card p {
    margin-top: 12px;
}

.card ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.tag {
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--panel);
    color: #34484a;
    font-size: 12px;
    font-weight: 800;
}

.regulatory-grid {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.reg-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.reg-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reg-card-head span,
.learn-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #dcefe9;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 900;
}

.reg-card-head .flag-icon {
    width: 46px;
    height: 46px;
    border: 1px solid #c8d8d4;
    background: #f8fbf9;
    color: inherit;
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
}

.reg-card h3,
.learning-band h3,
.learn-step h3,
.resource-card h3 {
    font-size: 24px;
    line-height: 1.15;
}

.reg-card > p,
.learning-band p,
.learn-step p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.62;
}

.reg-columns {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    margin-top: 22px;
}

.reg-columns h4 {
    margin: 0 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #3f5053;
}

.reg-columns ul,
.learn-step ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.58;
}

.reg-columns p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.source-links,
.resource-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.source-links a,
.resource-list a {
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 800;
}

.learning-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-top: 34px;
    padding: 28px;
    border: 1px solid #bcdcd3;
    border-radius: 8px;
    background: #e9f7f2;
}

.learning-band h3 {
    margin-top: 12px;
}

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

.learn-step {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.learn-step h3 {
    margin-top: 16px;
}

.learn-step ul {
    margin-top: 16px;
}

.resource-card {
    margin-top: 22px;
}

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

.step {
    min-height: 154px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #dcefe9;
    color: var(--teal-dark);
    font-weight: 800;
}

.step h3 {
    margin-top: 16px;
    font-size: 18px;
}

.step p {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.55;
}

.tool-preview {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 26px;
    align-items: stretch;
}

.mock-window {
    border-radius: 8px;
    border: 1px solid #cad7d3;
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.mock-bar {
    display: flex;
    gap: 6px;
    align-items: center;
    height: 42px;
    padding: 0 14px;
    background: #edf3ef;
    border-bottom: 1px solid var(--line);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--coral);
}

.dot:nth-child(2) {
    background: var(--gold);
}

.dot:nth-child(3) {
    background: var(--green);
}

.mock-body {
    padding: 22px;
}

.risk-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.risk-row:last-child {
    border-bottom: 0;
}

.risk-row strong {
    font-size: 15px;
}

.risk-row small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.status {
    padding: 6px 9px;
    border-radius: 999px;
    background: #e6f1ec;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.status.warn {
    background: #f5ecd6;
    color: #8b6515;
}

.status.hot {
    background: #f4ded9;
    color: #a24334;
}

.status.done {
    background: #dcefe9;
    color: var(--green);
}

.status.progress {
    background: #dce9f3;
    color: var(--blue);
}

.priority {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    background: #e8eef0;
    color: #415457;
    font-size: 12px;
    font-weight: 800;
}

.priority.high {
    background: #f4ded9;
    color: #a24334;
}

.priority.low {
    background: #e7f0e8;
    color: var(--green);
}

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

.guide-step {
    min-height: 144px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.guide-step strong {
    display: block;
    margin-top: 12px;
}

.guide-step p {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.5;
}

.guide-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dcefe9;
    color: var(--teal-dark);
    font-weight: 800;
}

.task-list {
    display: grid;
    gap: 14px;
}

.task-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.task-item h3 {
    font-size: 18px;
}

.task-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.inline-actions form {
    margin: 0;
}

.edit-panel {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8faf8;
}

.edit-panel summary {
    cursor: pointer;
    color: var(--teal-dark);
    font-weight: 800;
}

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

.alert-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.alert-card strong {
    display: block;
    margin-top: 6px;
    font-size: 28px;
}

.alert-card.hot strong {
    color: var(--coral);
}

.alert-card.warn strong {
    color: var(--gold);
}

.print-only {
    display: none;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 20px;
}

.price {
    font-size: 32px;
    font-weight: 800;
}

.price small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.profile {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 34px;
    align-items: start;
}

.profile-image {
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(15, 118, 110, .12), rgba(184, 135, 27, .12)),
        #e8f0ed;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--teal-dark);
    font-size: 56px;
    font-weight: 800;
}

.source-note {
    margin-top: 20px;
    padding: 16px 18px;
    border-left: 4px solid var(--teal);
    background: #eef7f4;
    color: #355052;
    line-height: 1.55;
}

.dashboard-guide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
    padding: 22px;
    border: 1px solid #bcdcd3;
    border-radius: 8px;
    background: #e9f7f2;
}

.dashboard-guide[hidden] {
    display: none;
}

.dashboard-guide h2 {
    margin-top: 6px;
    color: var(--ink);
    font-size: 26px;
}

.dashboard-guide p {
    margin-top: 8px;
    color: #355052;
    line-height: 1.6;
}

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

.quiet-focus-list {
    padding-top: 38px;
}

.quiet-focus-list h3 {
    font-size: 21px;
}

.quiet-focus-list ul {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding: 0;
    list-style: none;
}

.quiet-focus-list li {
    color: #355052;
    line-height: 1.5;
}

.subtle-link-line {
    margin-top: 14px !important;
    font-size: 15px !important;
}

.subtle-link-line a {
    color: var(--teal-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page h1 {
    color: var(--ink);
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.05;
}

.legal-page h2 {
    margin-top: 34px;
    color: var(--ink);
    font-size: 24px;
}

.legal-page p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.legal-updated {
    color: var(--teal-dark) !important;
    font-weight: 800;
}

.cookie-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    width: min(620px, calc(100% - 44px));
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid #bcdcd3;
    border-radius: 8px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 44px rgba(24, 33, 35, .16);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    color: var(--ink);
}

.cookie-banner p {
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-actions a {
    color: var(--teal-dark);
    font-weight: 800;
    font-size: 13px;
}

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

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

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

.honeypot-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.field label {
    font-size: 13px;
    font-weight: 800;
    color: #334143;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #cdd9d5;
    border-radius: 8px;
    background: var(--white);
    padding: 12px 13px;
    color: var(--ink);
}

.field textarea {
    min-height: 142px;
    resize: vertical;
}

.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-art {
    display: flex;
    align-items: flex-end;
    padding: 52px;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(15, 79, 74, .35), rgba(19, 32, 34, .92)),
        url("/assets/about-europe-office.png") center / cover no-repeat;
}

.auth-art h1 {
    font-size: clamp(36px, 5vw, 64px);
}

.auth-panel {
    display: grid;
    place-items: center;
    padding: 40px;
}

.auth-box {
    width: min(430px, 100%);
}

.auth-box .brand {
    margin-bottom: 38px;
}

.google-button {
    width: 100%;
    margin: 18px 0;
    background: var(--white);
    border: 1px solid var(--line);
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.divider::before,
.divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--line);
}

.shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #f4f7f5;
    min-width: 0;
}

.sidebar {
    padding: 24px;
    background: #172326;
    color: #dfe9e6;
    min-width: 0;
}

.workspace-email-row {
    margin-bottom: 28px;
    min-width: 0;
}

.workspace-account-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.workspace-account-actions form {
    margin: 0;
    flex: 0 0 auto;
}

.workspace-email {
    min-width: 0;
    overflow: hidden;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.workspace-site-link {
    color: #9bd5ce;
    font-size: 12px;
    font-weight: 800;
}

.workspace-site-link:hover {
    color: var(--white);
}

.workspace-signout {
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: #dfe9e6;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.workspace-signout:hover {
    background: rgba(255, 255, 255, .14);
    color: var(--white);
}

.side-nav {
    display: grid;
    gap: 8px;
}

.side-nav a {
    padding: 12px 13px;
    border-radius: 8px;
    color: #cbd8d5;
    font-weight: 700;
}

.side-nav a.active,
.side-nav a:hover {
    background: rgba(255, 255, 255, .10);
    color: var(--white);
}

.workspace {
    padding: 34px;
    min-width: 0;
}

.workspace-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.workspace-head h1 {
    color: var(--ink);
    font-size: 36px;
    line-height: 1.1;
}

.metric {
    padding: 22px;
}

.metric span {
    color: var(--muted);
    font-weight: 700;
}

.metric strong {
    display: block;
    margin-top: 8px;
    font-size: 30px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.table th {
    color: #3f5053;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.footer {
    padding: 42px 0;
    background: #152123;
    color: #d6e2df;
}

.footer .section-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer a {
    color: #9bd5ce;
}

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

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: auto;
    }

    .grid.three,
    .grid.two,
    .split,
    .workflow,
    .tool-preview,
    .profile,
    .auth-page,
    .shell,
    .guide,
    .detail-grid,
    .alert-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-guide {
        grid-template-columns: 1fr;
    }

    .guide-actions {
        justify-content: flex-start;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        justify-content: flex-start;
    }

    .reg-columns,
    .learning-roadmap {
        grid-template-columns: 1fr;
    }

    .learning-band,
    .free-strip {
        display: grid;
        justify-items: start;
    }

    .free-cta {
        justify-items: start;
    }

    .auth-art {
        min-height: 380px;
    }

    .sidebar {
        position: static;
        padding: 16px;
    }

    .workspace-email-row {
        margin-bottom: 0;
    }

    .side-nav {
        display: flex;
        gap: 8px;
        margin-top: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: thin;
        min-width: 0;
        max-width: 100%;
    }

    .side-nav a {
        flex: 0 0 auto;
        padding: 9px 11px;
        font-size: 13px;
    }

    .workspace-account-actions {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, .10);
    }

    .workspace-email {
        max-width: 100%;
    }
}

@media print {
    .sidebar,
    .workspace-head .button,
    .no-print,
    .inline-actions,
    details.edit-panel,
    form {
        display: none !important;
    }

    .print-only {
        display: block;
    }

    .shell {
        display: block;
        background: #fff;
    }

    .workspace {
        padding: 0;
    }

    .card,
    .metric {
        break-inside: avoid;
        box-shadow: none;
    }
}

@media (max-width: 640px) {
    .nav-shell,
    .section-inner,
    .hero-inner {
        width: min(100% - 28px, 1180px);
    }

    .brand img {
        width: 128px;
    }

    .mobile-menu-panel {
        right: -2px;
    }

    .section {
        padding: 60px 0;
    }

    .section-head,
    .footer .section-inner {
        display: block;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .workspace {
        padding: 22px;
    }
}
