:root {
    --ink: #0a0d0c;
    --ink-soft: #101512;
    --paper: #f2f0e8;
    --paper-dark: #dddace;
    --muted: #9fa59f;
    --line: rgba(255, 255, 255, 0.13);
    --line-dark: rgba(10, 13, 12, 0.16);
    --acid: #c8f36b;
    --acid-deep: #9fc743;
    --blue: #79d7f2;
    --shell: min(1180px, calc(100vw - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--paper);
    background: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

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

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

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--acid);
    font-weight: 800;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid transparent;
    transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
    background: rgba(10, 13, 12, 0.84);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--acid);
    border-radius: 2px;
    font-size: 18px;
    font-weight: 900;
    transform: rotate(-2deg);
}

.brand-copy {
    display: grid;
    line-height: 1;
}

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

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

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

.site-nav a {
    color: #c7cbc7;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: color 150ms ease;
}

.site-nav a:hover {
    color: #fff;
}

.site-nav .nav-cta {
    padding: 10px 16px;
    color: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.site-nav .nav-cta:hover {
    color: var(--ink);
    background: var(--acid);
    border-color: var(--acid);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 12px;
    color: inherit;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    margin: 5px 0;
    background: currentColor;
    transition: transform 160ms ease;
}

.hero {
    position: relative;
    min-height: 850px;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    overflow: hidden;
    isolation: isolate;
}

.hero-grid,
.final-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black 15%, transparent 88%);
}

.hero-glow {
    position: absolute;
    z-index: -2;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.16;
}

.hero-glow-one {
    top: 7%;
    right: -12%;
    background: radial-gradient(circle, var(--acid), transparent 68%);
}

.hero-glow-two {
    bottom: -26%;
    left: 26%;
    background: radial-gradient(circle, var(--blue), transparent 70%);
    opacity: 0.09;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
    align-items: center;
    gap: clamp(50px, 7vw, 100px);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 26px;
    color: #b8beb9;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.17em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 30px;
    height: 1px;
    background: var(--acid);
}

.eyebrow-dark {
    color: #565c57;
}

.hero h1,
.section h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(48px, 6.2vw, 82px);
    font-weight: 750;
    letter-spacing: -0.065em;
    line-height: 0.99;
}

.hero h1 em,
.final-cta h2 em {
    color: var(--acid);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero-lede {
    max-width: 690px;
    margin: 30px 0 0;
    color: #b5bbb6;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.6;
}

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

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
}

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

.button-primary {
    color: var(--ink);
    background: var(--acid);
}

.button-primary:hover {
    background: #dbff8e;
}

.button-secondary {
    color: var(--paper);
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--line);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.35);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.hero-tags li {
    padding: 6px 11px;
    color: #7f8881;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.system-preview {
    position: relative;
}

.preview-window {
    position: relative;
    padding: 1px;
    background: linear-gradient(145deg, rgba(200, 243, 107, 0.55), rgba(121, 215, 242, 0.16), rgba(255, 255, 255, 0.08));
    border-radius: 12px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
    transform: rotate(1deg);
}

.preview-window::before {
    content: "";
    position: absolute;
    inset: 12px -16px -16px 12px;
    z-index: -1;
    border: 1px solid rgba(200, 243, 107, 0.2);
    border-radius: 12px;
}

.preview-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    color: #8f9891;
    background: #121714;
    border-radius: 11px 11px 0 0;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.preview-dot {
    width: 7px;
    height: 7px;
    background: var(--acid);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--acid);
}

.preview-status {
    margin-left: auto;
    color: var(--acid);
}

.preview-body {
    padding: 24px;
    background: rgba(9, 12, 10, 0.96);
    border-radius: 0 0 11px 11px;
}

.preview-kicker {
    margin: 0 0 18px;
    color: #666f68;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.18em;
}

.preview-row {
    display: grid;
    grid-template-columns: 28px 1fr 24px;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 15px 14px;
    border: 1px solid var(--line);
    border-radius: 5px;
}

.preview-row-active {
    background: rgba(200, 243, 107, 0.055);
    border-color: rgba(200, 243, 107, 0.32);
}

.preview-number {
    color: #677069;
    font: italic 14px Georgia, serif;
}

.preview-row div {
    display: grid;
    gap: 2px;
}

.preview-row strong {
    color: #e9ece8;
    font-size: 13px;
}

.preview-row small {
    color: #7f8881;
    font-size: 10px;
    line-height: 1.4;
}

.preview-check {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--acid);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
}

.preview-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 30px 0 0;
    color: #747d76;
    font-size: 11px;
}

.preview-note span {
    width: 5px;
    height: 5px;
    background: var(--acid);
    border-radius: 50%;
}

.signal-strip {
    position: relative;
    z-index: 2;
    color: var(--ink);
    background: var(--acid);
}

.signal-grid {
    min-height: 88px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.signal-grid p {
    margin: 0;
    padding: 8px 30px;
    border-right: 1px solid rgba(10, 13, 12, 0.18);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.signal-grid p:first-child {
    border-left: 1px solid rgba(10, 13, 12, 0.18);
}

.signal-grid span {
    margin-right: 12px;
    font: italic 13px Georgia, serif;
}

.section {
    padding: 130px 0;
}

.section-contrast {
    color: var(--ink);
    background: var(--paper);
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: clamp(60px, 10vw, 150px);
    align-items: end;
}

.section h2,
.final-cta h2 {
    font-size: clamp(44px, 5.2vw, 70px);
}

.section-intro {
    color: #4f554f;
    font-size: 17px;
}

.section-intro p {
    margin: 0;
}

.section-intro p + p {
    margin-top: 18px;
}

.journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 80px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.journey article {
    position: relative;
    min-height: 310px;
    padding: 30px;
    border-right: 1px solid var(--line-dark);
}

.journey article:first-child {
    border-left: 1px solid var(--line-dark);
}

.journey-number,
.included-grid article > span {
    color: #5b625b;
    font: italic 13px Georgia, serif;
}

.journey-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-top: 48px;
    color: var(--ink);
    background: var(--acid);
    border-radius: 50%;
    font-size: 22px;
}

.journey h3,
.included-grid h3 {
    margin: 22px 0 8px;
    font-size: 21px;
    letter-spacing: -0.03em;
}

.journey p,
.included-grid p {
    margin: 0;
    color: #5f655f;
    font-size: 14px;
    line-height: 1.65;
}

.pilot {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 50%, rgba(121, 215, 242, 0.08), transparent 32%),
        var(--ink);
}

.pilot-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(60px, 8vw, 110px);
}

.pilot h2 {
    max-width: 550px;
}

.pilot-lede {
    max-width: 550px;
    margin: 28px 0 0;
    color: #aeb5af;
    font-size: 19px;
}

.pilot-features {
    margin-top: 42px;
    border-top: 1px solid var(--line);
}

.pilot-features > div {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.pilot-features span {
    color: var(--acid);
    font: italic 12px Georgia, serif;
}

.pilot-features p {
    display: grid;
    gap: 4px;
    margin: 0;
    color: #858e87;
    font-size: 13px;
}

.pilot-features strong {
    color: #edf0ed;
    font-size: 15px;
}

.pilot-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
}

.text-link {
    color: var(--paper);
    font-size: 13px;
    font-weight: 800;
    text-decoration-color: var(--acid);
    text-underline-offset: 5px;
}

.text-link span {
    color: var(--acid);
}

.pilot-visual {
    min-width: 0;
}

.pilot-frame {
    padding: 1px;
    background: linear-gradient(135deg, rgba(200, 243, 107, 0.55), rgba(255, 255, 255, 0.1));
    border-radius: 10px;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.pilot-frame-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    color: #879088;
    background: #111512;
    font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.pilot-badge {
    padding: 3px 7px;
    color: var(--ink);
    background: var(--acid);
    border-radius: 2px;
    font-size: 8px;
    font-weight: 900;
}

.pilot-frame img {
    width: 100%;
    aspect-ratio: 1200 / 958;
    object-fit: cover;
    object-position: top;
}

.pilot-stats {
    position: relative;
    width: calc(100% - 44px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: -22px auto 0;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.pilot-stats p {
    display: grid;
    place-items: center;
    gap: 2px;
    margin: 0;
    padding: 17px 8px;
    border-right: 1px solid var(--line-dark);
}

.pilot-stats p:nth-child(3) {
    border: 0;
}

.pilot-stats strong {
    font: 34px Georgia, serif;
}

.pilot-stats span {
    color: #606660;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pilot-stats small {
    grid-column: 1 / -1;
    padding: 8px 12px;
    color: #555b55;
    background: var(--paper-dark);
    font-size: 9px;
    text-align: center;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.included-grid article {
    min-height: 270px;
    padding: 32px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.included-grid article:nth-child(2),
.included-grid article:nth-child(6) {
    background: rgba(200, 243, 107, 0.12);
}

.included-grid h3 {
    margin-top: 62px;
}

.package {
    background:
        radial-gradient(circle at 82% 20%, rgba(200, 243, 107, 0.1), transparent 30%),
        #0d120f;
}

.package-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
    align-items: center;
    gap: clamp(60px, 10vw, 140px);
}

.package-copy > p:not(.eyebrow, .package-timing) {
    max-width: 560px;
    margin: 28px 0 0;
    color: #929b94;
    font-size: 17px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-top: 42px;
}

.package-price strong {
    color: var(--acid);
    font: 400 clamp(52px, 6vw, 78px)/1 Georgia, serif;
    letter-spacing: -0.05em;
}

.package-price span {
    color: #7f8881;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.package-timing {
    max-width: 520px;
    margin: 22px 0 0;
    color: #8d968f;
    font-size: 14px;
}

.package-timing strong {
    color: var(--paper);
}

.package-card {
    padding: clamp(28px, 4vw, 48px);
    color: var(--ink);
    background: var(--paper);
    border-top: 5px solid var(--acid);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}

.package-card-heading {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line-dark);
}

.package-card-heading p {
    margin: 0;
    font-size: 25px;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.package-card-heading span {
    display: block;
    margin-top: 4px;
    color: #686f69;
    font-size: 12px;
}

.package-list {
    display: grid;
    gap: 14px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.package-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    color: #303530;
    font-size: 14px;
    line-height: 1.45;
}

.package-list li span {
    color: #648322;
    font-weight: 900;
}

.package-care {
    margin: 28px 0;
    padding: 18px 20px;
    background: rgba(200, 243, 107, 0.2);
    border-left: 3px solid var(--acid-deep);
}

.package-care p {
    margin: 0;
    color: #4e554e;
    font-size: 13px;
}

.package-care strong {
    color: var(--ink);
}

.package-card .button {
    width: 100%;
    background: var(--ink);
    color: var(--paper);
}

.package-card .button:hover {
    color: var(--ink);
    background: var(--acid-deep);
}

.boundaries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.boundaries > div {
    padding: 28px 30px;
    border-right: 1px solid var(--line);
}

.boundaries > div:first-child {
    border-left: 1px solid var(--line);
}

.boundaries p {
    margin: 0;
    color: #858e87;
    font-size: 13px;
}

.boundaries .boundary-label {
    margin-bottom: 10px;
    color: var(--acid);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.process {
    background: #0d120f;
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(70px, 12vw, 170px);
}

.process-heading {
    position: sticky;
    top: 130px;
    align-self: start;
}

.process-heading p:last-child {
    max-width: 500px;
    margin: 28px 0 0;
    color: #8d968f;
    font-size: 17px;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.process-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 28px;
    padding: 38px 0;
    border-top: 1px solid var(--line);
}

.process-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.process-list li > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--acid);
    border-radius: 50%;
    font: italic 13px Georgia, serif;
}

.process-list strong {
    display: block;
    margin-bottom: 7px;
    color: #eef0ed;
    font-size: 21px;
    letter-spacing: -0.025em;
}

.process-list p {
    max-width: 600px;
    margin: 0;
    color: #858e87;
    font-size: 15px;
}

.faq {
    background: var(--ink);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(70px, 12vw, 160px);
}

.faq-heading h2 {
    max-width: 520px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 25px 0;
    color: #e4e8e4;
    cursor: pointer;
    font-size: 17px;
    font-weight: 750;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--acid);
    font-size: 25px;
    font-weight: 300;
    transition: transform 150ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 650px;
    margin: -5px 0 28px;
    color: #8e9790;
}

.final-cta {
    position: relative;
    padding: 145px 0;
    color: var(--ink);
    background: var(--acid);
    overflow: hidden;
    isolation: isolate;
}

.final-grid {
    z-index: -1;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(10, 13, 12, 0.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 13, 12, 0.13) 1px, transparent 1px);
    mask-image: none;
}

.final-inner {
    text-align: center;
}

.final-inner .eyebrow {
    justify-content: center;
    color: #414a36;
}

.final-inner .eyebrow > span {
    background: var(--ink);
}

.final-cta h2 em {
    color: var(--ink);
}

.final-cta p:not(.eyebrow) {
    max-width: 650px;
    margin: 26px auto 34px;
    color: #3e4637;
    font-size: 18px;
}

.final-cta .button-primary {
    color: var(--paper);
    background: var(--ink);
}

.final-cta .button-primary:hover {
    color: var(--ink);
    background: #fff;
}

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

.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.error-title {
    margin: 0;
    font-size: clamp(48px, 8vw, 92px);
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    color: #717a73;
    font-size: 11px;
}

.footer-inner p {
    margin: 0;
}

.footer-inner p:last-child {
    text-align: right;
}

.footer-inner a:not(.brand) {
    text-underline-offset: 3px;
}

.brand-footer .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 14px;
}

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

.brand-footer .brand-copy small {
    font-size: 8px;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0ms;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero {
        padding-top: 135px;
    }

    .hero-layout,
    .pilot-layout,
    .package-layout,
    .process-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        gap: 75px;
    }

    .system-preview {
        width: min(620px, 94%);
        margin-inline: auto;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 34px;
    }

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

    .journey article:nth-child(2) {
        border-right: 1px solid var(--line-dark);
    }

    .journey article:nth-child(3),
    .journey article:nth-child(4) {
        border-top: 1px solid var(--line-dark);
    }

    .pilot-layout {
        gap: 70px;
    }

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

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

    .package-layout {
        gap: 70px;
    }

    .process-layout,
    .faq-layout {
        gap: 70px;
    }

    .process-heading {
        position: static;
    }
}

@media (max-width: 760px) {
    :root {
        --shell: min(100% - 32px, 1180px);
    }

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

    .menu-toggle {
        display: block;
        z-index: 2;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(3px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-3px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 90px 24px 40px;
        background: rgba(8, 11, 9, 0.98);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a,
    .site-nav .nav-cta {
        padding: 18px 0;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        font-size: 22px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: clamp(44px, 13vw, 66px);
    }

    .hero-lede {
        font-size: 17px;
    }

    .system-preview {
        width: 100%;
    }

    .preview-body {
        padding: 16px;
    }

    .preview-row {
        grid-template-columns: 22px 1fr 20px;
        gap: 8px;
        padding: 13px 10px;
    }

    .preview-row small {
        font-size: 9px;
    }

    .signal-grid {
        grid-template-columns: 1fr;
        padding: 14px 0;
    }

    .signal-grid p,
    .signal-grid p:first-child {
        padding: 10px;
        border: 0;
        text-align: left;
    }

    .section {
        padding: 90px 0;
    }

    .section h2,
    .final-cta h2 {
        font-size: clamp(40px, 11vw, 58px);
    }

    .journey,
    .included-grid {
        grid-template-columns: 1fr;
        margin-top: 55px;
    }

    .package-price {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .boundaries {
        grid-template-columns: 1fr;
        margin-top: 55px;
    }

    .boundaries > div,
    .boundaries > div:first-child {
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

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

    .journey article,
    .journey article:first-child,
    .journey article:nth-child(2),
    .journey article:nth-child(3),
    .journey article:nth-child(4) {
        min-height: 245px;
        border-right: 1px solid var(--line-dark);
        border-top: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .journey-icon,
    .included-grid h3 {
        margin-top: 30px;
    }

    .included-grid article {
        min-height: 230px;
    }

    .pilot-links {
        display: grid;
    }

    .pilot-stats {
        width: calc(100% - 20px);
    }

    .pilot-stats strong {
        font-size: 28px;
    }

    .process-list li {
        grid-template-columns: 48px 1fr;
        gap: 18px;
    }

    .process-list li > span {
        width: 42px;
        height: 42px;
    }

    .final-cta {
        padding: 105px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-inner p:last-child {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
