@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800;900&family=Fraunces:opsz,wght@9..144,750;9..144,850&display=swap");

:root {
    --bg: #070b09;
    --bg-soft: #0d1511;
    --panel: rgba(255, 255, 255, 0.055);
    --panel-strong: rgba(255, 255, 255, 0.085);
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #fff8eb;
    --muted: #bab9c6;
    --green: #22dc69;
    --lemon: #f9e830;
    --ink: #061009;
    --display-font: "Fraunces", Georgia, "Times New Roman", serif;
    --ui-font: "Archivo", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    --max: 1280px;
    --desktop-min: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: var(--ui-font);
    background:
        radial-gradient(circle at 74% 8%, rgba(34, 220, 105, 0.16), transparent 440px),
        radial-gradient(circle at 7% 92%, rgba(255, 241, 38, 0.08), transparent 360px),
        linear-gradient(180deg, #080b0d 0%, var(--bg) 58%, #050706 100%);
}

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

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

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

h1 {
    margin-bottom: 14px;
    font-size: clamp(2.7rem, 8vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

h2 {
    color: var(--green);
    margin-bottom: 14px;
    font-size: clamp(1.65rem, 4vw, 2.45rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

h3 {
    color: var(--green);
    margin-bottom: 8px;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

p {
    color: var(--muted);
    line-height: 1.65;
}

.site-grain {
    display: none;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 40;
    transform: translateY(-140%);
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--green);
    font-weight: 800;
}

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

.site-header {
    position: sticky;
    top: 12px;
    z-index: 100;
    width: min(calc(100% - 32px), var(--max));
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 12, 10, 0.72);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-weight: 850;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-divider {
    width: 1px;
    height: 28px;
    background: var(--line-strong);
}

.dmca-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
}

.dmca-badge img {
    width: 100px;
    height: auto;
    border-radius: 3px;
}

.brand img {
    width: 32px;
    height: 32px;
}

.brand span {
    color: var(--green);
    font-size: 0.95rem;
}

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

.site-nav a,
.menu-button,
.button {
    min-height: 38px;
    border-radius: 999px;
    font-weight: 800;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    color: #d4d3dc;
    font-size: 0.88rem;
}

.site-nav .kofi-link {
    gap: 7px;
    padding: 0 12px 0 9px;
    color: #1f2024;
    background: #f3ede2;
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.16);
}

.site-nav .kofi-link span:not(.kofi-mark) {
    color: #1f2024;
    font-size: 0.78rem;
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.kofi-mark {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    color: #ff5f5f;
    background: #ffffff;
    border: 2px solid #1f2024;
    font-size: 0.68rem;
    line-height: 1;
}

.site-nav .kofi-link:hover,
.site-nav .kofi-link:focus-visible,
.site-nav .kofi-link.is-active {
    color: #1f2024;
    background: #fff8eb;
    border-color: rgba(255, 95, 95, 0.58);
    box-shadow:
        0 0 0 2px rgba(255, 248, 235, 0.14),
        inset 0 -1px 0 rgba(0, 0, 0, 0.14);
}

.site-nav .kofi-link:hover span:not(.kofi-mark),
.site-nav .kofi-link:focus-visible span:not(.kofi-mark),
.site-nav .kofi-link.is-active span:not(.kofi-mark) {
    color: #1f2024;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.site-nav a.is-active {
    color: var(--lemon);
    background: rgba(255, 255, 255, 0.08);
}

.button.primary {
    color: var(--ink);
    background: var(--green);
}

.site-nav .nav-pill {
    color: #d4d3dc;
    background: transparent;
}

.menu-button {
    position: relative;
    z-index: 2;
    display: none;
    min-width: 76px;
    padding: 0 15px;
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    overflow: hidden;
    transition:
        color 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.menu-button span {
    display: inline-flex;
    transition:
        opacity 170ms ease,
        transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-button::before,
.menu-button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform-origin: center;
    transition:
        opacity 160ms ease,
        transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-button::before {
    transform: translate(-50%, -50%) rotate(0deg) scaleX(0.4);
}

.menu-button::after {
    transform: translate(-50%, -50%) rotate(0deg) scaleX(0.4);
}

body.nav-open .menu-button {
    color: var(--lemon);
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--line-strong);
}

body.nav-open .menu-button span {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
}

body.nav-open .menu-button::before {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
}

body.nav-open .menu-button::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
}

main {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}

body:not(.legal-page) > main {
    min-height: auto;
}

body.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.home-page > main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.page-shell > main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.compact-page > main {
    justify-content: center;
    padding-block: clamp(18px, 4vh, 42px);
}

body.download-page > main {
    justify-content: flex-start;
    padding-block: clamp(34px, 7vh, 74px);
}

body.not-found-page > main {
    justify-content: center;
    align-items: center;
    text-align: center;
}

body.how-page > main {
    justify-content: center;
    gap: clamp(22px, 3.2vh, 38px);
    padding-block: clamp(18px, 3vh, 34px);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.hero {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(300px, 440px) minmax(360px, 470px);
    justify-content: center;
    align-items: center;
    gap: clamp(38px, 7vw, 86px);
    padding: clamp(42px, 7vh, 70px) 0 clamp(42px, 7vh, 70px);
}

.hero-art {
    position: relative;
    display: grid;
    place-items: center;
    order: -1;
}

.phone-shot {
    width: min(100%, clamp(280px, 36vh, 370px));
    margin: 0;
    position: relative;
    aspect-ratio: 1472 / 3111;
}

.phone-shot .hero-screen {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-screen {
    opacity: 0;
    transform: translate3d(10px, 0, 0) scale(0.985);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-screen.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.floating-card.is-swapping {
    opacity: 0;
    transform: translateY(8px);
}

.floating-card {
    position: absolute;
    right: -18px;
    bottom: 9%;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 235px;
    margin: 0;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: rgba(12, 16, 20, 0.9);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    transition:
        opacity 360ms ease,
        transform 360ms ease;
}

.floating-card img {
    width: 36px;
    height: 36px;
}

.floating-card figcaption {
    max-width: 160px;
    font-size: 0.95rem;
    font-weight: 850;
    line-height: 1.05;
}

.hero-copy {
    max-width: 430px;
}

.hero-copy h1 {
    margin: 0 0 18px;
}

.hero-brand-lockup img {
    display: block;
    width: min(100%, clamp(300px, 34vw, 420px));
    margin-inline: auto;
}

.home-page .hero-copy .eyebrow {
    text-align: center;
}

.hero-lede {
    max-width: 520px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-family: var(--ui-font);
    cursor: pointer;
}

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

.hero-download {
    min-height: 46px;
    padding-inline: 28px;
    font-size: 0.98rem;
}

.quiet-note {
    margin-bottom: 0;
    color: var(--lemon);
    font-size: 0.78rem;
}

.section {
    padding: clamp(34px, 6vh, 68px) 0;
}

.intro-strip {
    width: min(100%, 860px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 0 clamp(22px, 4vh, 34px);
}

.intro-strip a,
.steps article,
.promise-grid article,
.faq-list details,
.legal-card,
.download-panel {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
}

.intro-strip a {
    min-height: 84px;
    padding: 16px 18px;
}

.intro-strip strong {
    color: var(--green);
    display: block;
    margin-bottom: 7px;
    font-size: 0.98rem;
}

.intro-strip span,
.steps p,
.promise-grid p,
.faq-list p,
.site-footer p,
.download-panel p {
    color: var(--muted);
    line-height: 1.58;
}

.intro-strip span {
    font-size: 0.9rem;
}

.page-hero {
    max-width: 680px;
    padding: clamp(48px, 8vh, 92px) 0 clamp(18px, 3vh, 24px);
}


.page-hero h1 {
    color: var(--green);
    max-width: 660px;
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    font-family: var(--display-font);
    letter-spacing: -0.06em;
}

.how-hero,
.faq-hero,
.download-hero {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(300px, 520px) minmax(170px, 250px);
    align-items: center;
    justify-content: center;
    gap: clamp(64px, 9vw, 132px);
    padding-bottom: clamp(28px, 5vh, 54px);
}

body.how-page .page-hero,
body.how-page .section {
    padding-block: 0;
}

body.how-page .how-hero {
    padding-bottom: 0;
}

body.how-page .page-hero h1 {
    font-size: clamp(2rem, 4.1vw, 3.25rem);
}

.how-hero-copy,
.faq-hero-copy,
.download-hero-copy {
    max-width: 520px;
}

.how-hero-art,
.faq-hero-art,
.download-hero-art {
    justify-self: center;
    align-self: center;
    display: grid;
    place-items: center;
    width: min(22vw, 250px);
    margin: 0;
    opacity: 0.96;
}

.how-hero-art img,
.faq-hero-art img,
.download-hero-art img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 70px rgba(34, 220, 105, 0.22));
}

body.faq-page .page-hero {
    margin-inline: 0;
    text-align: left;
}

body.faq-page .hero-lede,
body.faq-page .page-hero h1 {
    margin-inline: 0;
}

body.faq-page .faq-section {
    width: min(100%, 980px);
    margin-inline: auto;
}

body.download-page .download-hero {
    padding-top: clamp(18px, 3vh, 34px);
}

body.download-page .download-panel + .download-panel {
    margin-top: -24px;
}

body.how-page .split-section {
    width: min(100%, 760px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

body.how-page .split-copy h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.15rem);
}

body.how-page .split-copy {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
}

body.how-page .steps {
    width: min(100%, 720px);
    margin-inline: auto;
    gap: 8px;
}

body.how-page .steps article {
    min-height: 88px;
    padding: 14px 18px 14px 64px;
}

body.how-page .steps span {
    left: 18px;
    top: 18px;
}

body.how-page .promise-grid article {
    min-height: 92px;
    padding: 16px 18px;
}

body.how-page .promise-grid h3::before {
    margin-bottom: 12px;
}


.split-section {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 40px;
    align-items: center;
}

.steps {
    display: grid;
    gap: 10px;
}

.steps article {
    position: relative;
    padding: 20px 20px 20px 70px;
}

.step-heading {
    display: contents;
}

.steps span {
    position: absolute;
    left: 20px;
    top: 20px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    color: var(--ink);
    background: var(--green);
    font-weight: 900;
    font-size: 0.82rem;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.promise-grid article {
    padding: 20px;
}

.promise-grid h3::before {
    content: "";
    display: block;
    width: 30px;
    height: 7px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--green);
}

.faq-section {
    display: grid;
    gap: 34px;
    padding-top: 28px;
}

.faq-group h2 {
    color: var(--lemon);
    margin-bottom: 12px;
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list summary {
    color: var(--green);
    cursor: pointer;
    list-style: none;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--green);
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: -5px 20px 19px;
}

.download-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(24px, 5vw, 36px);
    background:
        radial-gradient(circle at 92% 18%, rgba(34, 220, 105, 0.16), transparent 280px),
        var(--panel);
}

.compact-page .download-panel {
    margin-bottom: clamp(18px, 4vh, 42px);
}

.download-page .download-panel {
    margin-bottom: clamp(18px, 4vh, 42px);
}

.download-panel img {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
}

.download-panel h2 {
    color: var(--green);
    margin-bottom: 12px;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.legal-page main {
    max-width: 780px;
}

.legal-hero {
    padding: clamp(38px, 7vh, 78px) 0 22px;
}

.compact-page .legal-hero {
    padding-top: 0;
}

.not-found-page .legal-hero {
    display: grid;
    justify-items: center;
    padding: 0;
}

.not-found-page .hero-lede {
    margin-inline: auto;
}

.legal-card {
    margin-bottom: 12px;
    padding: 22px;
}

.legal-card h2 {
    color: var(--green);
    font-size: 1.35rem;
}

.legal-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto 14px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer div {
    display: grid;
    grid-template-columns: 36px auto;
    column-gap: 10px;
    align-items: center;
}

.site-footer img {
    grid-row: span 2;
    width: 36px;
    height: 36px;
}

.site-footer strong {
    color: var(--green);
    line-height: 1;
}

.site-footer p {
    margin: 0;
    font-size: 0.84rem;
}

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

.site-footer a {
    color: var(--muted);
    font-weight: 800;
}

.status-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 12%, rgba(34, 220, 105, 0.12), transparent 360px),
        radial-gradient(circle at 82% 82%, rgba(249, 232, 48, 0.07), transparent 320px),
        linear-gradient(180deg, #080b0d 0%, #060908 100%);
}

.status-main {
    width: min(calc(100% - 32px), 760px);
    margin: 82px auto 96px;
}

.status-hero {
    margin-bottom: 24px;
}

.status-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(2.45rem, 7vw, 4rem);
}

.status-overview,
.status-section {
    margin-top: 18px;
}

.status-summary-card,
.status-section {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.status-summary-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
}

.status-summary-card h2 {
    margin: 0 0 4px;
    color: var(--text);
    font-size: 1.1rem;
    letter-spacing: 0;
}

.status-summary-card p,
.status-section-heading p,
.incident-card span,
.status-component span {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.status-dot {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(34, 220, 105, 0.14);
}

.status-summary-card[data-status-overall="degraded"] .status-dot {
    background: #f5c542;
    box-shadow: 0 0 0 5px rgba(245, 197, 66, 0.16);
}

.status-summary-card[data-status-overall="outage"] .status-dot {
    background: #ff6b6b;
    box-shadow: 0 0 0 5px rgba(255, 107, 107, 0.16);
}

.status-section {
    padding: 20px;
}

.status-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.status-section-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    letter-spacing: 0;
}

.incident-list,
.status-component-list {
    display: grid;
    gap: 10px;
}

.incident-card,
.status-component {
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
}

.incident-card {
    display: grid;
    gap: 5px;
    padding: 14px;
}

.incident-card strong,
.status-component strong {
    color: var(--text);
}

.status-component {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 16px;
    align-items: center;
    padding: 14px;
}

.status-component div:first-child {
    display: grid;
    gap: 4px;
}

.status-badge {
    justify-self: end;
    min-width: 104px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #031109;
    background: #35f078;
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
    text-shadow: none;
}

.status-badge.is-operational {
    color: #031109;
    background: #35f078;
}

.status-badge.is-degraded {
    color: #1f1600;
    background: #f5c542;
}

.status-badge.is-outage {
    color: #fff8eb;
    background: #ff6b6b;
}

.status-history-bars {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(90, minmax(2px, 1fr));
    gap: 2px;
    min-height: 18px;
    max-width: 100%;
    overflow: hidden;
}

.status-history-bar {
    display: block;
    width: 100%;
    min-width: 2px;
    height: 18px;
    border-radius: 2px;
    background: var(--green);
}

.status-history-bar.is-degraded {
    background: #f5c542;
}

.status-history-bar.is-outage {
    background: #ff6b6b;
}

.status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.status-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.9rem;
}

.status-legend .status-history-bar {
    width: 18px;
    min-width: 18px;
}

@media (max-width: 920px) {
    .hero,
    .split-section,
    .how-hero,
    .faq-hero,
    .download-hero {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        gap: 24px;
        padding-top: 42px;
    }

    .hero-copy {
        max-width: 520px;
    }

    .hero-art {
        order: -1;
    }

    .phone-shot {
        width: min(100%, 320px);
    }

    .floating-card {
        right: max(0px, calc(50% - 190px));
    }

    .intro-strip,
    .promise-grid {
        grid-template-columns: 1fr;
    }

    .how-hero-art,
    .faq-hero-art,
    .download-hero-art {
        justify-self: start;
        width: min(44vw, 170px);
    }
}

@media (max-width: 760px) {
    .site-header {
        width: min(calc(100% - 28px), 430px);
        position: fixed;
        left: 50%;
        top: max(10px, env(safe-area-inset-top));
        z-index: 1000;
        transform: translateX(-50%);
        align-items: stretch;
        flex-wrap: wrap;
    }

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }

    .brand-lockup {
        gap: 8px;
    }

    .brand-divider {
        height: 24px;
    }

    .dmca-badge img {
        width: 82px;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 8px;
    }

    body.nav-open .site-nav {
        display: flex;
    }

    .site-nav a {
        justify-content: center;
    }

    .site-nav .kofi-link {
        min-width: 156px;
    }

    body:not(.home-page) > main {
        padding-top: 92px;
    }

    .page-hero {
        padding-top: 24px;
    }

    .hero {
        max-width: 430px;
        gap: 18px;
        padding: 92px 0 30px;
    }

    .phone-shot {
        width: min(54vw, 230px);
    }

    .floating-card {
        min-width: 176px;
        right: max(-24px, calc(50% - 150px));
        bottom: 7%;
        gap: 9px;
        padding: 10px 12px;
        border-radius: 16px;
    }

    .floating-card img {
        width: 28px;
        height: 28px;
    }

    .floating-card figcaption {
        max-width: 118px;
        font-size: 0.78rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 16vw, 4.1rem);
    }

    .hero-copy {
        text-align: center;
    }

    .hero-brand-lockup img {
        width: min(78%, 260px);
        margin-inline: auto;
    }

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

    .hero-actions .button {
        min-width: 238px;
    }

    .quiet-note {
        text-align: center;
    }

    .how-hero,
    .faq-hero,
    .download-hero {
        display: block;
        text-align: center;
    }

    .how-hero-copy,
    .faq-hero-copy,
    .download-hero-copy {
        max-width: 430px;
        margin-inline: auto;
    }

    .how-hero-art,
    .faq-hero-art,
    .download-hero-art {
        display: none;
    }

    body.faq-page .page-hero,
    body.faq-page .hero-lede,
    body.faq-page .page-hero h1 {
        margin-inline: auto;
        text-align: center;
    }

    body.faq-page .page-hero {
        padding-bottom: 10px;
    }

    body.faq-page .faq-section {
        gap: 24px;
        padding-top: 12px;
    }

    body.faq-page .faq-group h2 {
        text-align: center;
    }

    body.faq-page .faq-list summary,
    body.faq-page .faq-list p {
        text-align: center;
    }

    body.how-page .split-copy,
    body.how-page .steps,
    body.how-page .promise-grid,
    .download-panel {
        text-align: center;
    }

    body.how-page .split-copy {
        margin-inline: auto;
    }

    body.how-page .steps article {
        padding: 18px;
    }

    body.how-page .step-heading {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    body.how-page .steps span {
        position: static;
        display: inline-grid;
        flex: 0 0 auto;
        margin-right: 0;
    }

    body.how-page .steps h3 {
        display: block;
        min-height: 0;
        line-height: 1.05;
        margin-bottom: 0;
    }

    body.how-page .steps p {
        max-width: 300px;
        margin-inline: auto;
    }

    body.how-page .promise-grid h3::before {
        margin-left: auto;
        margin-right: auto;
    }

    .section {
        padding: 46px 0;
    }

    .intro-strip {
        padding-bottom: 30px;
    }

    .download-panel {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .download-panel h2,
    .download-panel p {
        margin-left: auto;
        margin-right: auto;
    }

    .legal-page main {
        max-width: 430px;
    }

    .legal-hero,
    .legal-card {
        text-align: center;
    }

    .legal-hero {
        padding-top: 24px;
    }

    .legal-hero .hero-lede {
        margin-left: auto;
        margin-right: auto;
    }

    .legal-card ul {
        display: inline-block;
        padding-left: 18px;
        text-align: left;
    }

    .not-found-page .legal-hero {
        display: grid;
        justify-items: center;
    }

    .site-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }

    .site-footer div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        justify-items: center;
        column-gap: 6px;
        row-gap: 4px;
    }

    .site-footer img {
        grid-row: 1;
    }

    .site-footer strong {
        align-self: center;
    }

    .site-footer p {
        flex-basis: 100%;
    }

    .status-main {
        width: min(calc(100% - 28px), 760px);
        margin-top: 26px;
        margin-bottom: 38px;
    }

    .status-hero {
        margin-bottom: 18px;
        text-align: center;
    }

    .status-hero h1,
    .status-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .status-hero p {
        max-width: 340px;
    }

    .status-overview,
    .status-section {
        margin-top: 14px;
    }

    .status-section-heading {
        display: grid;
        align-items: start;
        gap: 6px;
        text-align: center;
    }

    .status-summary-card {
        gap: 12px;
        padding: 16px;
    }

    .status-component {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .status-badge {
        justify-self: start;
        min-width: 118px;
    }

    .status-history-bars {
        grid-template-columns: repeat(45, minmax(3px, 1fr));
        gap: 2px;
    }

    .status-history-bar:nth-child(-n + 45) {
        display: none;
    }
}

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