:root {
    --paper: #f7f6f2;
    --paper-deep: #efede7;
    --surface: #ffffff;
    --surface-soft: #f1f2f3;
    --ink: #15171a;
    --ink-soft: #30343a;
    --muted: #5d646c;
    --line: #d9d7d0;
    --line-dark: #b9b7b0;
    --blue: #0057d9;
    --blue-hover: #0045ad;
    --blue-soft: #dfeeff;
    --cyan: #85ddff;
    --pink: #ff9b96;
    --orange: #ffad62;
    --green: #63be45;
    --purple: #8152f3;
    --focus: #003f9e;
    --shadow-sm: 0 12px 30px rgba(24, 29, 34, 0.08);
    --shadow-lg: 0 30px 80px rgba(24, 29, 34, 0.14);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --shell: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(21, 23, 26, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 23, 26, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 56rem);
    pointer-events: none;
}

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

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

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

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
    border-radius: 4px;
}

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

h1,
h2,
h3 {
    text-wrap: balance;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(3.4rem, 8.7vw, 7.8rem);
    font-weight: 760;
    letter-spacing: -0.075em;
    line-height: 0.91;
}

h1 span {
    color: var(--muted);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 730;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.35rem, 2.1vw, 1.75rem);
    font-weight: 680;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

p {
    color: var(--muted);
}

section[id],
h2[id] {
    scroll-margin-top: 96px;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 720;
    letter-spacing: 0.13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--green);
    box-shadow: 8px 0 0 var(--cyan), 16px 0 0 var(--purple);
    margin-right: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(185, 183, 176, 0.55);
    background: rgba(247, 246, 242, 0.9);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 74px;
    gap: 28px;
}

.brand {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 710;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.app-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(21, 23, 26, 0.12);
    background: var(--surface);
    box-shadow: 0 9px 20px rgba(24, 29, 34, 0.14);
}

.app-icon img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-icon img + img {
    z-index: 1;
}

.app-icon-small {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.app-icon-large {
    width: 106px;
    height: 106px;
    border-radius: 27px;
    box-shadow: 0 20px 44px rgba(24, 29, 34, 0.2);
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.desktop-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.91rem;
    font-weight: 620;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.header-cta {
    justify-self: end;
}

.mobile-menu {
    position: relative;
    display: none;
    justify-self: end;
}

.mobile-menu summary {
    display: flex;
    min-width: 58px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 680;
    list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-menu nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.mobile-menu nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-radius: 10px;
    color: var(--ink);
    font-weight: 620;
    text-decoration: none;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
    background: var(--surface-soft);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 690;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 87, 217, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
    border-color: var(--blue-hover);
    background: var(--blue-hover);
    box-shadow: 0 14px 30px rgba(0, 69, 173, 0.28);
}

.button-secondary {
    border-color: var(--line-dark);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--ink);
    background: var(--surface);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.app-store-badge {
    display: inline-flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    line-height: 0;
    text-decoration: none;
}

.app-store-badge img {
    width: 180px;
    height: 60px;
}

.app-store-badge-compact {
    padding: 10px;
}

.app-store-badge-compact img {
    width: 120px;
    height: 40px;
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 680;
}

.hero {
    position: relative;
    overflow: clip;
    padding: clamp(96px, 12vw, 150px) 0 110px;
}

.hero::before {
    position: absolute;
    top: -220px;
    left: 50%;
    z-index: -1;
    width: min(980px, 100vw);
    height: 680px;
    background:
        radial-gradient(circle at 22% 48%, rgba(133, 221, 255, 0.2), transparent 37%),
        radial-gradient(circle at 72% 34%, rgba(255, 155, 150, 0.18), transparent 34%),
        radial-gradient(circle at 52% 70%, rgba(129, 82, 243, 0.1), transparent 30%);
    content: "";
    filter: blur(14px);
    transform: translateX(-50%);
}

.hero-copy {
    max-width: 1030px;
    margin: 0 auto 78px;
    text-align: center;
}

.hero-copy .eyebrow {
    justify-content: center;
}

.hero-lede {
    max-width: 750px;
    margin: 0 auto 34px;
    color: var(--ink-soft);
    font-size: clamp(1.08rem, 1.8vw, 1.32rem);
    line-height: 1.55;
}

.hero-proof {
    display: grid;
    max-width: 760px;
    margin: 48px auto 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}

.hero-proof li {
    display: grid;
    gap: 2px;
    padding: 4px 24px;
    border-right: 1px solid var(--line);
}

.hero-proof li:last-child {
    border-right: 0;
}

.hero-proof strong {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 720;
}

.hero-proof span {
    color: var(--muted);
    font-size: 0.82rem;
}

.product-stage {
    position: relative;
    max-width: 1030px;
    margin: 0 auto;
}

.screenshot-frame {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(21, 23, 26, 0.18);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.screenshot-frame picture,
.screenshot-frame img {
    width: 100%;
}

.product-stage figcaption {
    max-width: 560px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 0.86rem;
    text-align: center;
}

.pixel-field {
    position: absolute;
    z-index: 1;
    display: grid;
    width: 116px;
    height: 116px;
    grid-template-columns: repeat(4, 1fr);
    background:
        linear-gradient(90deg, var(--pink) 25%, transparent 25% 50%, var(--orange) 50% 75%, transparent 75%),
        linear-gradient(var(--cyan) 25%, var(--green) 25% 50%, var(--purple) 50% 75%, #f413d0 75%);
    background-blend-mode: multiply;
    box-shadow: var(--shadow-sm);
}

.pixel-field-one {
    top: -36px;
    right: -44px;
    transform: rotate(7deg);
}

.pixel-field-two {
    bottom: -30px;
    left: -48px;
    transform: rotate(-9deg);
}

.definition-section {
    padding: 138px 0 124px;
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.definition-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: clamp(48px, 9vw, 130px);
}

.definition-grid h2 {
    max-width: 590px;
    margin-bottom: 0;
}

.definition-copy {
    padding-top: 44px;
}

.large-copy {
    margin-bottom: 26px;
    color: var(--ink);
    font-size: clamp(1.35rem, 2.3vw, 1.8rem);
    font-weight: 560;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.definition-copy > p:last-child {
    margin-bottom: 0;
    font-size: 1.02rem;
}

.fact-strip {
    display: grid;
    margin: 90px 0 0;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    border-block: 1px solid var(--line);
}

.fact-strip div {
    padding: 28px 26px;
    border-right: 1px solid var(--line);
}

.fact-strip div:first-child {
    padding-left: 0;
}

.fact-strip div:last-child {
    padding-right: 0;
    border-right: 0;
}

.fact-strip dt,
.facts-list dt {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 720;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.fact-strip dd,
.facts-list dd {
    margin: 0;
    color: var(--ink);
    font-weight: 650;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.workflow-section {
    padding: 138px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-heading .eyebrow {
    justify-content: center;
}

.section-heading > p:last-child {
    max-width: 610px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-heading-left {
    margin-inline: 0;
    text-align: left;
}

.section-heading-left .eyebrow {
    justify-content: flex-start;
}

.workflow-grid {
    display: grid;
    gap: 28px;
}

.workflow-card {
    display: grid;
    overflow: hidden;
    min-height: 590px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.workflow-card-reverse {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.workflow-card-reverse .workflow-copy {
    grid-column: 2;
    grid-row: 1;
}

.workflow-card-reverse .workflow-image {
    grid-column: 1;
    grid-row: 1;
}

.workflow-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 6vw, 72px);
}

.workflow-copy > p:not(.step-label) {
    margin-bottom: 26px;
    font-size: 1rem;
}

.step-label {
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 740;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.workflow-copy h3 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4vw, 3.75rem);
    letter-spacing: -0.055em;
}

.check-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 12px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 27px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 570;
}

.check-list li::before {
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 14px;
    height: 14px;
    border: 4px solid var(--blue-soft);
    border-radius: 3px;
    background: var(--blue);
    content: "";
}

.workflow-image {
    display: flex;
    min-width: 0;
    margin: 0;
    align-items: flex-end;
    justify-content: center;
    padding: 48px 0 0 48px;
    background:
        radial-gradient(circle at 70% 18%, rgba(133, 221, 255, 0.38), transparent 30%),
        var(--surface-soft);
}

.workflow-image-soft {
    background:
        radial-gradient(circle at 25% 78%, rgba(255, 155, 150, 0.22), transparent 32%),
        var(--surface-soft);
}

.workflow-image picture {
    align-self: flex-end;
}

.workflow-image img {
    width: 760px;
    max-width: none;
    border: 1px solid rgba(21, 23, 26, 0.12);
    border-right: 0;
    border-bottom: 0;
    border-radius: 22px 0 0 0;
    box-shadow: -16px -12px 44px rgba(24, 29, 34, 0.1);
}

.capabilities-section {
    padding: 138px 0;
    border-block: 1px solid var(--line);
    background: var(--surface);
}

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

.capability-card {
    min-height: 300px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
}

.capability-card-featured {
    display: grid;
    min-height: 430px;
    align-content: end;
    grid-column: span 2;
    background:
        linear-gradient(rgba(0, 87, 217, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 217, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, #f8fbff, #e7f2ff);
    background-size: 24px 24px, 24px 24px, auto;
}

.capability-card h3 {
    margin-top: auto;
}

.capability-card p {
    margin-bottom: 0;
}

.capability-number {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 70px;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 12px;
    background: var(--surface);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 730;
}

.capability-mark {
    width: fit-content;
    margin-bottom: 92px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 87, 217, 0.26);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--blue);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 750;
    letter-spacing: -0.055em;
    box-shadow: var(--shadow-sm);
}

.privacy-callout {
    padding: 110px 0;
    background: var(--ink);
    color: #fff;
}

.privacy-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 120px 1fr 1fr;
    gap: clamp(38px, 6vw, 82px);
}

.privacy-callout .eyebrow,
.privacy-callout p {
    color: #c6cbd0;
}

.privacy-callout h2 {
    margin-bottom: 0;
    font-size: clamp(2.4rem, 4.4vw, 4rem);
}

.privacy-callout .text-link {
    color: #fff;
}

.privacy-symbol {
    position: relative;
    width: 102px;
    height: 116px;
    border: 2px solid #fff;
    border-radius: 48px 48px 22px 22px;
}

.privacy-symbol::before {
    position: absolute;
    top: -32px;
    left: 50%;
    width: 56px;
    height: 52px;
    border: 2px solid #fff;
    border-bottom: 0;
    border-radius: 32px 32px 0 0;
    content: "";
    transform: translateX(-50%);
}

.privacy-symbol span {
    position: absolute;
    top: 49%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 16px 0 -4px var(--cyan);
    transform: translate(-50%, -50%);
}

.facts-section {
    padding: 138px 0;
}

.facts-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(58px, 10vw, 145px);
}

.facts-intro {
    position: sticky;
    top: 112px;
}

.facts-intro h2 {
    font-size: clamp(2.5rem, 4.2vw, 4rem);
}

.facts-intro .button {
    margin-top: 18px;
}

.facts-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
}

.facts-list div {
    display: grid;
    padding: 26px 0;
    grid-template-columns: 0.62fr 1.38fr;
    gap: 28px;
    border-bottom: 1px solid var(--line);
}

.facts-list dt {
    margin: 3px 0 0;
}

.facts-list dd {
    font-size: 1.02rem;
}

.faq-section {
    padding: 138px 0;
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.faq-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(58px, 10vw, 145px);
}

.faq-intro {
    position: sticky;
    top: 112px;
}

.faq-intro h2 {
    font-size: clamp(2.5rem, 4.2vw, 4rem);
}

.faq-intro a {
    color: var(--ink);
    font-weight: 650;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: grid;
    min-height: 78px;
    align-items: center;
    padding: 18px 2px;
    grid-template-columns: 1fr 34px;
    gap: 24px;
    color: var(--ink);
    cursor: pointer;
    font-size: clamp(1.05rem, 2vw, 1.24rem);
    font-weight: 680;
    letter-spacing: -0.02em;
    list-style: none;
}

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

.faq-list summary span {
    position: relative;
    width: 32px;
    height: 32px;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1.5px;
    background: var(--ink);
    content: "";
    transform: translate(-50%, -50%);
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 160ms ease;
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
    max-width: 680px;
    margin-bottom: 26px;
    padding-right: 54px;
}

.final-cta {
    padding: 138px 0;
    background: var(--paper);
}

.final-cta-inner {
    display: flex;
    min-height: 580px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 22% 30%, rgba(133, 221, 255, 0.2), transparent 23%),
        radial-gradient(circle at 83% 76%, rgba(255, 155, 150, 0.18), transparent 26%),
        var(--surface);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.final-cta .app-icon {
    margin-bottom: 40px;
}

.final-cta .eyebrow {
    justify-content: center;
}

.final-cta h2 {
    max-width: 760px;
}

.final-cta > div > p:not(.eyebrow) {
    margin-bottom: 30px;
    font-size: 1.08rem;
}

.site-footer {
    padding: 64px 0;
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 0.75fr 0.75fr 1fr;
    gap: 54px;
}

.footer-grid > div:first-child > p {
    max-width: 270px;
    margin: 14px 0 0;
    font-size: 0.86rem;
}

.footer-grid nav {
    display: grid;
    align-content: start;
    gap: 2px;
}

.footer-grid nav p {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 720;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-grid nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    width: fit-content;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 570;
    text-decoration: none;
}

.footer-grid nav a:hover,
.footer-grid nav a:focus-visible {
    color: var(--ink);
    text-decoration: underline;
}

.footer-meta {
    align-self: end;
}

.footer-meta p {
    margin-bottom: 3px;
    font-size: 0.78rem;
}

/* Secondary pages */
.content-hero {
    padding: 110px 0 72px;
}

.content-hero-inner {
    max-width: 840px;
}

.content-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.content-hero .hero-lede {
    max-width: 700px;
    margin: 0;
}

.content-section {
    padding: 40px 0 128px;
}

.content-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
    gap: clamp(44px, 8vw, 110px);
}

.content-aside {
    position: sticky;
    top: 110px;
}

.content-aside nav {
    display: grid;
    gap: 2px;
}

.content-aside a {
    display: flex;
    min-height: 44px;
    align-items: center;
    width: fit-content;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 620;
    text-decoration: none;
}

.content-aside a:hover,
.content-aside a:focus-visible {
    color: var(--ink);
    text-decoration: underline;
}

.prose {
    max-width: 780px;
}

.prose > section {
    margin-bottom: 76px;
    scroll-margin-top: 110px;
}

.prose > section:last-child {
    margin-bottom: 0;
}

.prose h2 {
    margin-bottom: 20px;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.prose h3 {
    margin: 32px 0 10px;
    font-size: 1.18rem;
}

.prose p,
.prose li {
    font-size: 1.01rem;
}

.prose a:not(.button) {
    color: var(--blue-hover);
    font-weight: 620;
}

.prose ul,
.prose ol {
    padding-left: 1.4rem;
}

.prose li {
    margin-bottom: 10px;
    padding-left: 4px;
    color: var(--muted);
}

.prose-callout {
    margin-bottom: 52px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.prose-callout p:last-child {
    margin-bottom: 0;
}

.support-options {
    display: grid;
    margin: 30px 0 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.support-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.support-card p:last-child {
    margin-bottom: 0;
}

.page-faq details {
    border-bottom: 1px solid var(--line);
}

.page-faq details:first-of-type {
    border-top: 1px solid var(--line);
}

.page-faq summary {
    min-height: 66px;
    padding: 17px 0;
    color: var(--ink);
    cursor: pointer;
    font-weight: 680;
}

.page-faq details p {
    padding-bottom: 18px;
}

/* Press kit */
.press-hero {
    padding-bottom: 58px;
}

.press-hero-grid {
    display: grid;
    align-items: end;
    grid-template-columns: 1fr auto;
    gap: 48px;
}

.press-download {
    display: grid;
    min-width: 250px;
    padding: 24px;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.press-download p {
    margin: 0;
    font-size: 0.8rem;
}

.press-download .app-store-badge {
    justify-self: center;
}

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

.press-section-white {
    background: var(--surface);
}

.press-section-heading {
    display: grid;
    margin-bottom: 54px;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 80px;
}

.press-section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.press-section-heading > p {
    max-width: 650px;
    margin-top: 12px;
}

.press-facts {
    display: grid;
    margin: 0;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.press-facts div {
    min-height: 140px;
    padding: 24px 24px 24px 0;
    border-bottom: 1px solid var(--line);
}

.press-facts div:not(:nth-child(3n)) {
    border-right: 1px solid var(--line);
}

.press-facts div:not(:nth-child(3n + 1)) {
    padding-left: 24px;
}

.press-facts dt {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 720;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.press-facts dd {
    margin: 0;
    color: var(--ink);
    font-size: 1.04rem;
    font-weight: 640;
    line-height: 1.4;
}

.boilerplate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.copy-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
}

.copy-card > p:first-child {
    margin-bottom: 24px;
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 720;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.copy-card blockquote {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.65;
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.asset-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.asset-preview {
    display: grid;
    min-height: 380px;
    place-items: center;
    padding: 38px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(45deg, #ecece8 25%, transparent 25% 75%, #ecece8 75%),
        linear-gradient(45deg, #ecece8 25%, #f8f8f5 25% 75%, #ecece8 75%);
    background-position: 0 0, 12px 12px;
    background-size: 24px 24px;
}

.asset-preview .app-icon {
    width: 240px;
    height: 240px;
    border-radius: 56px;
}

.asset-preview img:not(.app-icon img) {
    max-height: 320px;
    object-fit: contain;
}

.asset-info {
    display: grid;
    padding: 24px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 22px;
}

.asset-info h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.asset-info p {
    margin-bottom: 0;
    font-size: 0.8rem;
}

.download-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 680;
    text-decoration: none;
}

.download-link:hover,
.download-link:focus-visible {
    border-color: var(--ink);
    background: var(--paper);
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.screenshot-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.screenshot-card > a:first-child {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--surface-soft);
}

.screenshot-card > a:first-child:focus-visible {
    outline-offset: -4px;
}

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

.screenshot-card > a:first-child:hover img {
    transform: scale(1.015);
}

.screenshot-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    gap: 18px;
}

.screenshot-info p {
    margin: 0;
    font-size: 0.8rem;
}

.press-note {
    margin-top: 34px;
    padding: 22px 24px;
    border-left: 3px solid var(--blue);
    background: var(--blue-soft);
}

.press-note p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding-top: 92px;
    }

    .definition-grid,
    .facts-grid,
    .faq-grid,
    .privacy-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .definition-copy {
        max-width: 700px;
        padding-top: 0;
    }

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

    .fact-strip div:nth-child(2) {
        border-right: 0;
    }

    .fact-strip div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .fact-strip div:nth-child(3) {
        padding-left: 0;
    }

    .workflow-card,
    .workflow-card-reverse {
        grid-template-columns: 1fr;
    }

    .workflow-card-reverse .workflow-copy,
    .workflow-card-reverse .workflow-image {
        grid-column: 1;
    }

    .workflow-card-reverse .workflow-copy {
        grid-row: 1;
    }

    .workflow-card-reverse .workflow-image {
        grid-row: 2;
    }

    .workflow-image {
        min-height: 430px;
    }

    .workflow-image img {
        width: 940px;
    }

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

    .capability-card-featured {
        grid-column: span 2;
    }

    .privacy-grid {
        max-width: 760px;
    }

    .privacy-symbol {
        margin-bottom: 20px;
    }

    .facts-intro,
    .faq-intro,
    .content-aside {
        position: static;
    }

    .content-aside nav {
        display: flex;
        flex-wrap: wrap;
        gap: 4px 22px;
    }

    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr;
    }

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

    .press-hero-grid,
    .press-section-heading {
        grid-template-columns: 1fr;
    }

    .press-download {
        width: min(100%, 380px);
    }
}

@media (max-width: 720px) {
    h1 {
        font-size: clamp(3.15rem, 16vw, 5.2rem);
    }

    h2 {
        font-size: clamp(2.35rem, 11vw, 3.4rem);
    }

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

    .site-header .brand > span:last-child {
        max-width: 145px;
        line-height: 1.1;
    }

    .hero {
        padding: 78px 0 82px;
    }

    .hero-copy {
        margin-bottom: 54px;
    }

    .hero-lede {
        font-size: 1.05rem;
    }

    .button-row {
        align-items: center;
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    .hero-proof {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-proof li {
        padding: 0;
        border-right: 0;
    }

    .pixel-field {
        width: 70px;
        height: 70px;
    }

    .pixel-field-one {
        top: -22px;
        right: -16px;
    }

    .pixel-field-two {
        bottom: -18px;
        left: -14px;
    }

    .definition-section,
    .workflow-section,
    .capabilities-section,
    .facts-section,
    .faq-section,
    .final-cta {
        padding-block: 96px;
    }

    .definition-grid,
    .facts-grid,
    .faq-grid {
        gap: 48px;
    }

    .fact-strip {
        margin-top: 58px;
        grid-template-columns: 1fr;
    }

    .fact-strip div,
    .fact-strip div:first-child,
    .fact-strip div:nth-child(3) {
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .fact-strip div:last-child {
        border-bottom: 0;
    }

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

    .workflow-card {
        min-height: 0;
        border-radius: var(--radius-md);
    }

    .workflow-copy {
        padding: 34px 26px 40px;
    }

    .workflow-image {
        min-height: 320px;
        padding: 26px 0 0 26px;
    }

    .workflow-image img {
        width: 690px;
        border-radius: 16px 0 0;
    }

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

    .capability-card,
    .capability-card-featured {
        min-height: 280px;
        grid-column: auto;
    }

    .capability-card-featured {
        min-height: 360px;
    }

    .capability-number {
        margin-bottom: 46px;
    }

    .capability-mark {
        margin-bottom: 62px;
    }

    .privacy-callout {
        padding: 96px 0;
    }

    .privacy-symbol {
        width: 82px;
        height: 92px;
    }

    .facts-list div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .faq-list summary {
        grid-template-columns: 1fr 32px;
    }

    .faq-list details p {
        padding-right: 0;
    }

    .final-cta-inner {
        min-height: 520px;
        padding: 64px 22px;
        border-radius: var(--radius-md);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 24px;
    }

    .footer-grid > div:first-child,
    .footer-meta {
        grid-column: 1 / -1;
    }

    .content-hero {
        padding: 84px 0 54px;
    }

    .content-section {
        padding-bottom: 96px;
    }

    .content-grid {
        gap: 42px;
    }

    .support-options,
    .boilerplate-grid,
    .asset-grid,
    .screenshot-grid {
        grid-template-columns: 1fr;
    }

    .press-section {
        padding: 82px 0;
    }

    .press-section-heading {
        margin-bottom: 40px;
        gap: 20px;
    }

    .press-facts {
        grid-template-columns: 1fr;
    }

    .press-facts div,
    .press-facts div:not(:nth-child(3n)),
    .press-facts div:not(:nth-child(3n + 1)) {
        min-height: auto;
        padding: 22px 0;
        border-right: 0;
    }

    .asset-preview {
        min-height: 300px;
    }

    .asset-preview .app-icon {
        width: 190px;
        height: 190px;
        border-radius: 45px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-copy {
        animation: reveal-up 600ms 80ms both cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .product-stage {
        animation: reveal-up 720ms 180ms both cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    @keyframes reveal-up {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

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

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

@media (forced-colors: active) {
    .button,
    .app-icon,
    .screenshot-frame,
    .workflow-card,
    .capability-card,
    .final-cta-inner {
        border: 1px solid ButtonText;
    }

    .pixel-field {
        display: none;
    }
}
