:root {
    --bg: #07100f;
    --bg-elevated: #0d1917;
    --surface: rgba(15, 29, 27, 0.86);
    --surface-strong: #12211f;
    --surface-muted: rgba(255, 255, 255, 0.035);
    --border: rgba(190, 230, 220, 0.12);
    --border-strong: rgba(73, 204, 173, 0.36);
    --text: #f3f7f5;
    --text-muted: #9aaca7;
    --text-faint: #6f827d;
    --brand: #46d3ae;
    --brand-bright: #74e7c8;
    --brand-dark: #0f8a71;
    --brand-soft: rgba(70, 211, 174, 0.1);
    --danger: #ff7f84;
    --danger-soft: rgba(255, 101, 108, 0.1);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
    --radius: 22px;
    --radius-small: 13px;
    font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color-scheme: dark;
}

:root[data-theme="light"] {
    --bg: #edf5f1;
    --bg-elevated: #e4efea;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-strong: #ffffff;
    --surface-muted: rgba(20, 55, 47, 0.045);
    --border: rgba(29, 72, 62, 0.13);
    --border-strong: rgba(13, 138, 113, 0.32);
    --text: #10231f;
    --text-muted: #526862;
    --text-faint: #748781;
    --brand: #0d9477;
    --brand-bright: #08765f;
    --brand-dark: #096c58;
    --brand-soft: rgba(13, 148, 119, 0.09);
    --danger: #c43d49;
    --danger-soft: rgba(196, 61, 73, 0.08);
    --shadow: 0 26px 70px rgba(28, 70, 60, 0.13);
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 14% 15%, rgba(46, 176, 145, 0.13), transparent 30rem),
        radial-gradient(circle at 86% 82%, rgba(27, 117, 98, 0.1), transparent 32rem),
        var(--bg);
    font-size: 16px;
    line-height: 1.6;
    transition: color 180ms ease, background-color 180ms ease;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    content: "";
    pointer-events: none;
}

button,
input,
summary {
    font: inherit;
}

a {
    color: inherit;
}

svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

p,
h1,
h2,
h3,
ol,
ul {
    margin-top: 0;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 8px;
    color: #05211a;
    background: var(--brand-bright);
    font-weight: 700;
    transform: translateY(-140%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 116px;
    height: auto;
}

.brand-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

.brand-product {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 7px 11px;
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--text-muted);
    background: var(--surface-muted);
    cursor: pointer;
    list-style: none;
    transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.control-button:hover,
.control-button:focus-visible {
    border-color: var(--border-strong);
    color: var(--text);
    background: var(--brand-soft);
    outline: none;
}

.control-button::-webkit-details-marker {
    display: none;
}

.control-button > svg {
    width: 14px;
    height: 14px;
}

.language-picker {
    position: relative;
}

.language-picker[open] .control-button > svg {
    transform: rotate(180deg);
}

.language-code {
    min-width: 28px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--brand-bright);
    background: var(--brand-soft);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.control-label {
    font-size: 0.78rem;
    font-weight: 700;
}

.language-menu {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    width: 178px;
    padding: 7px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-strong);
    box-shadow: var(--shadow);
}

.language-menu a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 9px;
    color: var(--text-muted);
    font-size: 0.82rem;
    text-decoration: none;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="page"] {
    color: var(--text);
    background: var(--brand-soft);
    outline: none;
}

.theme-toggle {
    width: 40px;
    padding: 0;
}

.theme-icon {
    width: 18px;
    height: 18px;
}

.theme-icon-sun,
[data-theme="light"] .theme-icon-moon {
    display: none;
}

[data-theme="light"] .theme-icon-sun {
    display: block;
}

.site-main {
    width: min(1080px, calc(100% - 40px));
    min-height: calc(100vh - 164px);
    display: grid;
    place-items: center;
    margin: 0 auto;
    padding: 70px 0;
}

.download-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.86fr);
    align-items: center;
    gap: clamp(50px, 8vw, 100px);
}

.intro-panel {
    padding: 18px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--brand-bright);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow.centered {
    display: flex;
    justify-content: center;
    margin-bottom: 9px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 0 5px var(--brand-soft), 0 0 18px var(--brand);
}

.intro-panel h1,
.content-heading h1,
.downloads-card h1 {
    margin-bottom: 20px;
    color: var(--text);
    font-size: clamp(2.45rem, 5.4vw, 4.65rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.intro-copy {
    max-width: 590px;
    margin-bottom: 36px;
    color: var(--text-muted);
    font-size: 1.04rem;
}

.benefit-list {
    display: grid;
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.benefit-list li:last-child {
    border-bottom: 1px solid var(--border);
}

.benefit-number {
    color: var(--brand);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.benefit-list strong {
    display: block;
    margin-bottom: 2px;
    color: var(--text);
    font-size: 0.88rem;
}

.benefit-list strong + * {
    color: var(--text-muted);
}

.benefit-list li > span:last-child {
    color: var(--text-muted);
    font-size: 0.79rem;
}

.trust-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    color: var(--text-faint);
    font-size: 0.72rem;
}

.trust-note svg {
    width: 19px;
    height: 19px;
    color: var(--brand);
}

.surface,
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.verify-card {
    position: relative;
    padding: clamp(25px, 4vw, 38px);
    overflow: hidden;
}

.verify-card::before {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    content: "";
}

.card-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 26px;
}

.card-heading h2 {
    margin: 0 0 3px;
    color: var(--text);
    font-size: 1.13rem;
    line-height: 1.35;
}

.card-heading p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.77rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    display: grid;
    flex: 0 0 40px;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 11px;
    color: var(--brand-bright);
    background: var(--brand-soft);
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 0.78rem;
    line-height: 1.5;
}

.alert svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
}

.alert-error {
    border: 1px solid color-mix(in srgb, var(--danger) 30%, transparent);
    color: var(--danger);
    background: var(--danger-soft);
}

.verify-form,
.verify-form fieldset {
    margin: 0;
}

.field-group {
    margin-bottom: 19px;
}

.field-group > label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.input-wrap {
    position: relative;
}

.input-wrap > svg {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 19px;
    height: 19px;
    color: var(--text-faint);
    transform: translateY(-50%);
    pointer-events: none;
}

.input-wrap input {
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0 14px 0 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
    color: var(--text);
    background: var(--surface-muted);
    font-size: 0.91rem;
    letter-spacing: 0.025em;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.input-wrap input::placeholder {
    color: var(--text-faint);
}

.input-wrap input:focus {
    border-color: var(--brand);
    background: var(--brand-soft);
    box-shadow: 0 0 0 4px var(--brand-soft);
}

.field-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 7px;
    color: var(--text-faint);
    font-size: 0.67rem;
}

.field-meta a,
.terms-box a,
.text-link {
    color: var(--brand-bright);
    font-weight: 700;
    text-decoration: none;
}

.field-meta a:hover,
.terms-box a:hover,
.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.terms-box {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--text-muted);
    background: var(--surface-muted);
    font-size: 0.68rem;
    line-height: 1.55;
    cursor: pointer;
}

.terms-box input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 5px;
    color: #062219;
    background: transparent;
    transition: background 150ms ease, box-shadow 150ms ease;
}

.checkmark svg {
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
    opacity: 0;
}

.terms-box input:checked + .checkmark {
    background: var(--brand);
}

.terms-box input:checked + .checkmark svg {
    opacity: 1;
}

.terms-box input:focus-visible + .checkmark {
    box-shadow: 0 0 0 4px var(--brand-soft);
}

.primary-button,
.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    color: #05221a;
    background: linear-gradient(135deg, var(--brand-bright), var(--brand));
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 150ms ease, filter 150ms ease, box-shadow 150ms ease;
}

.primary-button {
    width: 100%;
    min-height: 50px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(38, 185, 150, 0.18);
    font-size: 0.82rem;
}

.primary-button svg {
    width: 18px;
    height: 18px;
}

.primary-button:hover,
.primary-button:focus-visible,
.download-button:hover,
.download-button:focus-visible {
    filter: brightness(1.07);
    box-shadow: 0 14px 34px rgba(38, 185, 150, 0.24);
    outline: none;
    transform: translateY(-1px);
}

.primary-button:disabled {
    cursor: wait;
    filter: saturate(0.5);
    opacity: 0.72;
}

.site-footer {
    border-top: 1px solid var(--border);
}

.footer-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--text-faint);
    font-size: 0.69rem;
}

.footer-inner p {
    margin: 0;
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-inner a {
    text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
    color: var(--brand-bright);
}

/* Downloads */
.downloads-card,
.content-card {
    width: min(760px, 100%);
    padding: clamp(26px, 5vw, 48px);
}

.downloads-card {
    text-align: center;
}

.success-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    color: var(--brand-bright);
    background: var(--brand-soft);
}

.success-mark svg {
    width: 25px;
    height: 25px;
    stroke-width: 2.3;
}

.downloads-card h1 {
    margin-bottom: 8px;
    font-size: clamp(1.8rem, 5vw, 2.7rem);
    letter-spacing: -0.04em;
}

.downloads-intro {
    max-width: 520px;
    margin: 0 auto 34px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.download-groups {
    display: grid;
    gap: 28px;
    text-align: left;
}

.download-group h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.book-list {
    display: grid;
    gap: 8px;
}

.book-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-muted);
    transition: border-color 150ms ease, background 150ms ease;
}

.book-row:hover {
    border-color: var(--border-strong);
    background: var(--brand-soft);
}

.book-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--brand-bright);
    background: var(--brand-soft);
}

.book-icon svg {
    width: 21px;
    height: 21px;
}

.book-copy {
    min-width: 0;
}

.book-copy strong,
.book-copy small {
    display: block;
}

.book-copy strong {
    overflow: hidden;
    color: var(--text);
    font-size: 0.84rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.book-copy small {
    color: var(--text-faint);
    font-size: 0.65rem;
}

.download-button {
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 9px;
    font-size: 0.7rem;
}

.download-button svg {
    width: 15px;
    height: 15px;
}

.download-button.is-expired {
    pointer-events: none;
    filter: grayscale(1);
    opacity: 0.45;
}

.downloads-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.downloads-footer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.7rem;
}

.downloads-footer strong {
    color: var(--brand-bright);
    font-variant-numeric: tabular-nums;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.73rem;
}

.text-link svg {
    width: 16px;
    height: 16px;
}

.page-note {
    margin: 18px 0 0;
    color: var(--text-faint);
    font-size: 0.67rem;
    text-align: center;
}

.empty-state {
    padding: 34px 20px;
    border: 1px dashed var(--border);
    border-radius: 14px;
    color: var(--text-muted);
}

.empty-state > span {
    display: block;
    margin-bottom: 8px;
    color: var(--brand);
    font-size: 1.8rem;
}

.empty-state p {
    margin: 0;
}

/* Guide and legal content */
.content-card {
    line-height: 1.75;
}

.content-heading {
    margin: 30px 0 32px;
}

.content-heading h1 {
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 6vw, 3.3rem);
}

.content-heading p,
.guide-step > p,
.content-card > div > section p,
.card section p {
    color: var(--text-muted);
}

.guide-steps {
    display: grid;
    gap: 18px;
}

.guide-step {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface-muted);
}

.step-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.step-heading > span {
    color: var(--brand);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.step-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
}

.guide-step > p {
    margin-bottom: 16px;
    font-size: 0.86rem;
}

.guide-step img {
    display: block;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.order-example {
    display: block;
    padding: 13px 15px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    color: var(--brand-bright);
    background: var(--brand-soft);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.legal-card {
    width: min(760px, 100%);
}

.legal-title {
    margin: 10px 0 32px;
}

.legal-title h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 6vw, 3.4rem);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.legal-notice {
    margin-bottom: 26px;
    padding: 11px 13px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    color: var(--brand-bright);
    background: var(--brand-soft);
    font-size: 0.76rem;
}

.legal-sections {
    display: grid;
    gap: 28px;
    color: var(--text-muted);
    font-size: 0.84rem;
}

.legal-sections section {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--border);
}

.legal-sections h2 {
    margin-bottom: 8px;
    color: var(--text-faint);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-sections p:last-child,
.legal-sections ul:last-child {
    margin-bottom: 0;
}

.legal-sections ul {
    display: grid;
    gap: 10px;
    margin-bottom: 0;
    padding-left: 20px;
}

.legal-sections a {
    color: var(--brand-bright);
    font-weight: 700;
    text-underline-offset: 3px;
}

.legal-sections small {
    color: var(--text-faint);
}

.legal-table-wrap {
    max-width: 100%;
    margin: 14px 0;
    overflow-x: auto;
}

.legal-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    font-size: 0.72rem;
}

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

.legal-table th {
    color: var(--text);
}

.legal-table code {
    color: var(--brand-bright);
}

.legal-date {
    color: var(--text-faint);
    font-size: 0.7rem;
}

.legal-back {
    margin-top: 30px;
}

.message {
    width: min(680px, 100%);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin: 0 auto 20px;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 11px;
    color: var(--brand-bright);
    background: var(--brand-soft);
    font-size: 0.8rem;
}

.message.error {
    border-color: color-mix(in srgb, var(--danger) 30%, transparent);
    color: var(--danger);
    background: var(--danger-soft);
}

.message button {
    border: 0;
    color: currentColor;
    background: transparent;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.card {
    color: var(--text);
}

.card h1,
.card h2,
.card h3,
.card strong,
.card th {
    color: var(--text);
}

.card .muted,
.muted {
    color: var(--text-muted) !important;
}

.card .divider,
.divider {
    border-color: var(--border) !important;
}

.card code {
    color: var(--brand-bright);
}

.card table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.card a {
    color: var(--brand-bright) !important;
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 16px;
}

.error-card {
    width: min(440px, 100%);
    padding: clamp(28px, 6vw, 46px);
    text-align: center;
}

.error-logo {
    width: 126px;
    height: auto;
    margin-bottom: 30px;
}

.error-code {
    margin: 0 0 6px;
    color: var(--brand-bright);
    font-size: clamp(3.5rem, 14vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1;
}

.error-code-danger {
    color: var(--danger);
}

.error-card h1 {
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1.35rem;
}

.error-card > p:not(.error-code) {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.error-card .primary-button {
    padding: 0 18px;
}

@media (max-width: 850px) {
    .site-main {
        padding: 46px 0;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .intro-panel {
        max-width: 650px;
        margin: 0 auto;
        text-align: center;
    }

    .intro-copy {
        margin-right: auto;
        margin-left: auto;
    }

    .benefit-list,
    .trust-note {
        text-align: left;
    }

    .trust-note {
        justify-content: center;
    }

    .verify-card {
        width: min(560px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 620px) {
    .header-inner,
    .footer-inner,
    .site-main {
        width: min(100% - 28px, 1080px);
    }

    .header-inner {
        min-height: 66px;
    }

    .brand-logo {
        width: 96px;
    }

    .brand-divider,
    .brand-product,
    .control-label {
        display: none;
    }

    .site-main {
        padding: 36px 0;
    }

    .intro-panel h1 {
        font-size: clamp(2.25rem, 13vw, 3.25rem);
    }

    .intro-copy {
        font-size: 0.94rem;
    }

    .field-meta,
    .downloads-footer,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-inner {
        padding: 22px 0;
    }

    .footer-inner nav {
        justify-content: flex-start;
        gap: 12px 16px;
    }

    .book-row {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .download-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .downloads-footer {
        align-items: stretch;
    }

    .downloads-footer p {
        text-align: left;
    }

    .card {
        padding: 1.25rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
