:root {
    color-scheme: light;
    --bg: #fbfdfc;
    --bg-2: #f2faf7;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-solid: #ffffff;
    --surface-soft: #eaf8f5;
    --ink: #102521;
    --muted: #63756f;
    --line: #dcebe6;
    --brand: #1eb9a2;
    --brand-strong: #118675;
    --brand-dark: #0b4c43;
    --grass: #8ccf7e;
    --grass-soft: #eef8ec;
    --accent: #d8f2ee;
    --blue: #3b82c4;
    --danger: #b42318;
    --shadow: 0 24px 70px rgba(16, 37, 33, 0.11);
    --glow: 0 0 34px rgba(30, 185, 162, 0.16);
    --radius: 8px;
}

body[data-theme="dark"] {
    color-scheme: dark;
    --bg: #050807;
    --bg-2: #090f0e;
    --surface: rgba(14, 19, 18, 0.92);
    --surface-solid: #0e1312;
    --surface-soft: rgba(30, 185, 162, 0.08);
    --ink: #f3f7f5;
    --muted: #9aa7a3;
    --line: rgba(216, 242, 238, 0.11);
    --brand: #1eb9a2;
    --brand-strong: #37c5b2;
    --brand-dark: #c6f7ee;
    --grass: #8ccf7e;
    --grass-soft: rgba(140, 207, 126, 0.12);
    --accent: #d8f2ee;
    --blue: #8bc7ff;
    --danger: #ffb4a8;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
    --glow: 0 0 30px rgba(30, 185, 162, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(
            ellipse at 15% 0%,
            rgba(30, 185, 162, 0.12),
            transparent 28rem
        ),
        radial-gradient(
            ellipse at 88% 10%,
            rgba(140, 207, 126, 0.1),
            transparent 24rem
        ),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 58%, var(--bg) 100%);
    color: var(--ink);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

body[data-theme="dark"] {
    background:
        radial-gradient(
            ellipse 80% 60% at 50% 0%,
            rgba(6, 182, 212, 0.25),
            transparent 70%
        ),
        #000000;
    background-attachment: fixed;
}

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

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

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

.site-shell {
    min-height: 100vh;
    overflow-x: clip;
}

.container {
    width: min(100% - 32px, 1280px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 253, 252, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.site-header.is-scrolled {
    border-color: rgba(30, 185, 162, 0.18);
    box-shadow: 0 16px 42px rgba(16, 37, 33, 0.08);
}

body[data-theme="dark"] .site-header {
    background: rgba(7, 20, 18, 0.78);
}

body[data-theme="dark"] .site-header.is-scrolled {
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-weight: 900;
    line-height: 1;
}

.brand-logo {
    display: block;
    width: clamp(150px, 19vw, 218px);
    height: auto;
    filter: drop-shadow(0 12px 26px rgba(30, 185, 162, 0.14));
}

body[data-theme="dark"] .brand-logo {
    filter: brightness(1.05) drop-shadow(0 12px 26px rgba(30, 185, 162, 0.18));
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle,
.theme-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
}

.nav-toggle svg,
.theme-toggle svg {
    width: 22px;
    height: 22px;
}

.theme-toggle .sun-icon,
body[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

body[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

.nav-menu {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    padding: 10px;
    box-shadow: var(--shadow);
}

body[data-theme="dark"] .nav-menu {
    background: rgba(10, 26, 24, 0.98);
}

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

.nav-link {
    border-radius: var(--radius);
    padding: 12px 14px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    background: var(--surface-soft);
    color: var(--ink);
}

.nav-cta {
    display: none;
}

.button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(30, 185, 162, 0.32);
    border-radius: var(--radius);
    padding: 15px 22px;
    background: var(--brand);
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 14px 30px rgba(30, 185, 162, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    border-color: var(--brand-strong);
    background: var(--brand-strong);
    box-shadow: 0 18px 38px rgba(30, 185, 162, 0.28);
}

.button.secondary {
    border-color: var(--brand);
    background: transparent;
    color: var(--brand-dark);
    box-shadow: none;
}

.button.secondary:hover {
    background: var(--brand);
    color: #ffffff;
}

.button svg {
    width: 18px;
    height: 18px;
}

.page-section {
    padding: 76px 0;
}

.page-section.tight {
    padding-top: 34px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--brand-strong);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 0 7px rgba(30, 185, 162, 0.14);
}

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

h1,
h2,
h3 {
    color: var(--ink);
    letter-spacing: 0;
    line-height: 1.05;
}

h1 {
    max-width: 780px;
    margin-bottom: 20px;
    font-size: clamp(38px, 5.2vw, 70px);
    line-height: 1.08;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.12;
}

h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.lead {
    max-width: 820px;
    color: var(--muted);
    font-size: clamp(18px, 3vw, 21px);
    line-height: 1.65;
}

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

.hero {
    position: relative;
    padding: 74px 0 62px;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
}

.hero-title {
    max-width: 700px;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.1;
}

.hero-grid,
.split-grid,
.contact-grid {
    position: relative;
    display: grid;
    gap: 42px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.feature-grid,
.metrics-grid,
.story-grid,
.mini-contact-grid,
.form-grid {
    display: grid;
    gap: 16px;
}

.metric,
.feature,
.story-card,
.intake-panel,
.form-panel,
.mini-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 14px 44px rgba(16, 37, 33, 0.08);
}

body[data-theme="dark"] .metric,
body[data-theme="dark"] .feature,
body[data-theme="dark"] .story-card,
body[data-theme="dark"] .intake-panel,
body[data-theme="dark"] .form-panel,
body[data-theme="dark"] .mini-card {
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.check-icon {
    display: inline-grid;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: var(--accent);
    color: #06201d;
    font-size: 13px;
    font-weight: 900;
}

.visual-stage {
    position: relative;
    min-height: 500px;
    overflow: visible;
}

.visual-orbit {
    display: none;
}

.floating-signal {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: max-content;
    max-width: min(78%, 286px);
    border: 1px solid rgba(30, 185, 162, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 9px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 18px 42px rgba(16, 37, 33, 0.14);
    backdrop-filter: blur(12px);
    animation: floatSignal 5.5s ease-in-out infinite;
}

body[data-theme="dark"] .floating-signal {
    background: rgba(10, 28, 25, 0.9);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.signal-one {
    top: -3px;
    left: -85px;
}

.signal-two {
    top: 126px;
    right: -110px;
    animation-delay: 0.75s;
}

.signal-three {
    left: -64px;
    bottom: -35px;
    animation-delay: 1.5s;
}

@keyframes floatSignal {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(8px, -10px, 0);
    }
}

.ai-window {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    margin: 30px auto 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(16, 37, 33, 0.16);
    overflow: hidden;
}

body[data-theme="dark"] .ai-window {
    background: #0d1312;
    box-shadow: 0 22px 62px rgba(0, 0, 0, 0.38);
}

.window-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, #1eb9a2, #065e81);
    padding: 16px;
}

.window-title {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 900;
}

.window-title > span:last-child {
    display: grid;
    gap: 2px;
    overflow: hidden;
}

.window-title strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
}

.window-title small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.ai-spark {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.ai-spark svg {
    width: 17px;
    height: 17px;
    color: #ffffff;
}

.window-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    padding: 6px 8px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
}

body[data-theme="dark"] .window-status {
    background: rgba(255, 255, 255, 0.06);
}

.window-status span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--grass);
}

.chat-body {
    display: grid;
    gap: 11px;
    padding: 18px;
    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(30, 185, 162, 0.1),
            transparent 18rem
        ),
        linear-gradient(180deg, #f7fcfb, #ffffff);
}

body[data-theme="dark"] .chat-body {
    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(30, 185, 162, 0.13),
            transparent 18rem
        ),
        linear-gradient(180deg, #0d1312, #0a0f0e);
}

.chat-line {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.chat-line.user-line {
    justify-content: flex-end;
}

.chat-avatar {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--brand-dark);
    font-size: 10px;
    font-weight: 900;
}

.chat-bubble {
    width: fit-content;
    max-width: 84%;
    border-radius: 8px;
    padding: 11px 13px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    box-shadow: 0 8px 18px rgba(16, 37, 33, 0.05);
}

.chat-bubble.user {
    justify-self: end;
    background: var(--brand);
    color: #ffffff;
}

.chat-bubble.ai {
    border: 1px solid rgba(30, 185, 162, 0.1);
    background: #f5fbfa;
    color: var(--ink);
}

body[data-theme="dark"] .chat-bubble.ai {
    background: rgba(255, 255, 255, 0.055);
}

.chat-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding: 14px 16px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.chat-input svg {
    width: 18px;
    height: 18px;
    color: var(--brand);
}

.document-card {
    display: grid;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: #ffffff;
}

body[data-theme="dark"] .document-card {
    background: rgba(255, 255, 255, 0.06);
}

.line {
    height: 8px;
    border-radius: 999px;
    background: rgba(30, 185, 162, 0.16);
}

.line.short {
    width: 58%;
}

.section-head {
    max-width: 880px;
    margin-bottom: 36px;
}

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

.section-head.centered .eyebrow {
    justify-content: center;
}

.section-head.centered .lead {
    margin-inline: auto;
}

.feature,
.metric,
.story-card,
.intake-panel,
.form-panel,
.mini-card {
    padding: 26px;
}

.feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: var(--radius);
    background: var(--surface-soft);
    color: var(--brand-strong);
}

.feature-icon svg {
    width: 25px;
    height: 25px;
}

.metric strong {
    display: block;
    color: var(--brand-dark);
    font-size: 31px;
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-weight: 700;
}

.how-it-works {
    overflow: hidden;
}

.how-it-works-inner {
    display: grid;
    gap: 24px;
}

.intake-flow {
    display: grid;
    gap: 28px;
    max-width: 1120px;
    margin-inline: auto;
}

.intake-flow-step {
    display: grid;
    gap: 20px;
    align-items: center;
    border-radius: var(--radius);
    padding: 18px;
}

.scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    transition:
        opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
        transform 0.62s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.intake-flow-step.is-featured {
    border-color: rgba(30, 185, 162, 0.34);
}

.intake-flow-copy {
    display: grid;
    gap: 10px;
}

.intake-flow-copy h3,
.intake-flow-copy p {
    margin-bottom: 0;
}

.process-number,
.process-label {
    width: fit-content;
    max-width: 100%;
    color: var(--brand-strong);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.chat-preview {
    overflow: hidden;
    border: 1px solid rgba(30, 185, 162, 0.16);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 20% 18%,
            rgba(30, 185, 162, 0.12),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            rgba(247, 252, 251, 0.98),
            rgba(238, 248, 236, 0.94)
        );
    box-shadow: 0 24px 58px rgba(16, 37, 33, 0.13);
}

body[data-theme="dark"] .chat-preview {
    border-color: rgba(216, 242, 238, 0.12);
    background:
        radial-gradient(
            circle at 20% 18%,
            rgba(30, 185, 162, 0.15),
            transparent 28%
        ),
        linear-gradient(145deg, rgba(10, 32, 30, 0.98), rgba(12, 18, 17, 0.96));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.chat-preview-header {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 18px;
    background: linear-gradient(135deg, #1eb9a2, #065e81);
    color: #ffffff;
}

.chat-preview-header .window-title {
    flex: 1;
}

.chat-preview-header .window-status {
    flex: 0 0 auto;
}

.chat-preview-body {
    display: grid;
    gap: 12px;
    min-height: 310px;
    align-content: start;
    padding: 18px;
}

.chat-preview-line {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.chat-preview-line .chat-bubble {
    max-width: min(calc(100% - 36px), 340px);
}

.chat-preview-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    padding: 14px 18px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
}

.chat-preview-input span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-preview-input span:last-child {
    color: var(--brand);
    font-size: 22px;
    line-height: 1;
}

body[data-theme="dark"] .chat-preview-input {
    background: rgba(255, 255, 255, 0.06);
}

.chat-date {
    justify-self: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    padding: 6px 16px;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 700;
}

body[data-theme="dark"] .chat-date {
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand-dark);
}

.chat-bubble {
    max-width: min(86%, 340px);
    margin: 0;
    border-radius: 8px;
    padding: 11px 13px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    box-shadow: 0 12px 24px rgba(16, 37, 33, 0.08);
}

.chat-bubble.from-ai {
    justify-self: start;
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-dark);
}

.chat-bubble.from-client {
    justify-self: end;
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #ffffff;
}

body[data-theme="dark"] .chat-bubble.from-ai {
    background: rgba(255, 255, 255, 0.1);
    color: #eef8f5;
}

.centered-metrics {
    max-width: 930px;
    width: 100%;
    margin: 10px auto 0;
}

.single-column {
    grid-template-columns: 1fr;
}

.form-grid-spaced {
    margin-top: 16px;
}

.soft-band {
    border-block: 1px solid var(--line);
    background: linear-gradient(
        180deg,
        rgba(30, 185, 162, 0.045),
        rgba(255, 255, 255, 0.02)
    );
}

body[data-theme="dark"] .soft-band {
    background: #070b0a;
}

.workflow-section {
    position: relative;
    overflow: hidden;
}

.workflow-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            115deg,
            rgba(30, 185, 162, 0.08),
            transparent 34%
        ),
        linear-gradient(
            175deg,
            transparent 58%,
            rgba(59, 130, 196, 0.08) 58%,
            transparent 76%
        );
}

body[data-theme="dark"] .workflow-section::before {
    background:
        linear-gradient(
            115deg,
            rgba(30, 185, 162, 0.09),
            transparent 36%
        ),
        linear-gradient(
            175deg,
            transparent 58%,
            rgba(59, 130, 196, 0.09) 58%,
            transparent 76%
        );
}

.workflow-section .container {
    position: relative;
    z-index: 1;
}

.workflow-section .section-head {
    max-width: 860px;
    margin-bottom: 38px;
}

.workflow-grid {
    position: relative;
    max-width: 1080px;
    margin-inline: auto;
    gap: 0;
}

.workflow-grid::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    width: auto;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(30, 185, 162, 0.28),
        rgba(59, 130, 196, 0.22),
        transparent
    );
    display: none;
}

.workflow-grid .feature {
    position: relative;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 0 28px 64px;
    box-shadow: none;
}

.workflow-grid .feature::after {
    content: "";
    position: absolute;
    left: 64px;
    right: 0;
    bottom: 14px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(30, 185, 162, 0.26),
        rgba(30, 185, 162, 0)
    );
}

.workflow-grid .feature:last-child {
    padding-bottom: 0;
}

.workflow-grid .feature:last-child::after {
    display: none;
}

body[data-theme="dark"] .workflow-grid .feature {
    box-shadow: none;
}

.workflow-grid .feature-icon {
    position: absolute;
    left: 0;
    top: 2px;
    z-index: 1;
    width: 44px;
    height: 44px;
    margin: 0;
    border: 1px solid rgba(30, 185, 162, 0.2);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 248, 245, 0.92));
    box-shadow: 0 12px 26px rgba(16, 37, 33, 0.08);
}

body[data-theme="dark"] .workflow-grid .feature-icon {
    border-color: rgba(216, 242, 238, 0.12);
    background:
        linear-gradient(180deg, rgba(18, 38, 35, 0.96), rgba(14, 23, 21, 0.96));
}

.workflow-grid .feature h3 {
    margin-bottom: 8px;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.18;
}

.workflow-grid .feature p {
    max-width: 31rem;
}

.sketch-wrap {
    min-height: 340px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 24px;
}

.brand-sketch {
    position: relative;
    color: var(--brand-strong);
}

.brand-sketch svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.sketch-main,
.sketch-accent,
.sketch-dash {
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sketch-main {
    stroke: currentColor;
    stroke-width: 3;
}

.sketch-accent {
    stroke: var(--grass);
    stroke-width: 4;
}

.sketch-dash {
    stroke: rgba(59, 130, 196, 0.56);
    stroke-width: 2.5;
    stroke-dasharray: 7 9;
}

.sketch-soft-fill {
    fill: rgba(30, 185, 162, 0.09);
}

body[data-theme="dark"] .sketch-soft-fill {
    fill: rgba(30, 185, 162, 0.13);
}

.brand-sketch-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 520px;
    margin-top: 26px;
}

.brand-sketch-row .brand-sketch,
.contact-hero-sketch,
.contact-panel-sketch {
    border-radius: var(--radius);
    padding: 12px;
}

.contact-hero-sketch {
    width: min(100%, 420px);
    margin-top: 26px;
}

.contact-panel-sketch {
    width: min(100%, 340px);
    margin-top: 22px;
    padding: 10px;
}

.about-card-sketch {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 1;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(30, 185, 162, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-card-sketch svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body[data-theme="dark"] .about-card-sketch {
    background: rgba(14, 19, 18, 0.86);
}

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 62px 0 42px;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(30, 185, 162, 0.12), transparent 36%),
        linear-gradient(315deg, rgba(59, 130, 196, 0.1), transparent 34%);
}

body[data-theme="dark"] .contact-hero::before {
    background:
        linear-gradient(135deg, rgba(30, 185, 162, 0.12), transparent 40%),
        linear-gradient(315deg, rgba(59, 130, 196, 0.11), transparent 36%);
}

.contact-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 30px;
    align-items: center;
}

.contact-hero-copy h1 {
    max-width: 840px;
    font-size: clamp(34px, 9vw, 62px);
}

.contact-status-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 248, 245, 0.9));
    box-shadow: var(--shadow);
}

.contact-status-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: min(42%, 210px);
    height: 100%;
    background:
        linear-gradient(135deg, transparent 0 42%, rgba(30, 185, 162, 0.075) 42% 48%, transparent 48%),
        repeating-linear-gradient(135deg, rgba(30, 185, 162, 0.08) 0 1px, transparent 1px 18px);
    opacity: 0.7;
    pointer-events: none;
}

body[data-theme="dark"] .contact-status-card {
    background:
        linear-gradient(145deg, rgba(15, 29, 27, 0.98), rgba(8, 14, 13, 0.96));
}

.contact-status-top {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 24px 24px 18px;
}

.contact-status-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(30, 185, 162, 0.18);
    border-radius: 999px;
    background: rgba(30, 185, 162, 0.1);
    padding: 7px 10px;
    color: var(--brand-strong);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-status-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand);
}

.contact-status-top strong {
    color: var(--ink);
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.08;
}

.contact-status-top p {
    max-width: 360px;
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.45;
}

.contact-status-steps {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    padding: 4px 24px 18px;
}

.contact-status-steps div {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid rgba(30, 185, 162, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.62);
    padding: 13px;
}

body[data-theme="dark"] .contact-status-steps div {
    background: rgba(255, 255, 255, 0.045);
}

.contact-status-steps p {
    margin: 0;
    color: var(--ink);
    font-weight: 900;
    line-height: 1.2;
}

.contact-status-steps small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.contact-step-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(30, 185, 162, 0.22);
    border-radius: var(--radius);
    background: var(--surface-soft);
    color: var(--brand-strong);
}

.contact-step-icon svg {
    width: 20px;
    height: 20px;
}

.contact-status-note {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    margin: 0 24px 24px;
    border: 1px solid rgba(30, 185, 162, 0.18);
    border-radius: var(--radius);
    background: rgba(30, 185, 162, 0.08);
    padding: 14px;
}

.contact-note-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: var(--radius);
    background: rgba(30, 185, 162, 0.11);
    color: var(--brand-strong);
}

.contact-note-icon svg {
    width: 19px;
    height: 19px;
}

.contact-status-note p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.contact-form-section {
    padding: 38px 0 78px;
}

.contact-intake-panel {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 248, 245, 0.86));
}

body[data-theme="dark"] .contact-intake-panel {
    background:
        linear-gradient(145deg, rgba(15, 29, 27, 0.98), rgba(8, 14, 13, 0.96));
}

.contact-intake-panel::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(48%, 240px);
    height: 54%;
    background:
        linear-gradient(135deg, transparent 0 52%, rgba(30, 185, 162, 0.08) 52% 58%, transparent 58%),
        repeating-linear-gradient(135deg, rgba(30, 185, 162, 0.075) 0 1px, transparent 1px 18px);
    opacity: 0.72;
    pointer-events: none;
}

.contact-intake-panel > * {
    position: relative;
    z-index: 1;
}

.contact-mini-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.contact-mini-metrics div {
    border: 1px solid rgba(30, 185, 162, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.58);
    padding: 14px;
}

body[data-theme="dark"] .contact-mini-metrics div {
    background: rgba(255, 255, 255, 0.055);
}

.contact-mini-metrics strong {
    display: block;
    color: var(--brand-dark);
    font-size: 28px;
    line-height: 1;
}

.contact-mini-metrics span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.contact-form-panel {
    position: relative;
    overflow: hidden;
}

.form-panel-head {
    margin-bottom: 22px;
}

.form-panel-head h2 {
    margin-bottom: 0;
    font-size: clamp(27px, 6vw, 38px);
}

.about-redesign {
    position: relative;
    overflow: hidden;
    padding: 62px 0 44px;
}

.about-redesign::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(30, 185, 162, 0.1), transparent 38%),
        linear-gradient(315deg, rgba(59, 130, 196, 0.08), transparent 34%);
}

body[data-theme="dark"] .about-redesign::before {
    background:
        linear-gradient(135deg, rgba(30, 185, 162, 0.1), transparent 42%),
        linear-gradient(315deg, rgba(59, 130, 196, 0.1), transparent 36%);
}

.about-redesign-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 34px;
    align-items: center;
}

.about-redesign-copy h1 {
    max-width: 860px;
    font-size: clamp(34px, 9vw, 58px);
}

.about-redesign-copy .lead {
    max-width: 740px;
}

.about-redesign-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.about-redesign-media {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.about-redesign-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.about-redesign-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(5, 20, 18, 0.72));
    pointer-events: none;
}

.about-media-panel {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: rgba(5, 20, 18, 0.72);
    padding: 16px;
    color: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about-media-panel span,
.about-media-panel small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
}

.about-media-panel strong {
    color: #ffffff;
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.1;
}

.about-story-section,
.about-compliance-section {
    padding: 58px 0;
}

.about-story-wrap {
    display: grid;
    gap: 22px;
}

.about-story-intro {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(30, 185, 162, 0.14), rgba(59, 130, 196, 0.08)),
        var(--surface);
    padding: 24px;
    box-shadow: 0 18px 58px rgba(16, 37, 33, 0.08);
}

.about-story-intro::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(46%, 260px);
    height: 100%;
    background:
        linear-gradient(135deg, transparent 0 45%, rgba(30, 185, 162, 0.08) 45% 51%, transparent 51%),
        repeating-linear-gradient(135deg, rgba(30, 185, 162, 0.08) 0 1px, transparent 1px 20px);
    opacity: 0.7;
    pointer-events: none;
}

body[data-theme="dark"] .about-story-intro {
    box-shadow: 0 22px 66px rgba(0, 0, 0, 0.22);
}

.about-story-intro > * {
    position: relative;
    z-index: 1;
}

.about-story-intro h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(28px, 8vw, 48px);
}

.about-story-intro .lead {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
}

.about-story-grid {
    position: relative;
    display: grid;
    gap: 14px;
}

.about-story-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 20px;
    box-shadow: 0 14px 44px rgba(16, 37, 33, 0.08);
}

.about-story-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), rgba(59, 130, 196, 0.74));
}

body[data-theme="dark"] .about-story-card {
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.about-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.about-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 20, 18, 0.1), rgba(5, 20, 18, 0.26));
    pointer-events: none;
}

.about-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-story-card:hover .about-card-media img {
    transform: scale(1.04);
}

.about-story-card h3 {
    margin-bottom: 10px;
    font-size: clamp(21px, 6vw, 25px);
}

.about-story-card .muted {
    margin-bottom: 0;
}

.about-card-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    border: 1px solid rgba(30, 185, 162, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-strong);
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body[data-theme="dark"] .about-card-number {
    background: rgba(14, 19, 18, 0.86);
}

.about-compliance-grid {
    display: grid;
    gap: 30px;
    align-items: start;
}

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

.about-compliance-item {
    display: flex;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 20px;
    box-shadow: 0 14px 44px rgba(16, 37, 33, 0.08);
}

body[data-theme="dark"] .about-compliance-item {
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.about-compliance-item h3 {
    margin-bottom: 6px;
    font-size: 20px;
}

.about-compliance-item p {
    margin-bottom: 0;
}

.page-hero {
    padding: 70px 0 36px;
}

.story-card p:last-child,
.feature p:last-child,
.intake-panel p:last-child,
.mini-card p:last-child {
    margin-bottom: 0;
}

.contact-grid {
    align-items: start;
}

.intake-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.intake-list li {
    display: flex;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
}

.field label {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
    padding: 12px 13px;
    color: var(--ink);
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.field textarea {
    min-height: 124px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(30, 185, 162, 0.72);
    box-shadow: 0 0 0 4px rgba(30, 185, 162, 0.14);
}

.form-error {
    margin-top: 7px;
    color: var(--danger);
    font-size: 13px;
    font-weight: 800;
}

.notice {
    margin-bottom: 18px;
    border: 1px solid rgba(30, 185, 162, 0.24);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 13px 14px;
    color: var(--brand-dark);
    font-weight: 800;
}

.progress-wrapper {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 24px;
    box-shadow: 0 14px 44px rgba(16, 37, 33, 0.08);
}

.progress-charts + .progress-charts {
    margin-top: 18px;
}

.progress-charts .heading {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

.progress {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--surface-soft);
}

.progress-bar {
    position: relative;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand), var(--grass));
    transition: width 0.7s ease;
}

.percent-label {
    position: absolute;
    right: 0;
    bottom: calc(100% + 7px);
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
}

.site-footer {
    border-top: 1px solid var(--line);
    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(30, 185, 162, 0.08),
            transparent 24rem
        ),
        linear-gradient(180deg, #ffffff, #f7fbfa);
    padding: 56px 0 28px;
}

body[data-theme="dark"] .site-footer {
    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(30, 185, 162, 0.12),
            transparent 24rem
        ),
        linear-gradient(180deg, rgba(7, 20, 18, 0.96), rgba(6, 18, 16, 0.92));
}

.footer-cta {
    display: grid;
    gap: 20px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 24px;
    box-shadow: var(--shadow);
}

.footer-cta h2 {
    margin-bottom: 8px;
    font-size: clamp(26px, 4vw, 42px);
}

.footer-cta p {
    margin-bottom: 0;
    color: var(--muted);
}

.footer-main {
    display: grid;
    gap: 30px;
    padding: 44px 0 30px;
}

.footer-brand-block {
    max-width: 390px;
}

.footer-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.footer-columns {
    display: grid;
    gap: 26px;
}

.footer-title {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.footer-links a {
    width: fit-content;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-strong);
    transform: translateX(2px);
}

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

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--brand);
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

@media (min-width: 640px) {
    .container {
        width: min(100% - 48px, 1280px);
    }

    .hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .about-redesign-actions {
        flex-direction: row;
        align-items: center;
    }

    .brand-sketch-row {
        grid-template-columns: repeat(2, minmax(170px, 1fr));
    }

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

    .about-story-card:last-child {
        grid-column: 1 / -1;
    }

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

    .feature-grid,
    .story-grid,
    .mini-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 44px;
        max-width: 1080px;
    }

    .workflow-grid::before {
        display: block;
    }

    .workflow-grid .feature {
        min-height: 128px;
        padding: 0 0 0 68px;
    }

    .workflow-grid .feature::after {
        left: 68px;
        bottom: -17px;
    }

    .workflow-grid .feature:nth-last-child(-n + 2)::after {
        display: none;
    }

    .single-column {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 900px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        border: 0;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

    body[data-theme="dark"] .nav-menu {
        background: transparent;
    }

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

    .hero {
        padding: 64px 0;
    }

    .hero-grid,
    .split-grid {
        grid-template-columns: minmax(0, 0.98fr) minmax(430px, 0.78fr);
        align-items: center;
        gap: 88px;
    }

    .contact-hero {
        padding: 92px 0 58px;
    }

    .contact-hero-grid {
        grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.62fr);
        gap: 72px;
    }

    .contact-status-card {
        transform: translateY(18px);
    }

    .contact-form-section {
        padding: 46px 0 92px;
    }

    .about-redesign {
        padding: 92px 0 72px;
    }

    .about-redesign-grid {
        grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.8fr);
        gap: 72px;
    }

    .brand-sketch-row {
        max-width: 560px;
    }

    .about-redesign-media,
    .about-redesign-media img {
        min-height: 560px;
    }

    .about-media-panel {
        left: 24px;
        right: 24px;
        bottom: 24px;
        padding: 20px;
    }

    .about-story-section,
    .about-compliance-section {
        padding: 82px 0;
    }

    .about-story-wrap {
        gap: 28px;
    }

    .about-story-intro {
        grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
        align-items: end;
        padding: 34px;
    }

    .about-story-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
        gap: 18px;
    }

    .about-story-card {
        padding: 28px;
    }

    .about-story-card:last-child {
        grid-column: auto;
    }

    .about-compliance-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
        gap: 72px;
    }

    .contact-grid {
        grid-template-columns: 0.82fr 1.18fr;
        gap: 42px;
    }

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

    .workflow-section .section-head {
        margin-bottom: 46px;
    }

    .workflow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 46px 70px;
    }

    .workflow-grid .feature {
        min-height: 134px;
        padding-left: 76px;
    }

    .workflow-grid .feature-icon {
        width: 54px;
        height: 54px;
    }

    .workflow-grid .feature::after {
        left: 76px;
        bottom: -23px;
    }

    .intake-flow {
        gap: 32px;
    }

    .intake-flow-step {
        grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.76fr);
        gap: 36px;
        padding: 28px;
    }

    .intake-flow-step:nth-child(even) {
        grid-template-columns: minmax(360px, 0.76fr) minmax(0, 0.84fr);
    }

    .intake-flow-step:nth-child(even) .intake-flow-copy {
        order: 2;
    }

    .intake-flow-step:nth-child(even) .chat-preview {
        order: 1;
    }

    .intake-flow-copy {
        padding-inline: 10px;
    }

    .chat-preview-body {
        min-height: 350px;
        padding: 20px;
    }

    .single-column {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        grid-template-columns: 1fr auto;
        padding: 30px;
    }

    .footer-main {
        grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    }

    .hero-grid .visual-stage {
        transform: translateX(34px);
    }
}

@media (min-width: 900px) and (max-width: 1240px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(410px, 0.82fr);
        gap: 42px;
    }

    .ai-window {
        max-width: 500px;
    }

    .hero-grid .visual-stage {
        transform: translateX(18px);
    }

    .signal-one {
        left: -64px;
    }

    .signal-two {
        right: -64px;
    }

    .signal-three {
        left: -58px;
    }
}

@media (max-width: 899px) {
    .nav {
        min-height: 66px;
        gap: 10px;
    }

    .brand-logo {
        width: clamp(122px, 38vw, 158px);
    }

    .nav-actions {
        gap: 7px;
    }

    .nav-cta {
        display: none !important;
    }

    .nav-toggle,
    .theme-toggle {
        width: 38px;
        height: 38px;
    }

    .nav-toggle svg,
    .theme-toggle svg {
        width: 19px;
        height: 19px;
    }

    .nav-menu {
        top: 66px;
        left: 12px;
        right: 12px;
        padding: 8px;
    }
}

@media (max-width: 520px) {
    .nav {
        min-height: 64px;
    }

    .nav-menu {
        top: 64px;
    }

    .brand-logo {
        width: clamp(118px, 36vw, 142px);
    }

    .nav-actions {
        gap: 6px;
    }

    .nav-toggle,
    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .button {
        width: 100%;
        padding-inline: 12px;
    }

    .contact-hero {
        padding-top: 46px;
    }

    .contact-hero-copy h1 {
        font-size: clamp(31px, 9vw, 40px);
    }

    .contact-form-section {
        padding: 28px 0 58px;
    }

    .contact-mini-metrics {
        grid-template-columns: 1fr;
    }

    .brand-sketch-row {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-top: 20px;
    }

    .brand-sketch-row .brand-sketch-document {
        display: none;
    }

    .contact-hero-sketch {
        width: min(100%, 310px);
        margin-top: 20px;
        padding: 10px;
    }

    .contact-panel-sketch {
        width: min(100%, 280px);
        margin-top: 18px;
    }

    .about-card-sketch {
        width: 46px;
        height: 46px;
    }

    .about-card-sketch svg {
        width: 29px;
        height: 29px;
    }

    .contact-status-top,
    .contact-status-steps {
        padding: 18px;
    }

    .contact-status-note {
        margin: 0 18px 18px;
    }

    .about-redesign {
        padding-top: 46px;
    }

    .about-redesign-copy h1 {
        font-size: clamp(31px, 9vw, 40px);
    }

    .about-redesign-media,
    .about-redesign-media img {
        min-height: 330px;
    }

    .about-media-panel {
        padding: 14px;
    }

    .about-story-section,
    .about-compliance-section {
        padding: 46px 0;
    }

    .about-story-intro {
        padding: 20px;
    }

    .about-story-card,
    .about-compliance-item {
        padding: 18px;
    }

    .about-compliance-item {
        align-items: flex-start;
    }

    .hero {
        min-height: auto;
    }

    .visual-stage {
        min-height: 430px;
        transform: none;
    }

    .intake-flow-step {
        padding: 14px;
    }

    .chat-preview {
        border-radius: 18px;
    }

    .chat-preview-header {
        min-height: 54px;
        gap: 8px;
        padding: 12px;
    }

    .chat-preview-body {
        min-height: 280px;
        padding: 12px;
    }

    .chat-preview-input {
        padding: 12px;
        font-size: 12px;
    }

    .chat-bubble {
        max-width: 94%;
        padding: 10px 11px;
        font-size: 13px;
    }

    .ai-window {
        width: 100%;
        margin-top: 28px;
    }

    .hero-title {
        font-size: clamp(31px, 9vw, 40px);
    }

    .floating-signal {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: calc(100% - 32px);
        max-width: none;
        margin: 10px 16px 0;
        animation: none;
    }

    .signal-one {
        margin-top: 18px;
    }

    .visual-orbit {
        display: none;
    }
}

@media (max-width: 380px) {
    .container {
        width: min(100% - 24px, 1280px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
