:root {
    --bg: #070a12;
    --bg-2: #0b1020;
    --panel: rgba(16, 22, 40, .78);
    --panel-strong: #11182a;
    --line: rgba(255, 255, 255, .09);
    --line-bright: rgba(255, 255, 255, .16);
    --text: #f7f9ff;
    --muted: #aeb8cf;
    --soft: #77839d;
    --cyan: #5ee7ff;
    --blue: #6f8cff;
    --violet: #9b7cff;
    --success: #6ee7a1;
    --shadow: 0 30px 100px rgba(0, 0, 0, .36);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(
            180deg,
            #070a12 0%,
            #080b14 40%,
            #070912 100%
        );
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

.site-bg {
    position: absolute;
    z-index: -1;
    inset: 0 0 auto;
    height: 900px;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: .45;
}

.orb-one {
    width: 520px;
    height: 520px;
    top: -210px;
    right: 2%;
    background:
        radial-gradient(
            circle,
            rgba(111, 140, 255, .46),
            rgba(155, 124, 255, .08) 60%,
            transparent 72%
        );
}

.orb-two {
    width: 380px;
    height: 380px;
    top: 260px;
    left: -140px;
    background:
        radial-gradient(
            circle,
            rgba(94, 231, 255, .20),
            transparent 70%
        );
}

.grid-glow {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.72),
            transparent 80%
        );
}

.section-shell,
.nav-shell,
.hero-shell {
    width: min(
        calc(100% - 40px),
        var(--max)
    );
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(7, 10, 18, .76);
    backdrop-filter: blur(22px);
}

.nav-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            rgba(94,231,255,.20),
            rgba(111,140,255,.16) 54%,
            rgba(155,124,255,.18)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.14),
        0 10px 30px rgba(66, 96, 230, .16);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-copy strong {
    font-size: 17px;
    letter-spacing: -.025em;
}

.brand-copy small {
    color: var(--soft);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a,
.footer-actions a {
    color: #b7c0d4;
    font-size: 13px;
    font-weight: 650;
    transition:
        color .18s ease,
        transform .18s ease;
}

.main-nav a:hover,
.footer-actions a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid var(--line-bright);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.01em;
    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

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

.button-primary {
    border-color: rgba(109, 139, 255, .66);
    background:
        linear-gradient(
            135deg,
            #526fff,
            #7468f8 60%,
            #8d68ef
        );
    box-shadow:
        0 12px 34px rgba(91, 103, 255, .24),
        inset 0 1px 0 rgba(255,255,255,.18);
}

.button-primary:hover {
    box-shadow:
        0 16px 42px rgba(91, 103, 255, .34),
        inset 0 1px 0 rgba(255,255,255,.18);
}

.button-secondary,
.button-ghost {
    background: rgba(255,255,255,.035);
}

.button-secondary:hover,
.button-ghost:hover {
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.065);
}

.button-small {
    min-height: 42px;
    padding-inline: 16px;
}

.button-large {
    min-height: 52px;
    padding-inline: 22px;
    border-radius: 14px;
    font-size: 14px;
}

.hero {
    padding: 104px 0 84px;
}

.hero-shell {
    display: grid;
    grid-template-columns:
        minmax(0, 1.03fr)
        minmax(420px, .97fr);
    gap: 72px;
    align-items: center;
}

.eyebrow-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid rgba(94,231,255,.14);
    border-radius: 999px;
    background: rgba(94,231,255,.045);
    color: #a7def0;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 14px rgba(110,231,161,.72);
}

.hero h1 {
    margin: 24px 0 24px;
    max-width: 700px;
    font-size: clamp(54px, 6.6vw, 88px);
    line-height: .93;
    letter-spacing: -.062em;
}

.hero h1 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--cyan),
            #9ab4ff 46%,
            #b79bff 86%
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    margin: 0;
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-trust {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.trust-item {
    display: grid;
    gap: 4px;
}

.trust-item strong {
    font-size: 22px;
    letter-spacing: -.04em;
}

.trust-item span {
    color: var(--soft);
    font-size: 11px;
    font-weight: 650;
}

.trust-divider {
    width: 1px;
    height: 35px;
    background: var(--line);
}

.hero-visual {
    position: relative;
}

.command-card {
    position: relative;
    overflow: hidden;
    padding: 25px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            160deg,
            rgba(20,28,50,.91),
            rgba(11,15,29,.94)
        );
    box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(255,255,255,.07);
}

.command-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(94,231,255,.70),
            rgba(155,124,255,.60),
            transparent
        );
}

.command-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 22px;
}

.mini-label,
.eyebrow {
    color: #7fdff5;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.command-top h2 {
    margin: 8px 0 0;
    font-size: 21px;
    letter-spacing: -.025em;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid rgba(110,231,161,.16);
    border-radius: 999px;
    background: rgba(110,231,161,.055);
    color: #9cebbd;
    font-size: 10px;
    font-weight: 800;
}

.live-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
}

.worker-stack {
    display: grid;
    gap: 10px;
}

.mini-worker {
    min-height: 71px;
    display: grid;
    grid-template-columns: 43px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 15px;
    background: rgba(255,255,255,.025);
}

.mini-worker-active {
    border-color: rgba(94,231,255,.16);
    background:
        linear-gradient(
            90deg,
            rgba(94,231,255,.055),
            rgba(111,140,255,.035)
        );
}

.mini-avatar {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    background: #121a2e;
    color: #b9ddff;
    font-size: 11px;
    font-weight: 900;
}

.mini-worker div:nth-child(2) {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.mini-worker strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
}

.mini-worker div span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--soft);
    font-size: 9px;
}

.mini-worker em {
    color: #8190ac;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.mini-worker-active em {
    color: #8de8b1;
}

.command-footer {
    margin-top: 18px;
    padding-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.command-metric {
    padding: 0 12px;
    display: grid;
    gap: 5px;
    border-right: 1px solid var(--line);
}

.command-metric:first-child {
    padding-left: 0;
}

.command-metric:last-child {
    border-right: 0;
}

.command-metric span {
    color: var(--soft);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.command-metric strong {
    font-size: 11px;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(17,24,42,.94);
    box-shadow: 0 18px 45px rgba(0,0,0,.30);
    color: #cbd3e5;
    font-size: 10px;
    font-weight: 750;
    backdrop-filter: blur(15px);
}

.floating-card span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(111,140,255,.13);
    color: #b7c6ff;
    font-size: 9px;
    font-weight: 900;
}

.floating-one {
    left: -36px;
    bottom: 72px;
}

.floating-two {
    right: -26px;
    top: 96px;
}

.proof-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.018);
}

.proof-grid {
    min-height: 118px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.proof-grid > div {
    min-height: 55px;
    padding: 4px 24px;
    display: grid;
    align-content: center;
    gap: 7px;
    border-right: 1px solid var(--line);
}

.proof-grid > div:first-child {
    padding-left: 0;
}

.proof-grid > div:last-child {
    border-right: 0;
}

.proof-grid span {
    color: var(--soft);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .13em;
}

.proof-grid strong {
    font-size: 12px;
    line-height: 1.5;
}

.section {
    padding: 112px 0;
}

.section-soft {
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.016),
            rgba(111,140,255,.02)
        );
}

.section-heading {
    margin-bottom: 42px;
    display: grid;
    grid-template-columns: 1.1fr .72fr;
    gap: 90px;
    align-items: end;
}

.section-heading h2,
.center-heading h2,
.pricing-copy h2,
.safety-copy h2,
.cta-panel h2 {
    margin: 13px 0 0;
    font-size: clamp(35px, 4.5vw, 56px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.section-heading > p,
.center-heading > p,
.pricing-copy > p,
.safety-copy > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 15px;
}

.workers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.worker-card {
    position: relative;
    min-height: 315px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            155deg,
            rgba(19,26,47,.76),
            rgba(11,15,27,.74)
        );
    transition:
        transform .20s ease,
        border-color .20s ease,
        background .20s ease;
}

.worker-card:hover {
    transform: translateY(-4px);
    border-color: rgba(111,140,255,.25);
    background:
        linear-gradient(
            155deg,
            rgba(23,32,56,.88),
            rgba(12,16,30,.84)
        );
}

.worker-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 29px;
    border: 1px solid rgba(111,140,255,.20);
    border-radius: 13px;
    background:
        linear-gradient(
            145deg,
            rgba(94,231,255,.08),
            rgba(111,140,255,.12)
        );
    color: #bfd4ff;
    font-size: 11px;
    font-weight: 900;
}

.worker-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.worker-topline span {
    color: #7786a5;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .13em;
}

.worker-topline i {
    color: #424d67;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.worker-card h3 {
    margin: 9px 0 10px;
    font-size: 17px;
    line-height: 1.22;
    letter-spacing: -.025em;
}

.worker-card p {
    margin: 0;
    color: #929db4;
    font-size: 12px;
    line-height: 1.65;
}

.worker-tags {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.worker-tags span {
    padding: 5px 7px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 7px;
    background: rgba(255,255,255,.025);
    color: #77839b;
    font-size: 8px;
    font-weight: 750;
}

.workers-cta {
    margin-top: 24px;
    padding: 24px 27px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(94,231,255,.10);
    border-radius: 18px;
    background:
        linear-gradient(
            90deg,
            rgba(94,231,255,.035),
            rgba(111,140,255,.04)
        );
}

.workers-cta > div {
    display: grid;
    gap: 6px;
}

.workers-cta strong {
    font-size: 14px;
}

.workers-cta span {
    color: var(--soft);
    font-size: 11px;
}

.center-heading {
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center;
}

.center-heading > p:last-child {
    margin-top: 16px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.step {
    position: relative;
    min-height: 250px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.018);
}

.step-number {
    position: absolute;
    top: 21px;
    right: 21px;
    color: #48536c;
    font-size: 9px;
    font-weight: 900;
}

.step-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 48px;
    border-radius: 12px;
    background: rgba(111,140,255,.10);
    color: #a8c2ff;
    font-size: 17px;
}

.step h3 {
    margin: 0 0 9px;
    font-size: 16px;
}

.step p {
    margin: 0;
    color: var(--soft);
    font-size: 12px;
    line-height: 1.7;
}

.pricing-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
    align-items: center;
}

.pricing-copy > p {
    margin-top: 20px;
}

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

.check-list li {
    position: relative;
    padding-left: 26px;
    color: #c0c8d9;
    font-size: 12px;
    line-height: 1.5;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 900;
}

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

.price-card {
    position: relative;
    min-height: 210px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            155deg,
            rgba(18,25,44,.78),
            rgba(10,14,25,.82)
        );
}

.price-card-featured {
    border-color: rgba(111,140,255,.31);
    box-shadow:
        inset 0 0 50px rgba(111,140,255,.035);
}

.popular {
    position: absolute;
    top: 17px;
    right: 17px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(111,140,255,.11);
    color: #aebeff;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .11em;
}

.price-period {
    color: #70809e;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .16em;
}

.price {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
}

.price sup {
    margin: 8px 4px 0 0;
    color: #a8b2c6;
    font-size: 15px;
}

.price strong {
    font-size: 43px;
    line-height: 1;
    letter-spacing: -.055em;
}

.price-card p {
    margin: 21px 0 0;
    max-width: 220px;
    color: var(--soft);
    font-size: 11px;
    line-height: 1.6;
}

.safety-section {
    border-top: 1px solid rgba(255,255,255,.05);
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(94,231,255,.045),
            transparent 35%
        );
}

.safety-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 90px;
    align-items: center;
}

.safety-copy > p {
    margin: 22px 0 30px;
}

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

.safety-list article {
    padding: 23px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(255,255,255,.018);
}

.safety-list article > span {
    color: #63708c;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}

.safety-list h3 {
    margin: 0 0 7px;
    font-size: 14px;
}

.safety-list p {
    margin: 0;
    color: var(--soft);
    font-size: 11px;
    line-height: 1.68;
}

.final-cta {
    padding: 35px 0 90px;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.1fr auto;
    align-items: center;
    gap: 55px;
    border: 1px solid rgba(151, 144, 255, .23);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            125deg,
            rgba(77,100,230,.88),
            rgba(103,83,213,.85) 58%,
            rgba(91,66,173,.88)
        );
    box-shadow: 0 34px 90px rgba(45,42,133,.20);
}

.cta-panel::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -90px;
    top: -160px;
    border-radius: 50%;
    background: rgba(255,255,255,.09);
    filter: blur(1px);
}

.cta-panel .eyebrow {
    color: rgba(255,255,255,.70);
}

.cta-panel h2 {
    max-width: 690px;
}

.cta-panel p {
    margin: 17px 0 0;
    max-width: 600px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.7;
}

.cta-actions {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 13px;
}

.button-light {
    border-color: #fff;
    background: #fff;
    color: #11182a;
}

.text-link {
    color: rgba(255,255,255,.78);
    font-size: 10px;
    font-weight: 750;
}

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

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

.brand-footer {
    width: fit-content;
}

.footer-grid > p {
    margin: 0;
    max-width: 430px;
    color: #75819a;
    font-size: 11px;
    line-height: 1.65;
}

.footer-actions {
    display: flex;
    gap: 20px;
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: #505b72;
    font-size: 10px;
}

@media (max-width: 1080px) {

    .main-nav {
        display: none;
    }

    .nav-actions {
        margin-left: auto;
    }

    .hero-shell {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }

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

    .floating-card {
        display: none;
    }

}

@media (max-width: 820px) {

    .section-shell,
    .nav-shell,
    .hero-shell {
        width: min(
            calc(100% - 28px),
            var(--max)
        );
    }

    .site-header {
        position: relative;
    }

    .nav-shell {
        min-height: 70px;
    }

    .brand-copy small {
        display: none;
    }

    .button-ghost {
        display: none;
    }

    .hero {
        padding: 68px 0 55px;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero h1 {
        font-size: clamp(
            48px,
            14vw,
            72px
        );
    }

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

    .hero-trust {
        gap: 15px;
    }

    .proof-grid {
        grid-template-columns:
            repeat(2, 1fr);
        padding: 20px 0;
    }

    .proof-grid > div {
        padding: 18px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-grid > div:first-child {
        padding-left: 18px;
    }

    .proof-grid > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading,
    .pricing-layout,
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

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

    .cta-panel {
        padding: 35px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-actions {
        justify-items: start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        grid-column: auto;
    }

}

@media (max-width: 560px) {

    .nav-shell {
        gap: 12px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;
    }

    .brand-copy strong {
        font-size: 15px;
    }

    .nav-actions .button {
        min-height: 39px;
        padding: 0 12px;
        font-size: 11px;
    }

    .hero {
        padding-top: 52px;
    }

    .eyebrow-pill {
        font-size: 8px;
    }

    .hero h1 {
        margin-top: 20px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-trust {
        align-items: stretch;
    }

    .trust-item strong {
        font-size: 18px;
    }

    .trust-item span {
        font-size: 9px;
    }

    .command-card {
        padding: 17px;
        border-radius: 22px;
    }

    .command-top {
        align-items: center;
    }

    .command-top h2 {
        font-size: 17px;
    }

    .live-badge {
        padding: 7px 8px;
    }

    .mini-worker {
        grid-template-columns:
            39px 1fr;
    }

    .mini-worker em {
        display: none;
    }

    .command-footer {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .command-metric {
        padding: 0 0 12px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .command-metric:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

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

    .proof-grid > div {
        border-bottom: 1px solid var(--line);
    }

    .proof-grid > div:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .proof-grid > div:last-child {
        border-bottom: 0;
    }

    .section-heading h2,
    .center-heading h2,
    .pricing-copy h2,
    .safety-copy h2,
    .cta-panel h2 {
        font-size: 37px;
    }

    .workers-grid,
    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .worker-card {
        min-height: 285px;
    }

    .workers-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .workers-cta .button {
        width: 100%;
    }

    .step {
        min-height: 225px;
    }

    .cta-panel {
        padding: 28px 23px;
    }

    .cta-actions,
    .cta-actions .button {
        width: 100%;
    }

    .footer-actions {
        flex-wrap: wrap;
    }

}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }

}
