:root {
    --ink: #102a2d;
    --ink-soft: #315054;
    --paper: #f5f1e8;
    --paper-deep: #e8e1d4;
    --white: #fffdf8;
    --cobalt: #145c73;
    --cobalt-dark: #0a3b4b;
    --aqua: #65c6bd;
    --aqua-light: #c8ebe5;
    --coral: #e47f5f;
    --line: rgba(16, 42, 45, .16);
    --shadow: 0 24px 70px rgba(14, 43, 46, .14);
    font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    background:
        linear-gradient(rgba(16, 42, 45, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 42, 45, .035) 1px, transparent 1px),
        var(--paper);
    background-size: 42px 42px;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.site-header {
    position: relative;
    z-index: 10;
    width: min(1200px, calc(100% - 48px));
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    text-decoration: none;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
}

.brand > span:last-child {
    display: grid;
    line-height: 1;
}

.brand strong {
    font-size: 17px;
    letter-spacing: .01em;
}

.brand small {
    margin-top: 5px;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--cobalt);
}

.site-nav .nav-action {
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
}

.site-nav .nav-action:hover,
.site-nav .nav-action:focus-visible {
    border-color: var(--cobalt);
    background: var(--cobalt);
    color: var(--white);
}

.hero {
    width: min(1200px, calc(100% - 48px));
    min-height: 660px;
    margin: 0 auto;
    padding: 72px 0 88px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    align-items: center;
    gap: clamp(56px, 8vw, 120px);
}

.eyebrow {
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--cobalt);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--coral);
}

.hero h1,
.auth-intro h1,
.message-card h1,
.dashboard-heading h1,
.legal-shell h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 7.2vw, 94px);
    font-weight: 400;
    line-height: .96;
    letter-spacing: -.05em;
}

.hero h1 em {
    color: var(--cobalt);
    font-weight: 400;
}

.hero-lede {
    max-width: 620px;
    margin: 30px 0 0;
    color: var(--ink-soft);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-actions.center {
    justify-content: center;
}

.button {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 750;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(20, 92, 115, .28);
    outline-offset: 3px;
}

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

.button-primary:hover {
    background: var(--cobalt-dark);
}

.button-text {
    padding-inline: 4px;
    color: var(--ink);
}

.button-text span,
.button-light span {
    font-size: 20px;
}

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

.button-light {
    background: var(--aqua-light);
    color: var(--cobalt-dark);
}

.button-muted {
    background: var(--paper-deep);
    color: var(--ink-soft);
    cursor: not-allowed;
}

.button-muted:hover {
    transform: none;
}

.button-full {
    width: 100%;
}

.microcopy {
    margin: 16px 0 0;
    color: #64797b;
    font-size: 13px;
}

.hero-panel {
    position: relative;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: var(--cobalt-dark);
    color: var(--white);
    box-shadow: var(--shadow);
    transform: rotate(1.25deg);
}

.hero-panel::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -70px;
    width: 230px;
    height: 230px;
    border: 45px solid rgba(101, 198, 189, .1);
    border-radius: 50%;
}

.preview-top,
.preview-score,
.preview-task {
    position: relative;
    z-index: 1;
}

.preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.preview-company {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
}

.status-pill {
    width: fit-content;
    padding: 7px 11px;
    border: 1px solid rgba(101, 198, 189, .32);
    border-radius: 999px;
    background: rgba(101, 198, 189, .12);
    color: #aee4de;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .04em;
}

.preview-score {
    margin: 42px 0 24px;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.preview-score span {
    color: #a9c5c7;
    font-size: 13px;
}

.preview-score strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.progress {
    height: 5px;
    grid-column: 1 / -1;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
}

.progress span {
    display: block;
    width: 84%;
    height: 100%;
    background: var(--aqua);
}

.preview-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.preview-grid article {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 9px;
    background: rgba(255, 255, 255, .045);
}

.preview-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(101, 198, 189, .35);
    border-radius: 50%;
    color: var(--aqua);
    font-family: Georgia, serif;
    font-size: 11px;
}

.preview-grid small,
.preview-task small {
    display: block;
    color: #8eabad;
    font-size: 11px;
    letter-spacing: .04em;
}

.preview-grid strong {
    margin: 7px 0 4px;
    display: block;
    font-size: 15px;
}

.preview-grid p {
    margin: 0;
    color: #b9ced0;
    font-size: 12px;
}

.preview-task {
    margin-top: 12px;
    padding: 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    border-radius: 9px;
    background: var(--white);
    color: var(--ink);
}

.task-check {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--aqua-light);
    color: var(--cobalt);
    font-weight: 900;
}

.preview-task strong {
    display: block;
    font-size: 12px;
}

.preview-task small {
    margin-top: 3px;
    color: #728386;
}

.preview-task time {
    color: #728386;
    font-size: 11px;
}

.trust-strip {
    min-height: 76px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4vw, 52px);
    background: var(--aqua-light);
    color: var(--cobalt-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-align: center;
    text-transform: uppercase;
}

.trust-strip i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--coral);
}

.section,
.feature-section {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 120px 0;
}

.section-heading {
    max-width: 720px;
}

.section-heading h2,
.boundary-section h2,
.feature-section h2,
.cta-section h2,
.workspace-primary h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.section-heading > p:last-child {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.65;
}

.service-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    min-height: 430px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 248, .42);
}

.service-card-featured {
    background: var(--white);
}

.card-number {
    color: var(--coral);
    font-family: Georgia, serif;
    font-size: 14px;
}

.service-card h3 {
    margin: 72px 0 17px;
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
}

.service-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

.service-card ul {
    margin: auto 0 0;
    padding: 24px 0 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.service-card li {
    position: relative;
    padding: 6px 0 6px 18px;
    color: var(--ink-soft);
    font-size: 13px;
}

.service-card li::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aqua);
}

.boundary-section {
    padding: 110px max(24px, calc((100vw - 1200px) / 2));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 10vw, 150px);
    background: var(--cobalt-dark);
    color: var(--white);
}

.eyebrow-light {
    color: var(--aqua);
}

.boundary-copy {
    align-self: end;
}

.boundary-copy p {
    margin: 0;
    color: #c0d3d4;
    font-size: 17px;
    line-height: 1.75;
}

.boundary-copy p + p {
    margin-top: 24px;
}

.compact {
    max-width: 600px;
}

.feature-list {
    margin-top: 64px;
    border-top: 1px solid var(--line);
}

.feature-list article {
    min-height: 118px;
    display: grid;
    grid-template-columns: 72px 1fr 1.3fr;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid var(--line);
}

.feature-list span {
    color: var(--coral);
    font-family: Georgia, serif;
    font-size: 13px;
}

.feature-list h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 400;
}

.feature-list p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.55;
}

.cta-section {
    padding: 120px max(24px, calc((100vw - 820px) / 2));
    background: var(--cobalt);
    color: var(--white);
    text-align: center;
}

.cta-section .eyebrow {
    justify-content: center;
    color: var(--aqua-light);
}

.cta-section p:not(.eyebrow) {
    max-width: 630px;
    margin: 24px auto 32px;
    color: #cae0e1;
    font-size: 18px;
    line-height: 1.65;
}

.site-footer {
    min-height: 220px;
    padding: 56px max(24px, calc((100vw - 1200px) / 2));
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    background: #092c37;
    color: var(--white);
}

.footer-brand {
    color: var(--white);
}

.footer-brand .brand-mark {
    border-color: rgba(255, 255, 255, .7);
    color: var(--white);
}

.footer-brand small,
.site-footer > div > p {
    color: #9bb9bc;
}

.site-footer > div > p {
    max-width: 430px;
    margin: 20px 0 0;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    justify-items: end;
    gap: 14px;
    color: #9bb9bc;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--white);
}

.auth-shell {
    width: min(1120px, calc(100% - 48px));
    min-height: 720px;
    margin: 0 auto;
    padding: 68px 0 100px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, .72fr);
    align-items: center;
    gap: clamp(60px, 10vw, 140px);
}

.auth-shell-login {
    min-height: 650px;
}

.back-link {
    margin-bottom: 74px;
    display: inline-block;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.back-link:hover {
    color: var(--cobalt);
}

.auth-intro h1,
.message-card h1,
.legal-shell h1 {
    font-size: clamp(48px, 6vw, 72px);
}

.auth-intro > p:not(.eyebrow) {
    max-width: 570px;
    margin: 26px 0 0;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.7;
}

.auth-promise {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.auth-promise > strong {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.auth-promise ol {
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 13px;
    list-style: none;
}

.auth-promise li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-soft);
}

.auth-promise li span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--cobalt);
    font-family: Georgia, serif;
    font-size: 12px;
}

.form-card {
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid var(--line);
    border-top: 4px solid var(--cobalt);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-heading {
    margin-bottom: 34px;
    padding-bottom: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 12px;
}

.form-heading span {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    margin-bottom: 22px;
}

.field label {
    margin-bottom: 8px;
    display: block;
    font-size: 13px;
    font-weight: 750;
}

.field input {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid #bdc8c4;
    border-radius: 4px;
    background: #fffefa;
    color: var(--ink);
}

.field input:hover {
    border-color: var(--ink-soft);
}

.field input[aria-invalid="true"] {
    border-color: #b94f3d;
}

.field small {
    margin-top: 7px;
    display: block;
    color: #6d7f81;
    font-size: 11px;
}

.field .field-error,
.field-error {
    color: #a83f32;
    font-weight: 650;
}

.check-field {
    margin: 2px 0 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 11px;
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.55;
}

.check-field input {
    width: 17px;
    height: 17px;
    margin: 1px 0 0;
    accent-color: var(--cobalt);
}

.check-field a {
    color: var(--cobalt);
    font-weight: 700;
}

.terms-error {
    margin: -17px 0 20px;
    display: block;
    font-size: 11px;
}

.form-foot {
    margin: 20px 0 0;
    color: var(--ink-soft);
    font-size: 13px;
    text-align: center;
}

.form-foot a {
    color: var(--cobalt);
    font-weight: 750;
}

.notice {
    margin-bottom: 22px;
    padding: 13px 14px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
}

.notice-error {
    border: 1px solid rgba(169, 63, 50, .25);
    background: #fff0ec;
    color: #923d32;
}

.notice-success {
    border: 1px solid rgba(20, 92, 115, .2);
    background: #e5f4f1;
    color: var(--cobalt-dark);
}

.message-shell {
    width: min(760px, calc(100% - 48px));
    min-height: 650px;
    margin: 0 auto;
    padding: 80px 0 110px;
    display: grid;
    place-items: center;
}

.message-card {
    width: 100%;
    padding: clamp(34px, 7vw, 72px);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.message-card .eyebrow {
    justify-content: center;
}

.message-card > p:not(.eyebrow) {
    max-width: 570px;
    margin: 25px auto 0;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.7;
}

.message-card > .button {
    margin-top: 30px;
}

.message-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 28px;
    display: grid;
    place-items: center;
    border: 1px solid var(--cobalt);
    border-radius: 50%;
    color: var(--cobalt);
    font-family: Georgia, serif;
    font-size: 24px;
}

.message-icon.success {
    border-color: #3c968a;
    background: #e2f4f0;
}

.message-icon.error {
    border-color: #c7664e;
    color: #a94534;
}

.message-note {
    margin: 30px auto 0;
    padding: 18px;
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--paper);
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.55;
    text-align: left;
}

.message-note strong {
    color: var(--ink);
}

.dashboard-shell {
    width: min(1120px, calc(100% - 48px));
    min-height: 720px;
    margin: 0 auto;
    padding: 78px 0 110px;
}

.dashboard-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.dashboard-heading h1 {
    font-size: clamp(46px, 6vw, 72px);
}

.dashboard-heading > div > p:last-child {
    margin: 20px 0 0;
    color: var(--ink-soft);
    font-size: 17px;
}

.workspace-grid {
    margin-top: 58px;
    display: grid;
    grid-template-columns: 1.5fr .7fr;
    gap: 18px;
}

.workspace-primary,
.workspace-side,
.partner-reminder {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.workspace-primary {
    min-height: 350px;
    padding: clamp(30px, 5vw, 54px);
}

.workspace-primary .status-pill {
    color: var(--cobalt);
}

.workspace-primary h2 {
    max-width: 560px;
    margin-top: 48px;
    font-size: clamp(36px, 4vw, 52px);
}

.workspace-primary p {
    max-width: 600px;
    margin: 22px 0 30px;
    color: var(--ink-soft);
    line-height: 1.65;
}

.workspace-side {
    padding: 30px;
}

.workspace-side h3 {
    margin: 0 0 26px;
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 400;
}

.workspace-side dl,
.workspace-side dd {
    margin: 0;
}

.workspace-side dl div {
    padding: 15px 0;
    border-top: 1px solid var(--line);
}

.workspace-side dt {
    margin-bottom: 5px;
    color: #6e8082;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.workspace-side dd {
    overflow-wrap: anywhere;
    font-size: 14px;
}

.partner-reminder {
    margin-top: 18px;
    padding: 25px 28px;
    display: grid;
    grid-template-columns: .45fr 1.55fr;
    gap: 35px;
    background: var(--aqua-light);
}

.partner-reminder p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.65;
}

.legal-shell {
    width: min(860px, calc(100% - 48px));
    margin: 0 auto;
    padding: 70px 0 120px;
}

.legal-shell section {
    margin-top: 55px;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid var(--line);
    background: var(--white);
}

.legal-shell h2 {
    margin: 34px 0 12px;
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 400;
}

.legal-shell h2:first-child {
    margin-top: 0;
}

.legal-shell section p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .site-header {
        min-height: 76px;
    }

    .site-nav > a:not(.nav-action):not(:last-of-type) {
        display: none;
    }

    .site-nav {
        gap: 14px;
    }

    .hero,
    .auth-shell {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 60px;
        gap: 58px;
    }

    .hero-panel {
        width: min(100%, 620px);
        justify-self: center;
        transform: none;
    }

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

    .service-card {
        min-height: 350px;
    }

    .boundary-section {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .feature-list article {
        grid-template-columns: 45px 1fr;
        padding: 24px 0;
    }

    .feature-list p {
        grid-column: 2;
    }

    .auth-shell {
        padding-top: 50px;
        gap: 48px;
    }

    .back-link {
        margin-bottom: 50px;
    }

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

    .partner-reminder {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 620px) {
    .site-header,
    .hero,
    .section,
    .feature-section,
    .auth-shell,
    .dashboard-shell,
    .legal-shell,
    .message-shell {
        width: min(100% - 30px, 1200px);
    }

    .site-header {
        min-height: 68px;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
    }

    .site-nav a:not(.nav-action) {
        display: none;
    }

    .site-nav .nav-action {
        min-height: 38px;
        padding: 0 14px;
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        padding: 55px 0 70px;
    }

    .hero h1 {
        font-size: clamp(49px, 15vw, 68px);
    }

    .hero-panel {
        padding: 20px;
    }

    .preview-top {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .trust-strip {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        text-align: left;
    }

    .trust-strip i {
        display: none;
    }

    .section,
    .feature-section {
        padding: 86px 0;
    }

    .service-grid {
        margin-top: 42px;
    }

    .service-card {
        min-height: 380px;
        padding: 28px;
    }

    .boundary-section,
    .cta-section {
        padding-block: 80px;
    }

    .feature-list article {
        grid-template-columns: 32px 1fr;
        gap: 16px;
    }

    .site-footer {
        flex-direction: column;
    }

    .footer-links {
        justify-items: start;
    }

    .auth-shell {
        grid-template-columns: minmax(0, 1fr);
        padding-bottom: 75px;
    }

    .form-card {
        padding: 26px 20px;
    }

    .form-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

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

    .message-shell {
        min-height: 560px;
        padding: 55px 0 75px;
    }

    .message-card {
        padding: 36px 22px;
    }

    .dashboard-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-heading h1 {
        font-size: 46px;
    }

    .workspace-primary,
    .workspace-side {
        padding: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .button {
        transition: none;
    }
}
