/* Mavexa — brand system taken from the ebooks: DM Sans, navy #1a2744, teal #2a9d8f */

@font-face { font-family: "DM Sans"; src: url("../fonts/dmsans-regular.woff") format("woff"); font-weight: 400; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("../fonts/dmsans-medium.woff") format("woff"); font-weight: 500; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("../fonts/dmsans-semibold.woff") format("woff"); font-weight: 600; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("../fonts/dmsans-bold.woff") format("woff"); font-weight: 700; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("../fonts/dmsans-extrabold.woff") format("woff"); font-weight: 800; font-display: swap; }

:root {
  --navy: #1a2744;
  --navy-dk: #12192e;
  --navy-2: #243456;
  --teal: #2a9d8f;
  --teal-dk: #1f7a6f;
  --tint: #d6eeeb;
  --ink: #1a2744;
  --body: #4a5568;
  --muted: #6b7686;
  --line: #e3e7ee;
  --paper: #ffffff;
  --ground: #f6f7f9;
  --blue: #2f7fb5;
  --bronze: #c0821f;
  --gold: #d4a53a;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(18, 25, 46, .06), 0 8px 28px rgba(18, 25, 46, .08);
  --wrap: 1160px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.65; color: var(--body); background: var(--ground); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dk); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.015em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { top: 12px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: clamp(16px, 4vw, 32px); }
.section { padding-block: clamp(56px, 8vw, 96px); }
.section-white { background: var(--paper); }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-dk); margin-bottom: 14px; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--body); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

/* ---------- buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: 600 1rem/1 var(--font); padding: 15px 24px; border-radius: 10px; border: 2px solid transparent; cursor: pointer; text-decoration: none; transition: background .15s, color .15s, border-color .15s, transform .15s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dk); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-light:hover { border-color: #fff; color: #fff; }
.btn-sm { padding: 10px 16px; font-size: .92rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }

/* ---------- header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .94); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; border-radius: 9px; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { color: var(--navy); letter-spacing: .24em; font-size: .98rem; font-weight: 800; }
.logo-text small { color: var(--muted); letter-spacing: .2em; font-size: .58rem; font-weight: 500; margin-top: 3px; }
.logo-light .logo-text strong { color: #fff; }
.logo-light .logo-text small { color: #9aa6bd; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a:not(.btn) { color: var(--navy); text-decoration: none; font-weight: 500; padding: 8px 12px; border-radius: 8px; }
.site-nav a:not(.btn):hover, .site-nav a[aria-current="page"] { background: var(--ground); }
.site-nav a[aria-current="page"] { color: var(--teal-dk); }
.site-nav .btn { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; border-radius: 8px; }
.nav-toggle .bars, .nav-toggle .bars::before, .nav-toggle .bars::after { display: block; width: 22px; height: 2px; background: var(--navy); margin: auto; position: relative; transition: transform .2s; }
.nav-toggle .bars::before, .nav-toggle .bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle .bars::before { top: -7px; }
.nav-toggle .bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 70px; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; padding: 12px clamp(16px, 4vw, 32px) 20px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { padding: 12px; }
  .site-nav .btn { margin: 8px 0 0; }
}

/* ---------- hero */
.hero { position: relative; overflow: hidden; background: var(--navy); color: #c9d2e3; }
.hero::after { content: ""; position: absolute; right: -260px; bottom: -320px; width: 900px; height: 900px; border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 38px, rgba(42, 157, 143, .18) 38px 39px); pointer-events: none; }
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding-block: clamp(56px, 8vw, 104px); }
.hero h1 { color: #fff; }
.hero .lead { color: #c9d2e3; }
.hero .eyebrow { color: #7fd1c6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 22px; font-size: .9rem; color: #9aa6bd; }
.hero-stack { position: relative; height: 440px; }
.hero-stack picture { position: absolute; width: 56%; border-radius: 6px; overflow: hidden; box-shadow: 0 24px 60px rgba(0, 0, 0, .45); }
.hero-stack picture:nth-child(1) { left: 0; top: 60px; transform: rotate(-7deg); }
.hero-stack picture:nth-child(2) { left: 16%; top: 30px; transform: rotate(-2deg); }
.hero-stack picture:nth-child(3) { left: 32%; top: 10px; transform: rotate(3deg); }
.hero-stack picture:nth-child(4) { left: 46%; top: 0; transform: rotate(8deg); }
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-stack { height: min(78vw, 400px); max-width: 520px; }
}

/* ---------- trust strip */
.trust { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust ul { list-style: none; margin: 0 auto; padding-block: 22px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust li { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: var(--navy); font-weight: 500; }
.trust svg { flex: none; width: 26px; height: 26px; color: var(--teal); }
@media (max-width: 900px) { .trust ul { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust ul { grid-template-columns: 1fr; } }

/* ---------- book cards */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.section-head p { margin: 0; }
.books { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1040px) { .books { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .books { grid-template-columns: 1fr; } }
.book-card { --accent: var(--teal); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.book-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.book-card .cover-link { display: block; background: var(--ground); padding: 26px 26px 0; }
.book-card .cover-link picture { border-radius: 4px 4px 0 0; overflow: hidden; box-shadow: 0 10px 24px rgba(18, 25, 46, .18); }
.book-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier { display: inline-block; align-self: flex-start; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); border: 1.5px solid var(--accent); border-radius: 999px; padding: 4px 10px; }
.book-card h3 { margin: 0; font-size: 1.15rem; }
.book-card h3 a { color: var(--ink); text-decoration: none; }
.book-card h3 a:hover { color: var(--teal-dk); }
.book-card p { margin: 0; font-size: .95rem; }
.book-meta { font-size: .85rem; color: var(--muted); }
.book-card-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.price { font-size: 1.7rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.price small { font-size: .8rem; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-left: 3px; }

/* ---------- ladder */
.ladder { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; margin-top: 40px; }
.ladder li { list-style: none; padding: 26px 22px; border-top: 4px solid var(--accent, var(--teal)); background: var(--paper); border-right: 1px solid var(--line); }
.ladder li:last-child { border-right: 0; }
.ladder b { display: block; color: var(--ink); font-size: 1.1rem; margin: 6px 0; }
.ladder span { font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent, var(--teal)); }
.ladder p { margin: 0; font-size: .95rem; }
.ladder-wrap { padding: 0; margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
@media (max-width: 900px) { .ladder { grid-template-columns: 1fr 1fr; } .ladder li:nth-child(2) { border-right: 0; } }
@media (max-width: 520px) { .ladder { grid-template-columns: 1fr; } .ladder li { border-right: 0; } }

/* ---------- feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.feature { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.feature .icon { width: 44px; height: 44px; border-radius: 10px; background: var(--tint); color: var(--teal-dk); display: grid; place-items: center; margin-bottom: 16px; }
.feature .icon svg { width: 22px; height: 22px; }
.feature p { margin: 0; font-size: .97rem; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }

/* ---------- callouts */
.notice { border-left: 4px solid var(--teal); background: var(--paper); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 24px 0; }
.notice h3 { font-size: 1rem; margin-bottom: 6px; }
.notice p:last-child { margin: 0; }
.notice-warn { border-color: var(--bronze); background: #fdf7ec; }
.cta-band { background: var(--navy); color: #c9d2e3; border-radius: 20px; padding: clamp(32px, 5vw, 56px); display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { margin: 0; }

/* ---------- page header */
.page-hero { background: var(--navy); color: #c9d2e3; padding-block: clamp(48px, 7vw, 80px); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -200px; top: -260px; width: 620px; height: 620px; border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 34px, rgba(42, 157, 143, .16) 34px 35px); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero .lead { color: #c9d2e3; margin: 0; }
.page-hero .eyebrow { color: #7fd1c6; }
.crumbs { font-size: .88rem; margin-bottom: 18px; color: #9aa6bd; }
.crumbs a { color: #c9d2e3; }

/* ---------- product page */
.product { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.product-cover { position: sticky; top: 100px; }
.product-cover picture { border-radius: 6px; overflow: hidden; box-shadow: 0 24px 50px rgba(18, 25, 46, .25); }
.product h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 14px 0 8px; }
.product .subtitle { font-size: 1.2rem; color: var(--navy-2); font-weight: 500; margin-bottom: 20px; }
.buy-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin: 28px 0; box-shadow: var(--shadow); }
.buy-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.buy-box .price { font-size: 2.4rem; }
.buy-points { list-style: none; margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; font-size: .9rem; }
.buy-points li { display: flex; gap: 8px; align-items: flex-start; }
.buy-points li::before { content: ""; flex: none; width: 16px; height: 16px; margin-top: 4px; border-radius: 50%; background: var(--tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' fill='none' stroke='%231f7a6f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat; }
@media (max-width: 520px) { .buy-points { grid-template-columns: 1fr; } }
.specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 28px 0; }
.specs div { background: var(--paper); padding: 16px; text-align: center; }
.specs b { display: block; font-size: 1.5rem; color: var(--ink); font-weight: 800; }
.specs span { font-size: .8rem; color: var(--muted); }
@media (max-width: 520px) { .specs { grid-template-columns: 1fr 1fr; } }
.checklist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' fill='none' stroke='%231f7a6f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat; }
.toc { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.toc details { border-bottom: 1px solid var(--line); }
.toc details:last-child { border-bottom: 0; }
.toc summary { cursor: pointer; padding: 16px 20px; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.toc summary::-webkit-details-marker { display: none; }
.toc summary::after { content: "+"; font-size: 1.4rem; color: var(--muted); line-height: 1; }
.toc details[open] summary::after { content: "–"; }
.toc summary b { color: var(--ink); display: block; }
.toc summary span { font-size: .88rem; color: var(--muted); }
.toc ol { margin: 0; padding: 0 20px 18px 48px; font-size: .95rem; }
.toc li { padding: 3px 0; }
.product-section { margin-top: 44px; }
.legal-box { font-size: .9rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.legal-box h3 { font-size: .95rem; margin-bottom: 6px; }
.legal-box p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .product { grid-template-columns: 1fr; }
  .product-cover { position: static; max-width: 300px; }
}

/* ---------- prose (legal pages, about) */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.45rem; margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .45em; }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; margin: 1em 0 1.5em; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: var(--ink); background: var(--ground); }
/* position:relative keeps absolutely positioned children (e.g. .sr-only labels) clipped inside the scroller */
.table-scroll { overflow-x: auto; max-width: 100%; position: relative; }
@media (max-width: 640px) {
  .compare thead { display: none; }
  .compare, .compare tbody, .compare tr, .compare td { display: block; width: 100%; }
  .compare tr { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-bottom: 12px; }
  .compare td { border: 0; padding: 3px 0; }
  .compare td:last-child { padding-top: 10px; }
  .compare .btn { width: 100%; }
}
.layout-aside { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; align-items: start; }
.aside-card { position: sticky; top: 100px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; font-size: .92rem; }
.aside-card h2 { font-size: 1rem; margin-bottom: 10px; }
.aside-card ul { list-style: none; padding: 0; margin: 0; }
.aside-card li { margin: 6px 0; }
@media (max-width: 900px) { .layout-aside { grid-template-columns: 1fr; } .aside-card { position: static; } }

/* ---------- FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq h2 { font-size: 1.3rem; margin: 40px 0 14px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--ink); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--muted); line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 22px 18px; }
.faq details > div p:last-child { margin: 0; }

/* ---------- forms */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 6px; font-size: .95rem; }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 1rem; color: var(--ink); padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px rgba(42, 157, 143, .2); }
.field textarea { min-height: 150px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.alert { border-radius: 10px; padding: 14px 16px; margin-bottom: 20px; }
.alert-ok { background: var(--tint); color: #134e47; }
.alert-err { background: #fdecec; color: #8a1f1f; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border: 0; }
.contact-list b { display: block; color: var(--ink); }

/* ---------- thank you */
.status-card { max-width: 680px; margin: 0 auto; text-align: center; }
.downloads { list-style: none; padding: 0; margin: 24px 0; text-align: left; }
.downloads li { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; background: #fff; flex-wrap: wrap; }
.spinner { width: 36px; height: 36px; border: 3px solid var(--tint); border-top-color: var(--teal); border-radius: 50%; margin: 0 auto 18px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

/* ---------- toast */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); background: var(--navy); color: #fff; padding: 14px 20px; border-radius: 12px; box-shadow: var(--shadow); max-width: min(92vw, 520px); z-index: 90; font-size: .95rem; }

/* ---------- footer */
.site-footer { background: var(--navy-dk); color: #9aa6bd; margin-top: 0; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-block: 64px 40px; }
.site-footer h2 { color: #fff; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: #c9d2e3; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand p { margin: 16px 0 0; max-width: 36ch; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, .1); padding-block: 24px 32px; font-size: .84rem; }
.footer-legal p { margin: 0 0 6px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
