:root {
    --ink: #071018;
    --panel: #101b24;
    --panel-2: #162632;
    --steel: #8fa3af;
    --paper: #f3efe4;
    --white: #fffaf0;
    --orange: #ff7a18;
    --green: #16a665;
    --lime: #98dc16;
    --line: rgba(255, 250, 240, .12);
    --shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background: var(--ink);
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--white);
    font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
    background:
        radial-gradient(circle at 76% 0%, rgba(152, 220, 22, .13), transparent 32rem),
        linear-gradient(135deg, rgba(255,255,255,.035) 1px, transparent 1px),
        var(--ink);
    background-size: auto, 42px 42px, auto;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure { margin-top: 0; }

.wrap {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 16, 24, .86);
    backdrop-filter: blur(18px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand strong, .brand em { display: block; }
.brand strong { font-size: 20px; letter-spacing: .03em; text-transform: uppercase; }
.brand em, .nav-link {
    color: var(--steel);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nav-link { color: var(--white); }

.hero {
    min-height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, .65fr);
    align-items: center;
    gap: 70px;
    padding: 72px 0 58px;
}

.hero > * { min-width: 0; }

.cert-lockup {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.cert-lockup img { width: 58px; height: 58px; }
.cert-lockup > span { font-size: 28px; font-weight: 900; letter-spacing: -.04em; }
.cert-lockup > span > span { color: var(--lime); }

.eyebrow, .section-label, .screen-label {
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(54px, 6.4vw, 84px);
    line-height: .84;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

h1 span, h2 span { color: var(--lime); }

.hero-copy {
    max-width: 660px;
    color: #bfd0d8;
    font: 20px/1.55 Arial, sans-serif;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0 18px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 4px;
    background: var(--lime);
    color: #0d1804;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(152, 220, 22, .18);
}

.ghost-button {
    border-color: var(--line);
    background: rgba(255,255,255,.04);
    color: var(--white);
    box-shadow: none;
}

.button:focus-visible, a:focus-visible, summary:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
}

.worker-price {
    color: var(--steel);
    font: 12px/1.5 Arial, sans-serif;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.phone-shot, .dashboard-shot {
    position: relative;
    margin: 0;
    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(180deg, #14232e, #0b151d);
    box-shadow: var(--shadow);
}

.phone-shot::before, .dashboard-shot::before {
    content: "";
    position: absolute;
    inset: -13px;
    z-index: -1;
    border: 1px solid rgba(152,220,22,.28);
    transform: rotate(1.2deg);
}

.screen-label {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

.phone-shot img {
    width: min(100%, 390px);
    height: auto;
    margin: 24px auto 0;
}

.problem-band, .proof-section, .faq-section, .download-band {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.025);
}

.problem-grid {
    display: grid;
    grid-template-columns: .35fr 1fr;
    gap: 48px;
    padding: 74px 0;
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .9;
    text-transform: uppercase;
}

.problem-grid p:last-child, .section-head + p, .proof-grid p, .teams-copy p, details p {
    color: #bfd0d8;
    font: 17px/1.65 Arial, sans-serif;
}

.section { padding: 90px 0; scroll-margin-top: 88px; }
.section-head { max-width: 900px; margin-bottom: 38px; }
.section-label { margin-bottom: 16px; }

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

.feature-card {
    min-height: 310px;
    padding: 28px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--lime);
    background: linear-gradient(180deg, var(--panel-2), var(--panel));
}

.feature-card > b {
    color: var(--lime);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.feature-card h3 {
    margin: 70px 0 16px;
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
}

.feature-card p {
    margin-bottom: 0;
    color: #bfd0d8;
    font: 15px/1.6 Arial, sans-serif;
}

.proof-grid, .teams-grid, .faq-grid, .download-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
    align-items: center;
    gap: 60px;
}

.proof-grid { padding: 90px 0; }
.proof-grid > img { border: 1px solid var(--line); box-shadow: var(--shadow); }
.proof-list { padding: 0; margin: 28px 0 0; list-style: none; }
.proof-list li { padding: 14px 0; border-top: 1px solid var(--line); font-weight: 900; text-transform: uppercase; }

.teams-grid { width: min(1320px, calc(100% - 36px)); }
.teams-copy { padding: 40px 0 40px max(0px, calc((100vw - 1180px) / 2)); }
.dashboard-shot img { width: 100%; height: auto; }

.faq-section { padding: 90px 0; }
.faq-grid { align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
    padding: 23px 40px 23px 0;
    cursor: pointer;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}
details p { padding: 0 30px 22px 0; margin: 0; }

.download-band { padding: 72px 0; }
.download-grid { grid-template-columns: 1fr auto; }
.download-grid h2 { max-width: 800px; margin-bottom: 0; }

footer {
    padding: 28px 0;
    color: var(--steel);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

footer .wrap { display: flex; justify-content: space-between; gap: 18px; }

@media (max-width: 860px) {
    .hero, .problem-grid, .proof-grid, .teams-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    .hero { min-height: auto; gap: 46px; }
    .phone-shot { width: 100%; max-width: 430px; margin: 0 auto; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 0; }
    .feature-card h3 { margin-top: 36px; }
    .teams-grid { width: min(1180px, calc(100% - 36px)); }
    .teams-copy { padding: 0; }
    .download-grid { grid-template-columns: 1fr; }
    .download-grid .button { justify-self: start; }
}

@media (max-width: 640px) {
    .wrap, .teams-grid { width: min(100% - 28px, 1180px); }
    .nav { min-height: 68px; }
    .brand img { width: 40px; height: 40px; }
    .brand em { display: none; }
    .nav-link { font-size: 10px; }
    .hero { padding: 52px 0; }
    h1 { font-size: clamp(42px, 11.5vw, 52px); }
    .hero-copy { font-size: 17px; }
    .hero-actions, .hero-actions .button, .download-grid .button { width: 100%; }
    .problem-grid, .proof-grid { padding: 64px 0; }
    .section, .faq-section { padding: 64px 0; }
    .proof-grid, .teams-grid, .faq-grid { gap: 38px; }
    footer .wrap { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}
