:root {
    --ink: #f6f6f7;
    --soft: #c9cdd3;
    --muted: #8f96a3;
    --bg: #050505;
    --panel: #0c0c0e;
    --panel-2: #111115;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.24);
    --red: #ff1238;
    --red-dark: #b60822;
    --green: #57ff74;
    --paper: #f7f7f4;
    --admin-ink: #18181a;
    --content: 1180px;
    --page-pad: clamp(22px, 5.2vw, 72px);
    --section-pad: clamp(82px, 12vw, 168px);
    color: var(--ink);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 18, 56, 0.13), transparent 28rem),
        radial-gradient(circle at 84% 22%, rgba(49, 95, 145, 0.14), transparent 28rem),
        var(--bg);
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button,
.button {
    min-height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
    cursor: pointer;
    line-height: 1;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

button:hover,
.button:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.46);
}

.button.small {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.88rem;
}

.button.primary,
.button.primary.light,
.header-cta {
    background: var(--red);
    color: #ffffff;
    border-color: var(--red);
    box-shadow: 0 16px 42px rgba(255, 18, 56, 0.2);
}

.button.ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--line-strong);
}

.site-header {
    width: min(var(--content), calc(100% - var(--page-pad) - var(--page-pad)));
    min-height: 78px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1000;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: #ffffff;
}

.brand {
    min-width: 0;
    position: relative;
    z-index: 1002;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.26);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
}

.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
}

.nav-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 760;
}

.nav-links a:hover {
    color: #ffffff;
}

.header-cta {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border-radius: 3px;
    font-size: 0.88rem;
    font-weight: 860;
}

.nav-toggle {
    display: none;
    width: 34px;
    min-height: 34px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.26);
    box-shadow: none;
    z-index: 1002;
}

.nav-toggle-icon {
    width: 22px;
    height: 22px;
    display: block;
    transform: scaleX(-1);
}

.nav-toggle-icon line {
    stroke: #ffffff;
    stroke-width: 2.8px;
    stroke-linecap: round;
    stroke-dasharray: 24;
    stroke-dashoffset: 0;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 300ms ease, stroke-dashoffset 400ms ease, opacity 300ms ease;
}

.nav-toggle-icon .top {
    transform: translateY(-6px);
}

.nav-toggle-icon .middle {
    transform: scaleX(1);
}

.nav-toggle-icon .bottom {
    transform: translateY(6px);
    stroke-dashoffset: 7px;
}

.nav-toggle:hover .bottom,
.nav-toggle[aria-expanded="true"] .bottom {
    stroke-dashoffset: 0;
}

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

.nav-toggle[aria-expanded="true"] .middle {
    opacity: 0;
    transform: scaleX(0.1);
}

.nav-toggle[aria-expanded="true"] .bottom {
    transform: rotate(-45deg);
}

.hero-section {
    min-height: 88svh;
    width: 100%;
    padding: clamp(142px, 18vh, 210px) max(var(--page-pad), calc((100vw - var(--content)) / 2)) clamp(44px, 7vh, 78px);
    display: grid;
    align-content: center;
    gap: clamp(64px, 9vh, 118px);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 43%, rgba(0, 0, 0, 0.26) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), #050505 96%),
        image-set(
            url("decentratrust-cyber-hero-optimized.jpg") type("image/jpeg"),
            url("decentratrust-cyber-hero.png") type("image/png")
        ) center / cover no-repeat;
}

.hero-copy {
    width: min(680px, 100%);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 780px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.2rem, 5.8vw, 5.35rem);
    line-height: 0.94;
    font-weight: 900;
}

.hero-copy p:not(.eyebrow) {
    max-width: 610px;
    margin: clamp(22px, 3vw, 34px) 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.75;
    font-family: Georgia, "Times New Roman", serif;
}

.hero-actions {
    margin-top: clamp(28px, 4vw, 44px);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-strip {
    width: min(var(--content), 100%);
    margin: 0;
    padding: 22px 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 34px;
    color: rgba(255, 255, 255, 0.55);
}

.trust-strip span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;
    font-weight: 760;
}

.trust-strip strong {
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 860;
    text-transform: uppercase;
}

.section,
.intro-panel,
.contact-section,
.site-footer,
.stats-band {
    width: min(var(--content), calc(100% - var(--page-pad) - var(--page-pad)));
    margin: 0 auto;
}

.intro-panel {
    min-height: auto;
    padding: clamp(82px, 10vw, 138px) 0;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: stretch;
}

.intro-panel h2 {
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
}

.intro-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--soft);
    line-height: 1.7;
}

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

.intro-blocks article {
    min-height: 160px;
    padding: clamp(20px, 2.4vw, 30px);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.intro-blocks h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1rem;
}

.intro-blocks p {
    margin: 0;
    color: var(--soft);
    font-size: 0.92rem;
    line-height: 1.55;
}

.section {
    padding: var(--section-pad) 0;
}

.section h2,
.contact-section h2,
.admin-shell h1 {
    margin: 0;
    max-width: 760px;
    color: #ffffff;
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: 0.98;
    font-weight: 900;
}

.section p,
.contact-section p,
.site-footer p {
    color: var(--soft);
    font-size: 1rem;
    line-height: 1.7;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
    gap: clamp(30px, 4.8vw, 64px);
    align-items: center;
}

.split-section h2 {
    max-width: 600px;
    font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.feature-grid {
    display: grid;
    gap: clamp(12px, 1.6vw, 18px);
}

.feature-card,
.case-card,
.market-list article,
.timeline article,
.qa-card,
.admin-card {
    border: 1px solid var(--line);
    background: transparent;
    color: #ffffff;
}

.feature-card {
    min-height: auto;
    padding: 0 0 clamp(13px, 1.6vw, 18px);
    position: relative;
    display: grid;
    align-content: start;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.feature-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.feature-card h3,
.case-card h3,
.market-list h3,
.timeline h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.feature-card p,
.case-card p,
.market-list p,
.timeline p,
.faq-list p {
    margin: 0;
    color: var(--soft);
    line-height: 1.6;
}

.access-band {
    width: 100%;
    max-width: none;
    padding: var(--section-pad) max(var(--page-pad), calc((100vw - var(--content)) / 2));
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    gap: clamp(42px, 7vw, 96px);
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 18, 56, 0.18), transparent 26rem),
        #08080a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.access-band .eyebrow {
    color: var(--red);
}

.access-band h2 {
    font-size: 3rem;
}

.band-copy {
    align-self: center;
}

.market-list {
    display: grid;
    gap: 18px;
}

.market-list article {
    min-height: 148px;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(36px, 6vw, 76px);
}

.use-case-section .section-heading h2 {
    font-size: 3rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.case-card {
    min-height: clamp(168px, 17vw, 230px);
    padding: clamp(24px, 3vw, 38px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.case-card span {
    width: fit-content;
    height: auto;
    margin: 0;
    padding: 6px 9px;
    border: 1px solid rgba(255, 18, 56, 0.42);
    border-radius: 999px;
    color: var(--red);
    background: rgba(255, 18, 56, 0.08);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.timeline article {
    min-height: 220px;
    border: 0;
    border-right: 1px solid var(--line);
    padding: clamp(22px, 3vw, 34px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
}

.timeline article:last-child {
    border-right: 0;
}

.stats-band {
    min-height: 210px;
    padding: clamp(54px, 8vw, 90px) 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent),
        var(--bg);
}

.stats-band article {
    text-align: center;
}

.stats-band strong {
    display: block;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    line-height: 1;
}

.stats-band span {
    display: block;
    margin-top: 8px;
    color: var(--soft);
    font-size: 0.9rem;
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: 42px;
}

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

.faq-section .section-heading h2 {
    max-width: 520px;
    font-size: clamp(1.9rem, 3vw, 2.85rem);
    line-height: 1.02;
}

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

.qa-card {
    padding: clamp(20px, 2.6vw, 30px);
    background: rgba(255, 255, 255, 0.04);
}

.qa-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.25;
    font-weight: 820;
}

.faq-list p {
    max-width: 760px;
}

.contact-section {
    margin-top: clamp(34px, 5vw, 70px);
    margin-bottom: clamp(78px, 10vw, 136px);
    padding: clamp(28px, 5vw, 58px);
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
    gap: clamp(28px, 5vw, 60px);
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
}

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

label {
    display: grid;
    gap: 7px;
    color: #e4e7ec;
    font-size: 0.88rem;
    font-weight: 740;
}

input,
textarea,
select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 10px 12px;
    outline: none;
}

textarea {
    resize: vertical;
    line-height: 1.45;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(255, 18, 56, 0.22);
}

.lead-form label:nth-of-type(4),
.lead-form label:nth-of-type(5),
.lead-form button,
.wide {
    grid-column: 1 / -1;
}

.hidden-field {
    position: absolute;
    left: -10000px;
}

.form-error,
.form-success {
    grid-column: 1 / -1;
    margin: 0;
    padding: 10px 12px;
    border-radius: 3px;
    font-weight: 760;
}

.form-error {
    background: #ffe0d9;
    color: #7b2414;
}

.form-success {
    background: #eaffba;
    color: #263321;
}

.site-footer {
    width: 100%;
    margin: 0;
    padding: clamp(74px, 9vw, 112px) var(--page-pad) 0;
    border-top: 1px solid var(--line);
    color: #ffffff;
    background: #050505;
}

.footer-shell {
    width: min(var(--content), 100%);
    margin: 0 auto;
    display: grid;
    gap: clamp(30px, 4vw, 48px);
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 6vw, 96px);
    align-items: start;
}

.footer-primary {
    max-width: none;
    display: grid;
    justify-items: start;
    gap: 22px;
    text-align: left;
}

.footer-identity {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: #ffffff;
}

.footer-mark {
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 950;
}

.footer-identity span:last-child {
    display: grid;
    gap: 2px;
    justify-items: start;
    text-align: left;
}

.footer-identity strong {
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1;
}

.footer-identity em {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-contact {
    display: grid;
    justify-items: start;
    gap: 13px;
    color: rgba(255, 255, 255, 0.84);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    font-weight: 700;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-column {
    display: grid;
    gap: 13px;
}

.footer-column span {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-column a {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
    font-weight: 800;
    line-height: 1.15;
}

.footer-column a:hover {
    color: var(--red);
}

.footer-update {
    width: 100%;
    margin: 4px 0 0;
    display: grid;
    gap: 12px;
}

.footer-update label {
    justify-self: start;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 820;
}

.footer-email-field {
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.015);
}

.footer-email-field svg,
.footer-update button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.footer-email-field svg {
    color: var(--muted);
}

.footer-email-field input {
    min-height: 54px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #ffffff;
    text-align: left;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    box-shadow: none;
}

.footer-email-field input:focus {
    box-shadow: none;
}

.footer-update button {
    width: 100%;
    min-height: 58px;
    border-radius: 8px;
    border-color: #ffffff;
    background: #ffffff;
    color: #050505;
    box-shadow: none;
}

.footer-update button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.footer-bottom {
    padding: 24px 0 28px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.96rem;
    font-weight: 700;
}

.legal-page {
    background:
        radial-gradient(circle at 82% 8%, rgba(255, 18, 56, 0.12), transparent 30rem),
        var(--bg);
}

.legal-main {
    width: min(980px, calc(100% - var(--page-pad) - var(--page-pad)));
    margin: 0 auto;
    padding: clamp(128px, 16vw, 184px) 0 clamp(72px, 10vw, 132px);
}

.legal-hero {
    padding-bottom: clamp(36px, 6vw, 68px);
    border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
    max-width: 840px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    line-height: 0.96;
    font-weight: 900;
}

.legal-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

.legal-updated {
    margin-top: 22px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 760;
}

.legal-section {
    padding: clamp(30px, 5vw, 54px) 0;
    border-bottom: 1px solid var(--line);
}

.legal-section h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    line-height: 1.08;
}

.legal-section h3 {
    margin: 24px 0 10px;
    color: #ffffff;
    font-size: 1.08rem;
}

.legal-section p,
.legal-section li {
    color: var(--soft);
    font-size: 1rem;
    line-height: 1.72;
}

.legal-section ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.legal-section li + li {
    margin-top: 8px;
}

[data-reveal] {
    opacity: 1;
    transform: none;
    transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-copy > *,
.trust-strip {
    opacity: 0;
    transform: translateY(26px);
    animation: heroRise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-copy .eyebrow {
    animation-delay: 80ms;
}

.hero-copy h1 {
    animation-delay: 180ms;
}

.hero-copy p:not(.eyebrow) {
    animation-delay: 300ms;
}

.hero-actions {
    animation-delay: 420ms;
}

.trust-strip {
    animation-delay: 560ms;
}

@keyframes heroRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.admin-body .button.ghost {
    color: var(--admin-ink);
    background: #ffffff;
    border-color: #d8d8d4;
}

.admin-shell {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 60px;
}

.admin-shell.narrow,
.admin-card.narrow {
    max-width: 720px;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-header h1 {
    color: var(--admin-ink);
    font-size: 2.4rem;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-card {
    padding: 20px;
    margin-bottom: 16px;
    border-color: #d8d8d4;
    background: #ffffff;
    color: var(--admin-ink);
}

.admin-card h2 {
    margin: 0 0 12px;
    color: var(--admin-ink);
    font-size: 1.32rem;
}

.admin-card p,
.admin-card label {
    color: #303035;
}

.admin-card input,
.admin-card textarea,
.admin-card select {
    color: var(--admin-ink);
    background: #fffef8;
    border-color: #b9b8ac;
}

.card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.admin-grid.one {
    grid-template-columns: 1fr;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.notice {
    padding: 12px 14px;
    border-radius: 3px;
    margin-bottom: 10px;
    font-weight: 760;
}

.notice.error {
    color: #7b2414;
    background: #ffe0d9;
    border: 1px solid #efb3a6;
}

.notice.success {
    color: #244321;
    background: #ebffd0;
    border: 1px solid #bfdc92;
}

.blocks-editor {
    display: grid;
    gap: 12px;
}

.block-editor {
    border: 1px solid #d8d8d4;
    border-radius: 6px;
    background: #ffffff;
    overflow: hidden;
}

.block-editor summary {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
    cursor: pointer;
    font-weight: 820;
}

.block-editor small {
    color: #666;
    font-weight: 700;
}

.block-editor .admin-grid {
    padding: 14px;
    border-top: 1px solid #d8d8d4;
}

.checkbox-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.checkbox-row input {
    width: 18px;
    min-height: 18px;
}

.block-items {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid #d8d8d4;
    border-radius: 6px;
    background: #ffffff;
}

.items-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.items-heading h3 {
    margin: 0;
    font-size: 1rem;
}

.items-heading p {
    margin: 4px 0 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.35;
}

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

.item-editor {
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
    gap: 12px;
    margin: 0;
    padding: 16px;
    border: 1px solid #d8d8d4;
    border-radius: 6px;
    background: #f7f7f4;
}

.item-editor legend {
    padding: 0 6px;
    color: var(--red-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid #efb3a6;
    border-radius: 3px;
    background: #ffe0d9;
    color: #7b2414;
    font-size: 0.78rem;
    font-weight: 850;
    cursor: pointer;
}

.item-editor label:first-of-type {
    padding-right: 58px;
}

.lead-table {
    display: grid;
    gap: 10px;
}

.lead-table article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    padding: 14px;
    border: 1px solid #d8d8d4;
    border-radius: 6px;
    background: #ffffff;
}

.lead-table strong,
.lead-table span {
    display: block;
}

.lead-table span {
    color: #666;
    margin-top: 3px;
}

.lead-table p {
    color: #343a35;
    margin: 8px 0 0;
    line-height: 1.45;
}

.lead-table form {
    display: flex;
    gap: 8px;
}

@media (max-width: 980px) {
    :root {
        --page-pad: clamp(20px, 5vw, 42px);
        --section-pad: clamp(82px, 14vw, 132px);
    }

    .split-section,
    .access-band,
    .faq-section,
    .contact-section,
    .intro-panel {
        grid-template-columns: 1fr;
    }

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

    .case-grid,
    .timeline,
    .stats-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline article:nth-child(2) {
        border-right: 0;
    }

    .timeline article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .footer-shell {
        gap: 54px;
    }

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

    .footer-primary {
        max-width: none;
    }
}

@media (max-width: 760px) {
    :root {
        --page-pad: 24px;
        --section-pad: 96px;
    }

    .site-header {
        width: calc(100% - 28px);
        min-height: 68px;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 50%;
        right: auto;
        bottom: auto;
        width: 100vw;
        height: 100dvh;
        z-index: 1000;
        display: grid;
        align-content: center;
        justify-items: center;
        gap: 8px;
        padding: 88px 24px 40px;
        border: 0;
        background: #050506;
        box-shadow: none;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -10px);
        transition: opacity 220ms ease, transform 220ms ease;
    }

    .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .nav-links a {
        width: min(360px, 100%);
        min-height: 54px;
        justify-content: center;
        padding: 0 18px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.045);
        color: #ffffff;
        font-size: 1.04rem;
    }

    .hero-section {
        min-height: max(100svh, 690px);
        padding-top: 118px;
        padding-bottom: 38px;
        gap: 42px;
        background-position: 64% center;
    }

    .hero-copy h1 {
        max-width: 640px;
        font-size: clamp(2.85rem, 11.7vw, 4rem);
        line-height: 0.92;
    }

    .hero-copy p:not(.eyebrow) {
        margin-top: 22px;
        font-size: 1.02rem;
        line-height: 1.72;
    }

    .hero-actions {
        display: grid;
        gap: 12px;
    }

    .trust-strip {
        width: 100%;
        padding-top: 10px;
        justify-content: center;
        text-align: center;
        gap: 9px 0;
    }

    .trust-strip span {
        flex-basis: 100%;
    }

    .trust-strip strong {
        padding: 0 10px;
        font-size: 0.74rem;
        line-height: 1.35;
    }

    .trust-strip strong + strong {
        border-left: 1px solid rgba(255, 255, 255, 0.22);
    }

    .intro-panel,
    .split-section,
    .proof-section,
    .use-case-section {
        min-height: auto;
    }

    .intro-panel,
    .section {
        padding: var(--section-pad) 0;
    }

    .intro-blocks {
        grid-template-columns: 1fr;
    }

    .intro-blocks article {
        min-height: auto;
    }

    .access-band {
        padding: var(--section-pad) var(--page-pad);
        gap: 34px;
    }

    .access-band h2 {
        max-width: 620px;
        font-size: 3rem;
        line-height: 1.02;
    }

    .access-band p {
        font-size: 1rem;
        line-height: 1.72;
    }

    .market-list {
        gap: 14px;
    }

    .market-list article {
        min-height: auto;
        padding: 24px;
    }

    .case-grid,
    .timeline,
    .lead-form,
    .admin-grid,
    .lead-table article {
        grid-template-columns: 1fr;
    }

    .stats-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 38px 0;
        gap: 18px 10px;
    }

    .stats-band strong {
        font-size: 2.65rem;
    }

    .stats-band span {
        max-width: 150px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-band + .faq-section {
        padding-top: 64px;
    }

    .timeline article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .timeline article:last-child {
        border-bottom: 0;
    }

    .timeline article:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }

    .contact-section {
        padding: 28px 22px;
    }

    .site-footer {
        padding-top: 72px;
    }

    .footer-shell {
        gap: 46px;
    }

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

    .footer-column {
        width: 100%;
    }

    .footer-column a {
        font-size: 1rem;
    }

    .footer-email-field {
        min-height: 54px;
        grid-template-columns: 34px minmax(0, 1fr);
        padding: 0 12px;
    }

    .footer-update button {
        min-height: 54px;
    }

    .admin-header,
    .admin-header-actions,
    .lead-table form,
    .items-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .item-editor {
        grid-template-columns: 1fr;
    }

    .item-editor label:first-of-type {
        padding-right: 68px;
    }
}

@media (max-width: 430px) {
    :root {
        --page-pad: 22px;
        --section-pad: 88px;
    }

    .brand span:last-child {
        max-width: 176px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .section h2,
    .contact-section h2 {
        font-size: 2.15rem;
        line-height: 1.02;
    }

    .access-band {
        padding: 84px 22px;
    }

    .access-band h2 {
        font-size: 3rem;
        line-height: 1.08;
    }

    .access-band .button {
        margin-top: 4px;
    }

    .hero-section {
        min-height: max(100svh, 660px);
        padding-top: 112px;
        background-position: 59% center;
    }

    .hero-copy h1 {
        font-size: clamp(2.6rem, 12vw, 3.25rem);
    }

    .button {
        width: 100%;
        min-height: 52px;
        padding: 14px 18px;
        line-height: 1.15;
        text-align: center;
    }

    .case-card,
    .timeline article {
        min-height: auto;
    }

    .footer-identity {
        gap: 10px;
    }

    .footer-mark {
        width: 34px;
        height: 34px;
    }

    .footer-identity strong {
        font-size: 0.94rem;
    }

    .footer-identity em {
        font-size: 0.62rem;
    }

    .footer-contact {
        font-size: 1rem;
    }

    .footer-column a {
        font-size: 0.96rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .brand span:last-child {
        max-width: 136px;
    }

    .hero-copy h1 {
        font-size: 2.45rem;
    }

    .hero-copy p:not(.eyebrow) {
        font-size: 0.98rem;
    }

    .footer-column a {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
    }

    [data-reveal],
    .hero-copy > *,
    .trust-strip {
        opacity: 1;
        transform: none;
    }
}
