:root {
    --ink: #0b1f1a;
    --ink-soft: #263f39;
    --muted: #52645d;
    --paper: #f8f7f2;
    --white: #ffffff;
    --line: #c9d1cd;
    --line-strong: #65756e;
    --action: #2d6d4e;
    --action-hover: #22563d;
    --success: #245f43;
    --success-surface: #eaf5ee;
    --warning: #7a5014;
    --warning-surface: #fff1db;
    --danger: #a63a28;
    --danger-surface: #fbedeb;
    --blue: #245ea8;
    --blue-surface: #edf4f7;
    --warm-surface: #f7f0df;
    --focus-light: #005fcc;
    --focus-dark: #9bcbff;
    --shadow: 0 24px 70px rgba(3, 18, 14, 0.18);
    --radius: 8px;
    --max: 1180px;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;
    --sans: "Segoe UI", Arial, Helvetica, sans-serif;
    --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body,
h1,
h2,
h3,
p,
figure,
dl,
dd,
ol,
ul {
    margin: 0;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    min-width: 0;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button,
summary {
    cursor: pointer;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

[hidden] {
    display: none !important;
}

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

.hero :focus-visible,
.early-access :focus-visible,
.site-footer :focus-visible {
    outline-color: var(--focus-dark);
}

.skip-link {
    background: var(--white);
    border: 2px solid var(--ink);
    color: var(--ink);
    font-weight: 700;
    left: 1rem;
    padding: 0.7rem 1rem;
    position: fixed;
    top: 1rem;
    transform: translateY(-180%);
    z-index: 1000;
}

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

.header-inner,
.hero-inner,
.proof-strip-inner,
.section-inner,
.footer-inner {
    margin: 0 auto;
    width: min(calc(100% - 3rem), var(--max));
}

.site-header {
    background: rgba(248, 247, 242, 0.96);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    align-items: center;
    display: inline-flex;
    gap: 0.7rem;
    min-height: 44px;
}

.brand-mark {
    display: grid;
    gap: 3px;
    grid-template-columns: repeat(3, 4px);
    height: 22px;
    transform: skewY(-18deg);
    width: 18px;
}

.brand-mark span {
    background: var(--ink);
    display: block;
}

.brand-mark span:nth-child(1) { height: 22px; }
.brand-mark span:nth-child(2) { height: 15px; }
.brand-mark span:nth-child(3) { height: 9px; }

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

.brand-text strong {
    font-size: 0.97rem;
}

.brand-text small {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.68rem;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 1.4rem;
}

.site-nav a {
    align-items: center;
    display: inline-flex;
    font-size: 0.92rem;
    min-height: 44px;
}

.site-nav a:not(.nav-cta) {
    color: var(--ink-soft);
}

.site-nav a:not(.nav-cta):hover {
    color: var(--action);
}

.nav-cta,
.button {
    align-items: center;
    border: 2px solid transparent;
    border-radius: 6px;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    min-height: 48px;
    padding: 0.7rem 1.05rem;
    text-align: center;
}

.nav-cta {
    background: var(--ink);
    color: var(--white);
    padding-inline: 1rem;
}

.nav-cta:hover,
.button-primary:hover {
    background: var(--action-hover);
}

.menu-toggle {
    align-items: center;
    background: transparent;
    border: 2px solid var(--ink);
    border-radius: 6px;
    color: var(--ink);
    gap: 0.65rem;
    min-height: 44px;
    padding: 0.55rem 0.75rem;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
    background: currentColor;
    content: "";
    display: block;
    height: 2px;
    width: 18px;
}

.menu-toggle i {
    position: relative;
}

.menu-toggle i::before {
    left: 0;
    position: absolute;
    top: -6px;
}

.menu-toggle i::after {
    left: 0;
    position: absolute;
    top: 6px;
}

.menu-toggle[aria-expanded="true"] i {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::after {
    top: 0;
    transform: rotate(-45deg);
}

.hero {
    background: var(--ink);
    color: var(--white);
    min-height: 680px;
    position: relative;
}

.hero-inner {
    min-height: 680px;
    padding: 5rem 0 4.5rem;
    position: relative;
}

.hero-copy {
    max-width: 500px;
    position: relative;
    z-index: 3;
}

.hero-label,
.section-kicker,
.preview-label,
.audience-label {
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-label {
    color: #b9d9c7;
}

.hero h1 {
    font-size: 5rem;
    letter-spacing: 0;
    line-height: 0.98;
    margin-top: 1rem;
    max-width: 500px;
}

.hero-intro {
    color: #d7dfdc;
    font-size: 1.25rem;
    line-height: 1.55;
    margin-top: 1.5rem;
    max-width: 490px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.button-primary {
    background: var(--action);
    color: var(--white);
}

.button-secondary {
    background: transparent;
    border-color: #9bada6;
    color: var(--white);
}

.button-secondary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--ink);
}

.button-outline {
    background: var(--white);
    border-color: var(--ink);
    color: var(--ink);
}

.button-outline:hover {
    background: var(--ink);
    color: var(--white);
}

.hero-note {
    color: #b8c6c1;
    font-size: 0.94rem;
    margin-top: 1.2rem;
}

.product-scene {
    background: #f5f7f5;
    border: 1px solid #80918a;
    border-radius: var(--radius);
    bottom: 3rem;
    box-shadow: var(--shadow);
    color: var(--ink);
    min-height: 500px;
    overflow: visible;
    padding: 1.15rem;
    position: absolute;
    right: 0;
    width: 54%;
    z-index: 2;
}

.product-scene figcaption,
.report-sheet figcaption {
    background: var(--warm-surface);
    border: 1px solid #d6c7a2;
    border-radius: 4px;
    color: #624b16;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    left: 1rem;
    padding: 0.25rem 0.5rem;
    position: absolute;
    top: -1rem;
    text-transform: uppercase;
}

.scene-toolbar {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0.75rem;
    grid-template-columns: auto 1fr auto;
    padding-bottom: 0.9rem;
}

.scene-toolbar div {
    display: grid;
    line-height: 1.3;
}

.scene-toolbar small,
.scene-row small {
    color: var(--muted);
}

.scene-brand {
    align-items: center;
    background: var(--ink);
    border-radius: 5px;
    color: var(--white);
    display: inline-flex;
    font-weight: 800;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.scene-action {
    background: var(--action);
    border-radius: 5px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.55rem 0.7rem;
}

.scene-summary {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
    width: calc(100% - 116px);
}

.scene-summary div {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    display: grid;
    padding: 0.7rem;
}

.scene-summary span {
    color: var(--muted);
    font-size: 0.73rem;
}

.scene-summary strong {
    font-size: 1.35rem;
}

.scene-summary .summary-alert {
    background: var(--danger-surface);
    border-color: #dba99f;
}

.scene-table {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    margin-top: 1rem;
    width: calc(100% - 104px);
}

.scene-row {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    font-size: 0.78rem;
    gap: 0.7rem;
    grid-template-columns: minmax(150px, 1.4fr) minmax(70px, 0.6fr) minmax(92px, 0.8fr);
    padding: 0.7rem;
}

.scene-row:last-child {
    border-bottom: 0;
}

.scene-row > span:first-child {
    display: grid;
}

.scene-head {
    background: #eef2ef;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.status {
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.69rem;
    font-style: normal;
    font-weight: 700;
    justify-content: center;
    line-height: 1.25;
    padding: 0.35rem 0.55rem;
    width: max-content;
}

.status-due {
    background: var(--warning-surface);
    color: var(--warning);
}

.status-overdue {
    background: var(--danger-surface);
    color: var(--danger);
}

.status-on-track {
    background: var(--success-surface);
    color: var(--success);
}

.scene-mobile {
    background: var(--white);
    border: 6px solid var(--ink);
    border-radius: 20px;
    bottom: -2rem;
    box-shadow: 0 18px 40px rgba(3, 18, 14, 0.24);
    display: grid;
    font-size: 0.75rem;
    gap: 0.45rem;
    padding: 1rem 0.7rem;
    position: absolute;
    right: -1.5rem;
    width: 190px;
}

.phone-top {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    font-size: 0.66rem;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    padding-bottom: 0.55rem;
}

.scene-mobile > small {
    color: var(--muted);
}

.phone-check {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 5px;
    display: flex;
    gap: 0.45rem;
    line-height: 1.25;
    padding: 0.55rem;
}

.phone-check i {
    border: 2px solid var(--line-strong);
    border-radius: 50%;
    flex: 0 0 auto;
    height: 13px;
    width: 13px;
}

.phone-check.checked i {
    background: var(--success);
    border-color: var(--success);
}

.phone-button {
    background: var(--action);
    border-radius: 5px;
    color: var(--white);
    font-weight: 700;
    margin-top: 0.3rem;
    padding: 0.55rem;
    text-align: center;
}

.proof-strip {
    background: var(--warm-surface);
    border-bottom: 1px solid #ded1b5;
}

.proof-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-strip span {
    align-items: center;
    border-left: 1px solid #ded1b5;
    display: flex;
    font-weight: 700;
    justify-content: center;
    min-height: 78px;
    padding: 1rem;
    text-align: center;
}

.proof-strip span:last-child {
    border-right: 1px solid #ded1b5;
}

.section {
    padding: clamp(4.5rem, 7vw, 6rem) 0;
}

.section-kicker {
    color: var(--action);
}

.section-intro {
    max-width: 720px;
}

.section-intro.centered {
    margin-inline: auto;
    text-align: center;
}

.section-intro h2,
.guarantee h2,
.report-copy h2,
.early-copy h2 {
    font-size: 3.4rem;
    letter-spacing: 0;
    line-height: 1.05;
    margin-top: 0.7rem;
}

.section-intro > p:last-child,
.guarantee-copy > p,
.report-copy > p,
.early-copy > p {
    color: var(--muted);
    font-size: 1.08rem;
    margin-top: 1.2rem;
    max-width: 650px;
}

.centered > p:last-child {
    margin-inline: auto;
}

.problem-layout {
    align-items: start;
    display: grid;
    gap: clamp(2.5rem, 7vw, 6rem);
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.9fr);
}

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

.outcome-list article {
    align-items: start;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 1rem;
    grid-template-columns: auto 1fr;
    padding: 1.35rem 0;
}

.outcome-list article > span {
    align-items: center;
    background: var(--blue-surface);
    border: 1px solid #b8ccd8;
    border-radius: 50%;
    color: var(--blue);
    display: inline-flex;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.outcome-list h3,
.workflow-list h3,
.preview-card h3,
.audience-grid h3,
.price-card h3 {
    font-size: 1.25rem;
    line-height: 1.2;
}

.outcome-list p,
.workflow-list p,
.preview-card > p:not(.preview-label),
.audience-grid article > p:not(.audience-label),
.price-card > p:not(.price):not(.price-badge) {
    color: var(--muted);
    margin-top: 0.45rem;
}

.workflow {
    background: var(--blue-surface);
    border-block: 1px solid #cfdee5;
}

.workflow-list {
    counter-reset: workflow;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 3rem;
}

.workflow-list li {
    border-left: 1px solid #b8ccd8;
    padding: 0 1.4rem;
}

.workflow-list li:last-child {
    border-right: 1px solid #b8ccd8;
}

.workflow-list li > span {
    align-items: center;
    background: var(--white);
    border: 2px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    display: inline-flex;
    font-family: var(--mono);
    font-weight: 700;
    height: 42px;
    justify-content: center;
    margin-bottom: 1rem;
    width: 42px;
}

.guarantee {
    background: var(--ink);
    color: var(--white);
}

.guarantee-layout {
    align-items: center;
    display: grid;
    gap: clamp(3rem, 8vw, 7rem);
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
}

.guarantee .section-kicker,
.early-access .section-kicker {
    color: #a9d5bd;
}

.guarantee-copy > p,
.early-copy > p {
    color: #c9d4d0;
}

.tick-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.tick-list li {
    align-items: center;
    display: flex;
    gap: 0.75rem;
}

.tick-list li::before {
    align-items: center;
    background: var(--success-surface);
    border-radius: 50%;
    color: var(--success);
    content: "OK";
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 800;
    font-size: 0.55rem;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.qualification {
    border-left: 3px solid #d5aa4e;
    font-size: 0.9rem !important;
    padding-left: 0.9rem;
}

.completion-panel {
    background: var(--white);
    border-radius: var(--radius);
    color: var(--ink);
    padding: 1.5rem;
}

.completion-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.completion-head span {
    font-family: var(--mono);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.progress-track {
    background: #dfe6e2;
    border-radius: 999px;
    height: 8px;
    margin: 1rem 0 1.25rem;
    overflow: hidden;
}

.progress-track span {
    background: var(--success);
    display: block;
    height: 100%;
    width: 87.5%;
}

.completion-panel ul {
    display: grid;
    gap: 0.65rem;
}

.completion-panel li {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    display: grid;
    font-size: 0.9rem;
    gap: 0.55rem;
    grid-template-columns: auto 1fr auto;
    padding: 0.75rem;
}

.completion-panel li > span {
    border: 2px solid var(--line-strong);
    border-radius: 50%;
    height: 16px;
    width: 16px;
}

.completion-panel li.complete > span {
    background: var(--success);
    border-color: var(--success);
}

.completion-panel li.complete b {
    color: var(--success);
}

.completion-panel li.missing {
    background: var(--warning-surface);
    border-color: #d6b578;
}

.completion-panel li.missing b {
    color: var(--warning);
}

.completion-button {
    background: #bac5c0;
    border-radius: 6px;
    color: #41544c;
    font-weight: 700;
    margin-top: 1rem;
    padding: 0.7rem;
    text-align: center;
}

.completion-panel > small {
    color: var(--muted);
    display: block;
    margin-top: 0.6rem;
    text-align: center;
}

.product-preview {
    background: var(--paper);
}

.preview-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2.5rem;
}

.preview-card,
.price-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.preview-card:nth-child(1) {
    background: var(--blue-surface);
}

.preview-card:nth-child(2) {
    background: var(--warm-surface);
}

.preview-card:nth-child(3) {
    background: var(--success-surface);
}

.preview-label,
.audience-label {
    color: var(--muted);
}

.preview-card h3 {
    font-size: 1.45rem;
    margin-top: 0.5rem;
}

.mini-table {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    display: grid;
    margin-top: 1.4rem;
}

.mini-table > span {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    font-size: 0.82rem;
    gap: 0.7rem;
    justify-content: space-between;
    padding: 0.75rem;
}

.mini-table > span:last-child {
    border-bottom: 0;
}

.check-ui {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.4rem;
    padding: 0.25rem;
}

.check-ui span {
    border-radius: 4px;
    padding: 0.6rem;
    text-align: center;
}

.check-ui .selected {
    background: var(--action);
    color: var(--white);
    font-weight: 700;
}

.check-question {
    color: var(--ink-soft) !important;
    font-weight: 700;
    margin-top: 1rem !important;
}

.photo-action {
    align-items: center;
    border: 2px dashed #a58d56;
    border-radius: 6px;
    color: #624b16;
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.7rem;
}

.photo-action span {
    font-size: 1.4rem;
    font-weight: 700;
}

.report-card dl {
    display: grid;
    gap: 0.55rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.4rem;
}

.report-card dl div {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    display: grid;
    padding: 0.65rem;
}

.report-card dt {
    color: var(--muted);
    font-size: 0.7rem;
}

.report-card dd {
    font-size: 0.82rem;
    font-weight: 700;
}

.report-ready {
    background: var(--success);
    border-radius: 6px;
    color: var(--white);
    font-weight: 700;
    margin-top: 1rem;
    padding: 0.8rem;
    text-align: center;
}

.report {
    background: var(--blue-surface);
    border-block: 1px solid #cfdee5;
}

.report-layout {
    align-items: center;
    display: grid;
    gap: clamp(2.5rem, 7vw, 6rem);
    grid-template-columns: minmax(0, 0.65fr) minmax(500px, 1fr);
}

.report-points {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.report-points li {
    border-bottom: 1px solid #b8ccd8;
    font-weight: 700;
    padding-bottom: 0.75rem;
}

.report-sheet {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(36, 94, 168, 0.14);
    padding: clamp(1rem, 3vw, 1.75rem);
    position: relative;
}

.report-sheet-head {
    border-bottom: 2px solid var(--ink);
    display: grid;
    gap: 0.2rem;
    padding-bottom: 0.8rem;
}

.report-sheet-head span {
    color: var(--action);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.report-sheet-head b {
    font-size: 1.15rem;
}

.report-sheet-head small,
.report-address small,
.report-meta dt {
    color: var(--muted);
}

.report-address {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem 0;
}

.report-address > div {
    display: grid;
}

.record-complete {
    background: var(--success-surface);
    border: 1px solid #a9ccb8;
    border-radius: 999px;
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.6rem;
}

.report-meta {
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1rem;
}

.report-meta div {
    border-left: 2px solid var(--line);
    display: grid;
    padding-left: 0.6rem;
}

.report-meta dt {
    font-size: 0.68rem;
}

.report-meta dd {
    font-size: 0.78rem;
    font-weight: 700;
}

.evidence-strip {
    aspect-ratio: 3 / 1;
    border-radius: 4px;
    object-fit: cover;
    width: 100%;
}

.report-footer-row {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0.8rem;
}

.report-footer-row span {
    background: #f2f4f2;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 0.7rem;
    padding: 0.55rem;
    text-align: center;
}

.audience-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2.5rem;
}

.audience-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.audience-grid article:first-child {
    background: var(--warm-surface);
}

.audience-grid article:last-child {
    background: var(--blue-surface);
}

.audience-grid h3 {
    font-size: 1.65rem;
    margin-top: 0.65rem;
}

.audience-grid ul {
    display: grid;
    gap: 0.55rem;
    margin-top: 1.2rem;
}

.audience-grid li {
    font-weight: 700;
    padding-left: 1.25rem;
    position: relative;
}

.audience-grid li::before {
    background: var(--action);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: 0.6rem;
    width: 7px;
}

.pricing {
    background: var(--white);
}

.pricing-grid {
    align-items: stretch;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2.5rem;
}

.price-card {
    display: flex;
    flex-direction: column;
    min-height: 480px;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--action);
    padding: calc(1.5rem - 1px);
}

.price-badge {
    background: var(--action);
    border-radius: 4px;
    color: var(--white) !important;
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 700;
    margin: -2.15rem 0 1rem;
    padding: 0.35rem 0.55rem;
    text-align: center;
    text-transform: uppercase;
}

.price {
    align-items: flex-start;
    display: flex;
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 1rem;
}

.price > span {
    font-size: 1.1rem;
    margin-top: 0.45rem;
}

.price small {
    align-self: flex-end;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0.25rem;
}

.price-card ul {
    display: grid;
    gap: 0.7rem;
    margin: 1.4rem 0 1.5rem;
}

.price-card li {
    color: var(--ink-soft);
    padding-left: 1.15rem;
    position: relative;
}

.price-card li::before {
    background: var(--success);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: 0.6rem;
    width: 7px;
}

.price-card .button {
    margin-top: auto;
    width: 100%;
}

.pricing-footnote {
    color: var(--muted);
    margin: 1.25rem auto 0;
    max-width: 760px;
    text-align: center;
}

.early-access {
    background: var(--ink);
    color: var(--white);
    padding: clamp(4.5rem, 7vw, 6rem) 0;
}

.early-layout {
    align-items: start;
    display: grid;
    gap: clamp(2.5rem, 8vw, 7rem);
    grid-template-columns: minmax(0, 0.75fr) minmax(420px, 0.85fr);
}

.contact-expectation {
    border-top: 1px solid #4d625a;
    display: grid;
    gap: 0.4rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
}

.contact-expectation span {
    color: #c9d4d0;
}

.early-form {
    background: var(--white);
    border-radius: var(--radius);
    color: var(--ink);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.field-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.early-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.early-form input,
.early-form select,
.early-form textarea {
    background: var(--white);
    border: 2px solid var(--line-strong);
    border-radius: 6px;
    color: var(--ink);
    display: block;
    margin-top: 0.45rem;
    min-height: 48px;
    padding: 0.7rem 0.75rem;
    width: 100%;
}

.early-form textarea {
    min-height: 120px;
    resize: vertical;
}

.early-form input:focus,
.early-form select:focus,
.early-form textarea:focus {
    border-color: var(--focus-light);
    outline: 3px solid var(--focus-light);
    outline-offset: 2px;
}

.form-submit {
    border: 0;
    width: 100%;
}

.form-note {
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 0.8rem;
}

.form-fallback {
    color: var(--slate);
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 0.75rem 0 0;
    text-align: center;
}

.form-fallback a {
    font-weight: 700;
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-note.is-info {
    background: var(--blue-surface);
    border-left: 3px solid var(--blue);
    color: #173f72;
    padding: 0.7rem;
}

.form-note.is-error {
    background: var(--danger-surface);
    border-left: 3px solid var(--danger);
    color: var(--danger);
    font-weight: 700;
    padding: 0.7rem;
}

.faq-layout {
    align-items: start;
    display: grid;
    gap: clamp(2.5rem, 8vw, 7rem);
    grid-template-columns: minmax(0, 0.55fr) minmax(420px, 0.9fr);
}

.faq .section-intro a,
.legal-page a {
    color: var(--action);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

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

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

.faq-list summary {
    font-size: 1.08rem;
    font-weight: 700;
    min-height: 44px;
    padding: 0.45rem 2rem 0.45rem 0;
    position: relative;
}

.faq-list summary::marker {
    color: var(--action);
}

.faq-list p {
    color: var(--muted);
    max-width: 760px;
    padding: 0.25rem 0 0.7rem;
}

.site-footer {
    background: #071713;
    color: var(--white);
}

.footer-inner {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(240px, 1fr) minmax(220px, auto) auto;
    padding: 2.5rem 0 3rem;
}

.site-footer .brand-mark span {
    background: var(--white);
}

.site-footer .brand-text small,
.site-footer p,
.site-footer small,
.footer-contact span {
    color: #b7c4bf;
}

.site-footer p {
    margin-top: 0.7rem;
    max-width: 380px;
}

.footer-contact {
    display: grid;
    font-size: 0.9rem;
}

.footer-contact a {
    font-weight: 700;
    margin-top: 0.2rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    min-height: 44px;
}

.footer-legal {
    border-top: 1px solid #3b4e47;
    grid-column: 1 / -1;
    padding-top: 1.25rem;
}

.legal-page {
    margin: 0 auto;
    max-width: 900px;
    min-height: 65vh;
    padding: clamp(4rem, 8vw, 6rem) 1.5rem;
}

.legal-page h1 {
    font-size: 4.25rem;
    letter-spacing: 0;
    line-height: 1.02;
    margin-top: 0.75rem;
}

.legal-page h2 {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-top: 2rem;
}

.legal-page p,
.legal-page li {
    color: var(--ink-soft);
    font-size: 1.04rem;
    margin-top: 0.8rem;
}

.legal-page ul {
    display: grid;
    gap: 0.4rem;
    list-style: disc;
    margin: 0.8rem 0 0 1.3rem;
}

.legal-updated {
    color: var(--muted) !important;
    font-size: 0.9rem !important;
}

@media (max-width: 1080px) {
    .hero h1 {
        font-size: 4.25rem;
    }

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

    .product-scene {
        width: 50%;
    }

    .scene-mobile {
        right: -0.75rem;
        width: 170px;
    }

    .scene-summary,
    .scene-table {
        width: calc(100% - 70px);
    }

    .report-layout {
        grid-template-columns: minmax(0, 0.55fr) minmax(430px, 1fr);
    }
}

@media (max-width: 900px) {
    .js .site-header {
        position: sticky;
    }

    .js .site-nav {
        align-content: start;
        background: var(--ink);
        color: var(--white);
        display: grid;
        gap: 0.3rem;
        left: 0;
        height: calc(100dvh - 72px);
        max-height: calc(100dvh - 72px);
        overflow-y: auto;
        padding: 1.2rem max(1.5rem, calc((100vw - var(--max)) / 2));
        position: fixed;
        right: 0;
        top: 72px;
    }

    .js .site-nav a {
        border-bottom: 1px solid #40544c;
        color: var(--white);
        font-size: 1.15rem;
        min-height: 52px;
    }

    .js .site-nav .nav-cta {
        background: var(--white);
        border: 0;
        color: var(--ink);
        justify-content: center;
        margin-top: 0.8rem;
    }

    .no-js .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 0.7rem;
    }

    .no-js .site-nav {
        flex-wrap: wrap;
        gap: 0.4rem 1rem;
    }

    .hero,
    .hero-inner {
        min-height: auto;
    }

    .hero-inner {
        padding: 3rem 0 2rem;
    }

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

    .hero h1 {
        font-size: 3.25rem;
    }

    .hero-intro {
        font-size: 1.08rem;
    }

    .section-intro h2,
    .guarantee h2,
    .report-copy h2,
    .early-copy h2 {
        font-size: 3rem;
    }

    .product-scene {
        bottom: auto;
        height: 190px;
        margin-top: 1.5rem;
        min-height: 190px;
        overflow: hidden;
        position: relative;
        right: auto;
        width: 100%;
    }

    .scene-table,
    .scene-mobile {
        display: none;
    }

    .scene-summary {
        width: 100%;
    }

    .problem-layout,
    .guarantee-layout,
    .report-layout,
    .early-layout,
    .faq-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .workflow-list {
        gap: 1.5rem 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-list li:nth-child(3) {
        border-top: 1px solid #b8ccd8;
        padding-top: 1.5rem;
    }

    .workflow-list li:last-child {
        border-right: 0;
        border-top: 1px solid #b8ccd8;
        padding-top: 1.5rem;
    }

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

    .price-card {
        min-height: auto;
    }

    .price-badge {
        margin-top: -2.15rem;
    }

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

@media (max-width: 680px) {
    .header-inner,
    .hero-inner,
    .proof-strip-inner,
    .section-inner,
    .footer-inner {
        width: min(calc(100% - 2rem), var(--max));
    }

    .hero-inner {
        padding: 2.75rem 0 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-top: 0.8rem;
    }

    .hero-intro {
        font-size: 1.02rem;
        line-height: 1.5;
        margin-top: 1rem;
    }

    .hero-actions {
        display: grid;
        gap: 0.5rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 1.25rem;
        width: 100%;
    }

    .hero-actions .button {
        font-size: 0.84rem;
        min-height: 52px;
        padding-inline: 0.5rem;
        width: auto;
    }

    .hero-note {
        display: none;
    }

    .product-scene {
        height: 170px;
        margin-top: 1.5rem;
        min-height: 170px;
        overflow: hidden;
        padding: 0.85rem;
        width: 100%;
    }

    .scene-toolbar {
        grid-template-columns: auto 1fr;
    }

    .scene-action {
        display: none;
    }

    .scene-summary {
        width: 100%;
    }

    .scene-summary div:nth-child(1) {
        display: none;
    }

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

    .scene-table,
    .scene-mobile {
        display: none;
    }

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

    .proof-strip span {
        border-bottom: 1px solid #ded1b5;
        min-height: 62px;
    }

    .section {
        padding: 4rem 0;
    }

    .section-intro h2,
    .guarantee h2,
    .report-copy h2,
    .early-copy h2 {
        font-size: 2.25rem;
    }

    .workflow-list,
    .audience-grid,
    .field-row {
        grid-template-columns: 1fr;
    }

    .workflow-list li,
    .workflow-list li:nth-child(3),
    .workflow-list li:last-child {
        border: 0;
        border-top: 1px solid #b8ccd8;
        padding: 1.25rem 0 0;
    }

    .workflow-list li:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .completion-head,
    .report-address {
        align-items: flex-start;
        flex-direction: column;
    }

    .completion-panel li {
        grid-template-columns: auto 1fr;
    }

    .completion-panel li b {
        grid-column: 2;
    }

    .report-card dl,
    .report-meta,
    .report-footer-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .report-sheet {
        padding: 1rem;
    }

    .evidence-strip {
        aspect-ratio: 16 / 9;
    }

    .report-footer-row span:last-child {
        grid-column: 1 / -1;
    }

    .legal-page h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 420px) {
    .brand-text small {
        display: none;
    }

    .menu-toggle span {
        display: none;
    }

    .hero-inner {
        padding: 2rem 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.15rem;
    }

    .hero-intro {
        font-size: 0.96rem;
        line-height: 1.45;
    }

    .hero-actions .button {
        font-size: 0.78rem;
        min-height: 48px;
    }

    .product-scene {
        height: 125px;
        margin-top: 1rem;
        min-height: 125px;
    }

    .product-scene figcaption {
        display: none;
    }

    .scene-summary {
        margin-top: 0.5rem;
    }

    .report-card dl,
    .report-meta,
    .report-footer-row {
        grid-template-columns: 1fr;
    }

    .report-footer-row span:last-child {
        grid-column: auto;
    }
}

@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 (forced-colors: active) {
    .status,
    .button,
    .nav-cta,
    .record-complete,
    .completion-button,
    .report-ready {
        border: 2px solid currentColor;
    }
}
