/* PASSDEVV x Refero obsidian redesign */

:root {
    --black: #000000;
    --surface: #050505;
    --surface-2: #0b0e14;
    --rail: #292d30;
    --rail-strong: #3b3f43;
    --smoke: #464a4d;
    --ash: #6c6c6c;
    --fog: #a1a4a5;
    --frost: #f0f0f0;
    --white: #ffffff;
    --blue: #3b9eff;
    --blue-soft: #70b8ff;
    --green: #3ad389;
    --red: #ff9592;
    --yellow: #ffca16;
    --lavender: #baa7ff;

    --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;

    --container: 1200px;
    --header-h: 59px;
    --radius-button: 6px;
    --radius-card: 16px;
    --radius-large: 24px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-32: 32px;
    --space-40: 40px;
    --space-48: 48px;
    --space-64: 64px;
    --space-80: 80px;
    --space-104: 104px;
    --space-120: 120px;

    --duration-fast: 120ms;
    --duration-default: 200ms;
    --duration-slow: 320ms;
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-emphasized: cubic-bezier(0.2, 0, 0, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background: var(--black);
    color: var(--frost);
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        var(--black);
    background-size: 72px 72px;
    color: var(--frost);
    font-family: var(--font-ui);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

main {
    position: relative;
    z-index: 1;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--rail);
    border: 3px solid var(--black);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--smoke);
}

.bg-glow-container,
.decor-glow {
    display: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
}

p {
    color: var(--fog);
}

strong {
    color: var(--white);
    font-weight: 650;
}

h1,
h2,
h3,
h4 {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0;
}

button,
a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.08);
}

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 4px;
}

.main-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    display: flex;
    height: var(--header-h);
    align-items: center;
    border-bottom: 1px solid var(--rail);
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    animation: header-in var(--duration-slow) var(--ease-emphasized) both;
    transition: background-color var(--duration-default) var(--ease-out), border-color var(--duration-default) var(--ease-out);
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.96);
    border-color: var(--rail-strong);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.logo span {
    color: var(--blue);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: rgba(240, 240, 240, 0.72);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), background-color var(--duration-fast) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--rail);
    border-radius: var(--radius-button);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        transform 90ms var(--ease-out),
        border-color var(--duration-fast) var(--ease-out),
        background-color var(--duration-fast) var(--ease-out),
        color var(--duration-fast) var(--ease-out);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    border-color: var(--blue);
    box-shadow: inset 0 0 0 1px rgba(59, 158, 255, 0.12);
}

.btn-primary:hover {
    background: rgba(59, 158, 255, 0.08);
    border-color: var(--blue-soft);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: var(--fog);
}

.btn-sm {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 13px;
}

.mobile-nav-toggle {
    position: relative;
    z-index: 1001;
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rail);
    border-radius: var(--radius-button);
    background: transparent;
    cursor: pointer;
}

.mobile-nav-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    border-radius: 999px;
    background: var(--white);
    transition: transform var(--duration-default) var(--ease-emphasized), opacity var(--duration-default) var(--ease-out);
}

.mobile-nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.mobile-nav-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

section {
    position: relative;
    padding: var(--space-104) 0;
    border-top: 1px solid rgba(41, 45, 48, 0.75);
}

.hero-section {
    min-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: calc(var(--header-h) + 56px);
    padding-bottom: var(--space-64);
    border-top: 0;
}

.hero-ambient {
    position: absolute;
    inset: var(--header-h) 0 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 74% 34%, rgba(255, 255, 255, 0.08), transparent 24%),
        radial-gradient(circle at 22% 72%, rgba(59, 158, 255, 0.08), transparent 28%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 84%);
    opacity: 0.8;
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.54fr);
    align-items: center;
    gap: var(--space-48);
}

.hero-content {
    max-width: 760px;
}

.hero-badge,
.section-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--rail);
    border-radius: 999px;
    background: transparent;
    color: var(--frost);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.hero-badge {
    padding: 8px 14px;
    margin-bottom: var(--space-32);
}

.section-badge {
    padding: 7px 12px;
    margin-bottom: var(--space-16);
    color: var(--fog);
    font-size: 12px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 1px rgba(58, 211, 137, 0.3);
    animation: pulse-status 1.8s ease infinite;
}

.hero-title {
    max-width: 850px;
    margin-bottom: var(--space-24);
    font-family: var(--font-display);
    font-size: 70px;
    font-weight: 400;
    line-height: 0.98;
    text-wrap: balance;
}

.hero-subtitle {
    max-width: 680px;
    margin-bottom: var(--space-32);
    color: var(--fog);
    font-size: 18px;
    line-height: 1.65;
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-12);
    margin-bottom: var(--space-40);
}

.hero-metrics {
    display: grid;
    max-width: 580px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--rail);
    border-bottom: 1px solid var(--rail);
}

.hero-metrics div {
    padding: var(--space-20) var(--space-20) var(--space-20) 0;
    border-right: 1px solid var(--rail);
}

.hero-metrics div + div {
    padding-left: var(--space-20);
}

.hero-metrics div:last-child {
    border-right: 0;
}

.hero-metrics dt {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.hero-metrics dd {
    margin-top: 8px;
    color: var(--ash);
    font-size: 13px;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    pointer-events: none;
    overflow: visible;
}

.rubik-stage {
    position: absolute;
    inset: 0;
    min-height: 520px;
    opacity: 1;
    will-change: opacity, filter;
}

.rubik-stage::before {
    content: "";
    position: absolute;
    inset: 10% -10% 4%;
    background:
        radial-gradient(circle at 54% 40%, rgba(255, 255, 255, 0.09), transparent 22%),
        radial-gradient(circle at 46% 54%, rgba(59, 158, 255, 0.055), transparent 34%);
    filter: blur(18px);
}

.rubik-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.rubik-shadow {
    position: absolute;
    left: 50%;
    bottom: 62px;
    z-index: 0;
    display: block;
    width: 330px;
    height: 92px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1), rgba(59, 158, 255, 0.055) 34%, transparent 72%);
    filter: blur(22px);
    transform: translateX(-50%);
    opacity: 0.5;
    pointer-events: none;
}

.logo-strip-section {
    padding: var(--space-48) 0;
}

.strip-caption {
    margin-bottom: var(--space-24);
    color: var(--ash);
    font-size: 14px;
    text-align: center;
}

.wordmark-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--space-16);
    align-items: center;
}

.wordmark-strip span {
    min-width: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.section-header {
    max-width: 760px;
}

.section-header h2 {
    margin: 0 0 var(--space-16);
    color: var(--white);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.08;
    text-wrap: balance;
}

.section-header p {
    max-width: 660px;
    color: var(--fog);
    font-size: 16px;
    line-height: 1.65;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: var(--space-80);
    align-items: start;
}

.sticky-copy {
    position: sticky;
    top: calc(var(--header-h) + 40px);
}

.feature-rail {
    border-top: 1px solid var(--rail);
}

.feature-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: var(--space-24);
    padding: var(--space-32) 0;
    border-bottom: 1px solid var(--rail);
}

.feature-row > i,
.case-link i,
.social-button i,
.platform-list i {
    width: 20px;
    height: 20px;
}

.feature-row > i {
    width: 48px;
    height: 48px;
    padding: 13px;
    border: 1px solid rgba(176, 199, 217, 0.145);
    border-radius: 12px;
    color: var(--white);
}

.feature-row h3,
.stack-card h3,
.case-copy h3 {
    margin-bottom: var(--space-8);
    color: var(--white);
    font-size: 20px;
    font-weight: 650;
    line-height: 1.2;
}

.feature-row p,
.stack-card p,
.case-copy p {
    color: var(--fog);
    font-size: 14px;
    line-height: 1.65;
}

.stack-layout {
    display: grid;
    gap: var(--space-48);
}

.stack-surface {
    border-top: 1px solid var(--rail);
    border-bottom: 1px solid var(--rail);
}

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

.stack-card {
    min-height: 260px;
    padding: var(--space-32);
    border-right: 1px solid var(--rail);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 58%);
}

.stack-card:last-child {
    border-right: 0;
}

.stack-card span {
    display: inline-flex;
    margin-top: var(--space-32);
    padding: 7px 10px;
    border: 1px solid var(--rail);
    border-radius: 999px;
    color: var(--ash);
    font-size: 12px;
}

.automation-band {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: var(--space-40);
    align-items: start;
    padding: var(--space-24) 0;
    border-top: 1px solid rgba(41, 45, 48, 0.84);
    border-bottom: 1px solid rgba(41, 45, 48, 0.84);
}

.automation-copy span {
    display: block;
    margin-bottom: var(--space-8);
    color: var(--ash);
    font-size: 12px;
}

.automation-copy h3 {
    margin-bottom: var(--space-8);
    color: var(--white);
    font-size: 20px;
    font-weight: 650;
    line-height: 1.2;
}

.automation-copy p {
    max-width: 460px;
    color: var(--fog);
    font-size: 14px;
    line-height: 1.65;
}

.automation-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 var(--space-24);
    list-style: none;
}

.automation-list li {
    position: relative;
    min-width: 0;
    padding: 10px 0 10px 18px;
    border-bottom: 1px solid rgba(41, 45, 48, 0.68);
    color: rgba(240, 240, 240, 0.78);
    font-size: 13px;
    line-height: 1.35;
}

.automation-list li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(112, 184, 255, 0.78);
}

.portfolio-header {
    margin-bottom: var(--space-48);
}

.case-list {
    border-top: 1px solid var(--rail);
}

.case-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: var(--space-48);
    align-items: stretch;
    padding: var(--space-32) 0;
    border-bottom: 1px solid var(--rail);
}

.case-kicker {
    display: block;
    margin-bottom: var(--space-12);
    color: var(--ash);
    font-size: 13px;
}

.case-copy h3 {
    font-size: 26px;
}

.case-copy p {
    max-width: 620px;
    margin-bottom: var(--space-20);
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.case-link:hover {
    color: var(--blue-soft);
    transform: translateX(3px);
}

.case-panel {
    display: grid;
    align-content: center;
    min-height: 180px;
    padding: var(--space-24);
    border: 1px solid var(--rail);
    border-radius: var(--radius-card);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 68%),
        var(--surface);
}

.status-line {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--space-20);
    color: var(--fog);
    font-size: 13px;
}

.status-line::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
}

.status-line.delivered {
    color: var(--green);
}

.status-line.opened {
    color: var(--blue-soft);
}

.status-line.lavender {
    color: var(--lavender);
}

.status-line.yellow {
    color: var(--yellow);
}

.status-line.red {
    color: var(--red);
}

.panel-value {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.panel-label {
    margin-top: 10px;
    color: var(--fog);
    font-size: 14px;
}

.contact-layout {
    display: grid;
    gap: var(--space-48);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: var(--space-24);
}

.contact-panel,
.platform-list {
    border: 1px solid var(--rail);
    border-radius: var(--radius-card);
    background: var(--black);
}

.contact-panel {
    overflow: hidden;
}

.contact-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-16);
    padding: var(--space-20) var(--space-24);
    border-bottom: 1px solid var(--rail);
}

.contact-panel-head span:first-child {
    color: var(--white);
    font-weight: 650;
}

.contact-panel-head span:last-child {
    color: var(--ash);
    font-size: 13px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-12);
    padding: var(--space-24);
}

.social-button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-16);
    padding: 0 var(--space-16);
    border: 1px solid var(--rail);
    border-radius: var(--radius-button);
    background: transparent;
    color: var(--frost);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition:
        transform 90ms var(--ease-out),
        border-color var(--duration-fast) var(--ease-out),
        background-color var(--duration-fast) var(--ease-out),
        color var(--duration-fast) var(--ease-out);
}

.social-button:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
    background: rgba(59, 158, 255, 0.06);
    color: var(--white);
}

.platform-list {
    overflow: hidden;
}

.platform-list a {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-16);
    padding: 0 var(--space-24);
    border-bottom: 1px solid var(--rail);
    color: var(--frost);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: background-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.platform-list a:last-child {
    border-bottom: 0;
}

.platform-list a:hover {
    background: rgba(255, 255, 255, 0.035);
    color: var(--white);
}

.main-footer-bottom {
    border-top: 1px solid var(--rail);
    background: var(--black);
    padding: var(--space-24) 0;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-24);
}

.main-footer-bottom p,
.footer-links a {
    color: var(--ash);
    font-size: 13px;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-20);
}

.footer-links a {
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

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

.motion-ready .reveal-target,
.motion-ready .stagger-child {
    will-change: opacity, transform;
}

@keyframes header-in {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-status {
    0% {
        opacity: 1;
        transform: scale(0.94);
        box-shadow: 0 0 0 0 rgba(58, 211, 137, 0.3);
    }
    70% {
        opacity: 0.72;
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(58, 211, 137, 0);
    }
    100% {
        opacity: 1;
        transform: scale(0.94);
        box-shadow: 0 0 0 0 rgba(58, 211, 137, 0);
    }
}

@media (max-width: 1100px) {
    .hero-title {
        font-size: 64px;
    }

    .hero-container,
    .split-section,
    .automation-band,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 680px;
        min-height: 520px;
    }

    .sticky-copy {
        position: static;
    }

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

    .stack-card:nth-child(3) {
        border-top: 1px solid var(--rail);
    }
}

@media (max-width: 820px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: var(--space-80) 0;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-h);
        left: 0;
        width: 100%;
        height: calc(100dvh - var(--header-h));
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 28px 20px;
        border-bottom: 1px solid var(--rail);
        background: var(--black);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity var(--duration-default) var(--ease-out), transform var(--duration-default) var(--ease-emphasized);
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        display: flex;
        min-height: 52px;
        align-items: center;
        border-bottom: 1px solid rgba(41, 45, 48, 0.8);
        font-size: 16px;
    }

    .nav-link.btn {
        justify-content: center;
        margin-top: 20px;
        border-bottom: 1px solid var(--blue);
    }

    .hero-section {
        min-height: auto;
        align-items: flex-start;
        padding-top: calc(var(--header-h) + 36px);
        padding-bottom: var(--space-40);
    }

    .hero-container {
        gap: 0;
    }

    .hero-title {
        margin-bottom: var(--space-20);
        font-size: 48px;
        line-height: 1.04;
    }

    .hero-subtitle {
        margin-bottom: var(--space-24);
        font-size: 16px;
    }

    .hero-actions {
        margin-bottom: var(--space-32);
    }

    .hero-visual {
        position: absolute;
        top: 74px;
        right: -210px;
        z-index: 0;
        display: block;
        width: 300px;
        height: 300px;
        min-height: 300px;
        opacity: 0.18;
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .rubik-stage {
        min-height: 300px;
    }

    .rubik-shadow {
        bottom: 32px;
        width: 250px;
        height: 70px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .case-row {
        grid-template-columns: 1fr;
        gap: var(--space-24);
    }

    .case-panel {
        min-height: 150px;
    }

    .stack-grid,
    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .stack-card {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--rail);
    }

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

    .automation-band {
        gap: var(--space-24);
    }
}

@media (max-width: 560px) {
    body {
        background-size: 56px 56px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-visual {
        top: 150px;
        right: -230px;
        opacity: 0.16;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .hero-metrics div,
    .hero-metrics div + div {
        padding: 14px 8px 14px 0;
        border-right: 1px solid var(--rail);
        border-bottom: 0;
    }

    .hero-metrics div + div {
        padding-left: 8px;
    }

    .hero-metrics div:last-child {
        border-right: 0;
    }

    .hero-metrics dt {
        font-size: 20px;
    }

    .hero-metrics dd {
        font-size: 11px;
        line-height: 1.25;
    }

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

    .automation-list {
        grid-template-columns: 1fr;
    }

    .split-section {
        gap: var(--space-48);
    }

    .feature-row {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: var(--space-16);
    }

    .feature-row > i {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .contact-panel-head,
    .footer-bottom-container {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    .motion-ready .reveal-target,
    .motion-ready .reveal-target.is-visible {
        opacity: 1;
        transform: none;
    }
}
