:root {
    color-scheme: light;
    --ink: #171724;
    --muted: #686b7b;
    --quiet: #9699a8;
    --paper: #f7f8fc;
    --panel: #ffffff;
    --line: rgba(39, 42, 69, 0.12);
    --navy: #101322;
    --navy-2: #181c31;
    --brand-indigo: #4f46e5;
    --brand-indigo-deep: #312e81;
    --indigo: #4f46e5;
    --electric: #7c3aed;
    --money: #4f46e5;
    --green: #23a85a;
    --red: #f1362e;
    --shadow: 0 26px 80px rgba(19, 23, 42, 0.15);
    --hero-shadow: 0 34px 110px rgba(5, 8, 20, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: var(--paper);
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 82% 7%, rgba(126, 120, 255, 0.58), transparent 30rem),
        radial-gradient(circle at 18% 16%, rgba(89, 83, 237, 0.34), transparent 25rem),
        linear-gradient(180deg, var(--brand-indigo) 0, #4338ca 430px, var(--brand-indigo-deep) 820px, var(--paper) 820px, #ffffff 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

.site-header,
main > section,
.site-footer {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    color: #ffffff;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    font-size: 22px;
    font-weight: 850;
    text-decoration: none;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 750;
}

.header-nav a {
    text-decoration: none;
}

.header-nav a:hover {
    color: #ffffff;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(46px, 7vw, 94px);
    align-items: center;
    min-height: 700px;
    padding: 44px 0 90px;
    color: #ffffff;
}

.hero-copy {
    max-width: 610px;
}

.eyebrow {
    margin: 0 0 16px;
    color: #d8d6ff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

h1 {
    max-width: 620px;
    margin-bottom: 22px;
    font-size: clamp(48px, 6.2vw, 78px);
    font-weight: 880;
    line-height: 0.96;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    color: var(--ink);
    font-size: clamp(34px, 4.8vw, 56px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.16;
}

.hero-subhead {
    max-width: 610px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.47;
}

.download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

.button.primary {
    background: #ffffff;
    color: var(--navy);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.button.secondary {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.button.secondary.light {
    border-color: rgba(91, 85, 223, 0.22);
    background: #ffffff;
    color: var(--indigo);
    box-shadow: 0 16px 42px rgba(21, 24, 39, 0.08);
}

.cta-note {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 650;
}

.cta-note.dark {
    color: var(--quiet);
}

.product-stage {
    position: relative;
    min-height: 600px;
}

.menubar-preview {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    margin: 0 34px 18px auto;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    box-shadow: var(--hero-shadow);
    backdrop-filter: blur(20px);
    font-size: 17px;
    font-weight: 850;
}

.menubar-preview b {
    color: var(--money);
}

.timer-glyph {
    width: 18px;
    height: 18px;
    border: 3px solid var(--navy);
    border-radius: 50%;
    box-shadow: inset 5px -1px 0 -3px var(--navy);
}

.mac-preview {
    width: min(640px, 100%);
    margin-left: auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    box-shadow: var(--hero-shadow);
}

.window-chrome {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff, #f2f2f8);
}

.window-chrome span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.window-chrome span:nth-child(1) { background: #ff5f57; }
.window-chrome span:nth-child(2) { background: #ffbd2e; }
.window-chrome span:nth-child(3) { background: #28c840; }

.window-chrome strong {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
}

.mac-body {
    display: grid;
    gap: 20px;
    padding: clamp(24px, 4vw, 36px);
}

.today-total span,
.active-card > span,
.phone-screen > span,
.section-heading .eyebrow {
    display: block;
}

.today-total > span,
.active-card > span,
.phone-screen > span {
    margin-bottom: 8px;
    color: var(--quiet);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.today-total div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.78fr);
    gap: 18px;
    align-items: center;
}

.today-total strong {
    font-size: clamp(32px, 3.6vw, 46px);
    line-height: 1;
    white-space: nowrap;
}

.today-total strong:last-child {
    color: var(--money);
}

.today-total i {
    width: 1px;
    height: 44px;
    background: rgba(91, 85, 223, 0.28);
}

.active-card {
    padding: 20px;
    border: 1px solid rgba(91, 85, 223, 0.16);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #f5f4ff);
}

.active-card h2 {
    margin-bottom: 4px;
    font-size: 24px;
}

.active-card p {
    margin-bottom: 12px;
    color: var(--muted);
    font-weight: 700;
}

.active-card strong {
    color: var(--money);
    font-size: 20px;
}

.project-list {
    display: grid;
    gap: 10px;
}

.project-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #ffffff;
}

.project-list span {
    font-weight: 850;
}

.project-list strong {
    color: var(--muted);
    font-size: 14px;
    white-space: nowrap;
}

.phone-preview {
    position: absolute;
    right: -10px;
    bottom: -18px;
    z-index: 4;
    width: 188px;
    min-height: 360px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 34px;
    background: #0f1220;
    box-shadow: 0 34px 90px rgba(3, 6, 18, 0.45);
}

.phone-speaker {
    width: 52px;
    height: 5px;
    margin: 4px auto 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.phone-screen {
    min-height: 312px;
    padding: 20px 16px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 86% 12%, rgba(123, 118, 255, 0.28), transparent 7rem),
        linear-gradient(180deg, #fbfbff, #f2f1ff);
    color: var(--ink);
}

.phone-screen h2 {
    margin-bottom: 18px;
    font-size: 22px;
}

.phone-screen strong,
.phone-screen b {
    display: block;
    line-height: 1;
}

.phone-screen strong {
    font-size: 30px;
}

.phone-screen b {
    margin: 9px 0 18px;
    color: var(--money);
    font-size: 34px;
}

.phone-screen p {
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}

.problem,
.features,
.how-it-works,
.audience,
.final-cta {
    padding: clamp(70px, 10vw, 118px) 0;
}

.problem {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: clamp(34px, 6vw, 78px);
    align-items: center;
}

.problem h2 {
    max-width: 650px;
}

.problem > p,
.audience > p {
    color: var(--muted);
    font-size: clamp(19px, 2.2vw, 24px);
    line-height: 1.5;
}

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

.section-heading.compact {
    margin-bottom: 18px;
}

.section-heading.left-align {
    max-width: 760px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

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

.feature-card,
.steps article {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: 0 18px 50px rgba(19, 23, 42, 0.06);
}

.feature-card {
    min-height: 260px;
    padding: 24px;
}

.feature-card.accent {
    background: linear-gradient(145deg, var(--brand-indigo), var(--electric));
    color: #ffffff;
    box-shadow: 0 24px 70px rgba(91, 85, 223, 0.32);
}

.feature-card span,
.steps span {
    display: block;
    margin-bottom: 42px;
    color: var(--indigo);
    font-size: 13px;
    font-weight: 900;
}

.feature-card.accent span,
.feature-card.accent p {
    color: rgba(255, 255, 255, 0.74);
}

.feature-card p,
.steps p {
    margin-bottom: 0;
    color: var(--muted);
}

.how-it-works {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.steps article {
    padding: 28px;
}

.steps span {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 36px;
    border-radius: 50%;
    background: #eeedff;
}

.audience {
    max-width: 900px;
    text-align: center;
}

.final-cta {
    margin-bottom: 60px;
    padding-right: 24px;
    padding-left: 24px;
    border: 1px solid rgba(91, 85, 223, 0.18);
    border-radius: 32px;
    background:
        radial-gradient(circle at 50% 0%, rgba(91, 85, 223, 0.16), transparent 22rem),
        #ffffff;
    box-shadow: var(--shadow);
    text-align: center;
}

.final-cta img {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    object-fit: contain;
}

.final-cta h2 {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
}

.final-cta .download-actions {
    justify-content: center;
}

.final-cta .button.primary {
    background: var(--indigo);
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(91, 85, 223, 0.24);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 28px 0 42px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}

.site-footer nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--indigo);
}

.page-body {
    background:
        radial-gradient(circle at 72% 0%, rgba(105, 99, 255, 0.22), transparent 28rem),
        linear-gradient(180deg, var(--brand-indigo) 0, var(--brand-indigo-deep) 310px, var(--paper) 310px, #ffffff 100%);
}

.page-header {
    color: #ffffff;
}

.content-page {
    width: min(920px, calc(100% - 44px));
    margin: 0 auto;
    padding-bottom: 72px;
}

.page-hero {
    padding: 62px 0 42px;
    color: #ffffff;
}

.page-hero h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(44px, 8vw, 72px);
}

.page-lead {
    max-width: 780px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(18px, 2.4vw, 22px);
}

.last-updated {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
    font-weight: 700;
}

.confirmation-hero {
    text-align: center;
}

.confirmation-hero img {
    width: 84px;
    height: 84px;
    margin-bottom: 18px;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(91, 85, 223, 0.28);
}

.confirmation-hero .page-lead {
    margin-right: auto;
    margin-left: auto;
}

.policy-card {
    margin-bottom: 18px;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 50px rgba(19, 23, 42, 0.07);
}

.policy-card h2 {
    margin-bottom: 12px;
    font-size: clamp(24px, 3vw, 34px);
}

.policy-card h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.policy-card p,
.policy-card li {
    color: var(--muted);
    font-size: 17px;
}

.policy-card p:last-child,
.policy-card ul:last-child {
    margin-bottom: 0;
}

.policy-card ul {
    padding-left: 1.25rem;
}

.policy-card li + li {
    margin-top: 8px;
}

.policy-card a,
.contact-card a,
.trust-callout a,
.privacy-promise a {
    color: var(--indigo);
    font-weight: 850;
    text-decoration-color: rgba(91, 85, 223, 0.35);
    text-underline-offset: 0.18em;
}

.trust-callout,
.contact-card,
.privacy-promise {
    margin-bottom: 18px;
    border: 1px solid rgba(123, 118, 255, 0.24);
    border-radius: 28px;
    box-shadow: 0 22px 70px rgba(19, 23, 42, 0.1);
}

.trust-callout {
    padding: clamp(24px, 4vw, 34px);
    background:
        radial-gradient(circle at 94% 0%, rgba(123, 118, 255, 0.18), transparent 17rem),
        #ffffff;
}

.trust-callout strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.05;
}

.trust-callout p {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: clamp(26px, 4vw, 38px);
    background:
        linear-gradient(135deg, rgba(91, 85, 223, 0.1), rgba(255, 255, 255, 0.95)),
        #ffffff;
}

.contact-card h2 {
    margin-bottom: 12px;
    font-size: clamp(30px, 4vw, 44px);
}

.contact-card p {
    max-width: 660px;
    color: var(--muted);
    font-size: 17px;
}

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

.contact-card .button.primary {
    background: var(--indigo);
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(91, 85, 223, 0.24);
}

.clean-list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--muted);
    font-size: 17px;
}

.clean-list li + li {
    margin-top: 8px;
}

.summary-card {
    border-color: rgba(91, 85, 223, 0.2);
    background:
        radial-gradient(circle at 100% 0%, rgba(91, 85, 223, 0.12), transparent 18rem),
        #ffffff;
}

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

.check-list li,
.promise-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before,
.promise-list li::before {
    position: absolute;
    top: 0.1em;
    left: 0;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--indigo);
    color: #ffffff;
    content: "";
}

.check-list li::after,
.promise-list li::after {
    position: absolute;
    top: 0.42em;
    left: 5px;
    width: 7px;
    height: 4px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    content: "";
    transform: rotate(-45deg);
}

.privacy-promise {
    padding: clamp(28px, 5vw, 44px);
    background:
        radial-gradient(circle at 92% 6%, rgba(123, 118, 255, 0.28), transparent 22rem),
        linear-gradient(145deg, #15182b, #242744);
    color: #ffffff;
}

.privacy-promise h2 {
    color: #ffffff;
}

.privacy-promise p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.privacy-promise .promise-list {
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.privacy-promise .promise-list li {
    color: rgba(255, 255, 255, 0.88);
}

.privacy-promise .promise-list li::before {
    background: #ffffff;
}

.privacy-promise .promise-list li::after {
    border-color: var(--indigo);
}

.policy-subsections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.policy-subsections article,
.troubleshooting-list article {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(247, 248, 252, 0.75);
}

.policy-subsections h3,
.troubleshooting-list h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.policy-subsections p {
    margin-bottom: 0;
}

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

.support-grid .policy-card {
    margin-bottom: 0;
}

.help-section {
    padding: 18px 0 0;
}

.help-card {
    min-height: 0;
}

.troubleshooting-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.troubleshooting-list ul {
    margin-bottom: 0;
    padding-left: 1.1rem;
}

.support-cta {
    width: 100%;
    margin: 18px 0 0;
    padding-top: clamp(46px, 7vw, 70px);
    padding-bottom: clamp(46px, 7vw, 70px);
}

.support-cta h2 {
    font-size: clamp(34px, 5vw, 54px);
}

.support-cta p:not(.eyebrow) {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
    color: var(--muted);
    font-size: 17px;
}

.provider-table {
    display: grid;
    gap: 0;
    margin: 18px 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(247, 248, 252, 0.72);
}

.provider-table div {
    display: grid;
    grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
    gap: 18px;
    padding: 16px 18px;
}

.provider-table div + div {
    border-top: 1px solid var(--line);
}

.provider-table strong {
    color: var(--ink);
}

.provider-table span {
    color: var(--muted);
}

.doc-body {
    background:
        radial-gradient(circle at 76% -12%, rgba(91, 85, 223, 0.13), transparent 26rem),
        linear-gradient(180deg, #f7f8ff 0, #ffffff 460px, #f7f8fc 100%);
}

.doc-header {
    width: min(1040px, calc(100% - 44px));
    color: var(--ink);
}

.doc-header .header-nav {
    color: rgba(23, 23, 36, 0.58);
}

.doc-header .header-nav a:hover,
.doc-header .header-nav a[aria-current="page"] {
    color: var(--ink);
}

.doc-shell {
    width: min(920px, calc(100% - 44px));
    margin: 0 auto;
    padding: 48px 0 70px;
}

.legal-shell {
    width: min(880px, calc(100% - 44px));
}

.contact-shell {
    width: min(860px, calc(100% - 44px));
}

.doc-hero {
    max-width: 780px;
    margin-bottom: 34px;
    padding: 18px 0 6px;
}

.compact-doc-hero {
    margin-bottom: 24px;
}

.doc-hero h1 {
    max-width: 760px;
    margin-bottom: 14px;
    color: var(--ink);
    font-size: clamp(38px, 6vw, 56px);
    line-height: 1.02;
}

.doc-lead {
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(17px, 2.2vw, 20px);
    line-height: 1.62;
}

.doc-meta {
    margin: 18px 0 0;
    color: var(--quiet);
    font-size: 14px;
    font-weight: 760;
}

.support-path-card,
.doc-card,
.privacy-summary,
.legal-card,
.support-form-card {
    border: 1px solid rgba(39, 42, 69, 0.1);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 52px rgba(19, 23, 42, 0.07);
    backdrop-filter: blur(18px);
}

.support-path-card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.82fr);
    gap: 26px;
    align-items: start;
    margin-bottom: 18px;
    padding: clamp(24px, 4vw, 34px);
    border-radius: 22px;
}

.support-path-copy h2 {
    max-width: 560px;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: clamp(25px, 3.2vw, 34px);
    line-height: 1.08;
}

.support-path-copy p:not(.eyebrow) {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 16px;
}

.support-actions-list {
    display: grid;
    gap: 8px;
}

.support-actions-list span {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(91, 85, 223, 0.14);
    border-radius: 12px;
    background: rgba(91, 85, 223, 0.06);
    color: #343348;
    font-size: 14px;
    font-weight: 760;
}

.doc-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 38px;
}

.doc-grid.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.doc-card {
    padding: 24px;
    border-radius: 20px;
}

.doc-card h2,
.privacy-summary h2,
.legal-card h2,
.support-form-card h2 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.12;
}

.doc-card p,
.privacy-summary p,
.privacy-summary li,
.legal-card p,
.legal-card li,
.support-form-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.62;
}

.doc-card p:last-child,
.legal-card p:last-child,
.privacy-summary ul:last-child,
.support-form-card p:last-child {
    margin-bottom: 0;
}

.doc-card a:not(.button),
.privacy-summary a,
.legal-card a {
    color: var(--indigo);
    font-weight: 820;
    text-decoration-color: rgba(91, 85, 223, 0.32);
    text-underline-offset: 0.18em;
}

.compact-button {
    width: auto;
    min-width: 0;
    margin-top: 8px;
    padding: 13px 18px;
    font-size: 15px;
}

.button.secondary.compact-button {
    border: 1px solid rgba(91, 85, 223, 0.18);
    background: rgba(255, 255, 255, 0.74);
    color: var(--indigo);
    box-shadow: none;
}

.form-submit-row .button.primary.compact-button {
    border: 1px solid rgba(91, 85, 223, 0.18);
    background: rgba(255, 255, 255, 0.74);
    color: var(--indigo);
    box-shadow: none;
}

.support-options .doc-card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.support-options .compact-button {
    margin-top: auto;
}

.doc-section {
    margin-bottom: 18px;
}

.doc-section-heading {
    margin-bottom: 16px;
}

.doc-section-heading h2 {
    margin-bottom: 0;
    color: var(--ink);
    font-size: clamp(26px, 3.4vw, 36px);
}

.topic-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.topic-list article {
    min-height: 150px;
    padding: 20px;
    border: 1px solid rgba(39, 42, 69, 0.1);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 34px rgba(19, 23, 42, 0.045);
}

.topic-list h3 {
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.2;
}

.topic-list p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.quiet-card {
    margin-top: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(91, 85, 223, 0.09), transparent 16rem),
        rgba(255, 255, 255, 0.9);
}

.privacy-summary {
    margin-bottom: 16px;
    padding: clamp(22px, 4vw, 30px);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(91, 85, 223, 0.1), transparent 17rem),
        rgba(255, 255, 255, 0.92);
}

.privacy-summary ul,
.legal-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.privacy-summary li + li,
.legal-card li + li {
    margin-top: 7px;
}

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

.legal-card {
    padding: clamp(22px, 3.2vw, 30px);
    border-radius: 18px;
}

.legal-subgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.legal-subgrid article {
    padding: 16px;
    border: 1px solid rgba(39, 42, 69, 0.1);
    border-radius: 14px;
    background: rgba(247, 248, 252, 0.78);
}

.legal-subgrid h3 {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 16px;
}

.legal-subgrid p {
    margin-bottom: 0;
    font-size: 15px;
}

.compact-provider-table {
    margin: 14px 0;
    border-radius: 14px;
}

.compact-provider-table div {
    padding: 13px 15px;
}

.support-form-card {
    padding: clamp(22px, 4vw, 34px);
    border-radius: 22px;
}

.form-intro {
    max-width: 660px;
    margin-bottom: 22px;
}

.support-form {
    display: grid;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-row {
    display: grid;
    gap: 7px;
}

.form-row label {
    color: var(--ink);
    font-size: 14px;
    font-weight: 820;
}

.form-row label span {
    color: var(--quiet);
    font-weight: 720;
}

.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    border: 1px solid rgba(39, 42, 69, 0.14);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    font: inherit;
    font-size: 15px;
    line-height: 1.45;
    outline: none;
}

.support-form input,
.support-form select {
    min-height: 46px;
    padding: 10px 12px;
}

.support-form select {
    min-height: 56px;
    padding: 0 46px 0 15px;
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, var(--indigo) 50%) right 22px center / 7px 7px no-repeat,
        linear-gradient(135deg, var(--indigo) 50%, transparent 50%) right 15px center / 7px 7px no-repeat,
        linear-gradient(180deg, #ffffff, #f8f8ff);
    border-color: rgba(48, 48, 168, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    font-weight: 720;
}

.support-form textarea {
    resize: vertical;
    padding: 12px;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    border-color: rgba(91, 85, 223, 0.54);
    box-shadow: 0 0 0 4px rgba(91, 85, 223, 0.1);
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.form-status {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.doc-footer {
    width: min(1040px, calc(100% - 44px));
    color: var(--muted);
}

.doc-body {
    background: linear-gradient(180deg, #fbfbfe 0, #ffffff 360px, #f8f9fc 100%);
}

.doc-body .eyebrow {
    margin-bottom: 10px;
    color: var(--indigo);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: 0.08em;
}

.doc-header {
    padding-top: 24px;
    padding-bottom: 18px;
}

.doc-header .brand img {
    box-shadow: none;
}

.doc-shell {
    padding-top: 34px;
}

.doc-hero {
    max-width: 760px;
    margin-bottom: 28px;
    padding: 0;
}

.doc-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(42px, 5vw, 52px);
    font-weight: 830;
    line-height: 1.08;
}

.doc-lead {
    max-width: 760px;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.58;
}

.support-intro {
    margin-bottom: 16px;
}

.support-intro h2,
.doc-section-heading h2 {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: clamp(24px, 2.8vw, 28px);
    font-weight: 800;
    line-height: 1.25;
}

.support-intro p {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.support-path-card,
.doc-card,
.privacy-summary,
.support-form-card,
.policy-document {
    border: 1px solid rgba(39, 42, 69, 0.11);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
    backdrop-filter: none;
}

.support-path-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.7fr);
    gap: 22px;
    margin-bottom: 14px;
    padding: 20px 22px;
    border-radius: 12px;
}

.support-path-copy h2 {
    margin-bottom: 7px;
    font-size: 20px;
    font-weight: 800;
}

.support-path-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.58;
}

.support-actions-list {
    gap: 5px;
    padding-left: 1rem;
    color: var(--muted);
    list-style: disc;
}

.support-actions-list span {
    display: list-item;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.5;
}

.doc-grid {
    gap: 12px;
    margin-bottom: 30px;
}

.doc-card {
    padding: 18px 20px;
    border-radius: 12px;
}

.doc-card h2,
.privacy-summary h2,
.support-form-card h2 {
    margin-bottom: 8px;
    font-size: 21px;
    font-weight: 800;
}

.doc-card p,
.doc-card li,
.privacy-summary li,
.support-form-card p {
    font-size: 16px;
    line-height: 1.62;
}

.checklist-card {
    margin: 16px 0;
}

.checklist-card ul {
    margin: 0;
    padding-left: 1.15rem;
}

.checklist-card li + li {
    margin-top: 6px;
}

.compact-button {
    margin-top: 6px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
}

.doc-section {
    margin-bottom: 16px;
}

.doc-section-heading {
    margin-bottom: 12px;
}

.topic-list {
    gap: 10px;
}

.topic-list article {
    min-height: 0;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: none;
}

.topic-list h3 {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 800;
}

.topic-list p {
    font-size: 15px;
}

.quiet-card {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.94);
}

.privacy-summary {
    margin-bottom: 14px;
    padding: 22px 24px;
    border-radius: 12px;
    background: #ffffff;
}

.policy-document {
    padding: 8px 34px;
    border-radius: 14px;
}

.policy-section {
    padding: 26px 0;
    border-top: 1px solid rgba(39, 42, 69, 0.1);
}

.policy-section:first-child {
    padding-top: 24px;
    border-top: 0;
}

.policy-section:last-child {
    padding-bottom: 24px;
}

.policy-section h2 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: clamp(22px, 2.6vw, 25px);
    font-weight: 800;
    line-height: 1.25;
}

.policy-section h3 {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 790;
}

.policy-section p,
.policy-section li {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.64;
}

.policy-section p:last-child,
.policy-section ul:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    margin: 0;
    padding-left: 1.15rem;
}

.policy-section li + li {
    margin-top: 6px;
}

.legal-subgrid {
    gap: 10px;
    margin-top: 12px;
}

.legal-subgrid article {
    padding: 14px;
    border-radius: 10px;
    background: rgba(247, 248, 252, 0.72);
}

.compact-provider-table {
    border-radius: 10px;
    background: #ffffff;
}

.compact-provider-table div {
    padding: 12px 14px;
}

.compact-provider-table strong,
.compact-provider-table span {
    font-size: 15px;
    line-height: 1.48;
}

@media (max-width: 1040px) {
    body {
        background:
            radial-gradient(circle at 78% 4%, rgba(126, 120, 255, 0.52), transparent 24rem),
            radial-gradient(circle at 18% 16%, rgba(89, 83, 237, 0.3), transparent 20rem),
            linear-gradient(180deg, var(--brand-indigo) 0, #3731b8 560px, var(--brand-indigo-deep) 1060px, var(--paper) 1060px, #ffffff 100%);
    }

    .hero,
    .problem {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

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

    .product-stage {
        min-height: 620px;
    }

    .menubar-preview,
    .mac-preview {
        margin-left: 0;
    }

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

@media (max-width: 720px) {
    .site-header,
    main > section,
    .content-page,
    .site-footer {
        width: min(100% - 30px, 1180px);
    }

    .site-header {
        padding: 20px 0;
    }

    .header-nav {
        display: none;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        gap: 40px;
        padding: 40px 0 70px;
    }

    h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    h2 {
        font-size: clamp(32px, 10vw, 44px);
    }

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

    .button {
        width: 100%;
    }

    .product-stage {
        min-height: auto;
        padding-bottom: 0;
    }

    .menubar-preview {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0 0 14px;
        font-size: 15px;
    }

    .mac-preview {
        border-radius: 24px;
    }

    .mac-body {
        padding: 22px;
    }

    .today-total div,
    .project-list div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .today-total strong {
        white-space: normal;
    }

    .today-total i {
        width: 100%;
        height: 1px;
    }

    .phone-preview {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(230px, 78%);
        min-height: auto;
        margin: 18px auto 0;
    }

    .phone-screen {
        min-height: 260px;
    }

    .problem,
    .features,
    .how-it-works,
    .audience,
    .final-cta {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .feature-grid,
    .steps,
    .support-grid,
    .policy-subsections,
    .troubleshooting-list,
    .privacy-promise .promise-list,
    .provider-table div {
        grid-template-columns: 1fr;
    }

    .provider-table div {
        gap: 6px;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-card .button.primary {
        width: 100%;
    }

    .feature-card {
        min-height: 0;
    }

    .feature-card span,
    .steps span {
        margin-bottom: 26px;
    }

    .problem > p,
    .audience > p {
        font-size: 18px;
    }
}

@media (max-width: 860px) {
    .support-path-card,
    .doc-grid.two-column,
    .topic-list,
    .legal-subgrid,
    .form-grid,
    .form-grid.three {
        grid-template-columns: 1fr;
    }

    .support-path-card {
        gap: 20px;
    }
}

@media (max-width: 720px) {
    .doc-body {
        background:
            radial-gradient(circle at 90% -8%, rgba(91, 85, 223, 0.16), transparent 20rem),
            linear-gradient(180deg, #f7f8ff 0, #ffffff 390px, #f7f8fc 100%);
    }

    .doc-header,
    .doc-shell,
    .legal-shell,
    .contact-shell,
    .doc-footer,
    .doc-body main > section {
        width: min(100% - 30px, 920px);
    }

    .doc-shell,
    .legal-shell,
    .contact-shell {
        padding-top: 28px;
        padding-bottom: 52px;
    }

    .doc-hero {
        margin-bottom: 24px;
        padding-top: 8px;
    }

    .doc-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .doc-lead {
        font-size: 16px;
    }

    .support-path-card,
    .doc-card,
    .privacy-summary,
    .legal-card,
    .support-form-card {
        border-radius: 18px;
    }

    .doc-card,
    .privacy-summary,
    .legal-card,
    .support-form-card {
        padding: 20px;
    }

    .support-path-card {
        padding: 20px;
    }

    .doc-card h2,
    .privacy-summary h2,
    .legal-card h2,
    .support-form-card h2,
    .doc-section-heading h2 {
        font-size: 24px;
    }

    .topic-list article {
        min-height: 0;
    }

    .compact-button,
    .form-submit-row .button {
        width: 100%;
    }

    .form-submit-row {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 720px) {
    .doc-body {
        background: linear-gradient(180deg, #fbfbfe 0, #ffffff 340px, #f8f9fc 100%);
    }

    .doc-shell,
    .legal-shell,
    .contact-shell {
        padding-top: 22px;
    }

    .doc-hero h1 {
        font-size: clamp(34px, 9.5vw, 40px);
    }

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

    .support-intro h2,
    .doc-section-heading h2,
    .doc-card h2,
    .privacy-summary h2,
    .support-form-card h2,
    .policy-section h2 {
        font-size: 22px;
    }

    .support-path-card,
    .doc-card,
    .privacy-summary,
    .support-form-card,
    .policy-document,
    .topic-list article {
        border-radius: 12px;
    }

    .support-path-card,
    .doc-card,
    .privacy-summary,
    .support-form-card {
        padding: 18px;
    }

    .policy-document {
        padding: 4px 20px;
    }

    .policy-section {
        padding: 22px 0;
    }

    .legal-subgrid article {
        padding: 13px;
    }
}
