:root {
    --ink: #121826;
    --muted: #667085;
    --soft: #f6f7f9;
    --soft-cool: #f6f8fb;
    --line: #e3e7ed;
    --navy: #112b55;
    --navy-dark: #0a1e3f;
    --navy-soft: #eef3fa;
    --orange: #d86b28;
    --orange-dark: #b65318;
    --green: #237c58;
    --green-soft: #edf7f2;
    --surface: #ffffff;
    --shadow: 0 18px 42px rgba(17, 43, 85, 0.09);
    --shadow-soft: 0 10px 24px rgba(17, 43, 85, 0.055);
    --radius: 10px;
    --container: 1100px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id],
article[id] {
    scroll-margin-top: 86px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

main {
    flex: 1 0 auto;
}

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

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

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.container.narrow {
    max-width: 760px;
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.brand-lockup,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    font-weight: 760;
    color: var(--navy);
}

.brand-lockup img {
    height: 40px;
    width: auto;
}

.brand-mark {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    background: var(--navy);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 700;
}

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

.site-nav .nav-cta {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 0 1.18rem;
    border-radius: 8px;
    color: #fff;
    background: var(--navy);
    box-shadow: 0 10px 22px rgba(17, 43, 85, 0.14);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
    color: #fff;
    background: var(--navy-dark);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transform: translateX(-50%);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.menu-toggle span {
    top: 20px;
}

.menu-toggle::before {
    top: 14px;
}

.menu-toggle::after {
    top: 26px;
}

.menu-toggle[aria-expanded="true"] span {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
    transform: translateX(-50%) translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
    transform: translateX(-50%) translateY(-6px) rotate(-45deg);
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: clamp(620px, calc(100svh - 72px), 760px);
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(17, 43, 85, 0.18);
    background:
        radial-gradient(circle at 76% 42%, rgba(84, 124, 176, 0.38), transparent 25rem),
        radial-gradient(circle at 18% 20%, rgba(42, 78, 126, 0.46), transparent 29rem),
        linear-gradient(135deg, #18253b 0%, #152238 48%, #0e1a2d 100%);
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-section::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, transparent 0 47%, rgba(255, 255, 255, 0.035) 47% 47.4%, transparent 47.4% 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02)) 7% 18% / 15rem 20rem no-repeat,
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012)) 63% 12% / 12rem 17rem no-repeat,
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)) 90% 44% / 13rem 18rem no-repeat;
    background-position: center, center, 0 0, 7% 18%, 63% 12%, 90% 44%;
    background-size: 92px 92px, 92px 92px, 170px 170px, 15rem 20rem, 12rem 17rem, 13rem 18rem;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.7));
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.7));
    opacity: 0.62;
    animation: heroSurfaceDrift 26s ease-in-out infinite alternate;
}

.hero-section::after {
    inset: 0;
    background:
        radial-gradient(circle at 76% 48%, rgba(255, 255, 255, 0.16), transparent 19rem),
        linear-gradient(90deg, transparent 0 70%, rgba(255, 255, 255, 0.075) 70% 70.08%, transparent 70.08% 100%),
        linear-gradient(0deg, transparent 0 30%, rgba(255, 255, 255, 0.06) 30% 30.08%, transparent 30.08% 100%),
        linear-gradient(135deg, transparent 0 62%, rgba(255, 255, 255, 0.055) 62% 62.18%, transparent 62.18% 100%);
    opacity: 0.72;
}

@keyframes heroSurfaceDrift {
    from {
        transform: translate3d(-0.4rem, -0.2rem, 0);
    }

    to {
        transform: translate3d(0.55rem, 0.35rem, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section::before {
        animation: none;
    }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.64fr);
    gap: 2.35rem;
    align-items: center;
}

.hero-copy {
    max-width: none;
}

.hero-section .eyebrow {
    color: #f19a5f;
}

.hero-section h1 {
    max-width: none;
    color: #f7f9fd;
}

.hero-section .lede {
    max-width: none;
    color: #c8d3e3;
}

.hero-section .button-primary {
    color: var(--navy);
    background: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
}

.hero-section .button-primary:hover,
.hero-section .button-primary:focus-visible {
    background: #f4f7fb;
}

.hero-section .button-ghost {
    color: #f7f9fd;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-section .button-ghost:hover,
.hero-section .button-ghost:focus-visible {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.eyebrow {
    margin: 0 0 0.7rem;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1,
h2,
h3 {
    color: var(--ink);
    line-height: 1.12;
}

h1 {
    max-width: 18ch;
    margin-bottom: 0.85rem;
    font-size: clamp(2rem, 2.75vw, 2.82rem);
    font-weight: 760;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.45rem, 2vw, 2.05rem);
    font-weight: 740;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 0.45rem;
    font-size: 1.08rem;
    font-weight: 720;
    letter-spacing: 0;
}

.lede,
.section-heading > p,
.compact-points p,
.flow-steps p,
.pricing-column p,
.setup-block p,
.legal-document p,
.final-cta p {
    color: var(--muted);
}

.lede {
    max-width: 58ch;
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.62;
}

.hero-actions,
.centered-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.35rem;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.76rem 1.05rem;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 720;
    line-height: 1;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

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

.button-primary {
    color: #fff;
    background: var(--navy);
    box-shadow: 0 14px 28px rgba(17, 43, 85, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--navy-dark);
}

.button-secondary,
.button-ghost {
    color: var(--navy);
    background: #fff;
    border-color: var(--line);
}

.button-secondary:hover,
.button-ghost:hover,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
    border-color: rgba(23, 49, 95, 0.28);
    box-shadow: var(--shadow-soft);
}

.invoice-preview-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.invoice-preview {
    position: relative;
    width: min(100%, 390px);
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.26);
}

.invoice-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.product-value-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem 1rem;
    align-items: center;
    max-width: 590px;
    margin-top: 1.1rem;
    padding: 0.95rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
    color: #c8d3e3;
    font-size: 0.82rem;
    font-weight: 680;
}

.product-value-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 0;
    padding: 0;
}

.product-value-row span::before {
    content: "";
    width: 0.28rem;
    height: 0.28rem;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--orange);
}

.section {
    padding: 2.55rem 0;
}

.soft-section {
    background: var(--soft);
    border-block: 1px solid rgba(227, 231, 237, 0.7);
}

.surface-section {
    position: relative;
    overflow: hidden;
    color: #f7f9fd;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(17, 43, 85, 0.38);
    background:
        radial-gradient(circle at 82% 30%, rgba(84, 124, 176, 0.28), transparent 23rem),
        radial-gradient(circle at 14% 78%, rgba(42, 78, 126, 0.26), transparent 25rem),
        linear-gradient(135deg, #17253b 0%, #122038 52%, #0d192b 100%);
}

.surface-section::before,
.surface-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.surface-section::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        linear-gradient(135deg, transparent 0 52%, rgba(255, 255, 255, 0.038) 52% 52.22%, transparent 52.22% 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012)) 12% 24% / 14rem 15rem no-repeat,
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)) 87% 42% / 13rem 16rem no-repeat;
    background-size: 96px 96px, 96px 96px, 180px 180px, 14rem 15rem, 13rem 16rem;
    opacity: 0.54;
}

.surface-section::after {
    background:
        radial-gradient(circle at 70% 42%, rgba(255, 255, 255, 0.11), transparent 18rem),
        linear-gradient(90deg, transparent 0 72%, rgba(255, 255, 255, 0.06) 72% 72.08%, transparent 72.08% 100%);
    opacity: 0.58;
}

.surface-section > .container {
    position: relative;
    z-index: 1;
}

.surface-section h2,
.surface-section h3,
.surface-section .flow-note strong,
.surface-section .final-cta-inner h2 {
    color: #f7f9fd;
}

.surface-section .section-heading > p,
.surface-section .flow-steps p,
.surface-section .flow-note span,
.surface-section .final-cta p,
.surface-section .support-line {
    color: #c8d3e3;
}

.surface-section .eyebrow,
.surface-section .section-heading > .eyebrow {
    color: #f19a5f;
}

.surface-section .flow-steps {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.035);
}

.surface-section .flow-steps article + article {
    border-left-color: rgba(255, 255, 255, 0.14);
}

.surface-section .step-number,
.surface-section .flow-note a,
.surface-section .support-line a {
    color: #fff;
}

.surface-section .flow-note,
.surface-section .final-cta-inner {
    border-color: rgba(255, 255, 255, 0.16);
}

.surface-section .button-primary {
    color: var(--navy);
    background: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
}

.surface-section .button-primary:hover,
.surface-section .button-primary:focus-visible {
    background: #f4f7fb;
}

.surface-section .button-ghost {
    color: #f7f9fd;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.surface-section .button-ghost:hover,
.surface-section .button-ghost:focus-visible {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.surface-section-compact {
    padding: 2.4rem 0;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
    gap: 3.5rem;
}

.split-layout h2 {
    max-width: 12ch;
}

.section-heading.wide {
    max-width: 700px;
}

.section-heading.wide h2 {
    max-width: 650px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.55rem;
    margin-top: 1.35rem;
}

.why-grid article {
    padding-top: 1.1rem;
    border-top: 1px solid rgba(95, 107, 124, 0.18);
}

.compact-points {
    display: grid;
    gap: 1.25rem;
}

.compact-points article {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(95, 107, 124, 0.18);
}

.compact-points article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 1.2rem;
}

.section-heading.compact {
    max-width: 660px;
}

.section-heading.centered {
    max-width: 640px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, #fbfcfe);
}

.flow-steps article,
.quiet-panel,
.setup-block,
.legal-document {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.flow-steps article {
    position: relative;
    padding: 1.15rem 1.45rem 1.1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
}

.flow-steps article + article {
    border-left: 1px solid var(--line);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.72rem;
    color: var(--navy);
    background: transparent;
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0;
}

.flow-steps article:nth-child(2) .step-number {
    color: var(--navy);
    background: transparent;
}

.flow-steps article:nth-child(3) .step-number {
    color: var(--navy);
    background: transparent;
}

.surface-section .flow-steps article .step-number {
    color: #fff;
}

.flow-note {
    width: min(100%, 720px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.25rem auto 0;
    padding: 0.88rem 1.1rem;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.flow-note div {
    display: grid;
    gap: 0.25rem;
}

.flow-note span {
    color: var(--muted);
    font-size: 0.9rem;
}

.flow-note a {
    color: var(--navy);
    font-weight: 800;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin: 0 auto;
    border-top: 1px solid rgba(95, 107, 124, 0.18);
    border-bottom: 1px solid rgba(95, 107, 124, 0.18);
    background: transparent;
}

.pricing-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.35rem 1.55rem;
}

.pricing-column + .pricing-column {
    border-left: 1px solid rgba(95, 107, 124, 0.18);
    background: transparent;
    box-shadow: none;
}

.plan-label {
    margin-bottom: 0.3rem;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 760;
    letter-spacing: 0;
    text-transform: uppercase;
}

.price {
    margin-bottom: 0.25rem;
    color: var(--ink);
    font-size: 1.85rem;
    font-weight: 760;
    letter-spacing: 0;
}

.price span {
    color: var(--muted);
    font-size: 1rem;
    letter-spacing: 0;
}

.pricing-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
    color: var(--muted);
}

.pricing-column li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.pricing-column li::before {
    content: "";
    width: 0.34rem;
    height: 0.34rem;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--navy);
}

.pricing-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin: 1.1rem auto 0;
    max-width: none;
    padding-top: 1rem;
    border-top: 1px solid rgba(227, 231, 237, 0.9);
    color: var(--muted);
    text-align: left;
    font-size: 0.94rem;
    font-weight: 650;
}

.pricing-action-copy {
    display: grid;
    gap: 0.2rem;
    color: var(--muted);
}

.pricing-action-copy strong {
    color: var(--ink);
}

.pricing-action-copy span {
    color: var(--muted);
}

.final-cta {
    padding: 2.1rem 0;
    background: #fff;
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.15rem 0;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.final-cta h2 {
    margin-bottom: 0.55rem;
}

.final-cta p:last-child {
    margin-bottom: 0;
}

.final-cta.surface-section {
    background:
        radial-gradient(circle at 18% 40%, rgba(84, 124, 176, 0.24), transparent 22rem),
        radial-gradient(circle at 88% 55%, rgba(42, 78, 126, 0.28), transparent 24rem),
        linear-gradient(135deg, #17253b 0%, #122038 52%, #0d192b 100%);
}

.final-cta.surface-section.surface-section-compact {
    padding: 2.4rem 0;
}

.support-line {
    margin-top: 0.7rem;
    font-size: 0.95rem;
}

.support-line a {
    color: var(--navy);
    font-weight: 750;
}

.legal-line {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.legal-line a {
    color: var(--navy);
    font-weight: 720;
}

.page-hero {
    padding: 2.1rem 0 0.8rem;
}

.page-hero h1 {
    max-width: none;
    font-size: clamp(2rem, 3vw, 3rem);
}

.inline-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.2rem;
    margin-top: 1.2rem;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.inline-links.left {
    justify-content: flex-start;
}

.inline-links a:hover,
.inline-links a:focus-visible,
.setup-block a,
.legal-document a {
    color: var(--navy);
}

.setup-layout {
    max-width: var(--container);
}

.setup-hero {
    position: relative;
    overflow: hidden;
    padding: 2.75rem 0 2.45rem;
    border-bottom: 1px solid rgba(17, 43, 85, 0.38);
    background:
        radial-gradient(circle at 78% 35%, rgba(84, 124, 176, 0.3), transparent 24rem),
        radial-gradient(circle at 16% 24%, rgba(42, 78, 126, 0.34), transparent 28rem),
        linear-gradient(135deg, #17253b 0%, #122038 52%, #0d192b 100%);
}

.setup-hero::after {
    content: none;
}

.setup-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(440px, 0.64fr);
    gap: 2.2rem;
    align-items: start;
}

.setup-hero-copy {
    max-width: none;
    position: relative;
    z-index: 1;
}

.setup-hero.surface-section h1 {
    color: #f7f9fd;
}

.setup-hero.surface-section .lede,
.setup-hero.surface-section .legal-line,
.setup-hero.surface-section .support-line,
.setup-hero.surface-section .checklist {
    color: #c8d3e3;
}

.setup-hero.surface-section .legal-line a,
.setup-hero.surface-section .support-line a {
    color: #fff;
}

.setup-hero h1 {
    max-width: none;
    font-size: clamp(2rem, 2.8vw, 2.7rem);
}

.quick-start-card {
    position: relative;
    z-index: 1;
    padding: 0 0 0 1.25rem;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.quick-start-card h2 {
    font-size: clamp(1.18rem, 1.5vw, 1.42rem);
}

.setup-aside {
    position: relative;
    top: auto;
}

.install-center-section {
    padding-top: 1.9rem;
    padding-bottom: 2.55rem;
}

.quiet-panel {
    position: sticky;
    top: 92px;
    padding: 1.35rem;
    background: #fbfcff;
}

.checklist {
    margin: 0;
    padding: 0;
    color: var(--muted);
    counter-reset: setup-step;
    list-style: none;
}

.checklist li + li {
    margin-top: 0.52rem;
}

.checklist li {
    counter-increment: setup-step;
    display: grid;
    grid-template-columns: 1.45rem 1fr;
    gap: 0.58rem;
    align-items: start;
}

.checklist li::before {
    content: counter(setup-step);
    width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--navy);
    background: var(--navy-soft);
    font-size: 0.78rem;
    font-weight: 850;
}

.setup-hero.surface-section .checklist li::before {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.setup-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(95, 107, 124, 0.2);
    border-bottom: 1px solid rgba(95, 107, 124, 0.2);
    background: transparent;
}

.setup-block {
    position: relative;
    padding: 1.15rem 1.35rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.setup-step-number {
    display: inline-flex;
    margin-bottom: 0.52rem;
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0;
}

.setup-block:nth-child(odd) {
    border-right: 1px solid rgba(95, 107, 124, 0.2);
}

.setup-block:nth-child(n + 3) {
    border-top: 1px solid rgba(95, 107, 124, 0.2);
}

.help-block,
.setup-block.help-block:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
    border-top: 1px solid rgba(95, 107, 124, 0.2);
}

.setup-block h2 {
    font-size: clamp(1.15rem, 1.45vw, 1.45rem);
}

.setup-block p:last-child {
    margin-bottom: 0;
}

.package-block {
    background: transparent;
}

.help-block {
    background: transparent;
}

.legal-hero {
    padding: 2.7rem 0 2.35rem;
}

.legal-hero h1 {
    color: #f7f9fd;
    font-size: clamp(2rem, 3vw, 3.05rem);
}

.legal-hero .lede {
    color: #c8d3e3;
    margin-right: auto;
    margin-left: auto;
}

.legal-hero .meta-line {
    color: #d8e0eb;
}

.meta-line {
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.legal-section {
    padding-top: 1.75rem;
    padding-bottom: 2.6rem;
    background: var(--soft);
    border-top: 1px solid rgba(227, 231, 237, 0.72);
}

.legal-document {
    max-width: 860px;
    padding: 1.7rem 1.9rem;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 43, 85, 0.055);
}

.legal-document h2 {
    margin-top: 1.35rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(95, 107, 124, 0.16);
    font-size: 1.18rem;
}

.legal-document h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.site-footer {
    margin-top: 0;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

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

.site-footer p,
.footer-links {
    color: var(--muted);
    font-size: 0.92rem;
}

.site-footer p {
    margin: 0;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem;
    font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--navy);
}

.button:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible,
.brand-lockup:focus-visible,
.inline-links a:focus-visible,
.footer-links a:focus-visible {
    outline: 3px solid rgba(223, 107, 33, 0.24);
    outline-offset: 3px;
}

@media (max-width: 920px) {
    .split-layout,
    .why-grid,
    .flow-steps,
    .pricing-comparison,
    .product-value-row,
    .setup-layout,
    .setup-hero-grid,
    .setup-copy {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
        padding-top: 2.55rem;
        padding-bottom: 2.55rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
        gap: 1.65rem;
    }

    .invoice-preview {
        width: min(100%, 340px);
    }

    .product-value-row {
        border: 0;
    }

    .product-value-row span {
        min-height: auto;
    }

    .flow-steps {
        gap: 1rem;
        border: 0;
    }

    .flow-steps article {
        padding: 1.2rem;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: none;
    }

    .flow-steps article + article {
        border-left: 1px solid var(--line);
    }

    .surface-section .flow-steps article {
        border-color: rgba(255, 255, 255, 0.16);
        background: rgba(255, 255, 255, 0.04);
    }

    .surface-section .flow-steps article + article {
        border-left-color: rgba(255, 255, 255, 0.16);
    }

    .pricing-comparison {
        border: 0;
    }

    .pricing-column {
        padding: 1.2rem 0;
        background: transparent;
        border-top: 1px solid var(--line);
    }

    .pricing-column + .pricing-column {
        border-left: 0;
        box-shadow: none;
    }

    .pricing-comparison .pricing-column:last-child {
        border-bottom: 1px solid var(--line);
    }

    .setup-copy {
        border: 0;
    }

    .setup-block,
    .setup-block:nth-child(odd),
    .setup-block:nth-child(n + 3),
    .setup-block.help-block:nth-child(odd) {
        padding: 1.2rem 0;
        border-right: 0;
        border-top: 1px solid var(--line);
    }

    .setup-copy .setup-block:last-child {
        border-bottom: 1px solid var(--line);
    }

    .flow-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-copy,
    .setup-hero-copy,
    .section-heading {
        max-width: none;
    }

    h1,
    .split-layout h2,
    .setup-hero h1 {
        max-width: none;
    }

    .quiet-panel {
        position: static;
    }

    .quick-start-card {
        padding: 1.2rem 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .setup-hero.surface-section .quick-start-card {
        border-top-color: rgba(255, 255, 255, 0.18);
    }

    .footer-inner,
    .final-cta-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

    .site-footer p {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-lockup img {
        height: 38px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        z-index: 25;
        left: 0;
        right: 0;
        top: calc(100% + 0.35rem);
        flex-direction: column;
        align-items: stretch;
        gap: 0.1rem;
        padding: 0.55rem;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 0.82rem 0.9rem;
        border-radius: 10px;
    }

    .site-nav .nav-cta {
        justify-content: center;
        min-height: 44px;
        margin-top: 0.2rem;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        background: var(--soft-cool);
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open main::before {
        content: "";
        position: fixed;
        z-index: 15;
        inset: 68px 0 0;
        background: rgba(18, 24, 38, 0.34);
        pointer-events: auto;
    }

    .hero-section,
    .page-hero,
    .setup-hero {
        padding: 2.25rem 0 2rem;
    }

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

    .invoice-preview-wrap {
        width: min(100%, 520px);
        margin: 0 auto;
        justify-content: center;
    }

    .invoice-preview {
        width: min(100%, 390px);
    }

    .section {
        padding: 2.35rem 0;
    }

    h1 {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .hero-actions,
    .centered-actions,
    .final-cta-inner,
    .pricing-action {
        align-items: stretch;
        flex-direction: column;
    }

    .product-value-row {
        gap: 0.9rem 1.2rem;
        margin-top: 1.2rem;
    }

    .invoice-preview {
        min-height: 0;
        padding: 0;
    }

    .button {
        width: 100%;
    }

    .legal-document {
        padding: 1.35rem 1.2rem;
        border-radius: 10px;
    }

    .legal-section,
    .install-center-section {
        padding-top: 1rem;
    }
}
