:root {
    color-scheme: light;
    --ink: #0b0f12;
    --ink-soft: #141a1f;
    --ink-muted: #283038;
    --paper: #f5f3ee;
    --paper-bright: #ffffff;
    --paper-muted: #e8e7e2;
    --line-dark: rgba(255, 255, 255, 0.12);
    --line-light: #d8d9d6;
    --red: #f21f3d;
    --red-dark: #c91431;
    --green: #0c9b70;
    --orange: #d87416;
    --text-on-dark: #f7f5ef;
    --text-muted-dark: #aeb7bf;
    --content: 1180px;
    --header-height: 72px;
    --shadow-phone: 0 34px 80px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

button,
input,
textarea,
select {
    font: inherit;
    letter-spacing: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(242, 31, 61, 0.45);
    outline-offset: 3px;
}

.pro-section {
    padding: 104px 0;
    background: var(--ink);
    color: var(--text-on-dark);
}

.pro-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(56px, 8vw, 112px);
    align-items: center;
}

.pro-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pro-label {
    display: inline-flex;
    padding: 6px 10px;
    border: 1px solid rgba(242, 31, 61, 0.58);
    border-radius: 999px;
    color: #ff536a;
    font-size: 12px;
    font-weight: 800;
}

.pro-copy h2 {
    max-width: 620px;
    margin: 22px 0 18px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.02;
}

.pro-copy > p {
    max-width: 560px;
    margin: 0 0 30px;
    color: var(--text-muted-dark);
    font-size: 19px;
}

.pro-copy small {
    max-width: 500px;
    margin-top: 16px;
    color: var(--text-muted-dark);
    font-size: 13px;
}

.pro-benefits {
    border-top: 1px solid var(--line-dark);
}

.pro-benefit {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line-dark);
}

.pro-benefit > span {
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
}

.pro-benefit strong {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
}

.pro-benefit p {
    margin: 0;
    color: var(--text-muted-dark);
    font-size: 15px;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 200;
    padding: 10px 14px;
    background: var(--paper-bright);
    color: var(--ink);
    border-radius: 6px;
    transform: translateY(-150%);
}

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

.container {
    width: min(calc(100% - 48px), var(--content));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid var(--line-dark);
    background: rgba(11, 15, 18, 0.96);
    color: var(--text-on-dark);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: inherit;
    font-size: 20px;
    font-weight: 750;
    text-decoration: none;
}

.brand img {
    width: 40px;
    height: 40px;
    border-radius: 9px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    color: var(--text-muted-dark);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
    color: var(--text-on-dark);
}

.nav-support {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
}

.menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-on-dark);
    cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
    position: relative;
}

.menu-icon::before {
    position: absolute;
    top: -7px;
}

.menu-icon::after {
    position: absolute;
    top: 7px;
}

.menu-button[aria-expanded="true"] .menu-icon {
    background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
    transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 99;
    padding: 26px 24px;
    background: var(--ink);
    color: var(--text-on-dark);
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu nav {
    display: grid;
    gap: 4px;
    max-width: 520px;
    margin-inline: auto;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    border-bottom: 1px solid var(--line-dark);
    color: var(--text-on-dark);
    font-size: 21px;
    font-weight: 650;
    text-decoration: none;
}

.mobile-menu a::after {
    color: var(--red);
    content: "→";
}

.hero {
    position: relative;
    height: calc(100svh - var(--header-height) - 44px);
    min-height: 620px;
    max-height: 900px;
    overflow: hidden;
    background: var(--ink);
    color: var(--text-on-dark);
}

.hero::after {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 1px;
    background: var(--line-dark);
    content: "";
}

.hero-inner {
    position: relative;
    z-index: 3;
    height: 100%;
}

.hero-copy {
    position: absolute;
    top: 50%;
    left: 0;
    width: min(580px, 52%);
    transform: translateY(-53%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--red);
    font-size: 14px;
    font-weight: 750;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 30px;
    height: 2px;
    background: currentColor;
    content: "";
}

.hero h1 {
    margin: 0;
    max-width: 100%;
    font-size: 78px;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 530px;
    margin: 26px 0 0;
    color: #d0d6db;
    font-size: 24px;
    line-height: 1.34;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover:not(.is-disabled) {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--red);
    color: #fff;
}

.button-primary:hover:not(.is-disabled) {
    background: #ff2947;
}

.button-secondary-dark {
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--text-on-dark);
}

.button-secondary-dark:hover:not(.is-disabled) {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

.button-light {
    background: #fff;
    color: var(--ink);
}

.button-outline {
    border-color: var(--ink-muted);
    color: var(--ink);
}

.button.is-disabled,
.store-link.is-disabled {
    cursor: default;
    opacity: 0.64;
}

.release-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    color: var(--text-muted-dark);
    font-size: 14px;
    font-weight: 600;
}

.release-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(12, 155, 112, 0.14);
}

.hero-stage {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-device {
    position: absolute;
    width: 284px;
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 42px;
    background: #050708;
    box-shadow: var(--shadow-phone);
}

.hero-device img,
.device-frame img {
    width: 100%;
    border-radius: 34px;
}

.hero-device--primary {
    top: 11%;
    right: max(3vw, calc((100vw - var(--content)) / 2));
    transform: rotate(3deg);
}

.hero-device--secondary {
    right: max(22vw, calc((100vw - var(--content)) / 2 + 230px));
    bottom: -20%;
    width: 258px;
    opacity: 0.8;
    transform: rotate(-5deg);
}

.hero-tile-field {
    position: absolute;
    top: 9%;
    right: -24px;
    width: 47%;
    height: 82%;
    opacity: 0.22;
}

.hero-tile-field span {
    position: absolute;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: #20272d;
}

.hero-tile-field span:nth-child(1) { inset: 2% 61% 64% 1%; }
.hero-tile-field span:nth-child(2) { inset: 2% 34% 64% 41%; background: #18332f; }
.hero-tile-field span:nth-child(3) { inset: 2% 1% 64% 68%; }
.hero-tile-field span:nth-child(4) { inset: 40% 67% 31% 1%; }
.hero-tile-field span:nth-child(5) { inset: 40% 37% 31% 35%; background: #352529; }
.hero-tile-field span:nth-child(6) { inset: 40% 1% 31% 66%; }
.hero-tile-field span:nth-child(7) { inset: 73% 67% 1% 1%; }
.hero-tile-field span:nth-child(8) { inset: 73% 39% 1% 35%; }
.hero-tile-field span:nth-child(9) { inset: 73% 1% 1% 64%; background: #26332a; }

.capability-rail {
    position: relative;
    z-index: 4;
    min-height: 88px;
    border-bottom: 1px solid var(--line-light);
    background: var(--paper-bright);
}

.capability-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 88px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.capability-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-right: 1px solid var(--line-light);
    font-size: 15px;
    font-weight: 700;
}

.capability-list li:first-child {
    border-left: 1px solid var(--line-light);
}

.capability-index {
    color: var(--red);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.section-intro {
    padding: 112px 0 92px;
    background: var(--paper);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
    gap: 72px;
    align-items: end;
}

.section-kicker {
    margin: 0 0 14px;
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-heading h2,
.feature-copy h2,
.gallery-heading h2,
.privacy-copy h2,
.support-copy h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 790;
    line-height: 1.08;
    letter-spacing: 0;
}

.section-heading > p {
    margin: 0;
    color: #59636b;
    font-size: 20px;
    line-height: 1.55;
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    border-top: 1px solid #cfd1cf;
    border-bottom: 1px solid #cfd1cf;
}

.metric-item {
    min-height: 126px;
    padding: 25px 24px;
    border-right: 1px solid #cfd1cf;
}

.metric-item:last-child {
    border-right: 0;
}

.metric-value {
    display: block;
    font-size: 31px;
    font-weight: 780;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.metric-label {
    display: block;
    margin-top: 10px;
    color: #687178;
    font-size: 14px;
}

.product-band {
    overflow: hidden;
}

.product-band--light {
    background: var(--paper-bright);
    color: var(--ink);
}

.product-band--dark {
    background: var(--ink-soft);
    color: var(--text-on-dark);
}

.product-band--muted {
    background: #e8ece9;
    color: var(--ink);
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
    gap: 90px;
    align-items: center;
    min-height: 760px;
    padding-block: 82px;
}

.product-layout--reverse .feature-copy {
    order: 2;
}

.product-layout--reverse .product-visual {
    order: 1;
}

.feature-copy {
    max-width: 530px;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 28px;
    margin-bottom: 22px;
    border: 1px solid currentColor;
    border-radius: 5px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
}

.feature-copy > p {
    margin: 24px 0 0;
    color: #5b656c;
    font-size: 20px;
    line-height: 1.55;
}

.product-band--dark .feature-copy > p {
    color: var(--text-muted-dark);
}

.feature-list {
    display: grid;
    gap: 0;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid currentColor;
}

.feature-list li {
    position: relative;
    padding: 16px 0 16px 28px;
    border-bottom: 1px solid currentColor;
    border-color: rgba(80, 89, 96, 0.25);
    font-size: 16px;
    font-weight: 650;
}

.product-band--dark .feature-list {
    border-color: var(--line-dark);
}

.product-band--dark .feature-list li {
    border-color: var(--line-dark);
}

.feature-list li::before {
    position: absolute;
    top: 24px;
    left: 2px;
    width: 10px;
    height: 2px;
    background: var(--red);
    content: "";
}

.product-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.device-frame {
    position: relative;
    z-index: 2;
    width: 300px;
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 44px;
    background: #050708;
    box-shadow: 0 28px 64px rgba(10, 16, 20, 0.22);
}

.product-band--dark .device-frame {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-phone);
}

.product-visual--pair .device-frame:first-child {
    margin-right: -34px;
    transform: translateY(44px) rotate(-4deg);
}

.product-visual--pair .device-frame:last-child {
    z-index: 3;
    transform: translateY(-34px) rotate(3deg);
}

.visual-caption {
    position: absolute;
    right: 0;
    bottom: 44px;
    z-index: 4;
    max-width: 220px;
    padding: 15px 17px;
    border-left: 3px solid var(--red);
    background: var(--paper-bright);
    box-shadow: 0 16px 36px rgba(11, 15, 18, 0.14);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.gallery-section {
    padding: 108px 0 116px;
    overflow: hidden;
    background: var(--ink);
    color: var(--text-on-dark);
}

.gallery-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

.gallery-heading p {
    max-width: 510px;
    margin: 0;
    color: var(--text-muted-dark);
    font-size: 18px;
}

.gallery-controls {
    display: flex;
    gap: 8px;
    margin-top: 30px;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: transparent;
    color: var(--text-on-dark);
    font-size: 24px;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease;
}

.icon-button:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 310px);
    gap: 20px;
    margin-top: 44px;
    padding: 0 max(24px, calc((100vw - var(--content)) / 2)) 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-color: #4b555d transparent;
    scrollbar-width: thin;
}

.gallery-card {
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: #10161b;
    cursor: zoom-in;
    scroll-snap-align: start;
}

.gallery-card img {
    width: 100%;
    transition: transform 220ms ease;
}

.gallery-card:hover img {
    transform: scale(1.012);
}

.screenshot-dialog {
    width: min(94vw, 540px);
    max-height: 94vh;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: var(--ink);
    color: var(--text-on-dark);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.55);
}

.screenshot-dialog::backdrop {
    background: rgba(0, 0, 0, 0.82);
}

.dialog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 56px;
    padding: 8px 10px 8px 16px;
    border-bottom: 1px solid var(--line-dark);
}

.dialog-toolbar p {
    margin: 0;
    overflow: hidden;
    font-size: 14px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dialog-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-on-dark);
    font-size: 26px;
    cursor: pointer;
}

.dialog-image-wrap {
    max-height: calc(94vh - 56px);
    overflow-y: auto;
}

.dialog-image-wrap img {
    width: 100%;
}

.privacy-section {
    padding: 112px 0;
    background: #e9f0ec;
}

.privacy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
    gap: 90px;
    align-items: start;
}

.privacy-copy > p {
    max-width: 640px;
    margin: 24px 0 0;
    color: #4e5a58;
    font-size: 20px;
}

.privacy-points {
    display: grid;
    gap: 0;
    margin-top: 38px;
    border-top: 1px solid #b9c5bf;
}

.privacy-point {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 16px;
    padding: 19px 0;
    border-bottom: 1px solid #b9c5bf;
}

.privacy-point strong {
    display: block;
    margin-bottom: 3px;
}

.privacy-point span {
    color: #5a6662;
    font-size: 15px;
}

.privacy-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.privacy-docs {
    border-top: 4px solid var(--red);
    background: var(--paper-bright);
    box-shadow: 0 20px 50px rgba(17, 32, 26, 0.1);
}

.privacy-docs-header {
    padding: 24px 26px;
    border-bottom: 1px solid var(--line-light);
}

.privacy-docs-header strong {
    display: block;
    font-size: 21px;
}

.privacy-docs-header span {
    display: block;
    margin-top: 4px;
    color: #64706b;
    font-size: 14px;
}

.doc-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 68px;
    padding: 14px 26px;
    border-bottom: 1px solid var(--line-light);
    font-weight: 700;
    text-decoration: none;
}

.doc-link:hover {
    background: #f4f5f2;
}

.doc-link::after {
    color: var(--red);
    content: "→";
}

.support-section {
    padding: 94px 0;
    background: var(--red);
    color: #fff;
}

.support-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
}

.support-copy {
    max-width: 720px;
}

.support-copy p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.support-contact {
    display: grid;
    justify-items: end;
    gap: 12px;
}

.support-email {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    text-align: right;
    overflow-wrap: anywhere;
}

.site-footer {
    padding: 54px 0 36px;
    background: var(--ink);
    color: var(--text-on-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 70px;
}

.footer-brand p {
    max-width: 360px;
    margin: 18px 0 0;
    color: var(--text-muted-dark);
    font-size: 14px;
}

.footer-column strong {
    display: block;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-column a {
    display: block;
    width: fit-content;
    margin-top: 9px;
    color: var(--text-muted-dark);
    font-size: 14px;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--text-on-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid var(--line-dark);
    color: #7f8a92;
    font-size: 12px;
}

.store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: var(--text-on-dark);
    text-decoration: none;
}

.store-link strong,
.store-link small {
    display: block;
}

.store-link strong {
    font-size: 15px;
}

.store-link small {
    color: var(--text-muted-dark);
    font-size: 11px;
}

.store-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-weight: 800;
}

.has-reveal [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.has-reveal [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Legal pages */
.legal-page {
    background: #eef0ee;
}

.legal-page .site-header {
    position: sticky;
}

.draft-banner {
    padding: 13px 20px;
    border-bottom: 1px solid #dfb55f;
    background: #fff3d6;
    color: #553b0a;
    font-size: 14px;
    font-weight: 650;
    text-align: center;
}

.legal-hero {
    padding: 74px 0 68px;
    background: var(--ink);
    color: var(--text-on-dark);
}

.legal-hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: 54px;
    line-height: 1.08;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 24px;
    color: var(--text-muted-dark);
    font-size: 14px;
}

.legal-shell {
    display: grid;
    grid-template-columns: 250px minmax(0, 780px);
    gap: 70px;
    align-items: start;
    justify-content: center;
    padding-block: 70px 110px;
}

.legal-toc {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    padding-top: 4px;
}

.legal-toc strong {
    display: block;
    margin-bottom: 12px;
    color: #5e676d;
    font-size: 12px;
    text-transform: uppercase;
}

.legal-toc a {
    display: block;
    padding: 7px 0;
    color: #5a646b;
    font-size: 14px;
    text-decoration: none;
}

.legal-toc a:hover {
    color: var(--red);
}

.legal-article {
    min-width: 0;
    padding: 48px 54px 64px;
    border: 1px solid #d7d9d7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(30, 39, 43, 0.07);
}

.legal-lead {
    margin: 0;
    color: #3f494f;
    font-size: 20px;
    line-height: 1.6;
}

.legal-section {
    padding-top: 42px;
}

.legal-section + .legal-section {
    margin-top: 42px;
    border-top: 1px solid #dedfdd;
}

.legal-section h2 {
    margin: 0 0 18px;
    font-size: 29px;
    line-height: 1.2;
}

.legal-section h3 {
    margin: 28px 0 10px;
    font-size: 20px;
}

.legal-section p,
.legal-section li {
    color: #3e484e;
}

.legal-section p {
    margin: 12px 0 0;
}

.legal-section ul,
.legal-section ol {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding-left: 24px;
}

.legal-section a {
    color: #b4132b;
}

.legal-callout {
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 4px solid var(--red);
    background: #f5f1ed;
    color: #3e484e;
}

.legal-callout strong {
    display: block;
    margin-bottom: 4px;
}

.legal-details {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    margin: 20px 0 0;
    border-top: 1px solid #dedfdd;
}

.legal-details dt,
.legal-details dd {
    margin: 0;
    padding: 13px 0;
    border-bottom: 1px solid #dedfdd;
}

.legal-details dt {
    color: #6a7378;
    font-size: 14px;
}

.legal-details dd {
    font-weight: 650;
    overflow-wrap: anywhere;
}

.is-placeholder {
    color: #9a5d18;
    font-style: italic;
    font-weight: 550;
}

.data-table {
    width: 100%;
    margin-top: 24px;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table th,
.data-table td {
    padding: 15px 13px;
    border: 1px solid #d9dbd9;
    text-align: left;
    vertical-align: top;
}

.data-table th {
    background: #f0f2ef;
    font-size: 13px;
}

.data-table td {
    color: #414b50;
}

.legal-page .site-footer {
    padding-top: 44px;
}

@media (max-width: 1080px) {
    .hero-copy {
        width: min(540px, 57%);
    }

    .hero-device--primary {
        right: -20px;
    }

    .hero-device--secondary {
        right: 190px;
        opacity: 0.64;
    }

    .product-layout {
        gap: 52px;
    }

    .visual-caption {
        right: -18px;
    }

    .legal-shell {
        grid-template-columns: 210px minmax(0, 760px);
        gap: 36px;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 64px;
    }

    .container {
        width: min(calc(100% - 32px), var(--content));
    }

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .hero {
        height: calc(100svh - var(--header-height) - 34px);
        min-height: 620px;
        max-height: 840px;
    }

    .hero-copy {
        top: 48px;
        width: 100%;
        transform: none;
    }

    .hero h1 {
        font-size: 60px;
    }

    .hero-lead {
        max-width: 510px;
        margin-top: 17px;
        padding-right: 12px;
        font-size: 20px;
    }

    .hero-actions {
        margin-top: 22px;
    }

    .release-note {
        margin-top: 16px;
    }

    .hero-device--primary {
        top: auto;
        right: 5%;
        bottom: -220px;
        width: 282px;
        transform: rotate(2deg);
    }

    .hero-device--secondary {
        right: auto;
        bottom: -290px;
        left: 5%;
        width: 250px;
        opacity: 0.58;
    }

    .hero-tile-field {
        top: 44%;
        width: 100%;
        height: 52%;
    }

    .capability-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-list li:nth-child(2) {
        border-right: 0;
    }

    .capability-list li:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line-light);
    }

    .section-intro {
        padding: 86px 0 72px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading h2,
    .feature-copy h2,
    .gallery-heading h2,
    .privacy-copy h2,
    .support-copy h2 {
        font-size: 40px;
    }

    .metric-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 48px;
    }

    .metric-item:nth-child(2) {
        border-right: 0;
    }

    .metric-item:nth-child(-n + 2) {
        border-bottom: 1px solid #cfd1cf;
    }

    .product-layout,
    .privacy-layout,
    .pro-layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .pro-section {
        padding-block: 84px;
    }

    .pro-copy h2 {
        font-size: 44px;
    }

    .product-layout {
        min-height: 0;
        padding-block: 78px;
    }

    .product-layout--reverse .feature-copy,
    .product-layout--reverse .product-visual {
        order: initial;
    }

    .feature-copy {
        max-width: 650px;
    }

    .product-visual {
        min-height: 570px;
    }

    .gallery-heading {
        display: block;
    }

    .gallery-heading p {
        margin-top: 20px;
    }

    .privacy-section,
    .gallery-section {
        padding-block: 84px;
    }

    .privacy-docs {
        max-width: 560px;
    }

    .support-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .support-contact {
        justify-items: start;
    }

    .support-email {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .legal-hero {
        padding: 56px 0;
    }

    .legal-hero h1 {
        font-size: 44px;
    }

    .legal-shell {
        display: block;
        padding-block: 0 72px;
    }

    .legal-toc {
        position: static;
        display: flex;
        gap: 9px;
        margin: 0 -16px;
        padding: 18px 16px;
        overflow-x: auto;
        background: #e5e8e5;
    }

    .legal-toc strong {
        display: none;
    }

    .legal-toc a {
        flex: 0 0 auto;
        padding: 8px 11px;
        border: 1px solid #c9cdca;
        border-radius: 6px;
        background: #fff;
        color: var(--ink);
        font-size: 13px;
    }

    .legal-article {
        margin-top: 24px;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .pro-section {
        padding-block: 68px;
    }

    .pro-copy h2 {
        font-size: 38px;
    }

    .pro-copy > p {
        font-size: 17px;
    }

    .pro-benefit {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    .brand img {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .brand {
        font-size: 18px;
    }

    .hero {
        min-height: 560px;
        max-height: 760px;
    }

    .hero-copy {
        top: 38px;
    }

    .eyebrow {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-lead {
        max-width: 370px;
        font-size: 18px;
    }

    .hero-actions {
        gap: 9px;
    }

    .button {
        min-height: 46px;
        padding-inline: 14px;
        font-size: 15px;
    }

    .hero-device--primary {
        right: -18px;
        bottom: -170px;
        width: 244px;
    }

    .hero-device--secondary {
        bottom: -235px;
        left: -42px;
        width: 226px;
    }

    .capability-list li {
        min-height: 70px;
        padding: 12px 13px;
        font-size: 13px;
    }

    .section-intro {
        padding-block: 68px 62px;
    }

    .section-heading h2,
    .feature-copy h2,
    .gallery-heading h2,
    .privacy-copy h2,
    .support-copy h2 {
        font-size: 33px;
    }

    .section-heading > p,
    .feature-copy > p,
    .privacy-copy > p {
        font-size: 17px;
    }

    .metric-item {
        min-height: 112px;
        padding: 20px 15px;
    }

    .metric-value {
        font-size: 26px;
    }

    .metric-label {
        font-size: 12px;
    }

    .product-layout {
        gap: 38px;
        padding-block: 64px;
    }

    .product-visual {
        min-height: 490px;
    }

    .device-frame {
        width: 250px;
        border-radius: 38px;
    }

    .device-frame img {
        border-radius: 30px;
    }

    .product-visual--pair {
        justify-content: flex-start;
        padding-left: 8px;
    }

    .product-visual--pair .device-frame {
        width: 210px;
    }

    .product-visual--pair .device-frame:first-child {
        margin-right: -94px;
    }

    .visual-caption {
        right: 0;
        bottom: 18px;
        max-width: 190px;
    }

    .gallery-section,
    .privacy-section {
        padding-block: 68px;
    }

    .gallery-track {
        grid-auto-columns: minmax(240px, 78vw);
        margin-top: 32px;
    }

    .privacy-layout {
        gap: 44px;
    }

    .privacy-docs-header,
    .doc-link {
        padding-inline: 20px;
    }

    .support-section {
        padding-block: 70px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        display: grid;
    }

    .legal-hero {
        padding: 46px 0;
    }

    .legal-hero h1 {
        font-size: 32px;
        overflow-wrap: anywhere;
    }

    .legal-article {
        margin-inline: -6px;
        padding: 34px 22px 46px;
    }

    .legal-lead {
        font-size: 17px;
    }

    .legal-section h2 {
        font-size: 25px;
        overflow-wrap: anywhere;
    }

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

    .legal-details dt {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .legal-details dd {
        padding-top: 4px;
    }

    .data-table,
    .data-table tbody,
    .data-table tr,
    .data-table td {
        display: block;
        width: 100%;
    }

    .data-table thead {
        display: none;
    }

    .data-table tr {
        margin-top: 14px;
        border: 1px solid #d9dbd9;
    }

    .data-table td {
        position: relative;
        padding: 12px 13px 12px 42%;
        border: 0;
        border-bottom: 1px solid #e2e3e1;
    }

    .data-table td:last-child {
        border-bottom: 0;
    }

    .data-table td::before {
        position: absolute;
        left: 13px;
        width: 35%;
        color: #6a7378;
        font-size: 12px;
        font-weight: 700;
        content: attr(data-label);
    }
}

@media (max-width: 360px) and (max-height: 650px) {
    .hero {
        min-height: 480px;
    }

    .hero-copy {
        top: 28px;
    }

    .hero-device {
        display: none;
    }

    .hero-tile-field {
        top: 57%;
        height: 40%;
        opacity: 0.16;
    }
}

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

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