:root {
    --void: #08000f;
    --void-soft: #0d0316;
    --panel: #12071d;
    --panel-2: #190d25;
    --paper: #f4efe6;
    --paper-2: #e8e0d5;
    --paper-ink: #1c1322;
    --white: #fffdf8;
    --muted: #c0b6c9;
    --muted-2: #968b9f;
    --line: rgba(246, 166, 35, 0.22);
    --line-soft: rgba(255, 255, 255, 0.11);
    --amber: #f6a623;
    --amber-dark: #b86f00;
    --cyan: #28dfe8;
    --magenta: #eb4fa7;
    --success: #66d7aa;
    --danger: #ff8e8e;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    --shell: 1240px;
    --radius: 4px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background:
        radial-gradient(circle at 80% 2%, rgba(40, 223, 232, 0.045), transparent 25rem),
        radial-gradient(circle at 18% 25%, rgba(235, 79, 167, 0.035), transparent 28rem),
        var(--void);
    color: var(--white);
    font-family: "Barlow", "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

a {
    color: inherit;
}

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

::selection {
    background: var(--amber);
    color: #130b16;
}

.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: 1000;
    transform: translateY(-180%);
    padding: 10px 16px;
    background: var(--paper);
    color: var(--paper-ink);
    font-weight: 700;
    text-decoration: none;
}

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

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.signal-bar {
    border-bottom: 1px solid rgba(246, 166, 35, 0.28);
    background: #110718;
    color: var(--amber);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.signal-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    white-space: nowrap;
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(8, 0, 15, 0.92);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
    text-decoration: none;
    flex-shrink: 0;
}

.brand img {
    border: 1px solid rgba(40, 223, 232, 0.35);
    background: #0b0016;
}

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

.brand-copy strong {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 0.13em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--cyan);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 21px;
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.primary-nav > a:not(.button) {
    position: relative;
    padding: 28px 0 26px;
    color: var(--muted);
    text-decoration: none;
}

.primary-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 2px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
}

.primary-nav > a:hover,
.primary-nav > a[aria-current="page"] {
    color: var(--white);
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-secondary {
    display: inline-flex;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--white);
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid var(--amber);
    border-radius: 0;
    background: var(--amber);
    box-shadow: 4px 4px 0 var(--amber-dark);
    color: #160c18;
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--amber-dark);
    background: #ffb538;
}

.button-small {
    min-height: 42px;
    padding: 9px 17px;
    font-size: 0.78rem;
}

.button-ghost {
    background: transparent;
    box-shadow: none;
    color: var(--amber);
}

.button-ghost:hover {
    box-shadow: none;
    background: rgba(246, 166, 35, 0.1);
}

.button-light {
    border-color: var(--paper-ink);
    background: var(--paper-ink);
    box-shadow: 4px 4px 0 rgba(28, 19, 34, 0.28);
    color: var(--paper);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    color: var(--amber);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--amber);
}

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

h1,
h2,
.display {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-weight: 400;
    letter-spacing: 0.025em;
}

h1 {
    max-width: 920px;
    margin-bottom: 26px;
    font-size: clamp(3.55rem, 8vw, 7.7rem);
    line-height: 0.91;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 0.98;
}

h3 {
    margin-bottom: 12px;
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 1.4rem;
    line-height: 1.2;
}

.accent {
    color: var(--amber);
}

.signal-text {
    color: var(--cyan);
}

.lead {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    line-height: 1.65;
}

.fine-print {
    color: var(--muted-2);
    font-size: 0.82rem;
    line-height: 1.55;
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(246, 166, 35, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(246, 166, 35, 0.07) 1px, transparent 1px);
    background-size: 86px 86px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 68px;
    align-items: center;
    min-height: 750px;
    padding-block: 86px;
}

.hero-copy {
    max-width: 820px;
}

.hero-copy .lead {
    max-width: 670px;
}

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

.proof-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
    color: var(--muted);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.proof-line span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.proof-line span::before {
    content: "";
    width: 7px;
    height: 7px;
    border: 1px solid var(--cyan);
}

.brand-panel {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(40, 223, 232, 0.4);
    background: rgba(10, 0, 22, 0.74);
    box-shadow: 11px 11px 0 rgba(235, 79, 167, 0.15), var(--shadow);
}

.brand-panel::before,
.brand-panel::after {
    content: "";
    position: absolute;
    z-index: -1;
}

.brand-panel::before {
    top: -7px;
    right: -7px;
    width: 48%;
    height: 1px;
    background: var(--magenta);
}

.brand-panel::after {
    bottom: -7px;
    left: -7px;
    width: 48%;
    height: 1px;
    background: var(--cyan);
}

.brand-panel img {
    width: 100%;
    height: auto;
}

.panel-label {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    padding: 15px 6px 2px;
    border-top: 1px solid var(--line-soft);
    color: var(--muted);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.section {
    padding-block: 106px;
}

.section-compact {
    padding-block: 72px;
}

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

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

.section-paper .eyebrow,
.section-paper .accent {
    color: #9d5a00;
}

.section-paper .eyebrow::before {
    background: #9d5a00;
}

.section-paper .lead,
.section-paper .muted {
    color: #5f5367;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 64px;
    align-items: end;
    margin-bottom: 52px;
}

.section-head > :last-child {
    margin-bottom: 5px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.bento-card {
    position: relative;
    grid-column: span 4;
    min-height: 270px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    background: var(--panel);
}

.bento-card.wide {
    grid-column: span 8;
}

.bento-card.full {
    grid-column: 1 / -1;
    min-height: 230px;
}

.bento-card.tall {
    min-height: 386px;
}

.bento-card.paper {
    border-color: rgba(28, 19, 34, 0.16);
    background: var(--paper);
    color: var(--paper-ink);
}

.bento-card.amber-card {
    border-color: var(--amber);
    background: var(--amber);
    color: #180f1a;
}

.bento-card h3 {
    max-width: 460px;
}

.bento-card p:last-child {
    margin-bottom: 0;
}

.bento-number {
    display: inline-block;
    margin-bottom: 38px;
    color: var(--amber);
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.09em;
    line-height: 1;
}

.paper .bento-number,
.amber-card .bento-number {
    color: currentColor;
}

.card-link {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid currentColor;
    color: var(--amber);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.paper .card-link,
.amber-card .card-link {
    color: currentColor;
}

.card-link::after {
    content: "\2192";
    font-size: 1.2rem;
}

.card-link:hover {
    color: var(--cyan);
}

.paper .card-link:hover,
.amber-card .card-link:hover {
    color: #651248;
}

.workflow-grid,
.method-grid,
.detail-grid,
.territory-grid,
.contact-grid,
.case-grid {
    display: grid;
    gap: 18px;
}

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

.workflow-card {
    padding: 30px;
    border-left: 3px solid var(--amber);
    background: var(--panel);
}

.workflow-card:nth-child(2) {
    border-left-color: var(--cyan);
}

.workflow-card:nth-child(3) {
    border-left-color: var(--magenta);
}

.workflow-card ul,
.check-list,
.plain-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.workflow-card li,
.check-list li,
.plain-list li {
    position: relative;
    padding: 9px 0 9px 23px;
    border-top: 1px solid var(--line-soft);
    color: var(--muted);
}

.workflow-card li::before,
.check-list li::before,
.plain-list li::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--amber);
}

.section-paper .check-list li,
.section-paper .plain-list li {
    border-top-color: rgba(28, 19, 34, 0.14);
    color: #4d4254;
}

.section-paper .check-list li::before,
.section-paper .plain-list li::before {
    background: #9d5a00;
}

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

.method-step {
    position: relative;
    padding: 35px 30px 34px;
    border: 1px solid rgba(28, 19, 34, 0.16);
    background: rgba(255, 255, 255, 0.33);
    counter-increment: method;
}

.method-step::before {
    content: "0" counter(method);
    display: block;
    margin-bottom: 42px;
    color: #8e5100;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 2.9rem;
    line-height: 1;
}

.ownership-band {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
    padding: 50px;
    border: 1px solid var(--amber);
    background: linear-gradient(110deg, rgba(246, 166, 35, 0.11), rgba(246, 166, 35, 0.025));
}

.ownership-band h2 {
    margin-bottom: 0;
}

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

.ownership-points div {
    padding: 16px;
    border: 1px solid var(--line-soft);
    background: rgba(8, 0, 15, 0.5);
}

.ownership-points strong {
    display: block;
    color: var(--amber);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ownership-points span {
    color: var(--muted);
    font-size: 0.86rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding-block: 92px 82px;
    border-bottom: 1px solid var(--line-soft);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -160px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(40, 223, 232, 0.18);
    transform: rotate(45deg);
    pointer-events: none;
}

.page-hero h1 {
    max-width: 980px;
    font-size: clamp(3.5rem, 7.2vw, 6.8rem);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px;
    color: var(--muted-2);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--amber);
    text-decoration: none;
}

.hero-note {
    max-width: 860px;
    margin-top: 30px;
    padding: 18px 22px;
    border-left: 3px solid var(--cyan);
    background: rgba(40, 223, 232, 0.06);
    color: var(--muted);
}

.detail-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 64px;
    align-items: start;
}

.sticky-card {
    position: sticky;
    top: 118px;
    padding: 30px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.sticky-card h2 {
    font-size: 2.3rem;
}

.service-stack {
    display: grid;
    gap: 14px;
}

.service-row {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid var(--line-soft);
}

.service-row:first-child {
    border-top: 0;
}

.service-index {
    color: var(--amber);
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.service-row p {
    margin-bottom: 0;
    color: var(--muted);
}

.case-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.status-card {
    padding: 28px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 5px 10px;
    border: 1px solid rgba(102, 215, 170, 0.46);
    color: var(--success);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-pill::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.disclosure {
    padding: 22px;
    border: 1px solid rgba(40, 223, 232, 0.34);
    background: rgba(40, 223, 232, 0.055);
}

.disclosure strong {
    color: var(--cyan);
}

.demo-shell {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.demo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line-soft);
    background: #0c0215;
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.demo-lights {
    display: flex;
    gap: 8px;
}

.demo-lights i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--amber);
}

.demo-lights i:nth-child(2) {
    background: var(--magenta);
}

.demo-lights i:nth-child(3) {
    background: var(--cyan);
}

.demo-body {
    padding: 30px;
}

.demo-progress {
    height: 4px;
    margin-bottom: 26px;
    background: rgba(255, 255, 255, 0.09);
}

.demo-progress span {
    display: block;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, var(--amber), var(--magenta), var(--cyan));
    transition: width 180ms ease;
}

.demo-question {
    min-height: 94px;
    margin: 0;
    padding: 0;
    border: 0;
}

.demo-question legend {
    width: 100%;
    margin-bottom: 16px;
    color: var(--white);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
}

.demo-question select,
.demo-question textarea,
.demo-question input[type="text"] {
    width: 100%;
    min-height: 52px;
    padding: 11px 13px;
    border: 1px solid var(--line-soft);
    border-radius: 0;
    background: #0e0417;
    color: var(--white);
}

.demo-question textarea {
    min-height: 132px;
    resize: vertical;
}

.demo-question select:focus,
.demo-question textarea:focus,
.demo-question input[type="text"]:focus {
    border-color: var(--cyan);
    outline: 2px solid rgba(40, 223, 232, 0.22);
}

.demo-question-meta {
    margin-bottom: 8px;
    color: var(--muted-2);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.demo-question p {
    margin-bottom: 8px;
    color: var(--amber);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.demo-question h3 {
    font-size: 1.55rem;
}

.demo-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.demo-option {
    min-height: 52px;
    padding: 10px 14px;
    border: 1px solid var(--line-soft);
    background: #0e0417;
    color: var(--muted);
    text-align: left;
    cursor: pointer;
}

.demo-option:hover,
.demo-option[aria-pressed="true"] {
    border-color: var(--amber);
    color: var(--white);
}

.demo-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
}

.demo-voice {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(40, 223, 232, 0.3);
    background: transparent;
    color: var(--cyan);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.demo-voice[hidden] {
    display: none;
}

.demo-summary {
    display: none;
    padding: 22px;
    border-left: 3px solid var(--cyan);
    background: rgba(40, 223, 232, 0.05);
}

.demo-summary.is-visible {
    display: block;
}

.demo-summary dl {
    display: grid;
    grid-template-columns: minmax(120px, 0.35fr) 1fr;
    gap: 8px 18px;
}

.demo-summary dt {
    color: var(--muted-2);
}

.demo-summary dd {
    margin: 0;
    color: var(--white);
}

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

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

.faq-list summary {
    position: relative;
    padding: 22px 64px 22px 24px;
    color: var(--white);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 16px;
    right: 22px;
    color: var(--amber);
    font-size: 1.8rem;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "\2212";
}

.faq-answer {
    padding: 0 24px 23px;
    color: var(--muted);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.territory-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: 52px;
    align-items: center;
}

.territory-board {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(rgba(40, 223, 232, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 223, 232, 0.07) 1px, transparent 1px),
        #0b0213;
    background-size: 42px 42px;
}

.territory-board::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(246, 166, 35, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.territory-board::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 260px;
    border: 1px dashed rgba(235, 79, 167, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.map-point {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.map-point::before {
    content: "";
    width: 9px;
    height: 9px;
    border: 2px solid var(--cyan);
    background: var(--void);
}

.map-point.primary {
    color: var(--white);
}

.map-point.primary::before {
    width: 13px;
    height: 13px;
    border-color: var(--amber);
    background: var(--amber);
    box-shadow: 0 0 0 6px rgba(246, 166, 35, 0.12);
}

.point-cos { top: 47%; left: 42%; }
.point-monument { top: 22%; left: 47%; }
.point-fountain { top: 68%; left: 45%; }
.point-woodland { top: 40%; left: 12%; }
.point-pueblo { top: 82%; left: 54%; }
.point-castle { top: 9%; left: 65%; }

.contact-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
    gap: 62px;
    align-items: start;
}

.contact-details {
    padding: 30px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.contact-details a {
    color: var(--amber);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 32px;
    border: 1px solid var(--line-soft);
    background: var(--paper);
    color: var(--paper-ink);
    box-shadow: var(--shadow);
}

.field {
    display: grid;
    gap: 7px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label,
.field legend {
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(28, 19, 34, 0.32);
    border-radius: 0;
    background: #fffdfa;
    color: var(--paper-ink);
}

.field input,
.field select {
    padding: 10px 13px;
}

.field textarea {
    min-height: 150px;
    padding: 12px 13px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #7c4c00;
    outline: 3px solid rgba(246, 166, 35, 0.24);
}

.checkbox-row {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 0.86rem;
}

.checkbox-row input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.form-note {
    margin-bottom: 0;
    color: #65596c;
    font-size: 0.82rem;
}

.form-alert {
    grid-column: 1 / -1;
    padding: 14px 16px;
    border: 1px solid currentColor;
    background: rgba(255, 255, 255, 0.35);
    font-weight: 600;
}

.form-alert.success {
    color: #176b4d;
}

.form-alert.error {
    color: #9b2525;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line-soft);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--panel);
}

th,
td {
    padding: 18px;
    border-bottom: 1px solid var(--line-soft);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--amber);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

td {
    color: var(--muted);
}

.closing-cta {
    padding-block: 78px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(246, 166, 35, 0.08);
}

.closing-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
    align-items: center;
}

.closing-grid h2 {
    max-width: 780px;
    margin-bottom: 0;
}

.closing-action {
    display: grid;
    justify-items: start;
}

.closing-action p {
    color: var(--muted);
}

.site-footer {
    padding-block: 62px 28px;
    background: #050009;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 0.8fr);
    gap: 42px;
}

.footer-brand p,
.site-footer p {
    max-width: 380px;
    margin-top: 22px;
    color: var(--muted-2);
    font-size: 0.85rem;
}

.footer-heading {
    margin-bottom: 16px;
    color: var(--amber);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 8px;
}

.footer-links a,
.footer-phone {
    color: var(--muted);
    font-size: 0.86rem;
    text-decoration: none;
}

.footer-links a:hover,
.footer-phone:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 24px;
    margin-top: 52px;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    color: var(--muted-2);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-bottom a {
    color: var(--amber);
    text-decoration: none;
}

@media (max-width: 1120px) {
    .primary-nav {
        gap: 14px;
        font-size: 0.75rem;
    }

    .primary-nav .button {
        display: none;
    }

    .hero-grid {
        gap: 42px;
    }

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

@media (max-width: 900px) {
    body {
        font-size: 17px;
    }

    .shell {
        width: min(calc(100% - 36px), var(--shell));
    }

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

    .menu-toggle {
        display: flex;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 18px 20px;
        border-bottom: 1px solid var(--line);
        background: #090010;
        box-shadow: 0 24px 30px rgba(0, 0, 0, 0.35);
    }

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

    .primary-nav > a:not(.button) {
        padding: 14px 6px;
        border-bottom: 1px solid var(--line-soft);
        font-size: 0.88rem;
    }

    .primary-nav > a:not(.button)::after {
        display: none;
    }

    .primary-nav .button,
    .nav-secondary {
        display: inline-flex;
    }

    .primary-nav .button {
        margin-top: 16px;
    }

    .hero-grid,
    .section-head,
    .detail-grid,
    .territory-grid,
    .contact-grid,
    .case-grid,
    .ownership-band,
    .closing-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
        padding-block: 72px;
    }

    .brand-panel {
        max-width: 520px;
    }

    .section-head {
        gap: 10px;
    }

    .bento-card,
    .bento-card.wide {
        grid-column: span 6;
    }

    .workflow-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }

    .ownership-band {
        gap: 34px;
        padding: 34px;
    }

    .sticky-card {
        position: static;
    }
}

@media (max-width: 620px) {
    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .signal-inner span:nth-of-type(2),
    .signal-inner span:nth-of-type(3),
    .signal-inner span:nth-of-type(4),
    .signal-inner span:nth-of-type(5) {
        display: none;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .brand-copy strong {
        font-size: 1.32rem;
    }

    .brand-copy small {
        font-size: 0.56rem;
    }

    h1 {
        font-size: clamp(3.15rem, 17vw, 4.9rem);
    }

    .page-hero h1 {
        font-size: clamp(3rem, 15vw, 4.7rem);
    }

    .section,
    .page-hero {
        padding-block: 72px;
    }

    .bento-grid {
        gap: 12px;
    }

    .bento-card,
    .bento-card.wide,
    .bento-card.full {
        grid-column: 1 / -1;
        min-height: 250px;
        padding: 25px;
    }

    .bento-card.tall {
        min-height: 330px;
    }

    .card-link {
        right: 25px;
        bottom: 24px;
        left: 25px;
    }

    .ownership-points,
    .demo-options,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 23px;
    }

    .field-full {
        grid-column: auto;
    }

    .territory-board {
        min-height: 380px;
    }

    .point-castle { left: 57%; }
    .point-monument { left: 40%; }
    .point-cos { left: 31%; }
    .point-fountain { left: 35%; }
    .point-woodland { left: 5%; }
    .point-pueblo { left: 45%; }

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

    .footer-bottom {
        flex-direction: column;
    }
}

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

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

@media print {
    .signal-bar,
    .site-header,
    .closing-cta,
    .menu-toggle,
    .button,
    .demo-shell {
        display: none !important;
    }

    body,
    .section,
    .page-hero,
    .site-footer {
        background: #fff !important;
        color: #111 !important;
    }

    .shell {
        width: 100%;
    }
}
