:root {
    --ink: #071a20;
    --ink-soft: #14313a;
    --paper: #f6f7f1;
    --surface: #ffffff;
    --surface-soft: #edf1ea;
    --line: #d9e0d8;
    --muted: #5c6d71;
    --cyan: #14c9d4;
    --cyan-dark: #087e88;
    --lime: #c7f36a;
    --orange: #ff8a4c;
    --danger: #d85b48;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-sm: 0 12px 32px rgba(7, 26, 32, 0.08);
    --shadow-lg: 0 28px 80px rgba(7, 26, 32, 0.16);
    --container: 1180px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

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

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

svg {
    display: block;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--lime);
    color: var(--ink);
    font-weight: 800;
    transform: translateY(-150%);
}

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

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

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled {
    border-color: rgba(7, 26, 32, 0.1);
    background: rgba(246, 247, 241, 0.9);
    box-shadow: 0 8px 24px rgba(7, 26, 32, 0.06);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 10px;
    background: var(--ink);
    color: var(--lime);
    font-size: 1rem;
}

.brand-dot {
    color: var(--cyan-dark);
}

.brand-label {
    padding-left: 10px;
    border-left: 1px solid var(--line);
    color: var(--muted);
    font-family: "Manrope", sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links > a:not(.button) {
    position: relative;
    min-height: 44px;
    align-content: center;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-links > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 2px;
    background: var(--cyan-dark);
    content: "";
    transform: scaleX(0);
    transition: transform 200ms ease;
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
}

.menu-close {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 200ms var(--ease), box-shadow 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

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

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

.button-small {
    min-height: 46px;
    padding: 11px 17px;
    border-radius: 12px;
    font-size: 0.82rem;
}

.button-primary {
    background: var(--ink);
    box-shadow: 0 12px 25px rgba(7, 26, 32, 0.15);
    color: #fff;
}

.button-primary:hover {
    background: #12353e;
    box-shadow: 0 16px 30px rgba(7, 26, 32, 0.2);
}

.button-primary .icon,
.button-bright .icon {
    transition: transform 200ms ease;
}

.button-primary:hover .icon,
.button-bright:hover .icon {
    transform: translateX(4px);
}

.button-secondary {
    border-color: rgba(7, 26, 32, 0.2);
    background: rgba(255, 255, 255, 0.5);
}

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

.hero {
    position: relative;
    overflow: hidden;
    padding: 142px 0 0;
    background:
        radial-gradient(circle at 78% 15%, rgba(20, 201, 212, 0.16), transparent 28%),
        linear-gradient(130deg, #f9faf5 0%, #eef5ef 100%);
}

.hero::before {
    position: absolute;
    top: 80px;
    left: -130px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(7, 26, 32, 0.08);
    border-radius: 50%;
    content: "";
}

.hero-grid-bg,
.cta-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(7, 26, 32, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 26, 32, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
    gap: 74px;
    align-items: center;
    padding-bottom: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 8px 13px;
    border: 1px solid rgba(8, 126, 136, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    color: var(--cyan-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan-dark);
}

.status-dot::after {
    position: absolute;
    inset: -4px;
    border: 1px solid var(--cyan-dark);
    border-radius: inherit;
    content: "";
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; transform: scale(0.5); }
    75%, 100% { opacity: 0; transform: scale(1.7); }
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", sans-serif;
}

h1 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 5vw, 4.85rem);
    font-weight: 700;
    letter-spacing: -0.062em;
    line-height: 0.98;
}

h1 span {
    position: relative;
    color: var(--cyan-dark);
}

h1 span::after {
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 8px;
    background: var(--lime);
    content: "";
    opacity: 0.7;
    transform: rotate(-1deg);
    z-index: -1;
}

.hero-text {
    max-width: 650px;
    margin-bottom: 30px;
    color: #42575c;
    font-size: 1.08rem;
    line-height: 1.75;
}

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

.microcopy {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.microcopy .icon {
    width: 15px;
    height: 15px;
}

.automation-panel {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: var(--ink);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.automation-panel::before {
    position: absolute;
    top: -12px;
    right: 35px;
    width: 82px;
    height: 24px;
    border: 1px solid rgba(7, 26, 32, 0.12);
    border-radius: 6px 6px 0 0;
    background: var(--lime);
    content: "";
    transform: rotate(2deg);
    z-index: -1;
}

.panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-kicker {
    color: var(--cyan);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.panel-top h2 {
    margin: 3px 0 0;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border: 1px solid rgba(199, 243, 106, 0.22);
    border-radius: 999px;
    background: rgba(199, 243, 106, 0.08);
    color: var(--lime);
    font-size: 0.65rem;
    font-weight: 800;
}

.live-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 12px var(--lime);
}

.workflow {
    padding-top: 20px;
}

.workflow-node {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    align-items: center;
    min-height: 65px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
}

.workflow-node.is-ai {
    border-color: rgba(20, 201, 212, 0.38);
    background: rgba(20, 201, 212, 0.1);
}

.node-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--cyan);
}

.node-icon .icon {
    width: 18px;
    height: 18px;
}

.workflow-node b,
.workflow-node small {
    display: block;
}

.workflow-node b {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
}

.workflow-node small {
    margin-top: 2px;
    color: #9fb0b4;
    font-size: 0.65rem;
}

.node-time,
.node-tag {
    color: #8ea1a5;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.6rem;
}

.node-tag {
    padding: 3px 7px;
    border-radius: 5px;
    background: var(--cyan);
    color: var(--ink);
    font-weight: 800;
}

.flow-line {
    position: relative;
    width: 1px;
    height: 22px;
    margin-left: 33px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.13);
}

.flow-line span {
    position: absolute;
    top: -8px;
    left: 0;
    width: 1px;
    height: 8px;
    background: var(--cyan);
    box-shadow: 0 0 7px var(--cyan);
    animation: flow 1.8s linear infinite;
}

@keyframes flow {
    to { transform: translateY(30px); }
}

.workflow-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.workflow-node.compact {
    grid-template-columns: 38px 1fr;
    padding: 10px;
}

.workflow-node.compact .node-time {
    display: none;
}

.success-node {
    border-color: rgba(199, 243, 106, 0.3);
    background: rgba(199, 243, 106, 0.08);
}

.success-node .node-icon {
    color: var(--lime);
}

.proof-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(7, 26, 32, 0.12);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.proof-strip > div {
    display: flex;
    min-height: 98px;
    align-items: center;
    gap: 14px;
    padding: 20px 23px;
    border-right: 1px solid var(--line);
}

.proof-strip > div:last-child {
    border-right: 0;
}

.proof-strip .icon {
    width: 25px;
    height: 25px;
    color: var(--cyan-dark);
}

.proof-strip b,
.proof-strip small {
    display: block;
}

.proof-strip b {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
}

.proof-strip small {
    color: var(--muted);
    font-size: 0.7rem;
}

.section {
    padding: 112px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-heading.align-left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.section-number {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--cyan-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 4vw, 3.6rem);
    letter-spacing: -0.052em;
    line-height: 1.04;
}

.section-heading p {
    max-width: 650px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    color: var(--muted);
    font-size: 1rem;
}

.section-heading.align-left p {
    margin-left: 0;
}

.problems {
    background: var(--surface);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.problem-card {
    position: relative;
    min-height: 300px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    transition: background-color 220ms ease, transform 220ms var(--ease);
}

.problem-card:hover {
    background: var(--surface-soft);
    transform: translateY(-4px);
}

.card-index {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #aeb9b5;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.68rem;
}

.card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 46px;
    color: var(--danger);
}

.problem-card h3 {
    margin-bottom: 12px;
    font-size: 1.14rem;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.problem-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.insight-banner {
    display: flex;
    max-width: 860px;
    align-items: center;
    gap: 17px;
    margin: 38px auto 0;
    padding: 17px 20px;
    border: 1px solid #eed0c8;
    border-radius: 14px;
    background: #fff6f2;
}

.insight-mark {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--danger);
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.insight-banner p {
    margin: 0;
    color: #68392e;
    font-size: 0.9rem;
    font-weight: 700;
}

.solutions {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.solutions::before {
    position: absolute;
    right: -160px;
    bottom: -160px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(20, 201, 212, 0.15);
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(20, 201, 212, 0.06);
    content: "";
}

.section-heading.light .section-number {
    color: var(--lime);
}

.section-heading.light p {
    color: #a9b8bb;
}

.process-compare {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 44px 1fr;
    align-items: center;
    margin-bottom: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
}

.compare-side {
    min-width: 0;
    padding: 30px;
}

.compare-side h3 {
    margin: 9px 0 22px;
    font-size: 1.18rem;
}

.compare-side p {
    margin: 18px 0 0;
    color: #91a3a7;
    font-size: 0.78rem;
}

.compare-label {
    color: #8fa1a5;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.new-process .compare-label {
    color: var(--lime);
}

.linear-flow {
    display: flex;
    align-items: center;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.linear-flow span {
    flex: 0 0 auto;
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.05);
    color: #d3dcde;
    font-size: 0.67rem;
    font-weight: 700;
}

.linear-flow i {
    color: #61777c;
    font-style: normal;
}

.linear-flow .ai-chip {
    border-color: var(--cyan);
    background: var(--cyan);
    color: var(--ink);
}

.old-process {
    opacity: 0.7;
}

.process-switch {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.service-card {
    min-height: 220px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 220ms ease, background-color 220ms ease, transform 220ms var(--ease);
}

.service-card:hover {
    border-color: rgba(20, 201, 212, 0.44);
    background: rgba(20, 201, 212, 0.06);
    transform: translateY(-4px);
}

.service-card > .icon {
    width: 28px;
    height: 28px;
    margin-bottom: 34px;
    color: var(--cyan);
}

.service-card h3 {
    margin-bottom: 9px;
    font-size: 1rem;
}

.service-card p {
    margin: 0;
    color: #9dafb3;
    font-size: 0.82rem;
}

.outcomes {
    background: var(--paper);
}

.outcome-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

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

.outcome-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.outcome-item > span {
    color: var(--cyan-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
}

.outcome-item h3 {
    margin-bottom: 2px;
    font-size: 1rem;
}

.outcome-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.team-visual {
    display: grid;
    grid-template-columns: 1fr 58px 1fr;
    min-height: 490px;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.team-column {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    border-radius: 19px;
}

.before-team {
    background: #f0f1ed;
}

.after-team {
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.after-team::before {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(var(--cyan) 1px, transparent 1px);
    background-size: 18px 18px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent);
}

.team-label {
    position: absolute;
    top: 22px;
    left: 22px;
    color: #718186;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.after-team .team-label {
    color: var(--lime);
}

.people-stack {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 8px;
}

.people-stack > div,
.operator {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid #d8ddda;
    border-radius: 11px;
    background: #fff;
}

.people-stack span,
.operator span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    background: #e4e7e2;
    color: var(--muted);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
}

.people-stack b,
.people-stack small {
    display: block;
}

.people-stack b,
.operator b {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.72rem;
}

.people-stack small {
    color: var(--muted);
    font-size: 0.58rem;
}

.load-meter {
    position: absolute;
    right: 22px;
    bottom: 21px;
    left: 22px;
}

.load-meter i {
    display: block;
    width: 88%;
    height: 4px;
    margin-bottom: 6px;
    border-radius: 99px;
    background: var(--danger);
}

.load-meter small {
    color: var(--muted);
    font-size: 0.56rem;
}

.load-meter.success i {
    width: 30%;
    background: var(--lime);
}

.load-meter.success small {
    color: #9aacae;
}

.transform-arrow {
    display: grid;
    place-items: center;
    color: var(--cyan-dark);
}

.automation-core {
    position: relative;
    z-index: 1;
    display: grid;
    width: 132px;
    height: 132px;
    place-items: center;
    border: 1px solid rgba(20, 201, 212, 0.34);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 201, 212, 0.2), rgba(20, 201, 212, 0.03) 66%);
    box-shadow: 0 0 50px rgba(20, 201, 212, 0.12);
    text-align: center;
}

.automation-core > .icon {
    position: absolute;
    top: 26px;
    width: 24px;
    height: 24px;
    color: var(--lime);
}

.automation-core b {
    padding-top: 30px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    line-height: 1.15;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(20, 201, 212, 0.24);
    border-radius: 50%;
}

.orbit.one {
    inset: -10px;
}

.orbit.two {
    inset: 10px;
}

.plus {
    z-index: 1;
    margin: 8px 0;
    color: #6f888d;
    font-family: "Space Grotesk", sans-serif;
}

.operator {
    z-index: 1;
    min-width: 148px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.operator span {
    background: var(--lime);
    color: var(--ink);
}

.use-cases {
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.case-card {
    min-height: 380px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper);
    transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.case-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.case-card.featured {
    background: var(--ink);
    color: #fff;
}

.case-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.case-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    color: var(--cyan-dark);
}

.featured .case-icon {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: var(--lime);
}

.case-id {
    color: #8c9a9d;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.case-card h3 {
    margin: 34px 0 25px;
    font-size: 1.65rem;
    letter-spacing: -0.04em;
}

.case-flow {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.case-flow li {
    position: relative;
    min-height: 39px;
    padding: 5px 0 10px 36px;
    color: var(--muted);
    font-size: 0.82rem;
    counter-increment: steps;
}

.case-flow li::before {
    position: absolute;
    top: 4px;
    left: 0;
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--cyan-dark);
    content: counter(steps);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.56rem;
    font-weight: 700;
}

.case-flow li:not(:last-child)::after {
    position: absolute;
    top: 27px;
    bottom: -3px;
    left: 11px;
    width: 1px;
    background: var(--line);
    content: "";
}

.featured .case-flow li {
    color: #b2c0c3;
}

.featured .case-flow li::before {
    border-color: rgba(199, 243, 106, 0.4);
    background: rgba(199, 243, 106, 0.1);
    color: var(--lime);
}

.featured .case-flow li::after {
    background: rgba(255, 255, 255, 0.14);
}

.why-section {
    background: #e9eee8;
}

.why-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

.benefit-list .icon {
    width: 21px;
    height: 21px;
    padding: 4px;
    border-radius: 50%;
    background: var(--cyan-dark);
    color: #fff;
    stroke-width: 2.5;
}

.delivery-process {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: var(--ink);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.process-head {
    display: flex;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #7f969b;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.delivery-process ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.delivery-process li {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 17px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.delivery-process li:last-child {
    border-bottom: 0;
}

.delivery-process li > span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(20, 201, 212, 0.3);
    border-radius: 50%;
    color: var(--cyan);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.58rem;
}

.delivery-process li:not(:last-child)::after {
    position: absolute;
    top: 49px;
    bottom: -1px;
    left: 40px;
    width: 1px;
    background: rgba(20, 201, 212, 0.22);
    content: "";
}

.delivery-process b,
.delivery-process small {
    display: block;
}

.delivery-process b {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
}

.delivery-process small {
    margin-top: 2px;
    color: #8ea3a7;
    font-size: 0.68rem;
}

.faq-section {
    background: var(--paper);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 90px;
    align-items: start;
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--cyan-dark);
    font-size: 0.84rem;
    font-weight: 800;
}

.text-link .icon {
    width: 17px;
    transition: transform 200ms ease;
}

.text-link:hover .icon {
    transform: translateX(4px);
}

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

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    display: flex;
    width: 100%;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.faq-item button span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.faq-item button .icon {
    transition: transform 220ms ease;
}

.faq-item button[aria-expanded="true"] .icon {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    max-width: 620px;
    margin: -4px 0 25px;
    padding-right: 42px;
    color: var(--muted);
    font-size: 0.88rem;
}

.closing-cta {
    position: relative;
    overflow: hidden;
    padding: 118px 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(20, 201, 212, 0.19), transparent 28%),
        var(--ink);
    color: #fff;
}

.closing-cta::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.cta-grid-bg {
    opacity: 0.6;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    mask-image: radial-gradient(circle, black, transparent 67%);
}

.closing-inner {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 850px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-kicker {
    margin-bottom: 18px;
    color: var(--lime);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.closing-inner h2 {
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 5vw, 4.55rem);
    letter-spacing: -0.058em;
    line-height: 1;
}

.closing-inner > p {
    max-width: 670px;
    margin-bottom: 30px;
    color: #aab9bc;
    font-size: 1rem;
}

.button-bright {
    min-height: 58px;
    background: var(--lime);
    box-shadow: 0 15px 40px rgba(199, 243, 106, 0.16);
    color: var(--ink);
}

.button-bright:hover {
    background: #d8ff86;
    box-shadow: 0 18px 50px rgba(199, 243, 106, 0.24);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    color: #82979b;
    font-size: 0.7rem;
}

.cta-note .icon {
    width: 15px;
    height: 15px;
}

.site-footer {
    border-top: 1px solid #18323a;
    background: var(--ink);
    color: #91a2a6;
}

.footer-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 30px;
    min-height: 120px;
    align-items: center;
}

.footer-brand {
    color: #fff;
}

.footer-brand .brand-mark {
    background: var(--lime);
    color: var(--ink);
}

.footer-brand .brand-label {
    border-color: #29434a;
    color: #71898e;
}

.footer-wrap p,
.footer-wrap > span {
    margin: 0;
    font-size: 0.72rem;
}

.footer-wrap > span {
    text-align: right;
}

.motion-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.motion-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }

    .nav-links {
        gap: 20px;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcome-layout,
    .why-layout {
        gap: 48px;
    }

    .team-visual {
        grid-template-columns: 1fr;
    }

    .transform-arrow {
        min-height: 40px;
        transform: rotate(90deg);
    }

    .team-column {
        min-height: 390px;
    }

    .faq-layout {
        gap: 50px;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle[aria-expanded="true"] .menu-open {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-close {
        display: block;
    }

    .nav-links {
        position: fixed;
        z-index: 99;
        top: 78px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 24px 20px 40px;
        background: var(--paper);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 220ms ease, transform 220ms var(--ease), visibility 220ms;
    }

    .nav-links.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links > a:not(.button) {
        min-height: 54px;
        padding: 8px 10px;
        border-bottom: 1px solid var(--line);
        font-family: "Space Grotesk", sans-serif;
        font-size: 1.1rem;
    }

    .nav-links > a:not(.button)::after {
        display: none;
    }

    .nav-links .button {
        margin-top: 16px;
    }

    .hero {
        padding-top: 122px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    h1 {
        max-width: 670px;
    }

    .automation-panel {
        max-width: 620px;
        margin-inline: auto;
    }

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

    .proof-strip > div:nth-child(2) {
        border-right: 0;
    }

    .proof-strip > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .process-compare {
        grid-template-columns: 1fr;
    }

    .process-switch {
        margin: -9px auto;
        transform: rotate(90deg);
        z-index: 2;
    }

    .outcome-layout,
    .why-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .team-visual {
        grid-template-columns: 1fr 58px 1fr;
    }

    .team-column {
        min-height: 460px;
    }

    .transform-arrow {
        transform: none;
    }

    .why-layout,
    .faq-layout {
        gap: 55px;
    }

    .faq-layout .section-heading {
        margin-bottom: 0;
    }

    .footer-wrap {
        grid-template-columns: 1fr 1fr;
        padding: 28px 0;
    }

    .footer-wrap p {
        text-align: right;
    }

    .footer-wrap > span {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .brand-label {
        display: none;
    }

    .section {
        padding: 82px 0;
    }

    .hero {
        padding-top: 112px;
    }

    .hero-layout {
        padding-bottom: 55px;
    }

    h1 {
        font-size: clamp(2.6rem, 13vw, 3.8rem);
        line-height: 1;
    }

    .hero-text {
        font-size: 1rem;
    }

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

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

    .automation-panel {
        padding: 16px;
        border-radius: 21px;
    }

    .workflow-node {
        grid-template-columns: 38px 1fr auto;
        gap: 9px;
    }

    .node-icon {
        width: 36px;
        height: 36px;
    }

    .workflow-split {
        grid-template-columns: 1fr;
    }

    .workflow-node.compact {
        grid-template-columns: 38px 1fr;
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }

    .proof-strip > div {
        min-height: 82px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-strip > div:last-child {
        border-bottom: 0;
    }

    .section-heading {
        margin-bottom: 38px;
        text-align: left;
    }

    .section-heading p {
        margin-left: 0;
    }

    .section-heading h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .problem-grid,
    .service-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        min-height: 260px;
    }

    .service-card {
        min-height: 190px;
    }

    .process-compare {
        border-radius: 18px;
    }

    .compare-side {
        padding: 24px 18px;
    }

    .linear-flow {
        margin-right: -18px;
        padding-right: 18px;
    }

    .team-visual {
        grid-template-columns: 1fr;
    }

    .team-column {
        min-height: 410px;
    }

    .transform-arrow {
        min-height: 48px;
        transform: rotate(90deg);
    }

    .case-card {
        min-height: auto;
        padding: 27px;
    }

    .why-layout,
    .faq-layout {
        gap: 42px;
    }

    .delivery-process li {
        padding-right: 16px;
        padding-left: 18px;
    }

    .delivery-process li:not(:last-child)::after {
        left: 33px;
    }

    .faq-item button {
        min-height: 76px;
    }

    .faq-item button span {
        font-size: 0.92rem;
    }

    .closing-cta {
        padding: 90px 0;
    }

    .closing-inner {
        align-items: stretch;
    }

    .closing-inner h2,
    .closing-inner > p {
        text-align: left;
    }

    .cta-kicker,
    .cta-note {
        align-self: flex-start;
        text-align: left;
    }

    .footer-wrap {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-wrap p,
    .footer-wrap > span {
        grid-column: auto;
        text-align: left;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
