:root {
    color-scheme: light;
    --ink: #141b27;
    --muted: #59616e;
    --teal: #005b5c;
    --teal-hover: #004647;
    --line: #d6dfe2;
    --tint: #f0f7f7;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;
    color: var(--ink);
    background: #fff;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
}
* {
    box-sizing: border-box;
}
[hidden] {
    display: none !important;
}
html {
    scroll-padding-top: 32px;
}
body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}
a {
    color: var(--teal);
    text-underline-offset: 4px;
}
a:hover {
    color: var(--teal-hover);
}
button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}
button {
    font: inherit;
    cursor: pointer;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 5px;
}
button,
a {
    touch-action: manipulation;
}
h1,
h2,
p {
    margin: 0;
}
h1,
h2 {
    letter-spacing: -0.045em;
    line-height: 1.12;
}
.page-width {
    width: min(1200px, calc(100% - 96px));
    margin-inline: auto;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 24px;
    z-index: 10;
    padding: 12px 20px;
    background: #fff;
}
.skip-link:focus {
    top: 12px;
}
.site-header {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.wordmark {
    color: var(--teal);
    font-size: 31px;
    font-weight: 750;
    letter-spacing: -0.055em;
    text-decoration: none;
}
.wordmark span {
    font-size: 10px;
    vertical-align: super;
    margin-left: 3px;
    letter-spacing: 0;
}
.site-header nav,
.site-footer nav {
    display: flex;
    align-items: center;
    gap: 38px;
}
.site-header nav a,
.site-footer a {
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
}
.site-header nav a:hover,
.site-footer a:hover {
    text-decoration: underline;
}
.hero {
    padding-block: 48px 26px;
    text-align: center;
}
h1 {
    font-size: clamp(44px, 7.1vw, 82px);
    font-weight: 750;
}
.hero-copy {
    margin-top: 24px;
    color: var(--muted);
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.45;
    letter-spacing: -0.022em;
}
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 26px;
}
.primary-button {
    display: inline-flex;
    min-width: 280px;
    min-height: 56px;
    padding: 14px 30px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--teal);
    color: #fff;
    font-size: 18px;
    font-weight: 650;
    line-height: 1.35;
    text-decoration: none;
    transition: background 150ms;
}
.primary-button:hover {
    background: var(--teal-hover);
    color: #fff;
}
.text-link {
    font-size: 15px;
}
.trial-note {
    margin-top: 17px;
    font-size: 14px;
    color: var(--muted);
}
.platform-note {
    margin: 5px auto 0;
    min-height: 21px;
    max-width: 600px;
    color: var(--muted);
    font-size: 13px;
}
.product-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
    margin-bottom: 34px;
}
.product-tabs button {
    border: 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    padding: 17px 12px 20px;
    background: transparent;
    color: var(--muted);
    font-size: 20px;
    font-weight: 500;
}
.product-tabs button:hover {
    color: var(--teal);
    background: #f7faf9;
}
.product-tabs button[aria-selected='true'] {
    color: var(--teal);
    border-bottom-color: var(--teal);
    font-weight: 650;
}
.product-panel {
    border: 1px solid #e1e5e6;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 12px 28px -16px #26374140;
}
.screenshot-link {
    display: block;
}
.product-panel img {
    width: 100%;
    height: auto;
    display: block;
}
.screenshot-note {
    color: var(--muted);
    font-size: 12px;
    margin-top: 14px;
    text-align: center;
}
.product-copy {
    text-align: center;
    padding: 44px 0 48px;
}
.product-copy h2 {
    font-size: clamp(23px, 2.65vw, 34px);
    font-weight: 700;
}
.product-copy p {
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.6;
}
.downloads {
    background: var(--tint);
    padding: 64px 0 0;
}
.download-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    padding: 0 12px 48px;
}
.download-copy {
    padding-top: 20px;
}
.download-copy h2 {
    font-size: clamp(30px, 3.1vw, 43px);
}
.download-copy > p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.5;
    max-width: 460px;
}
.trial-help {
    margin-top: 24px;
    max-width: 460px;
    font-size: 14px;
}
.trial-help summary {
    padding-block: 6px;
    color: var(--teal);
}
.trial-help p {
    padding-top: 12px;
    color: var(--muted);
}
.installer-list {
    border-left: 1px solid var(--line);
    padding-left: 64px;
}
.installer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
}
.installer:hover strong,
.installer:hover .installer-action {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.installer strong {
    font-size: 17px;
    font-weight: 550;
}
.architecture {
    font-weight: 400;
}
.installer small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}
.installer .version-label:empty {
    display: none;
}
.installer-action {
    color: var(--teal);
    font-size: 14px;
}
.purchase {
    font-size: 14px;
    color: var(--muted);
    margin-top: 20px;
}
summary {
    cursor: pointer;
}
.release-notes {
    border-top: 1px solid var(--line);
}
.release-notes > summary {
    padding: 25px 4px;
    color: var(--ink);
    font-size: 15px;
}
.release-notes > summary span {
    color: var(--muted);
    font-size: 13px;
    margin-left: 20px;
}
.changelog-list {
    padding-bottom: 30px;
}
.changelog-entry {
    padding: 25px 0;
    border-top: 1px solid var(--line);
}
.changelog-entry-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    font-size: 13px;
}
.changelog-version {
    color: var(--teal);
    font-weight: 600;
}
.changelog-entry h3 {
    font-size: 20px;
    margin: 10px 0;
    letter-spacing: -0.025em;
}
.changelog-highlights {
    color: var(--muted);
    padding-left: 20px;
    margin-bottom: 0;
    max-width: 900px;
}
.changelog-highlights li + li {
    margin-top: 7px;
}
.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-block: 29px;
    color: var(--muted);
    font-size: 13px;
}
.site-footer a {
    font-size: 13px;
    color: var(--muted);
}
.analytics-consent-banner {
    position: fixed;
    z-index: 5;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(920px, calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 5px 28px #17292e1c;
}
.analytics-consent-banner p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    max-width: 530px;
}
.analytics-consent-banner .consent-title {
    color: var(--ink);
    font-size: 15px;
    font-weight: 650;
    margin-bottom: 5px;
}
.consent-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}
.consent-actions button {
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    font-size: 13px;
}
.consent-actions button:last-child {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}
@media (max-width: 900px) {
    .page-width {
        width: calc(100% - 48px);
    }
    .hero {
        padding-top: 54px;
    }
    .download-layout {
        gap: 32px;
        padding-inline: 0;
    }
    .installer-list {
        padding-left: 32px;
    }
    .download-copy > p {
        font-size: 18px;
    }
    .analytics-consent-banner {
        gap: 16px;
    }
}
@media (max-width: 600px) {
    html {
        scroll-padding-top: 20px;
    }
    .page-width {
        width: calc(100% - 36px);
    }
    .site-header {
        min-height: 80px;
        gap: 16px;
    }
    .wordmark {
        font-size: 24px;
    }
    .site-header nav {
        gap: 18px;
    }
    .site-header nav a {
        font-size: 12px;
    }
    .site-header nav a:last-child {
        display: none;
    }
    .hero {
        padding: 44px 0 30px;
    }
    h1 {
        font-size: clamp(38px, 10.8vw, 60px);
        max-width: 450px;
        margin-inline: auto;
    }
    .hero-copy {
        margin-top: 21px;
        font-size: 18px;
    }
    .desktop-break {
        display: none;
    }
    .hero-actions {
        margin-top: 26px;
        gap: 13px;
    }
    .primary-button {
        min-width: 255px;
        min-height: 56px;
        font-size: 17px;
    }
    .platform-note {
        font-size: 12px;
        max-width: 290px;
    }
    .product-tabs {
        margin-bottom: 20px;
    }
    .product-tabs button {
        font-size: 13px;
        padding: 17px 4px;
    }
    .product-panel {
        border-radius: 5px;
    }
    .screenshot-note {
        font-size: 11px;
        max-width: 260px;
        margin-inline: auto;
    }
    .product-copy {
        padding: 36px 0 42px;
    }
    .product-copy h2 {
        max-width: 340px;
        margin-inline: auto;
        line-height: 1.2;
        font-size: 25px;
    }
    .product-copy p {
        font-size: 16px;
        margin-top: 15px;
    }
    .downloads {
        padding-top: 34px;
    }
    .download-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 32px;
    }
    .download-copy {
        padding: 0;
    }
    .download-copy h2 {
        font-size: 33px;
    }
    .download-copy > p {
        margin-top: 14px;
    }
    .trial-help {
        margin-top: 12px;
    }
    .installer-list {
        border-left: 0;
        padding-left: 0;
    }
    .installer strong {
        font-size: 16px;
    }
    .release-notes > summary span {
        display: none;
    }
    .site-footer {
        padding-block: 24px;
        align-items: flex-start;
    }
    .site-footer > p {
        max-width: 145px;
    }
    .site-footer nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .analytics-consent-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
        bottom: 12px;
    }
    .consent-actions {
        justify-content: flex-end;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
