:root {
    --paper: #f4f5ef;
    --paper-strong: #ffffff;
    --ink: #161916;
    --muted: #626960;
    --line: #d9ddd3;
    --green: #08783e;
    --green-bright: #18a957;
    --green-pale: #dff0df;
    --blue: #2563eb;
    --red: #dc2626;
    --orange: #ed6c30;
    --teal: #0f766e;
    --shadow: 0 28px 80px rgba(29, 39, 31, 0.18), 0 4px 16px rgba(29, 39, 31, 0.1);
    --site-padding: clamp(22px, 5vw, 76px);
    --max-width: 1440px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", sans-serif;
    font-size: 16px;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

button,
a {
    font: inherit;
}

button {
    color: inherit;
}

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

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

svg {
    width: 1em;
    height: 1em;
    stroke-width: 1.8;
}

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 70px;
    border-bottom: 1px solid transparent;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--site-padding);
}

.site-header.is-scrolled {
    border-bottom-color: rgba(22, 25, 22, 0.1);
    background: rgba(244, 245, 239, 0.9);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
}

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

.desktop-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    margin-left: 32px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.desktop-nav a:not(.nav-cta) {
    color: #474d46;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: var(--green);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    max-width: 0;
    gap: 7px;
    margin-left: 0;
    padding: 9px 0;
    border: 0 solid #bfc5bb;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    white-space: nowrap;
    transition: max-width 180ms ease, margin-left 180ms ease, padding 180ms ease, border-width 180ms ease, opacity 160ms ease, transform 160ms ease;
}

.site-header.shows-store-cta .nav-cta {
    max-width: 160px;
    margin-left: 30px;
    padding: 9px 13px;
    border-width: 1px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.language-picker {
    position: relative;
}

.language-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 9px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: #474d46;
    cursor: pointer;
    font-size: 13px;
    font-weight: 650;
}

.language-trigger:hover,
.language-trigger:focus-visible,
.language-picker.is-open .language-trigger {
    border-color: #c8cdc4;
    background: rgba(255, 255, 255, 0.72);
    color: var(--green);
}

.language-trigger:focus-visible,
.language-option:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.language-trigger svg {
    width: 15px;
    height: 15px;
}

.language-trigger .language-chevron {
    width: 13px;
    height: 13px;
    color: #858b82;
    transition: transform 160ms ease;
}

.language-picker.is-open .language-chevron {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 60;
    display: grid;
    width: 148px;
    padding: 5px;
    border: 1px solid #cdd2c9;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 38px rgba(29, 39, 31, 0.16), 0 2px 8px rgba(29, 39, 31, 0.08);
    backdrop-filter: blur(18px);
}

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

.language-option {
    display: grid;
    grid-template-columns: 1fr 16px;
    align-items: center;
    min-height: 36px;
    padding: 0 9px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #474d46;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}

.language-option:hover,
.language-option:focus-visible {
    background: #eef1eb;
    color: var(--ink);
}

.language-option[aria-checked="true"] {
    background: var(--green-pale);
    color: var(--green);
    font-weight: 700;
}

.language-option svg {
    width: 14px;
    height: 14px;
    visibility: hidden;
}

.language-option[aria-checked="true"] svg {
    visibility: visible;
}

.menu-button,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(720px, 82svh, 900px);
    overflow: hidden;
    padding: 112px 0 52px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(400px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(28px, 3vw, 52px);
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--site-padding);
}

.hero-copy {
    position: relative;
    z-index: 4;
    max-width: 520px;
}

.eyebrow,
.section-index {
    margin: 0;
    color: var(--green);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    margin: 14px 0 0;
    font-size: 112px;
    font-weight: 760;
    line-height: 0.82;
    letter-spacing: 0;
}

.hero-statement {
    margin: 30px 0 0;
    font-size: 52px;
    font-weight: 660;
    line-height: 1.08;
}

.hero-description {
    max-width: 500px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

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

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

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

.button-secondary {
    border-color: #c4c9bf;
    background: rgba(255, 255, 255, 0.5);
}

.button-secondary:hover {
    border-color: #90978d;
    background: white;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
    color: #676d65;
    font-size: 12px;
    font-weight: 600;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-stage {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 860px;
    height: clamp(560px, 66svh, 680px);
    min-width: 0;
    justify-self: end;
}

.showcase-context {
    position: absolute;
    inset: 3% 0 7% 4%;
    overflow: hidden;
    padding: 10% 9%;
    border: 1px solid #d5d9d1;
    border-radius: 8px;
    background: #f9faf6;
    box-shadow: 0 24px 70px rgba(45, 56, 45, 0.12);
}

.showcase-context::before {
    position: absolute;
    inset: 0 0 auto;
    height: 32px;
    border-bottom: 1px solid #d5d8d0;
    background: rgba(241, 243, 237, 0.88);
    content: "";
}

.showcase-context p {
    margin: 0 0 24px;
    color: #848a81;
    font-size: 9px;
    font-weight: 800;
}

.showcase-context h2 {
    max-width: 480px;
    margin: 0 0 26px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.12;
}

.showcase-context span,
.showcase-context mark {
    display: block;
    max-width: 530px;
    color: #575d55;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    line-height: 1.72;
}

.showcase-context mark {
    width: fit-content;
    margin-top: 18px;
    padding: 2px 3px;
    background: #cfe8d3;
}

.product-screenshot {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: min(84%, 760px, 77vh);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(58, 65, 58, 0.2);
    border-radius: 12px;
    background: #f7f8f4;
    box-shadow: 0 28px 64px rgba(28, 36, 29, 0.2);
}

.product-screenshot img {
    display: block;
    width: 100%;
    height: auto;
}

.role-subject,
.role-predicate,
.role-object {
    padding: 1px 3px;
    border-radius: 3px;
    font-style: normal;
}

.role-subject { background: rgba(37, 99, 235, 0.13); color: #174fc5; }
.role-predicate { background: rgba(220, 38, 38, 0.12); color: #bd1e1e; }
.role-object { background: rgba(22, 163, 74, 0.13); color: #087a32; }

.positioning,
.workflow,
.adaptive,
.privacy,
.providers {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px var(--site-padding);
}

.positioning {
    display: grid;
    grid-template-columns: minmax(140px, 0.35fr) minmax(560px, 1.15fr) minmax(280px, 0.7fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
}

.positioning h2,
.section-heading h2,
.grammar-copy h2,
.privacy-heading h2,
.providers h2,
.closing h2 {
    margin: 18px 0 0;
    font-size: 68px;
    font-weight: 680;
    line-height: 1.08;
    letter-spacing: 0;
}

.positioning h2 {
    text-wrap: balance;
}

.positioning > div > p {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.fact-list {
    margin: 5px 0 0;
}

.fact-list div {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: baseline;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.fact-list div:first-child {
    border-top: 1px solid var(--line);
}

.fact-list dt {
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 13px;
    font-weight: 750;
}

.fact-list dd {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.workflow {
    max-width: none;
    background: var(--paper-strong);
}

.workflow .section-heading,
.workflow-list,
.adaptive > *,
.privacy > * {
    max-width: calc(var(--max-width) - 2 * var(--site-padding));
    margin-right: auto;
    margin-left: auto;
}

.section-heading {
    display: grid;
    grid-template-columns: 0.45fr 1.05fr 0.75fr;
    gap: clamp(30px, 6vw, 100px);
    align-items: start;
}

.section-heading h2 {
    margin-top: 0;
}

.section-heading > p:last-child {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.workflow-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 78px;
    border-top: 1px solid var(--ink);
}

.workflow-list article {
    position: relative;
    min-height: 340px;
    padding: 24px 34px 26px 0;
    border-right: 1px solid var(--line);
}

.workflow-list article + article {
    padding-left: 34px;
}

.workflow-list article:last-child {
    border-right: 0;
}

.workflow-list .step-number {
    color: #91978f;
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 12px;
}

.workflow-list article > svg {
    display: block;
    width: 28px;
    height: 28px;
    margin-top: 56px;
    color: var(--green);
}

.workflow-list h3 {
    margin: 19px 0 0;
    font-size: 23px;
}

.workflow-list p {
    max-width: 340px;
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.workflow-list small {
    position: absolute;
    bottom: 0;
    color: #888e86;
    font-size: 11px;
}

.grammar-feature {
    background: #171a17;
    color: #f5f7f2;
}

.grammar-feature-inner {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(40px, 7vw, 120px);
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 130px var(--site-padding);
}

.grammar-copy {
    align-self: center;
    max-width: 490px;
    justify-self: end;
}

.grammar-copy .section-index {
    color: #70d093;
}

.grammar-copy p:not(.section-index) {
    margin: 28px 0 0;
    color: #aeb5ac;
    font-size: 16px;
    line-height: 1.8;
}

.role-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 34px;
    padding: 0;
    color: #d4d9d2;
    font-size: 11px;
    list-style: none;
}

.role-legend li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.role-legend i {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.subject-swatch { background: var(--blue); }
.predicate-swatch { background: var(--red); }
.object-swatch { background: var(--green-bright); }
.adverbial-swatch { background: var(--teal); }

.grammar-visual {
    align-self: center;
    max-width: 840px;
    padding: clamp(28px, 5vw, 68px);
    border-left: 1px solid #3c413b;
}

.visual-mode {
    display: inline-flex;
    padding: 3px;
    border: 1px solid #4a5049;
    border-radius: 7px;
    color: #8f978d;
    font-size: 11px;
}

.visual-mode span {
    padding: 7px 16px;
    border-radius: 5px;
}

.visual-mode .active {
    background: #f1f3ee;
    color: #252925;
}

.visual-pattern {
    margin: 44px 0 0;
    color: #838b81;
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 11px;
}

.visual-sentence {
    max-width: 820px;
    margin: 17px 0 0;
    font-size: 42px;
    font-weight: 570;
    line-height: 1.55;
}

.visual-sentence em {
    color: #7d847b;
    font-style: normal;
}

.grammar-visual .role-subject,
.grammar-visual .role-predicate,
.grammar-visual .role-object {
    padding: 2px 6px;
}

.grammar-visual .role-subject { background: rgba(37, 99, 235, 0.24); color: #83a8ff; }
.grammar-visual .role-predicate { background: rgba(220, 38, 38, 0.22); color: #ff8b8b; }
.grammar-visual .role-object { background: rgba(22, 163, 74, 0.22); color: #70dc94; }

.syntax-lines {
    display: grid;
    grid-template-columns: 1fr 0.9fr 0.75fr;
    gap: 18px;
    margin-top: 26px;
}

.syntax-lines span {
    height: 2px;
}

.subject-line { background: var(--blue); }
.predicate-line { background: var(--red); }
.object-line { background: var(--green-bright); }

.visual-outline {
    margin-top: 52px;
    border-top: 1px solid #3d423c;
}

.visual-outline div {
    display: grid;
    grid-template-columns: 110px 1fr 100px;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid #333833;
    font-size: 12px;
}

.visual-outline div:not(:first-child) {
    padding-left: 22px;
}

.visual-outline b {
    color: #e6eae4;
}

.visual-outline span,
.visual-outline small {
    color: #949b92;
}

.adaptive {
    max-width: none;
    padding-top: 130px;
    padding-bottom: 130px;
    background: #edf0e9;
}

.compact-heading {
    grid-template-columns: 0.45fr 1.8fr;
}

.adaptive-rows {
    margin-top: 78px;
    border-top: 1px solid var(--ink);
}

.adaptive-rows > div {
    display: grid;
    grid-template-columns: 0.38fr 0.45fr 1fr 48px;
    align-items: center;
    gap: 28px;
    min-height: 122px;
    border-bottom: 1px solid #cdd2c9;
}

.adaptive-rows > div > span {
    color: #777e75;
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 10px;
}

.adaptive-rows h3 {
    margin: 0;
    font-size: 24px;
}

.adaptive-rows p {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.adaptive-rows svg {
    width: 24px;
    height: 24px;
    justify-self: end;
    color: var(--green);
}

.privacy {
    max-width: none;
    background: var(--green-pale);
}

.privacy-heading {
    display: grid;
    grid-template-columns: 0.45fr 1.05fr 0.75fr;
    gap: clamp(30px, 6vw, 100px);
    align-items: start;
}

.privacy-heading h2 {
    margin-top: 0;
}

.privacy-heading > p:last-child {
    margin: 4px 0 0;
    color: #536355;
    font-size: 15px;
    line-height: 1.75;
}

.data-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    margin-top: 84px;
    padding: 0;
    border-top: 1px solid rgba(19, 71, 40, 0.28);
    border-bottom: 1px solid rgba(19, 71, 40, 0.28);
    list-style: none;
}

.data-flow > li {
    position: relative;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 4px 12px;
    align-items: center;
    padding: 26px 0;
}

.data-flow > li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: 18px;
    color: #78907c;
    content: "→";
    transform: translateY(-50%);
}

.data-flow > li > svg {
    grid-row: span 2;
    width: 25px;
    height: 25px;
    color: var(--green);
}

.data-flow span {
    font-size: 14px;
    font-weight: 750;
}

.data-flow small {
    color: #5d6c5f;
    font-size: 11px;
}

.privacy-promises {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 36px;
    padding: 0;
    list-style: none;
}

.privacy-promises li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #435447;
    font-size: 12px;
}

.privacy-promises svg {
    color: var(--green);
}

.providers {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px 100px;
}

.providers h2 {
    max-width: 790px;
}

.providers > p {
    align-self: end;
    margin-bottom: 5px;
    color: var(--muted);
    line-height: 1.75;
}

.provider-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    border-top: 1px solid var(--ink);
    list-style: none;
}

.provider-list li {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    color: #363b36;
    font-size: 20px;
    font-weight: 650;
}

.provider-list li:not(:nth-child(3n + 1)) {
    padding-left: 26px;
    border-left: 1px solid var(--line);
}

.closing {
    min-height: 650px;
    padding: 118px var(--site-padding);
    background: var(--green);
    color: white;
    text-align: center;
}

.closing img {
    width: 112px;
    height: 112px;
    margin: 0 auto 28px;
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(0, 47, 25, 0.22);
}

.closing .eyebrow {
    color: #bce2c8;
}

.closing h2 {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.closing > p:not(.eyebrow) {
    margin-top: 22px;
    color: #cbe6d3;
    font-size: 17px;
}

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

.button-light {
    background: white;
    color: #10311f;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px;
    color: white;
    font-size: 14px;
    font-weight: 650;
}

footer {
    background: #101310;
    color: #eff2ec;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: var(--max-width);
    min-height: 90px;
    margin: 0 auto;
    padding: 20px var(--site-padding);
}

.footer-brand {
    justify-self: start;
}

footer p {
    color: #8f978d;
    font-size: 11px;
}

.footer-platform {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    justify-self: end;
    color: #a7aea5;
    font-size: 11px;
}

@media (max-width: 1280px) {
    .hero h1 {
        font-size: 88px;
    }

    .hero-statement {
        font-size: 44px;
    }

    .showcase-context h2 {
        font-size: 28px;
    }

    .positioning h2,
    .section-heading h2,
    .grammar-copy h2,
    .privacy-heading h2,
    .providers h2,
    .closing h2 {
        font-size: 56px;
    }

    .visual-sentence {
        font-size: 36px;
    }

    .hero-inner {
        grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
    }

    .product-stage {
        width: 100%;
    }

    .positioning,
    .section-heading,
    .privacy-heading {
        grid-template-columns: 0.3fr 1fr;
    }

    .positioning .fact-list,
    .section-heading > p:last-child,
    .privacy-heading > p:last-child {
        grid-column: 2;
    }

    .grammar-feature-inner {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .providers {
        gap: 50px;
    }
}

@media (max-width: 860px) {
    .desktop-header-actions {
        display: none;
    }

    .menu-button {
        display: grid;
        margin-left: auto;
        width: 40px;
        height: 40px;
        place-items: center;
        border: 0;
        background: transparent;
        cursor: pointer;
        font-size: 22px;
    }

    .mobile-nav {
        position: absolute;
        top: 62px;
        right: var(--site-padding);
        display: none;
        width: min(260px, calc(100vw - 44px));
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 18px 45px rgba(26, 34, 27, 0.15);
        backdrop-filter: blur(18px);
    }

    .mobile-nav.is-open {
        display: grid;
    }

    .mobile-nav a {
        padding: 12px;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 650;
    }

    .mobile-nav a:hover {
        background: #eef1eb;
    }

    .mobile-language-picker {
        width: 100%;
        padding: 8px 4px;
        border-top: 1px solid var(--line);
    }

    .mobile-language-picker .language-trigger {
        width: 100%;
        justify-content: flex-start;
        min-height: 40px;
    }

    .mobile-language-picker .language-chevron {
        margin-left: auto;
    }

    .mobile-language-picker .language-menu {
        position: static;
        width: 100%;
        margin-top: 4px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .hero {
        display: block;
        min-height: auto;
        padding-top: 118px;
        padding-bottom: 68px;
    }

    .hero-inner {
        display: block;
    }

    .hero-copy {
        max-width: 680px;
        padding-right: 0;
    }

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

    .hero-description {
        max-width: 600px;
    }

    .product-stage {
        width: 100%;
        max-width: none;
        height: 650px;
        min-height: 0;
        margin-top: 58px;
        transform: none;
    }

    .product-screenshot {
        width: min(82%, 720px);
    }

    .positioning,
    .workflow,
    .adaptive,
    .privacy,
    .providers {
        padding-top: 88px;
        padding-bottom: 88px;
    }

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

    .positioning .fact-list,
    .section-heading > p:last-child,
    .privacy-heading > p:last-child {
        grid-column: 1;
    }

    .positioning .fact-list {
        margin-top: 20px;
    }

    .workflow-list {
        grid-template-columns: 1fr;
        margin-top: 52px;
    }

    .workflow-list article,
    .workflow-list article + article {
        min-height: auto;
        padding: 26px 0 54px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .workflow-list article > svg {
        margin-top: 28px;
    }

    .workflow-list small {
        bottom: 23px;
    }

    .grammar-feature-inner {
        grid-template-columns: 1fr;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .grammar-copy {
        max-width: 700px;
        justify-self: start;
    }

    .grammar-visual {
        padding: 42px 0 0;
        border-top: 1px solid #3c413b;
        border-left: 0;
    }

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

    .providers > p {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    :root {
        --site-padding: 20px;
    }

    .site-header {
        height: 62px;
    }

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

    .hero {
        padding-top: 100px;
    }

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

    .hero-statement {
        margin-top: 24px;
        font-size: 36px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-meta {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .product-stage {
        height: 520px;
        margin-top: 45px;
    }

    .showcase-context {
        inset: 0 0 7%;
        padding: 12% 8%;
    }

    .showcase-context h2 {
        font-size: 24px;
    }

    .showcase-context span,
    .showcase-context mark {
        font-size: 10px;
    }

    .product-screenshot {
        right: -3%;
        width: 94%;
    }

    .grammar-copy,
    .grammar-visual {
        width: 100%;
        min-width: 0;
    }

    .visual-outline div {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 6px 12px;
    }

    .visual-outline div:not(:first-child) {
        padding-left: 0;
    }

    .visual-outline b {
        grid-row: 1 / span 2;
    }

    .visual-outline small {
        grid-column: 2;
    }

    .positioning h2,
    .section-heading h2,
    .grammar-copy h2,
    .privacy-heading h2,
    .providers h2,
    .closing h2 {
        font-size: 40px;
    }

    .adaptive-rows > div {
        grid-template-columns: 1fr 36px;
        gap: 8px 14px;
        padding: 24px 0;
    }

    .adaptive-rows > div > span,
    .adaptive-rows h3,
    .adaptive-rows p {
        grid-column: 1;
    }

    .adaptive-rows svg {
        grid-column: 2;
        grid-row: 1 / span 3;
    }

    .data-flow {
        grid-template-columns: 1fr;
        margin-top: 54px;
    }

    .data-flow > li {
        border-bottom: 1px solid rgba(19, 71, 40, 0.18);
    }

    .data-flow > li:last-child {
        border-bottom: 0;
    }

    .data-flow > li:not(:last-child)::after {
        display: none;
    }

    .privacy-promises {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .provider-list li:not(:nth-child(3n + 1)) {
        padding-left: 0;
        border-left: 0;
    }

    .provider-list li:nth-child(even) {
        padding-left: 18px;
        border-left: 1px solid var(--line);
    }

    .provider-list li {
        font-size: 16px;
    }

    .closing {
        min-height: 600px;
        padding-top: 92px;
        padding-bottom: 92px;
    }

    .closing-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    footer p {
        display: none;
    }
}

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

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