:root {
    --ink: #f3f7fa;
    --muted: #a8b4bd;
    --soft: #d8e2e8;
    --bg: #0d1115;
    --bg-2: #151b21;
    --panel: #171e25;
    --panel-2: #202832;
    --line: rgba(214, 229, 239, 0.14);
    --cyan: #59d8ff;
    --cyan-2: #2c9dc4;
    --cyan-soft: rgba(89, 216, 255, 0.12);
    --steel: #aab8c3;
    --hot: #9ff3ff;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 50% 0%, rgba(89, 216, 255, 0.16), transparent 34rem),
        linear-gradient(180deg, #10161c 0%, #0d1115 42%, #12181e 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
    pointer-events: none;
}

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

a {
    color: inherit;
}

.site-header {
    position: fixed;
    z-index: 20;
    inset: 0 0 auto 0;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 max(20px, calc((100vw - 1180px) / 2));
    color: #fff;
    background: rgba(10, 14, 18, 0.46);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(10, 14, 18, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    font-weight: 900;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(89, 216, 255, 0.54);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(89, 216, 255, 0.28), rgba(89, 216, 255, 0.04) 58%),
        linear-gradient(145deg, #d7e0e7, #697681);
    color: #071016;
    box-shadow: 0 0 30px rgba(89, 216, 255, 0.26);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(243, 247, 250, 0.82);
    font-size: 0.95rem;
}

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

.nav-links a:hover {
    color: var(--cyan);
}

.header-cta {
    border: 1px solid rgba(89, 216, 255, 0.58);
    border-radius: 7px;
    padding: 10px 14px;
    color: var(--cyan);
    font-weight: 800;
    background: rgba(89, 216, 255, 0.08);
}

.hero {
    min-height: calc(100svh - 44px);
    position: relative;
    display: grid;
    overflow: hidden;
    background: #090d11;
    padding-top: 72px;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 18%;
    background: linear-gradient(180deg, transparent, var(--bg));
    pointer-events: none;
    display: none;
}

.hero-image {
    position: absolute;
    inset: 0;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.86) contrast(1.08) brightness(0.82);
    transform: scale(1.03);
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
    position: absolute;
    inset: 0;
    grid-column: 1;
    grid-row: 1;
    background:
        linear-gradient(90deg, rgba(5, 8, 11, 0.72) 0%, rgba(8, 12, 16, 0.34) 48%, rgba(5, 8, 11, 0.78) 100%),
        linear-gradient(0deg, rgba(5, 8, 11, 0.76), transparent 52%),
        radial-gradient(circle at 72% 34%, rgba(89, 216, 255, 0.16), transparent 22rem);
    pointer-events: none;
}

.circuit-layer {
    position: absolute;
    inset: 72px 0 0;
    pointer-events: none;
    opacity: 0.7;
}

.circuit-layer span {
    position: absolute;
    height: 1px;
    width: 38vw;
    background: linear-gradient(90deg, transparent, rgba(89, 216, 255, 0.55), transparent);
    animation: circuitSweep 7s linear infinite;
}

.circuit-layer span:nth-child(1) {
    top: 18%;
    left: -40vw;
}

.circuit-layer span:nth-child(2) {
    top: 42%;
    right: -40vw;
    animation-delay: -2.4s;
    animation-direction: reverse;
}

.circuit-layer span:nth-child(3) {
    top: 69%;
    left: -40vw;
    animation-delay: -4.6s;
}

.circuit-layer span:nth-child(4) {
    top: 86%;
    right: -40vw;
    animation-delay: -6s;
    animation-direction: reverse;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(380px, 1.08fr);
    align-items: center;
    column-gap: 42px;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 72px 0 86px;
    color: #fff;
    text-align: left;
    min-height: calc(100svh - 116px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--cyan);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    color: #eef4f8;
    font-size: clamp(3.4rem, 8vw, 7.4rem);
    line-height: 0.96;
    letter-spacing: 0;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
}

.hero-copy {
    width: min(620px, 100%);
    margin: 12px 0 0;
    color: rgba(230, 238, 244, 0.9);
    font-size: 1.08rem;
    line-height: 1.55;
}

.hero-actions,
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-actions {
    justify-content: flex-start;
}

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

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

.button-primary {
    background: linear-gradient(180deg, #7be4ff, #35bfe9);
    color: #061018;
    box-shadow: 0 16px 42px rgba(53, 191, 233, 0.24);
}

.button-secondary {
    color: #fff;
    border-color: rgba(216, 226, 232, 0.34);
    background: rgba(216, 226, 232, 0.08);
}

.button-dark {
    background: #10161c;
    color: #fff;
    border-color: rgba(216, 226, 232, 0.18);
}

.hero-stats {
    justify-content: space-between;
    margin-top: 22px;
    gap: 10px;
}

.hero-stats div {
    width: calc(33.333% - 8px);
    border-top: 1px solid rgba(89, 216, 255, 0.38);
    padding-top: 12px;
    text-align: left;
}

.automation-console {
    justify-self: end;
    width: min(520px, 100%);
    padding: 14px;
    border: 1px solid rgba(159, 243, 255, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent),
        rgba(12, 18, 24, 0.72);
    box-shadow: var(--shadow), 0 0 80px rgba(89, 216, 255, 0.12);
    backdrop-filter: blur(18px);
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform 180ms ease, border-color 180ms ease;
}

.automation-console:hover {
    border-color: rgba(159, 243, 255, 0.48);
}

.console-topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(89, 216, 255, 0.9);
}

.console-topbar strong {
    color: var(--hot);
}

.console-screen {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 22px;
    border: 1px solid rgba(216, 226, 232, 0.12);
    border-radius: 7px;
    background:
        linear-gradient(rgba(89, 216, 255, 0.04) 1px, transparent 1px),
        #080d12;
    background-size: 100% 34px;
}

.console-screen p {
    display: flex;
    gap: 14px;
    margin: 0 0 18px;
    color: #d9e7ee;
    font: 800 0.95rem/1.35 "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

.console-screen p:nth-child(3),
.console-screen p:nth-child(5) {
    color: var(--cyan);
}

.console-screen span {
    color: rgba(168, 180, 189, 0.62);
}

.scanline {
    position: absolute;
    inset: -30% 0 auto;
    height: 70px;
    background: linear-gradient(180deg, transparent, rgba(89, 216, 255, 0.12), transparent);
    animation: scan 4.8s linear infinite;
}

.hero-stats dt {
    margin: 0;
    color: var(--cyan);
    font-weight: 900;
    font-size: 1.22rem;
}

.hero-stats dd {
    margin: 2px 0 0;
    color: rgba(230, 238, 244, 0.74);
    font-size: 0.92rem;
}

.trust-band {
    padding: 24px;
    background: #10161c;
    color: #dfe8ee;
    text-align: center;
    border-block: 1px solid var(--line);
}

.trust-band p {
    margin: 0 auto;
    width: min(980px, 100%);
    font-weight: 800;
}

.section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 86px 0;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 34px;
}

.section-heading h2,
.workflow-copy h2,
.proof-section h2,
.final-cta h2 {
    margin: 0;
    color: #f4f8fb;
    font-size: 3.24rem;
    line-height: 1.03;
    letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.workflow-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.06rem;
}

.feature-grid,
.use-case-list,
.pricing-grid,
.proof-grid,
.contact-grid {
    display: grid;
    gap: 18px;
}

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

.feature-card,
.use-case-list article,
.pricing-card,
.faq-list details,
.contact-grid article {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
        var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover,
.use-case-list article:hover,
.pricing-card:hover,
.contact-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(89, 216, 255, 0.36);
    background:
        linear-gradient(180deg, rgba(89, 216, 255, 0.08), transparent),
        var(--panel);
}

.feature-card {
    padding: 24px;
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 34px;
    margin-bottom: 24px;
    border: 1px solid rgba(89, 216, 255, 0.32);
    border-radius: 7px;
    background: rgba(89, 216, 255, 0.08);
    color: var(--cyan);
    font-weight: 900;
}

.feature-card h3,
.use-case-list h3,
.pricing-card h3 {
    margin: 0 0 10px;
    color: #f3f7fa;
    line-height: 1.15;
}

.feature-card p,
.use-case-list p,
.pricing-card li,
.faq-list p {
    color: var(--muted);
}

.workflow-section {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 48px;
    align-items: start;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.workflow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow li {
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--line);
    border-left: 3px solid rgba(89, 216, 255, 0.38);
    background: var(--panel);
    border-radius: 8px;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.workflow li:hover,
.workflow li.is-active {
    transform: translateY(-2px);
    border-color: rgba(89, 216, 255, 0.58);
    border-left-color: var(--cyan);
    background:
        linear-gradient(180deg, rgba(89, 216, 255, 0.12), transparent),
        var(--panel-2);
}

.workflow span {
    display: block;
    margin-bottom: 20px;
    color: #edf6fb;
    font-weight: 900;
}

.workflow p {
    margin: 0;
    color: var(--muted);
}

.workflow-telemetry {
    grid-column: 2;
    margin-top: -30px;
    padding: 18px 22px;
    border: 1px solid rgba(89, 216, 255, 0.2);
    border-radius: 8px;
    background: rgba(10, 15, 20, 0.72);
    color: #eaf4f8;
    font-weight: 900;
}

.telemetry-track {
    height: 7px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(216, 226, 232, 0.12);
}

.telemetry-track span {
    display: block;
    width: var(--workflow-progress, 25%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), #d5fbff);
    box-shadow: 0 0 22px rgba(89, 216, 255, 0.42);
    transition: width 220ms ease;
}

.use-case-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-case-list article {
    padding: 24px;
}

.industry-section {
    border-top: 1px solid var(--line);
}

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

.industry-grid article {
    min-height: 252px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
        var(--panel);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.industry-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(89, 216, 255, 0.36);
    background:
        linear-gradient(180deg, rgba(89, 216, 255, 0.08), transparent),
        var(--panel);
}

.industry-grid span {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 7px 10px;
    border: 1px solid rgba(89, 216, 255, 0.3);
    border-radius: 7px;
    color: var(--cyan);
    background: rgba(89, 216, 255, 0.08);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.industry-grid h3 {
    margin: 0 0 10px;
    color: #f3f7fa;
    line-height: 1.15;
}

.industry-grid p {
    margin: 0;
    color: var(--muted);
}

.pricing-section {
    width: 100%;
    max-width: none;
    padding: 86px max(20px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(180deg, rgba(89, 216, 255, 0.05), transparent),
        #0a0e12;
    border-block: 1px solid var(--line);
}

.billing-toggle {
    width: fit-content;
    display: flex;
    gap: 4px;
    padding: 4px;
    background: #121922;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.toggle-option {
    border: 0;
    border-radius: 6px;
    padding: 9px 14px;
    background: transparent;
    color: var(--muted);
    font-weight: 900;
    cursor: pointer;
}

.toggle-option.is-active {
    background: rgba(89, 216, 255, 0.14);
    color: var(--cyan);
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.pricing-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: rgba(89, 216, 255, 0.58);
    background:
        linear-gradient(180deg, rgba(89, 216, 255, 0.13), rgba(255, 255, 255, 0.035)),
        var(--panel-2);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
}

.plan-label {
    margin: 0 0 12px;
    color: var(--cyan);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.price {
    margin: 18px 0 0;
    color: #f7fbfd;
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 900;
}

.price-note {
    margin: 6px 0 22px;
    color: var(--muted);
}

.pricing-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    padding-left: 24px;
    position: relative;
}

.pricing-card li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 14px rgba(89, 216, 255, 0.44);
}

.pricing-card .button {
    margin-top: auto;
}

.download-note {
    max-width: 720px;
    margin: 26px auto 0;
    color: var(--muted);
    text-align: center;
    font-weight: 800;
}

.proof-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
}

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

.proof-grid p {
    margin: 0;
    padding: 22px;
    background: var(--panel);
    border-left: 3px solid var(--cyan);
    border-radius: 8px;
    color: var(--muted);
    font-weight: 800;
}

.contact-section {
    border-top: 1px solid var(--line);
}

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

.contact-grid article {
    padding: 24px;
}

.contact-grid span {
    display: block;
    margin-bottom: 12px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-grid h3 {
    margin: 0 0 10px;
    color: #f3f7fa;
    overflow-wrap: anywhere;
}

.contact-grid a {
    color: inherit;
    text-decoration: none;
}

.contact-grid a:hover,
.contact-grid a:focus-visible {
    color: var(--cyan);
}

.contact-grid p,
.contact-note {
    color: var(--muted);
}

.contact-note {
    margin: 18px 0 0;
    font-weight: 800;
}

.faq-section {
    max-width: 920px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 18px 20px;
}

.faq-list summary {
    cursor: pointer;
    color: #f3f7fa;
    font-weight: 900;
}

.faq-list p {
    margin: 12px 0 0;
}

.final-cta {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 86px;
    padding: 56px;
    border: 1px solid rgba(89, 216, 255, 0.28);
    border-radius: 8px;
    background:
        radial-gradient(circle at 78% 24%, rgba(89, 216, 255, 0.2), transparent 22rem),
        linear-gradient(135deg, #151d24, #0b1015);
    color: #fff;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, transparent 58%);
    transform: translateX(-120%);
    animation: sheen 5.6s ease-in-out infinite;
}

.final-cta h2 {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin-bottom: 24px;
}

.final-cta .button,
.final-cta .eyebrow {
    position: relative;
    z-index: 1;
}

.reveal-grid > * {
    opacity: 0;
    transform: translateY(18px);
}

.reveal-grid > *.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 420ms ease, transform 420ms ease;
}

@keyframes heroDrift {
    from {
        transform: scale(1.03) translate3d(-0.6%, -0.2%, 0);
    }

    to {
        transform: scale(1.08) translate3d(0.8%, 0.5%, 0);
    }
}

@keyframes circuitSweep {
    to {
        transform: translateX(180vw);
    }
}

@keyframes scan {
    to {
        transform: translateY(430px);
    }
}

@keyframes sheen {
    38%,
    100% {
        transform: translateX(120%);
    }
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 28px max(20px, calc((100vw - 1180px) / 2));
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.site-footer p {
    margin: 0;
}

@media (max-width: 980px) {
    .hero-content {
        grid-template-columns: 1fr;
        width: min(640px, calc(100% - 40px));
        margin: 0 auto;
        gap: 32px;
        padding: 56px 0 64px;
    }

    .hero h1 {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .hero-copy {
        font-size: 0.96rem;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .automation-console {
        justify-self: stretch;
    }

    .section-heading h2,
    .workflow-copy h2,
    .proof-section h2,
    .final-cta h2 {
        font-size: 2.55rem;
    }

    .feature-grid,
    .use-case-list,
    .industry-grid,
    .pricing-grid,
    .proof-section,
    .workflow-section,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .workflow-telemetry {
        grid-column: 1 / -1;
        margin-top: -16px;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 700px) {
    .site-header {
        height: 64px;
        padding: 0 16px;
    }

    .brand {
        min-width: 0;
        font-size: 0.95rem;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 64px;
    }

    .hero-image {
        height: 100%;
    }

    .hero-content {
        width: min(calc(100% - 32px), 620px);
        margin: 0 auto;
        padding: 42px 0 46px;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 0.98;
    }

    .hero-copy {
        font-size: 0.95rem;
    }

    .hero-shade {
        background:
            linear-gradient(0deg, rgba(5, 8, 11, 0.88), rgba(5, 8, 11, 0.54)),
            linear-gradient(90deg, rgba(5, 8, 11, 0.82), rgba(5, 8, 11, 0.38));
    }

    .hero-actions,
    .hero-stats {
        justify-content: flex-start;
    }

    .hero-content {
        text-align: left;
    }

    .hero-copy {
        text-align: left;
        margin: 14px 0 0;
    }

    .hero-stats div {
        width: 100%;
    }

    .automation-console {
        padding: 10px;
    }

    .console-screen {
        min-height: 236px;
        padding: 18px;
    }

    .console-screen p {
        font-size: 0.78rem;
    }

    .section {
        width: min(100% - 32px, 1180px);
        padding: 62px 0;
    }

    .trust-band {
        padding: 22px 18px;
    }

    .trust-band p {
        width: min(340px, 100%);
        font-size: 0.95rem;
    }

    .feature-grid,
    .use-case-list,
    .industry-grid,
    .pricing-grid,
    .proof-section,
    .workflow-section,
    .workflow,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .pricing-section {
        padding: 62px 16px;
    }

    .price {
        font-size: 3rem;
    }

    .section-heading h2,
    .workflow-copy h2,
    .proof-section h2,
    .final-cta h2 {
        font-size: 2.12rem;
    }

    .final-cta {
        width: calc(100% - 32px);
        padding: 34px 22px;
    }

    .site-footer {
        flex-direction: column;
        padding: 24px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
