:root {
    --bg: #ffffff;
    --bg-soft: #f6f6f4;
    --surface: #ffffff;
    --surface-2: #efefec;
    --text: #111111;
    --text-soft: #666660;
    --border: #deded9;
    --border-strong: #b7b7af;
    --button-text: #ffffff;
    --button-bg: #111111;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 32px;
    --container: 1180px;
    --header-height: 72px;
    --transition: 180ms ease;
}

html[data-theme="dark"] {
    --bg: #0d0d0d;
    --bg-soft: #151515;
    --surface: #111111;
    --surface-2: #1b1b1b;
    --text: #f5f5f1;
    --text-soft: #a3a39c;
    --border: #2a2a28;
    --border-strong: #454540;
    --button-text: #111111;
    --button-bg: #f5f5f1;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    max-width: 100%;
}

::selection {
    background: var(--text);
    color: var(--bg);
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -60px;
    z-index: 9999;
    background: var(--text);
    color: var(--bg);
    padding: 10px 14px;
    border-radius: 10px;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 12px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

.section-muted {
    background: var(--bg-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(18px);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.nav-wrap {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.desktop-nav a,
.footer-links a {
    color: var(--text-soft);
    font-size: 14px;
    transition: color var(--transition);
}

.desktop-nav a:hover,
.footer-links a:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.icon-button:hover {
    transform: translateY(-1px);
    border-color: var(--border-strong);
}

.theme-moon {
    display: none;
}

html[data-theme="dark"] .theme-sun {
    display: none;
}

html[data-theme="dark"] .theme-moon {
    display: inline;
}

.menu-toggle {
    display: none;
    gap: 4px;
    align-content: center;
}

.menu-toggle span {
    width: 17px;
    height: 1.5px;
    background: currentColor;
    display: block;
}

.mobile-menu {
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.mobile-menu-inner {
    padding-top: 18px;
    padding-bottom: 20px;
    display: grid;
    gap: 6px;
}

.mobile-menu-inner > a:not(.button) {
    padding: 12px 2px;
    font-weight: 650;
}

.button {
    appearance: none;
    border: 1px solid var(--button-bg);
    border-radius: 999px;
    background: var(--button-bg);
    color: var(--button-text);
    min-height: 50px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 750;
    line-height: 1;
    cursor: pointer;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.button-small {
    min-height: 42px;
    padding-inline: 17px;
    font-size: 14px;
}

.button-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}

.hero {
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: clamp(40px, 7vw, 96px);
    align-items: center;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    font-size: 11px;
}

.hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.94;
    letter-spacing: -0.065em;
    font-weight: 850;
}

.underline-scribble {
    position: relative;
    white-space: nowrap;
}

.underline-scribble::after {
    content: "";
    position: absolute;
    left: 1%;
    right: 0;
    bottom: -9px;
    height: 8px;
    border-top: 2px solid var(--text);
    border-radius: 50%;
    transform: rotate(-1deg);
    opacity: 0.65;
}

.hero-punchline {
    font-size: clamp(44px, 6vw, 76px);
    margin: 22px 0 18px;
    letter-spacing: -0.06em;
    font-weight: 400;
    font-style: italic;
}

.hero-text {
    max-width: 650px;
    color: var(--text-soft);
    font-size: clamp(17px, 2vw, 20px);
    margin: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 28px;
    color: var(--text-soft);
    font-size: 12px;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-meta span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--text);
}

.workflow-demo {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.demo-topbar {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-soft);
    font-size: 11px;
}

.demo-topbar > div {
    display: flex;
    gap: 6px;
}

.demo-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-strong);
}

.workflow-label {
    padding: 22px 24px 9px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 800;
    font-size: 10px;
}

.workflow-row {
    margin: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.workflow-row > span {
    color: var(--text-soft);
}

.workflow-node {
    flex: 1;
    min-width: 0;
    padding: 11px 10px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    border-radius: 12px;
    font-weight: 650;
    font-size: 11px;
    text-align: center;
}

.workflow-transform {
    margin: 24px;
    border: 1px dashed var(--border-strong);
    border-radius: 14px;
    padding: 13px;
    display: grid;
    gap: 8px;
    text-align: center;
    font-size: 11px;
    color: var(--text-soft);
}

.pulse-line {
    height: 2px;
    overflow: hidden;
    position: relative;
    background: var(--surface-2);
}

.pulse-line::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -35%;
    width: 35%;
    background: var(--text);
    animation: pulse-slide 2.4s linear infinite;
}

@keyframes pulse-slide {
    to { left: 100%; }
}

.system-card {
    margin: 0 24px 26px;
    padding: 18px;
    background: var(--text);
    color: var(--bg);
    border-radius: 18px;
}

.system-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.system-card p {
    margin: 0 0 2px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.68;
}

.system-card strong {
    font-size: 15px;
}

.status-pill {
    border: 1px solid color-mix(in srgb, var(--bg) 40%, transparent);
    padding: 6px 8px;
    border-radius: 999px;
    font-size: 9px;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.mini-stats div {
    padding: 10px;
    border: 1px solid color-mix(in srgb, var(--bg) 20%, transparent);
    border-radius: 10px;
}

.mini-stats span,
.mini-stats strong {
    display: block;
}

.mini-stats span {
    opacity: 0.6;
    font-size: 9px;
}

.mini-stats strong {
    font-size: 14px;
}

.progress {
    height: 5px;
    background: color-mix(in srgb, var(--bg) 22%, transparent);
    border-radius: 99px;
    overflow: hidden;
    margin-top: 16px;
}

.progress span {
    display: block;
    height: 100%;
    background: var(--bg);
    border-radius: inherit;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading h2,
.pricing-card h2,
.about-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.about-copy > p,
.pricing-card p {
    color: var(--text-soft);
    font-size: 17px;
    margin-bottom: 0;
}

.problem-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.info-card,
.service-card {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-height: 240px;
}

.card-number {
    display: inline-block;
    margin-bottom: 66px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 800;
}

.info-card h3,
.service-card h3,
.process-step h3,
.lab-side h3 {
    margin: 0 0 9px;
    letter-spacing: -0.03em;
    font-size: 20px;
}

.info-card p,
.service-card p,
.process-step p {
    margin: 0;
    color: var(--text-soft);
}

.solution-callout {
    margin-top: 14px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--text);
    color: var(--bg);
    border-radius: var(--radius);
}

.solution-callout .eyebrow {
    color: color-mix(in srgb, var(--bg) 65%, transparent);
    margin-bottom: 6px;
}

.solution-callout h3 {
    font-size: clamp(22px, 3vw, 34px);
    margin: 0;
    letter-spacing: -0.04em;
}

.big-arrow {
    font-size: 46px;
    line-height: 1;
}

.services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 70px;
    font-size: 18px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
    padding-top: 24px;
}

.tag-list span {
    padding: 7px 9px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 11px;
    color: var(--text-soft);
}

.hansify-lab {
    overflow: hidden;
}

.lab-layout {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
}

.lab-options {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 14px;
    border-bottom: 1px solid var(--border);
    scrollbar-width: none;
}

.lab-options::-webkit-scrollbar {
    display: none;
}

.lab-option {
    white-space: nowrap;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--text-soft);
    padding: 9px 13px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
}

.lab-option.active {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.lab-display {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 18px;
    align-items: center;
    padding: clamp(24px, 4vw, 48px);
}

.lab-side {
    min-width: 0;
}

.lab-kicker {
    display: block;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    font-size: 10px;
    margin-bottom: 9px;
}

.flow-stack {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.flow-stack span {
    display: block;
    padding: 11px 13px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    border-radius: 11px;
    color: var(--text-soft);
    font-size: 12px;
}

.flow-stack-after span {
    color: var(--text);
    border-color: var(--border-strong);
}

.lab-center {
    display: grid;
    justify-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.lab-bolt {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--text);
    color: var(--bg);
    font-size: 20px;
}

.process-list {
    border-top: 1px solid var(--border);
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 34px 0;
    border-bottom: 1px solid var(--border);
}

.process-step > span {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
}

.process-step h3 {
    font-size: clamp(24px, 3vw, 34px);
}

.process-step p {
    max-width: 720px;
}

.pricing-card {
    min-height: 390px;
    padding: clamp(28px, 5vw, 58px);
    border-radius: var(--radius-lg);
    background: var(--text);
    color: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.pricing-card .eyebrow,
.pricing-card p {
    color: color-mix(in srgb, var(--bg) 68%, transparent);
}

.pricing-card h2 {
    max-width: 820px;
    font-size: clamp(48px, 8vw, 94px);
}

.pricing-card h2 span {
    white-space: nowrap;
}

.pricing-card p {
    max-width: 720px;
}

.pricing-card .button {
    background: var(--bg);
    color: var(--text);
    border-color: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(36px, 8vw, 100px);
    align-items: center;
}

.profile-placeholder {
    aspect-ratio: 4 / 5;
    max-height: 620px;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-strong);
    background:
        linear-gradient(135deg, transparent 0 49.5%, var(--border) 49.5% 50.5%, transparent 50.5%),
        linear-gradient(45deg, transparent 0 49.5%, var(--border) 49.5% 50.5%, transparent 50.5%),
        var(--surface);
    display: grid;
    place-items: center;
    color: var(--text-soft);
    font-size: 11px;
    letter-spacing: 0.13em;
    font-weight: 800;
}

.about-lead {
    color: var(--text) !important;
    font-weight: 800;
}

.contact-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.contact-chips a {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 12px;
    color: var(--text-soft);
    transition: border-color var(--transition), color var(--transition);
}

.contact-chips a:hover {
    border-color: var(--border-strong);
    color: var(--text);
}

.inquiry-section {
    background: var(--bg);
}

.inquiry-wrap {
    max-width: 900px;
}

.inquiry-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 5vw, 44px);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-progress {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 800;
}

.progress-track {
    flex: 1;
    height: 5px;
    background: var(--surface-2);
    border-radius: 99px;
    overflow: hidden;
}

.progress-track span {
    display: block;
    height: 100%;
    width: 25%;
    background: var(--text);
    border-radius: inherit;
    transition: width 300ms ease;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: form-in 260ms ease both;
}

@keyframes form-in {
    from { opacity: 0; transform: translateY(7px); }
    to { opacity: 1; transform: none; }
}

.step-label {
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 7px;
}

.form-step h3,
.success-state h3 {
    margin: 0 0 26px;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.045em;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.choice-wide {
    grid-column: 1 / -1;
}

.choice-card {
    position: relative;
    cursor: pointer;
}

.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-card > span {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.choice-card:hover > span {
    transform: translateY(-2px);
    border-color: var(--border-strong);
}

.choice-card input:checked + span {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.choice-card strong,
.choice-card small {
    display: block;
}

.choice-card strong {
    margin-bottom: 4px;
}

.choice-card small {
    color: var(--text-soft);
}

.choice-card input:checked + span small {
    color: color-mix(in srgb, var(--bg) 68%, transparent);
}

.field-label {
    display: block;
    font-weight: 750;
    font-size: 13px;
    margin-bottom: 8px;
}

.field-label span {
    color: var(--text-soft);
    font-weight: 500;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg);
    color: var(--text);
    min-height: 50px;
    padding: 12px 14px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

textarea {
    resize: vertical;
    min-height: 170px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--text);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--text) 12%, transparent);
}

input.invalid,
textarea.invalid,
select.invalid {
    border-color: #b42318;
}

.field-help {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 11px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.review-box {
    margin-top: 24px;
    padding: 18px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.review-box h4 {
    margin: 0 0 6px;
    font-size: 17px;
}

.review-box p {
    margin: 0;
    color: var(--text-soft);
    font-size: 12px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 32px;
}

.form-actions .button:last-child {
    margin-left: auto;
}

.form-error {
    margin-top: 20px;
    padding: 12px 14px;
    border: 1px solid #f0b5b0;
    border-radius: 12px;
    background: #fff1f0;
    color: #8f1d14;
    font-size: 13px;
}

html[data-theme="dark"] .form-error {
    background: #2a1210;
    color: #ffb4ab;
    border-color: #63302d;
}

.button-spinner {
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.is-loading .button-spinner {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.success-state {
    text-align: center;
    padding: 30px 10px 18px;
}

.success-state .eyebrow {
    margin-bottom: 8px;
}

.success-state p:not(.eyebrow) {
    max-width: 580px;
    margin: 0 auto 26px;
    color: var(--text-soft);
}

.success-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--text);
    color: var(--bg);
    font-size: 25px;
    font-weight: 900;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 54px 0 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: start;
}

.footer-grid > div:first-child p {
    color: var(--text-soft);
    margin: 10px 0 0;
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

.copyright {
    grid-column: 1 / -1;
    margin: 34px 0 0;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 11px;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .workflow-demo {
        max-width: 680px;
        width: 100%;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 66px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .desktop-cta {
        display: none;
    }

    .hero {
        padding-top: 56px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 70px);
    }

    .hero-punchline {
        font-size: clamp(42px, 12vw, 62px);
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .workflow-row {
        flex-wrap: wrap;
    }

    .workflow-row > span {
        display: none;
    }

    .workflow-node {
        flex-basis: calc(50% - 8px);
    }

    .problem-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        min-height: 210px;
    }

    .card-number,
    .service-icon {
        margin-bottom: 44px;
    }

    .solution-callout {
        align-items: flex-start;
    }

    .lab-display {
        grid-template-columns: 1fr;
    }

    .lab-center {
        grid-template-columns: auto auto;
        justify-content: start;
        margin: 2px 0;
    }

    .lab-bolt {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .process-step {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }

    .pricing-card {
        min-height: 440px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .profile-placeholder {
        width: min(100%, 440px);
    }

    .choice-grid,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .choice-wide {
        grid-column: auto;
    }

    .field-help {
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 390px) {
    .container {
        width: calc(100% - 24px);
    }

    .section {
        padding: 66px 0;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-punchline {
        font-size: 42px;
    }

    .hero-meta {
        display: grid;
    }

    .system-card-top {
        display: grid;
    }

    .mini-stats {
        grid-template-columns: 1fr;
    }

    .inquiry-card {
        padding: 18px;
        border-radius: 22px;
    }

    .choice-card > span {
        min-height: 105px;
    }

    .form-actions {
        flex-wrap: wrap;
    }

    .form-actions .button {
        flex: 1 1 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
