:root {
    --ink: #101522;
    --ink-muted: #59606e;
    --paper: #f7f7f5;
    --white: #fff;
    --blue: #cfe9ff;
    --blue-strong: #4d9dd1;
    --mint: #cfeeda;
    --peach: #ffd8c5;
    --lilac: #ded5ff;
    --yellow: #ffe87d;
    --line: rgba(16, 21, 34, 0.13);
    --radius-large: 44px;
    --radius-medium: 28px;
    --max-width: 1240px;
}

:root[data-theme="dark"] {
    --ink: #f8fafc;
    --ink-muted: #cbd5e1;
    --paper: #0f172a;
    --white: #111827;
    --blue: #123047;
    --blue-strong: #7dd3fc;
    --mint: #123c35;
    --peach: #4b2a21;
    --lilac: #2c2557;
    --yellow: #facc15;
    --line: rgba(255, 255, 255, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    transition: color 180ms ease, background 180ms ease;
}

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

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

a:focus-visible {
    outline: 3px solid #145d86;
    outline-offset: 5px;
    border-radius: 8px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1,
h2,
h3,
p {
    text-wrap: pretty;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 760;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

em {
    color: var(--blue-strong);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

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

.open-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 42px;
    padding: 8px 24px;
    color: #10272f;
    background: var(--mint);
    font-size: 0.78rem;
    font-weight: 650;
    text-align: center;
}

:root[data-theme="dark"] .open-banner {
    color: #dffdf5;
}

.open-banner p {
    margin: 0;
}

.open-banner a {
    border-bottom: 1px solid currentColor;
}

.site-header,
main,
footer {
    width: min(calc(100% - 48px), var(--max-width));
    margin-inline: auto;
}

.site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 92px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    justify-self: start;
}

.brand img,
.footer-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand span,
.footer-brand strong {
    font-size: 1.1rem;
    font-weight: 820;
    letter-spacing: -0.035em;
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 0.84rem;
    font-weight: 680;
}

.site-header nav a,
.footer-top nav a {
    transition: color 160ms ease;
}

.site-header nav a:hover,
.footer-top nav a:hover {
    color: var(--blue-strong);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 10px;
}

.theme-toggle,
.header-button,
.language-picker {
    justify-self: end;
}

.language-picker select {
    height: 42px;
    padding: 0 34px 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.42);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 780;
    cursor: pointer;
}

:root[data-theme="dark"] .language-picker select {
    background: rgba(255, 255, 255, 0.08);
}

.theme-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

:root[data-theme="dark"] .theme-toggle {
    background: rgba(255, 255, 255, 0.08);
}

.theme-toggle:hover {
    border-color: var(--blue-strong);
    background: var(--white);
    transform: translateY(-2px);
}

.theme-toggle-icon {
    font-size: 1rem;
    line-height: 1;
}

.header-button {
    padding: 11px 19px;
    border-radius: 999px;
    color: var(--white);
    background: var(--ink);
    font-size: 0.8rem;
    font-weight: 760;
    transition: transform 160ms ease, background 160ms ease;
}

.header-button:hover {
    background: #283245;
    transform: translateY(-2px);
}

.kofi-button,
.pill-kofi {
    color: #101522;
    background: #72f1b8;
}

.kofi-button:hover,
.pill-kofi:hover {
    background: #59dba2;
}

.hero {
    position: relative;
    padding: clamp(48px, 7vw, 88px) 0 84px;
    overflow: hidden;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 1020px;
    margin-inline: auto;
    text-align: center;
}

.kicker {
    margin: 0 0 22px;
    font-size: 0.72rem;
    font-weight: 820;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3.8rem, 8vw, 7.2rem);
}

.hero-copy > h1 + p {
    max-width: 640px;
    margin: 30px auto 0;
    color: var(--ink-muted);
    font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 32px;
}

.hero-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 760;
}

.hero-demo-wrap {
    position: relative;
    width: min(1040px, 92vw);
    margin: 48px auto 0;
    padding: 34px 56px 42px;
    isolation: isolate;
}

.hero-demo-wrap::before {
    position: absolute;
    z-index: -1;
    inset: 8% 1% 5%;
    border-radius: 88px 150px 76px 132px;
    background: var(--blue);
    box-shadow: inset 0 0 0 1px rgba(53, 145, 196, 0.08);
    content: "";
    transform: rotate(-1.8deg) skewX(-1.4deg);
    transform-origin: center;
}

:root[data-theme="dark"] .hero-demo-wrap::before {
    background: #153a57;
}

.hero-demo {
    width: min(900px, 100%);
    margin-inline: auto;
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(16, 21, 34, 0.2);
    border-radius: 8px;
    background: #101522;
    box-shadow: 0 34px 80px rgba(34, 63, 80, 0.2);
}

:root[data-theme="dark"] .hero-demo {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

.hero-demo picture,
.hero-demo img {
    display: block;
    width: 100%;
}

.hero-demo img {
    aspect-ratio: 960 / 669;
    border-radius: 5px;
    object-fit: cover;
}

.value-bubble {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 9px 9px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #101522;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(29, 76, 100, 0.15);
    font-size: 0.74rem;
    font-weight: 780;
    white-space: nowrap;
    transform-origin: center;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.value-bubble:hover {
    box-shadow: 0 18px 42px rgba(29, 76, 100, 0.2);
}

:root[data-theme="dark"] .value-bubble {
    color: #f8fafc;
    background: rgba(17, 24, 39, 0.94);
}

.value-bubble b {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #10272f;
    background: var(--yellow);
    font-size: 0.95rem;
    transition: transform 180ms ease;
}

.bubble-open {
    top: 3px;
    left: 1%;
    transform: rotate(-4deg);
}

.bubble-open:hover {
    transform: rotate(-1deg) translateY(-3px);
}

.bubble-open b {
    transform: rotate(8deg);
}

.bubble-clear {
    top: 5px;
    right: 1%;
    transform: rotate(3.5deg);
}

.bubble-clear:hover {
    transform: rotate(1deg) translateY(-3px);
}

.bubble-clear b {
    background: var(--lilac);
    transform: rotate(-8deg);
}

.bubble-ready {
    right: 5%;
    bottom: 2px;
    transform: rotate(-3deg);
}

.bubble-ready:hover {
    transform: rotate(-0.5deg) translateY(-3px);
}

.bubble-ready b {
    background: var(--peach);
    transform: rotate(7deg);
}

.product-section {
    padding: 130px 0 80px;
}

.section-heading {
    max-width: 970px;
    margin-bottom: 70px;
}

.section-heading h2,
.workflow h2,
.install-copy h2,
.legal-copy h2,
.join-copy h2 {
    font-size: clamp(3rem, 7vw, 6.5rem);
}

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

.feature-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 310px;
    padding: 26px;
    overflow: hidden;
    border-radius: 30px;
    isolation: isolate;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-tile::before {
    position: absolute;
    z-index: -1;
    top: 18%;
    right: -32%;
    width: 88%;
    aspect-ratio: 1;
    border: 1px solid rgba(16, 21, 34, 0.1);
    border-radius: 50%;
    content: "";
}

.feature-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(34, 63, 80, 0.13);
}

.feature-blue { background: var(--blue); }
.feature-mint { background: var(--mint); }
.feature-peach { background: var(--peach); }
.feature-lilac { background: var(--lilac); }

.tile-number {
    align-self: flex-start;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: #184761;
    font-size: 0.64rem;
    font-weight: 820;
    letter-spacing: 0.1em;
}

.feature-tile h3 {
    margin-top: auto;
    font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.feature-tile p {
    margin: 14px 0 0;
    color: var(--ink-muted);
    font-size: 0.92rem;
}

.feature-tile code {
    padding: 2px 5px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--ink);
    font-size: 0.82em;
}

:root[data-theme="dark"] .product-section .kicker {
    color: #9bd8ff;
}

:root[data-theme="dark"] .feature-tile {
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .feature-blue {
    background: linear-gradient(145deg, #123a55, #0f263d);
}

:root[data-theme="dark"] .feature-mint {
    background: linear-gradient(145deg, #10443b, #0b2f2b);
}

:root[data-theme="dark"] .feature-peach {
    background: linear-gradient(145deg, #5b2d24, #351e1b);
}

:root[data-theme="dark"] .feature-lilac {
    background: linear-gradient(145deg, #372b6d, #211b49);
}

:root[data-theme="dark"] .feature-tile::before {
    border-color: rgba(255, 255, 255, 0.16);
}

:root[data-theme="dark"] .feature-tile:hover {
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

:root[data-theme="dark"] .tile-number {
    color: #07111f;
    background: rgba(248, 250, 252, 0.9);
}

:root[data-theme="dark"] .steps span {
    color: #10272f;
}

:root[data-theme="dark"] .feature-tile h3 {
    color: #ffffff;
}

:root[data-theme="dark"] .feature-tile p {
    color: #d7e2ef;
}

:root[data-theme="dark"] .feature-tile code {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.13);
}

.workflow {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: clamp(60px, 10vw, 140px);
    padding: 120px 0;
}

.workflow-intro > p:last-child {
    max-width: 650px;
    margin: 34px 0 0;
    color: var(--ink-muted);
    font-size: 1.12rem;
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.steps span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue);
    color: #184761;
    font-size: 0.72rem;
    font-weight: 820;
}

.steps p {
    margin: 0;
    color: var(--ink-muted);
}

.install-panel {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    gap: 38px;
    align-items: center;
    padding: clamp(36px, 6vw, 70px);
    border-radius: var(--radius-large);
    color: var(--white);
    background: #1a2030;
    margin-bottom: 120px;
}

:root[data-theme="dark"] .install-panel {
    background: #080d18;
}

.terminal-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.terminal-bar {
    display: flex;
    gap: 8px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.terminal-bar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--peach);
}

.terminal-bar span:nth-child(2) { background: var(--yellow); }
.terminal-bar span:nth-child(3) { background: var(--mint); }

pre {
    margin: 0;
    padding: 22px;
    overflow-x: auto;
    color: #e7eef9;
    font-size: 0.86rem;
}

pre + pre {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.install-copy {
    padding: 20px;
}

.install-copy p:not(.kicker) {
    max-width: 560px;
    margin: 28px 0 0;
    color: #cbd3e6;
    font-size: 1.05rem;
}

.install-copy code {
    color: var(--white);
}

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

.pill-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 780;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.pill-primary {
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 12px 28px rgba(16, 21, 34, 0.13);
}

:root[data-theme="dark"] .pill-primary {
    color: #101522;
    background: #f8fafc;
}

.install-panel .pill-primary {
    color: var(--ink);
    background: var(--yellow);
}

.pill-secondary {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .pill-secondary {
    color: var(--ink);
}

.download-section {
    padding: 100px 0 90px;
    border-top: 1px solid var(--line);
}

.download-section .section-heading {
    margin-bottom: 46px;
}

.release-status {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--ink-muted);
    font-size: 0.95rem;
}

.release-status strong {
    color: var(--ink);
}

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

.download-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 28px;
    overflow: hidden;
    border-radius: 30px;
    background: var(--blue);
    isolation: isolate;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.download-card::before {
    position: absolute;
    z-index: -1;
    top: 13%;
    right: -22%;
    width: 76%;
    aspect-ratio: 1;
    border: 1px solid rgba(16, 21, 34, 0.1);
    border-radius: 50%;
    content: "";
}

:root[data-theme="dark"] .download-card::before {
    border-color: rgba(255, 255, 255, 0.13);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(34, 63, 80, 0.13);
}

:root[data-theme="dark"] .download-card:hover {
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.26);
}

.download-linux { background: var(--mint); }
.download-windows { background: var(--lilac); }
.download-macos { background: var(--peach); }

.download-mark {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.54);
    font-family: ui-monospace, monospace;
    font-size: 1.3rem;
    font-weight: 900;
    transform: rotate(-4deg);
}

:root[data-theme="dark"] .download-mark {
    background: rgba(255, 255, 255, 0.08);
}

.download-copy {
    margin-top: auto;
}

.download-platform {
    margin: 0 0 14px;
    color: var(--blue-strong);
    font-size: 0.7rem;
    font-weight: 820;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.download-card h3 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.download-card p:not(.download-platform) {
    margin: 18px 0 0;
    color: var(--ink-muted);
}

.download-card code {
    padding: 2px 5px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.45);
    color: var(--ink);
    font-size: 0.82em;
}

.download-card .pill-button {
    align-self: flex-start;
    margin-top: 30px;
}

.download-card .pill-secondary {
    border-color: rgba(16, 21, 34, 0.16);
    color: #101522;
    background: rgba(255, 255, 255, 0.48);
}

:root[data-theme="dark"] .download-card .pill-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.08);
}

.download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.download-actions .pill-button {
    margin-top: 0;
}

.asset-link[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.48;
}

.legal-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
    gap: 48px;
    padding: 140px 0 120px;
}

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

.legal-list a {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.52);
    transition: transform 160ms ease, background 160ms ease;
}

.legal-list a:hover {
    background: var(--white);
    transform: translateY(-2px);
}

:root[data-theme="dark"] .legal-list a {
    background: rgba(17, 24, 39, 0.78);
}

:root[data-theme="dark"] .legal-list a:hover {
    background: rgba(30, 41, 59, 0.92);
}

.legal-list span {
    color: var(--blue-strong);
    font-size: 0.72rem;
    font-weight: 820;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-list p {
    margin: 0;
    color: var(--ink-muted);
}

.join-card {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    min-height: 520px;
    margin-bottom: 120px;
    overflow: hidden;
    border-radius: var(--radius-large);
    background: var(--yellow);
}

.join-face {
    justify-self: center;
    display: grid;
    place-items: center;
    width: min(320px, 72%);
    aspect-ratio: 1;
    border: 7px solid var(--ink);
    border-radius: 43%;
    background: rgba(255, 255, 255, 0.38);
    transform: rotate(-5deg);
}

.join-face img {
    width: 70%;
    transform: rotate(5deg);
}

.join-copy {
    padding: clamp(44px, 7vw, 82px);
}

.join-copy > p:not(.kicker) {
    max-width: 560px;
    margin: 28px 0 32px;
    color: #554a18;
    font-size: 1.06rem;
}

footer {
    padding: 70px 0 28px;
    border-top: 1px solid var(--line);
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand small {
    display: block;
    margin-top: 2px;
    color: var(--ink-muted);
    font-size: 0.7rem;
}

.footer-top nav {
    display: flex;
    gap: 30px;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-bottom {
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--ink-muted);
    font-size: 0.72rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .workflow,
    .install-panel,
    .legal-grid,
    .join-card {
        grid-template-columns: 1fr;
    }

    .join-face {
        margin-top: 70px;
    }
}

@media (max-width: 680px) {
    .site-header,
    main,
    footer {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .open-banner {
        display: block;
    }

    .open-banner p,
    .site-header nav {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr auto;
        min-height: 78px;
    }

    .header-actions {
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .theme-toggle,
    .kofi-button {
        display: none;
    }

    .language-picker select {
        width: 78px;
        height: 40px;
        padding: 0 24px 0 10px;
        font-size: 0.72rem;
    }

    .header-button {
        height: 40px;
        padding-inline: 13px;
        font-size: 0.72rem;
    }

    .brand {
        gap: 8px;
    }

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

    .brand span {
        font-size: 0.98rem;
    }

    .hero {
        min-height: auto;
        padding-top: 58px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 15vw, 5.2rem);
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-demo-wrap {
        width: 100%;
        margin-top: 38px;
        padding: 30px 0 38px;
    }

    .hero-demo {
        padding: 5px;
    }

    .hero-demo-wrap::before {
        inset: 10% -4% 8%;
        border-radius: 42px 68px 38px 62px;
        transform: rotate(-1.2deg) skewX(-1deg);
    }

    .value-bubble {
        gap: 6px;
        padding: 6px 6px 6px 10px;
        font-size: 0.61rem;
    }

    .value-bubble b {
        width: 24px;
        height: 24px;
        font-size: 0.78rem;
    }

    .bubble-open {
        left: 0;
        transform: rotate(-3deg);
    }

    .bubble-clear {
        right: 0;
        transform: rotate(2.5deg);
    }

    .bubble-ready {
        right: 2%;
        transform: rotate(-2.5deg);
    }

    .product-section {
        padding: 90px 0 60px;
    }

    .download-section {
        padding: 90px 0 40px;
    }

    .section-heading {
        margin-bottom: 46px;
    }

    .section-heading h2,
    .workflow h2,
    .install-copy h2,
    .legal-copy h2,
    .join-copy h2 {
        font-size: clamp(2.9rem, 13vw, 4.5rem);
    }

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

    .install-panel,
    .join-card {
        border-radius: var(--radius-medium);
    }

    .legal-list a {
        grid-template-columns: 1fr;
    }

    .join-card {
        margin-bottom: 70px;
    }

    .install-panel {
        margin-bottom: 80px;
    }

    .join-face {
        width: 220px;
    }

    .join-copy,
    .install-copy {
        padding: 42px 24px;
    }

    .footer-top,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-top nav {
        flex-wrap: wrap;
    }

    .footer-bottom {
        gap: 8px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
