:root {
    --ink: #080d11;
    --ink-soft: #4a565e;
    --paper: #f6f9f7;
    --paper-strong: #ffffff;
    --mist: #e9f8f2;
    --line: #d7e5df;
    --green: #00d084;
    --green-deep: #007a4d;
    --cyan: #15c8ff;
    --sage: #d9fff0;
    --gold: #ffd166;
    --steel: #e7f3f7;
    --mint: #9dffd4;
    --radius: 8px;
    --shadow-soft: 0 24px 60px rgba(17, 19, 15, 0.12);
    --shadow-crisp: 0 12px 30px rgba(17, 19, 15, 0.09);
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 92px;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 4% 8%, rgba(0, 208, 132, 0.24), transparent 27rem),
        radial-gradient(circle at 84% 4%, rgba(21, 200, 255, 0.2), transparent 24rem),
        linear-gradient(180deg, #fbfffd 0%, var(--paper) 45%, #eef8f5 100%);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

body.is-loading {
    overflow: hidden;
}

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

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 24%, rgba(0, 208, 132, 0.18), transparent 20rem),
        radial-gradient(circle at 82% 74%, rgba(21, 200, 255, 0.18), transparent 22rem),
        #fbf6e9;
    transition: opacity 460ms var(--ease), visibility 460ms var(--ease);
}

.page-loader.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    display: grid;
    justify-items: center;
    gap: 16px;
    width: min(720px, 100%);
    text-align: center;
}

.loader-mark {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.28), transparent 30%),
        var(--ink);
    border: 1px solid rgba(0, 208, 132, 0.34);
    border-radius: 50%;
    box-shadow: 0 22px 48px rgba(0, 208, 132, 0.24);
    font-size: 1rem;
    font-weight: 900;
    animation: loaderPulse 1200ms var(--ease) infinite alternate;
}

.loader-logo {
    display: block;
    width: min(260px, 72vw);
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 208, 132, 0.22);
    border-radius: var(--radius);
    box-shadow: 0 22px 48px rgba(0, 208, 132, 0.14);
    animation: loaderPulse 1200ms var(--ease) infinite alternate;
}

.loader-logo img {
    width: 100%;
}

.loader-kicker {
    margin: 0;
    color: var(--green-deep);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.loader-wordmark {
    display: grid;
    gap: 2px;
    color: var(--ink);
    font-size: clamp(2.7rem, 9vw, 6.6rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.loader-wordmark span {
    display: block;
    opacity: 0;
    transform: translateY(18px);
    animation: loaderWord 760ms var(--ease) both;
}

.loader-wordmark span:nth-child(2) {
    color: var(--green-deep);
    animation-delay: 120ms;
}

.loader-wordmark span:nth-child(3) {
    color: var(--cyan);
    animation-delay: 240ms;
}

.loader-track {
    width: min(340px, 80vw);
    height: 8px;
    overflow: hidden;
    background: rgba(8, 13, 17, 0.1);
    border-radius: 999px;
}

.loader-track span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--cyan));
    border-radius: inherit;
    transform-origin: left;
    animation: loaderTrack 1100ms var(--ease) both;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 18px 38px;
    background: rgba(247, 245, 239, 0.88);
    border-bottom: 1px solid rgba(217, 222, 213, 0.72);
    backdrop-filter: blur(18px);
    animation: headerDrop 700ms var(--ease) both;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.site-header > .brand {
    min-width: 168px;
}

.brand-logo {
    display: block;
    width: clamp(168px, 15vw, 224px);
}

.brand-logo img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 260ms var(--ease), filter 260ms var(--ease);
}

.site-header > .brand:hover .brand-logo img {
    filter: drop-shadow(0 12px 22px rgba(0, 138, 88, 0.14));
    transform: translateY(-1px);
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--paper-strong);
    background: linear-gradient(135deg, var(--ink), #123525);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: transform 300ms var(--ease), background 300ms var(--ease);
}

.brand:hover .brand-mark {
    background: linear-gradient(135deg, var(--green-deep), var(--cyan));
    transform: rotate(-8deg) scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 600;
}

.nav a,
.header-action {
    transition: color 160ms ease, transform 160ms ease;
}

.nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
}

.nav a.is-services-link {
    gap: 8px;
    min-height: 38px;
    padding: 0 15px;
    color: #06100c;
    background: linear-gradient(135deg, var(--mint), var(--green) 52%, var(--cyan));
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(0, 208, 132, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.38);
    font-weight: 900;
    overflow: hidden;
    text-shadow: none;
}

.nav a.is-services-link::before {
    position: static;
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    content: "";
    background: var(--paper-strong);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28), 0 0 18px rgba(255, 255, 255, 0.48);
}

.nav a.is-services-link:hover {
    color: #06100c;
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown > .is-services-link {
    border-radius: 999px;
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: min(520px, calc(100vw - 52px));
    padding: 12px;
    color: var(--ink);
    background: rgba(247, 245, 239, 0.97);
    border: 1px solid rgba(217, 222, 213, 0.9);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(17, 19, 15, 0.16);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 180ms var(--ease), transform 220ms var(--ease);
}

.nav-dropdown-panel::before {
    position: absolute;
    top: -18px;
    right: 0;
    left: 0;
    height: 18px;
    content: "";
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav .nav-dropdown .nav-dropdown-panel a {
    display: grid;
    align-content: center;
    gap: 5px;
    justify-content: stretch;
    justify-items: start;
    min-height: 76px;
    min-width: 0;
    padding: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid transparent;
    border-radius: 12px;
    text-align: left;
    transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.nav .nav-dropdown .nav-dropdown-panel a::before,
.nav .nav-dropdown .nav-dropdown-panel a::after {
    content: none !important;
}

.nav .nav-dropdown .nav-dropdown-panel a:hover,
.nav .nav-dropdown .nav-dropdown-panel a[aria-current="page"] {
    color: var(--ink);
    background: rgba(157, 255, 212, 0.34);
    border-color: rgba(0, 208, 132, 0.28);
    transform: translateY(-2px);
}

.nav-dropdown-panel span {
    color: var(--green-deep);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-dropdown-panel strong {
    font-size: 1rem;
    line-height: 1.05;
}

.nav a[aria-current="page"] {
    color: var(--ink);
}

.nav a[aria-current="page"]::before {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, var(--green), var(--cyan));
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 208, 132, 0.22);
}

.nav a.is-services-link[aria-current="page"]::before {
    position: static;
    inset: auto;
    width: 8px;
    height: 8px;
    background: var(--ink);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(8, 13, 17, 0.1), 0 0 18px rgba(21, 200, 255, 0.38);
}

.nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--green), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms var(--ease);
}

.nav a:hover,
.header-action:hover {
    color: var(--green-deep);
}

.nav a:hover::after {
    transform: scaleX(1);
}

.nav a[aria-current="page"]::after {
    content: none;
}

.nav a.is-services-link::after {
    position: absolute;
    inset: 0 auto 0 -70%;
    width: 55%;
    height: auto;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    transform: skewX(-18deg);
    transition: transform 520ms var(--ease);
}

.nav a.is-services-link:hover::after {
    transform: translateX(290%) skewX(-18deg);
}

.header-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 20px;
    color: #06100c;
    background: linear-gradient(135deg, var(--mint), var(--green) 48%, var(--cyan));
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(0, 208, 132, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.42);
    font-size: 0.9rem;
    font-weight: 900;
    overflow: hidden;
}

.header-action::before {
    position: absolute;
    inset: 0 auto 0 -80%;
    width: 70%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-18deg);
    transition: transform 520ms var(--ease);
}

.header-action::after {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: var(--paper-strong);
    content: "→";
    background: rgba(8, 13, 17, 0.88);
    border-radius: 50%;
    transition: transform 180ms var(--ease);
}

.header-action:hover {
    color: #06100c;
    transform: translateY(-2px);
}

.header-action:hover::before {
    transform: translateX(260%) skewX(-18deg);
}

.header-action:hover::after {
    transform: translateX(2px);
}

.menu-toggle {
    position: relative;
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: var(--shadow-crisp);
    cursor: pointer;
    outline: none;
    transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.menu-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 6px));
}

.menu-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 6px));
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    border-color: rgba(0, 208, 132, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 208, 132, 0.12), var(--shadow-crisp);
}

.mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: none;
    gap: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    color: var(--ink-soft);
    font-weight: 800;
    border-radius: var(--radius);
}

.mobile-menu a:hover {
    color: var(--ink);
    background: var(--mist);
}

.mobile-menu a[aria-current="page"] {
    color: var(--ink);
    background: var(--mist);
    box-shadow: inset 4px 0 0 var(--green);
}

.mobile-menu a.is-services-link {
    color: #06100c;
    background: linear-gradient(135deg, rgba(157, 255, 212, 0.78), rgba(21, 200, 255, 0.42));
    box-shadow: 0 12px 24px rgba(0, 208, 132, 0.14);
}

.mobile-menu a.is-services-link[aria-current="page"] {
    background: linear-gradient(135deg, var(--mint), var(--green) 48%, var(--cyan));
    box-shadow: inset 4px 0 0 var(--ink), 0 12px 24px rgba(0, 208, 132, 0.18);
}

.mobile-services {
    display: grid;
    gap: 8px;
}

.mobile-services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 14px;
    color: #06100c;
    background: linear-gradient(135deg, rgba(157, 255, 212, 0.78), rgba(21, 200, 255, 0.42));
    border: 0;
    border-radius: var(--radius);
    box-shadow: 0 12px 24px rgba(0, 208, 132, 0.14);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.mobile-services-toggle.is-active,
.mobile-services-toggle[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--mint), var(--green) 48%, var(--cyan));
    box-shadow: inset 4px 0 0 var(--ink), 0 12px 24px rgba(0, 208, 132, 0.18);
}

.mobile-services-arrow {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms var(--ease);
}

.mobile-services-toggle[aria-expanded="true"] .mobile-services-arrow {
    transform: translateY(2px) rotate(225deg);
}

.mobile-services-panel {
    display: grid;
    gap: 5px;
    padding: 2px 0 4px 10px;
}

.mobile-services-panel[hidden] {
    display: none;
}

.mobile-services-panel a {
    min-height: 40px;
    padding-left: 14px;
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.64);
}

.mobile-services-panel a[aria-current="page"] {
    background: rgba(157, 255, 212, 0.32);
}

.mobile-menu-action {
    color: #06100c !important;
    background: linear-gradient(135deg, var(--mint), var(--green) 48%, var(--cyan));
}

.site-header.is-menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
    align-items: center;
    gap: 64px;
    min-height: calc(100vh - 140px);
    padding: 58px 38px 36px;
    overflow: hidden;
}

.hero::after {
    position: absolute;
    right: -8vw;
    bottom: -18vw;
    z-index: -1;
    width: 42vw;
    max-width: 620px;
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(21, 200, 255, 0.17), transparent 68%);
}

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

.section-kicker {
    margin: 0 0 18px;
    color: var(--green-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 24px;
    font-size: clamp(3.05rem, 4.45vw, 3.95rem);
    line-height: 1;
    letter-spacing: 0;
    max-width: 540px;
}

h2 {
    margin-bottom: 18px;
    font-size: 3rem;
    line-height: 1.04;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
    line-height: 1.2;
}

.hero-lede {
    max-width: 580px;
    color: var(--ink-soft);
    font-size: 1.12rem;
    line-height: 1.7;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

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

.button-primary {
    color: var(--paper-strong);
    background: var(--ink);
    box-shadow: var(--shadow-crisp);
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--green-deep), #07382a);
    box-shadow: 0 16px 38px rgba(0, 208, 132, 0.22);
}

.button-secondary {
    color: var(--ink);
    background: var(--paper-strong);
    border-color: var(--line);
}

.button-secondary:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-crisp);
}

.hero-visual {
    position: relative;
    margin: 0;
    isolation: isolate;
    transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
    transition: transform 400ms var(--ease);
}

.hero-visual::before {
    position: absolute;
    inset: 8% 4% auto auto;
    z-index: -1;
    width: 72%;
    height: 62%;
    content: "";
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.28), rgba(21, 200, 255, 0.28));
    border-radius: 8px;
    transform: rotate(-3deg);
    animation: panelDrift 7s ease-in-out infinite alternate;
}

.hero-visual img {
    width: min(820px, 100%);
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transform: rotate(-1.2deg);
    transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}

.hero-visual picture {
    display: block;
}

.hero-visual:hover img {
    box-shadow: 0 32px 80px rgba(17, 19, 15, 0.18);
    transform: rotate(0deg) translateY(-8px);
}

.floating-note {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 2px;
    min-width: 154px;
    padding: 14px 16px;
    color: var(--ink-soft);
    background: rgba(255, 254, 250, 0.86);
    border: 1px solid rgba(217, 222, 213, 0.86);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    backdrop-filter: blur(16px);
    font-size: 0.78rem;
    font-weight: 700;
    animation: noteFloat 5.5s ease-in-out infinite;
}

.floating-note span {
    width: 9px;
    height: 9px;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(63, 143, 77, 0.12);
}

.floating-note strong {
    color: var(--ink);
    font-size: 1.1rem;
}

.note-top {
    top: 12%;
    left: -4%;
}

.note-bottom {
    right: 2%;
    bottom: 11%;
    animation-delay: -1.8s;
}

.ticker {
    overflow: hidden;
    padding: 10px 0;
    color: var(--paper-strong);
    background: linear-gradient(90deg, var(--ink), #0d211b 45%, #071217);
    border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: tickerMove 28s linear infinite;
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ticker-track span::before {
    width: 8px;
    height: 8px;
    content: "";
    background: var(--mint);
    border-radius: 50%;
}

.metrics,
.section,
.contact-section {
    width: min(1180px, calc(100% - 76px));
    margin: 0 auto;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 22px 0 84px;
}

.metric-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.metric-card::after {
    position: absolute;
    inset: auto -20% -60% auto;
    width: 170px;
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(0, 208, 132, 0.22), transparent 70%);
}

.metric-card:hover,
.dashboard-panel:hover,
.feature-card:hover,
.pricing-card:hover,
details:hover {
    border-color: rgba(0, 208, 132, 0.42);
    box-shadow: 0 18px 42px rgba(17, 19, 15, 0.12);
    transform: translateY(-4px);
}

.metric-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 2.2rem;
    line-height: 1;
}

.metric-card span {
    color: var(--ink-soft);
    font-weight: 600;
}

.section {
    padding: 92px 0;
}

.basic-page {
    min-height: 54vh;
}

.basic-page-hero {
    max-width: 860px;
}

.basic-page-hero h1 {
    max-width: 820px;
}

.basic-page-hero p:not(.section-kicker) {
    color: var(--ink-soft);
    font-size: 1.12rem;
    line-height: 1.75;
}

.not-found-page {
    overflow: hidden;
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.14), transparent 22rem),
        radial-gradient(circle at 18% 68%, rgba(157, 255, 212, 0.2), transparent 26rem),
        linear-gradient(135deg, #4f8587 0%, #427878 42%, #0c211d 100%);
}

.not-found-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 42px;
    align-items: center;
    min-height: calc(100vh - 83px);
    padding: 76px max(38px, calc((100vw - 1180px) / 2)) 72px;
    isolation: isolate;
}

.not-found-hero::before,
.not-found-hero::after {
    position: absolute;
    z-index: -1;
    content: "";
    pointer-events: none;
}

.not-found-hero::before {
    inset: 32px 38px auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.24);
}

.not-found-hero::after {
    right: max(22px, calc((100vw - 1180px) / 2));
    bottom: 42px;
    left: max(22px, calc((100vw - 1180px) / 2));
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.not-found-number {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: -1;
    color: transparent;
    font-size: clamp(14rem, 36vw, 38rem);
    font-weight: 900;
    line-height: 0.72;
    letter-spacing: -0.08em;
    opacity: 0.25;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.08);
    transform: translate(-50%, -48%);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.46);
}

.not-found-gridline {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 70%);
}

.not-found-content {
    display: grid;
    justify-items: center;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.not-found-mark {
    display: grid;
    width: 66px;
    height: 66px;
    margin-bottom: 28px;
    place-items: center;
    color: #06100c;
    background: linear-gradient(135deg, var(--mint), var(--green) 52%, var(--cyan));
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;
    box-shadow: 0 24px 60px rgba(0, 208, 132, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.38);
    font-size: 1.15rem;
    font-weight: 950;
    animation: notFoundPulse 2200ms var(--ease) infinite alternate;
}

.not-found-kicker {
    margin: 0 0 16px;
    color: rgba(217, 255, 240, 0.92);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.not-found-content h1 {
    max-width: 760px;
    margin-bottom: 20px;
    color: var(--paper-strong);
    font-size: clamp(3.7rem, 7.2vw, 7rem);
    line-height: 0.9;
    text-wrap: balance;
}

.not-found-lede {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.68;
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.not-found-actions .button-primary {
    color: #06100c;
    background: var(--paper-strong);
    box-shadow: 0 18px 44px rgba(8, 13, 17, 0.18);
}

.not-found-actions .button-primary:hover {
    background: linear-gradient(135deg, var(--mint), var(--green) 55%, var(--cyan));
}

.not-found-actions .button-secondary {
    color: var(--paper-strong);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(14px);
}

.not-found-actions .button-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(157, 255, 212, 0.54);
}

.not-found-panel {
    position: relative;
    display: grid;
    gap: 18px;
    align-self: stretch;
    min-height: 430px;
    padding: 24px;
    overflow: hidden;
    color: var(--paper-strong);
    background: rgba(8, 13, 17, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 24px 70px rgba(8, 13, 17, 0.18);
    backdrop-filter: blur(18px);
}

.not-found-panel::before {
    position: absolute;
    inset: -40% -55% auto auto;
    width: 260px;
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(157, 255, 212, 0.32), transparent 68%);
    pointer-events: none;
}

.not-found-panel > span {
    color: var(--mint);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.not-found-panel > p {
    max-width: 270px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.not-found-link-list {
    display: grid;
    gap: 10px;
    align-self: end;
}

.not-found-link-list a {
    display: grid;
    gap: 6px;
    min-height: 94px;
    padding: 16px;
    color: var(--paper-strong);
    background:
        radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(157, 255, 212, 0.18), transparent 36%),
        rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    transform: perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.not-found-link-list a:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(157, 255, 212, 0.48);
    transform: translateY(-3px) perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
}

.not-found-link-list strong {
    font-size: 1.05rem;
}

.not-found-link-list small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.42;
}

.not-found-page + .site-footer {
    padding-top: 0;
    background: #0c211d;
}

.not-found-page + .site-footer .footer-bottom {
    color: rgba(255, 255, 255, 0.68);
    border-top-color: rgba(255, 255, 255, 0.14);
}

.not-found-page + .site-footer .footer-social a {
    color: var(--paper-strong);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.contact-page {
    overflow: hidden;
}

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

.contact-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(440px, 1.08fr);
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(217, 229, 223, 0.92);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.contact-window-controls {
    position: absolute;
    top: 24px;
    left: 26px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.contact-window-controls span {
    width: 11px;
    height: 11px;
    background: #f36b5f;
    border-radius: 50%;
    box-shadow: inset 0 -1px 0 rgba(8, 13, 17, 0.14);
}

.contact-window-controls span:nth-child(2) {
    background: #f5c451;
}

.contact-window-controls span:nth-child(3) {
    background: #65c85f;
}

.contact-form-panel {
    min-width: 0;
    padding: 94px 54px 54px;
}

.contact-form-panel h1 {
    max-width: 540px;
    margin-bottom: 18px;
    font-size: clamp(2.85rem, 4.8vw, 4.9rem);
    line-height: 0.94;
}

.contact-intro {
    max-width: 560px;
    margin-bottom: 34px;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.72;
}

.contact-page-form {
    display: grid;
    gap: 24px;
}

.site-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin: 0;
    padding: 13px 15px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.45;
}

.form-status.is-success {
    color: #064b34;
    background: rgba(0, 208, 132, 0.14);
    border-color: rgba(0, 138, 88, 0.22);
}

.form-status.is-error {
    color: #6e1f1f;
    background: rgba(255, 220, 220, 0.78);
    border-color: rgba(190, 58, 58, 0.22);
}

.lead-form .form-status {
    color: var(--paper-strong);
}

.lead-form .form-status.is-success {
    background: rgba(0, 208, 132, 0.18);
    border-color: rgba(191, 255, 227, 0.24);
}

.lead-form .form-status.is-error {
    background: rgba(190, 58, 58, 0.24);
    border-color: rgba(255, 220, 220, 0.28);
}

.recaptcha-field {
    display: none;
}

.contact-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 14px;
}

.contact-field {
    display: grid;
    gap: 8px;
    min-width: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 800;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    color: var(--ink);
    border: 0;
    border-bottom: 1px solid rgba(74, 86, 94, 0.26);
    border-radius: 0;
    font: inherit;
    font-weight: 600;
    transition: border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.contact-field input {
    min-height: 48px;
    padding: 7px 0;
    background: transparent;
}

.contact-field textarea {
    min-height: 118px;
    padding: 14px;
    line-height: 1.55;
    background: rgba(246, 249, 247, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--green-deep);
    box-shadow: 0 8px 0 -6px rgba(0, 208, 132, 0.18);
}

.contact-field textarea:focus {
    background: var(--paper-strong);
    box-shadow: 0 0 0 4px rgba(0, 208, 132, 0.1);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(74, 86, 94, 0.82);
    font-weight: 500;
}

.contact-service-picker {
    display: grid;
    gap: 14px;
    min-width: 0;
    margin: 2px 0 0;
    padding: 0;
    border: 0;
}

.contact-service-picker legend {
    margin-bottom: 14px;
    padding: 0;
    color: var(--ink);
    font-weight: 900;
}

.contact-option {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 90px;
    padding: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(215, 229, 223, 0.86);
    border-radius: var(--radius);
    box-shadow: 0 8px 22px rgba(17, 19, 15, 0.05);
    cursor: pointer;
    transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease), background 180ms var(--ease);
}

.contact-option-custom {
    grid-column: 1 / -1;
}

.contact-option > span:not(.contact-option-icon) {
    min-width: 0;
}

.contact-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.contact-option:has(input:checked) {
    background: linear-gradient(135deg, rgba(157, 255, 212, 0.42), rgba(255, 255, 255, 0.96));
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(0, 208, 132, 0.16), 0 18px 38px rgba(0, 138, 88, 0.1);
}

.contact-option:has(input:focus-visible) {
    box-shadow: 0 0 0 4px rgba(21, 200, 255, 0.18);
}

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

.contact-option-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--ink);
    background: var(--paper-strong);
    border: 1px solid rgba(215, 229, 223, 0.9);
    border-radius: var(--radius);
}

.contact-option-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-option strong,
.contact-option small {
    display: block;
    min-width: 0;
}

.contact-option strong {
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.16;
    overflow-wrap: anywhere;
}

.contact-option small {
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
}

.contact-form-actions {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.contact-form-actions .button {
    min-height: 54px;
}

.contact-form-actions p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.55;
}

.contact-image-panel {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: var(--paper-strong);
    background: var(--ink);
    border-radius: var(--radius);
    isolation: isolate;
}

.contact-image-panel::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background:
        linear-gradient(180deg, rgba(8, 13, 17, 0.06) 0%, rgba(8, 13, 17, 0.18) 46%, rgba(8, 13, 17, 0.76) 100%),
        linear-gradient(90deg, rgba(0, 208, 132, 0.14), transparent 42%);
    pointer-events: none;
}

.contact-image-panel > picture:first-of-type,
.contact-image-panel > picture:first-of-type > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-image-panel > picture:first-of-type > img {
    object-fit: cover;
    object-position: 74% center;
}

.contact-brand-chip {
    position: absolute;
    top: 38px;
    left: 38px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--paper-strong);
    font-weight: 900;
    text-shadow: 0 8px 24px rgba(8, 13, 17, 0.34);
}

.contact-brand-chip span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 50%;
    box-shadow: 0 18px 36px rgba(8, 13, 17, 0.18);
}

.contact-brand-chip picture {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 18px 36px rgba(8, 13, 17, 0.18);
}

.contact-brand-chip picture img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.contact-image-copy {
    position: absolute;
    right: 38px;
    bottom: 38px;
    left: 38px;
    z-index: 2;
    display: grid;
    gap: 24px;
}

.contact-image-copy blockquote {
    max-width: 660px;
    margin: 0;
    font-size: clamp(1.45rem, 2.35vw, 2.55rem);
    font-weight: 850;
    line-height: 1.18;
    letter-spacing: 0;
}

.contact-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-proof-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(8, 13, 17, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    font-size: 0.86rem;
    font-weight: 800;
}

.contact-proof-row strong {
    color: var(--mint);
    font-size: 1rem;
}

.about-page {
    overflow: hidden;
}

.about-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
    align-items: center;
    gap: 58px;
    min-height: calc(100vh - 82px);
    padding: 64px 38px 42px;
}

.about-hero::before {
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;
    height: 72%;
    content: "";
    background:
        linear-gradient(115deg, rgba(0, 208, 132, 0.14), transparent 34%),
        linear-gradient(245deg, rgba(21, 200, 255, 0.14), transparent 34%);
}

.about-hero-copy {
    max-width: 620px;
}

.about-hero-copy h1 {
    max-width: 620px;
    font-size: clamp(3.15rem, 5.8vw, 5.95rem);
    line-height: 0.92;
}

.about-hero-system {
    position: relative;
    min-height: 620px;
    margin: 0;
    transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
    transition: transform 400ms var(--ease);
}

.system-orbit {
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(0, 138, 88, 0.22);
    border-radius: 50%;
    transform: rotate(-12deg);
    animation: systemOrbit 18s linear infinite;
}

.system-orbit-two {
    inset: 21% 5%;
    border-color: rgba(21, 200, 255, 0.22);
    transform: rotate(22deg);
    animation-duration: 24s;
    animation-direction: reverse;
}

.system-panel {
    position: absolute;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    backdrop-filter: blur(18px);
    animation: noteFloat 6s ease-in-out infinite;
}

.system-panel span {
    color: var(--green-deep);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.system-panel strong {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.12;
}

.system-panel-main {
    top: 50%;
    left: 50%;
    width: min(470px, 74vw);
    padding: 22px;
    transform: translate(-50%, -50%);
    animation: systemMain 900ms var(--ease) both;
}

.system-panel-main picture {
    display: block;
    overflow: hidden;
    margin-top: 6px;
    border: 1px solid rgba(215, 229, 223, 0.9);
    border-radius: var(--radius);
}

.system-panel-main img {
    width: 100%;
}

.system-panel-top {
    top: 56px;
    left: 50%;
    width: 178px;
    animation-delay: -1.4s;
}

.system-panel-right {
    top: 42%;
    right: 0;
    width: 190px;
    animation-delay: -2.2s;
}

.system-panel-bottom {
    bottom: 58px;
    left: 4%;
    width: 214px;
    animation-delay: -3.1s;
}

.system-wave {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 9px;
    height: 76px;
    padding: 12px;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.system-wave i {
    display: block;
    height: 32%;
    background: linear-gradient(180deg, var(--green), rgba(21, 200, 255, 0.42));
    border-radius: 999px 999px 3px 3px;
    transform-origin: bottom;
    animation: wavePulse 1500ms var(--ease) infinite alternate;
}

.system-wave i:nth-child(2) { height: 58%; animation-delay: 120ms; }
.system-wave i:nth-child(3) { height: 44%; animation-delay: 240ms; }
.system-wave i:nth-child(4) { height: 74%; animation-delay: 360ms; }
.system-wave i:nth-child(5) { height: 66%; animation-delay: 480ms; }
.system-wave i:nth-child(6) { height: 88%; animation-delay: 600ms; }

.about-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: min(1180px, calc(100% - 76px));
    margin: -8px auto 54px;
}

.about-metric {
    display: grid;
    gap: 10px;
    min-height: 154px;
    padding: 26px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.about-metric:hover,
.belief-card:hover,
.about-service:hover,
.about-reason:hover,
.portfolio-slide:hover {
    border-color: rgba(0, 208, 132, 0.42);
    box-shadow: 0 18px 42px rgba(17, 19, 15, 0.12);
    transform: translateY(-4px);
}

.about-metric strong {
    font-size: 3rem;
    line-height: 1;
}

.about-metric span {
    color: var(--ink-soft);
    font-weight: 800;
}

.about-ticker {
    overflow: hidden;
    padding: 12px 0;
    color: var(--paper-strong);
    background: linear-gradient(90deg, var(--ink), #0d211b 48%, #071217);
}

.about-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
    align-items: start;
}

.about-intro-copy h2,
.about-work-copy h2,
.about-choice-copy h2,
.about-portfolio-heading h2,
.about-commitment h2 {
    max-width: 760px;
}

.about-intro-body {
    display: grid;
    gap: 18px;
    color: var(--ink-soft);
    font-size: 1.06rem;
    line-height: 1.76;
}

.about-intro-body p {
    margin: 0;
}

.about-beliefs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.belief-card {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    padding: 34px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.belief-card > span {
    display: inline-grid;
    width: 48px;
    height: 48px;
    margin-bottom: 58px;
    place-items: center;
    color: var(--paper-strong);
    background: var(--ink);
    border-radius: 50%;
    font-weight: 900;
}

.belief-card p:not(.section-kicker) {
    color: var(--ink-soft);
    line-height: 1.72;
}

.belief-card-dark {
    color: var(--paper-strong);
    background:
        linear-gradient(135deg, rgba(0, 208, 132, 0.16), transparent 36%),
        linear-gradient(225deg, rgba(21, 200, 255, 0.14), transparent 38%),
        var(--ink);
    border-color: rgba(255, 255, 255, 0.12);
}

.belief-card-dark > span {
    color: var(--ink);
    background: linear-gradient(135deg, var(--mint), var(--green) 54%, var(--cyan));
}

.belief-card-dark .section-kicker {
    color: var(--mint);
}

.belief-card-dark p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.74);
}

.about-work {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 68px;
    align-items: start;
}

.about-work-copy {
    position: sticky;
    top: 116px;
}

.about-work-copy p:not(.section-kicker) {
    color: var(--ink-soft);
    line-height: 1.75;
}

.about-progress {
    height: 12px;
    margin-top: 34px;
    overflow: hidden;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.about-progress span {
    display: block;
    width: var(--about-progress, 0%);
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--cyan));
    border-radius: inherit;
    transition: width 120ms linear;
}

.about-step-list {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-step {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 20px;
    min-height: 172px;
    padding: 26px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
}

.about-step > span {
    color: var(--green-deep);
    font-size: 1.65rem;
    font-weight: 900;
}

.about-step p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.about-services {
    width: 100%;
    max-width: none;
    padding-right: max(38px, calc((100vw - 1180px) / 2));
    padding-left: max(38px, calc((100vw - 1180px) / 2));
    color: var(--paper-strong);
    background:
        linear-gradient(135deg, #080d11 0%, #0c1f18 58%, #061016 100%);
}

.about-services .section-kicker {
    color: var(--mint);
}

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

.about-service {
    min-height: 184px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
}

.about-service:hover {
    background: rgba(255, 255, 255, 0.09);
}

.about-service span {
    display: block;
    margin-bottom: 56px;
    color: var(--mint);
    font-weight: 900;
}

.about-service h3 {
    color: var(--paper-strong);
}

.about-choice {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
}

.about-choice-copy p:not(.section-kicker),
.about-portfolio-heading p,
.about-commitment > p {
    color: var(--ink-soft);
    line-height: 1.75;
}

.about-reason-list {
    display: grid;
    gap: 12px;
}

.about-reason {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    min-height: 70px;
    padding: 16px 18px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.about-reason span {
    display: block;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    border-radius: 50%;
}

.about-reason p {
    margin: 0;
    color: var(--ink-soft);
    font-weight: 800;
}

.about-portfolio {
    width: 100%;
    max-width: none;
    padding-right: max(38px, calc((100vw - 1180px) / 2));
    padding-left: max(38px, calc((100vw - 1180px) / 2));
    background: linear-gradient(135deg, rgba(231, 243, 247, 0.96), rgba(217, 255, 240, 0.72));
}

.about-portfolio-heading {
    max-width: 820px;
    margin-bottom: 38px;
}

.about-portfolio-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 18px;
}

.portfolio-slide {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    padding: 24px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.portfolio-slide-media {
    height: 170px;
    margin-bottom: 24px;
    background:
        linear-gradient(135deg, rgba(0, 208, 132, 0.2), rgba(21, 200, 255, 0.16)),
        linear-gradient(90deg, rgba(8, 13, 17, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 13, 17, 0.08) 1px, transparent 1px),
        var(--mist);
    background-size: auto, 34px 34px, 34px 34px, auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.portfolio-slide p {
    color: var(--ink-soft);
    line-height: 1.7;
}

.portfolio-slide div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.portfolio-slide div:last-child span {
    padding: 8px 10px;
    color: var(--green-deep);
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
}

.about-commitment {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 0.58fr);
    gap: 34px;
    align-items: end;
}

.about-commitment .button {
    justify-self: start;
}

.about-v2 {
    background:
        linear-gradient(180deg, #fbfffd 0%, var(--paper) 34%, #eef8f5 100%);
}

.about-v2-hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: grid;
    align-items: end;
    padding: 92px 38px 54px;
    isolation: isolate;
    overflow: hidden;
}

.about-v2-hero::before,
.about-v2-hero::after {
    position: absolute;
    inset: 28px 38px;
    z-index: -1;
    content: "";
    border-radius: var(--radius);
    pointer-events: none;
}

.about-v2-hero::before {
    background:
        linear-gradient(90deg, rgba(0, 208, 132, 0.18) 1px, transparent 1px),
        linear-gradient(180deg, rgba(21, 200, 255, 0.14) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.64), transparent 74%);
    opacity: 0.42;
    transform: translate3d(var(--hero-grid-x, 0px), var(--hero-grid-y, 0px), 0);
    animation: aboutGridDrift 18s linear infinite;
}

.about-v2-hero::after {
    background:
        linear-gradient(110deg, transparent 0 36%, rgba(157, 255, 212, 0.26) 43%, rgba(21, 200, 255, 0.18) 48%, transparent 57% 100%);
    mix-blend-mode: screen;
    opacity: 0.65;
    transform: translateX(-65%) skewX(-9deg);
    animation: aboutHeroSweep 5200ms var(--ease) 900ms infinite;
}

.about-v2-hero-media {
    position: absolute;
    inset: 28px 38px 28px;
    z-index: -2;
    overflow: hidden;
    border: 1px solid rgba(215, 229, 223, 0.92);
    border-radius: var(--radius);
    box-shadow: 0 34px 90px rgba(8, 13, 17, 0.18);
    transform: translate3d(0, var(--scroll-float, 0px), 0) scale(var(--hero-scale, 1.02));
}

.about-v2-hero-media::before,
.about-v2-hero-media::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
}

.about-v2-hero-media::before {
    background:
        linear-gradient(115deg, transparent 0 43%, rgba(0, 208, 132, 0.18) 48%, rgba(21, 200, 255, 0.16) 52%, transparent 58% 100%);
    transform: translateX(-82%);
    animation: aboutMediaScan 6400ms var(--ease) infinite;
}

.about-v2-hero-media::after {
    border: 1px solid rgba(157, 255, 212, 0.38);
    box-shadow: inset 0 0 0 1px rgba(21, 200, 255, 0.12);
    clip-path: polygon(0 0, var(--hero-clip-a, 18%) 0, var(--hero-clip-b, 10%) 100%, 0 100%);
    animation: aboutClipPulse 2600ms var(--ease) infinite alternate;
}

.about-v2-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: aboutMediaDrift 16s ease-in-out infinite alternate;
}

.about-v2-hero-overlay {
    position: absolute;
    inset: 28px 38px 28px;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(251, 255, 253, 0.96) 0%, rgba(251, 255, 253, 0.76) 35%, rgba(251, 255, 253, 0.08) 72%),
        linear-gradient(0deg, rgba(8, 13, 17, 0.28), transparent 42%);
    border-radius: var(--radius);
}

.about-v2-hero-copy {
    max-width: 680px;
    padding: 0 0 48px;
}

.about-v2-hero-copy h1 {
    max-width: 680px;
    margin-bottom: 24px;
    font-size: clamp(3.8rem, 7.7vw, 7.7rem);
    line-height: 0.88;
}

.kinetic-title span {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 0.82em, 0) rotateX(72deg) skewY(2deg);
    transform-origin: left bottom;
    animation: kineticWord 920ms var(--ease) forwards;
    animation-delay: calc(980ms + var(--word-delay, 0ms));
}

.about-v2-hero-copy p:not(.section-kicker) {
    max-width: 620px;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.76;
}

.about-v2-floating-stack {
    position: absolute;
    top: 18%;
    right: max(52px, 8vw);
    display: grid;
    gap: 14px;
}

.about-v2-floating-stack span {
    display: grid;
    min-width: 112px;
    min-height: 56px;
    place-items: center;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(215, 229, 223, 0.9);
    border-radius: 999px;
    box-shadow: var(--shadow-crisp);
    backdrop-filter: blur(18px);
    font-weight: 900;
    transform: translate3d(0, var(--scroll-float, 0px), 0);
    animation: aboutChipOrbit 6.4s ease-in-out infinite;
}

.about-v2-floating-stack span:nth-child(2) {
    margin-left: 72px;
    animation-delay: -1s;
}

.about-v2-floating-stack span:nth-child(3) {
    margin-left: 22px;
    animation-delay: -2s;
}

.about-v2-floating-stack span:nth-child(4) {
    margin-left: 96px;
    animation-delay: -3s;
}

.about-v2-scroll-cue {
    position: absolute;
    right: 58px;
    bottom: 52px;
    width: 44px;
    height: 78px;
    border: 1px solid rgba(8, 13, 17, 0.22);
    border-radius: 999px;
}

.about-v2-scroll-cue span {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    border-radius: 50%;
    transform: translateX(-50%);
    animation: aboutCue 1700ms var(--ease) infinite;
}

.about-v2-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: min(1080px, calc(100% - 76px));
    margin: -28px auto 0;
}

.about-v2-stat {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    padding: 26px;
    color: var(--paper-strong);
    background:
        linear-gradient(135deg, rgba(0, 208, 132, 0.14), rgba(21, 200, 255, 0.1)),
        var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transform: perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.about-v2-stat::before,
.about-v2-service::before,
.about-v2-proof::before,
.about-v2-step-list li::before,
.about-v2-case-reel article::before {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(157, 255, 212, 0.24), transparent 34%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms var(--ease);
}

.about-v2-stat:hover::before,
.about-v2-service:hover::before,
.about-v2-proof:hover::before,
.about-v2-step-list li:hover::before,
.about-v2-case-reel article:hover::before {
    opacity: 1;
}

.about-v2-stat > *,
.about-v2-service > *,
.about-v2-proof > *,
.about-v2-step-list li > *,
.about-v2-case-reel article > * {
    position: relative;
    z-index: 1;
}

.about-v2-stat strong {
    display: block;
    margin-bottom: 14px;
    font-size: 3.2rem;
    line-height: 1;
}

.about-v2-stat span {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 800;
}

.about-v2-marquee {
    position: relative;
    margin-top: 74px;
    overflow: hidden;
    padding: 12px 0;
    color: var(--paper-strong);
    background: linear-gradient(90deg, var(--ink), #0d211b 48%, #071217);
}

.about-v2-marquee::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(157, 255, 212, 0.16), transparent);
    transform: translateX(-100%);
    animation: aboutMarqueeFlash 3600ms linear infinite;
    pointer-events: none;
}

.about-v2-manifest {
    padding-top: 112px;
    padding-bottom: 72px;
}

.about-v2-manifest h2 {
    max-width: 1060px;
    font-size: clamp(2.4rem, 5.2vw, 5.4rem);
    line-height: 0.96;
}

.about-v2-manifest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    max-width: 920px;
    margin-top: 34px;
    margin-left: auto;
}

.about-v2-manifest-grid p {
    color: var(--ink-soft);
    font-size: 1.03rem;
    line-height: 1.78;
}

.about-v2-chapters {
    display: grid;
    grid-template-columns: 1fr 1.08fr 0.92fr;
    gap: 16px;
    align-items: stretch;
    padding-bottom: 28px;
}

.about-v2-chapter {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 32px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transform: translate3d(0, var(--scroll-float, 0px), 0);
}

.about-v2-chapter::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, transparent, rgba(0, 208, 132, 0.18), transparent),
        linear-gradient(180deg, transparent, rgba(21, 200, 255, 0.12), transparent);
    opacity: 0;
    transform: translateY(42%);
    transition: opacity 240ms var(--ease), transform 520ms var(--ease);
    pointer-events: none;
}

.about-v2-chapter:hover::before,
.about-v2-chapter.is-visible::before {
    opacity: 1;
    transform: translateY(0);
}

.about-v2-chapter:nth-child(2) {
    margin-top: 84px;
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 20% 10%, rgba(0, 208, 132, 0.18), transparent 22rem),
        radial-gradient(circle at 90% 80%, rgba(21, 200, 255, 0.16), transparent 20rem),
        var(--ink);
    border-color: rgba(255, 255, 255, 0.12);
}

.about-v2-chapter:nth-child(3) {
    margin-top: 42px;
}

.about-v2-chapter > span {
    display: block;
    margin-bottom: 120px;
    color: var(--green-deep);
    font-weight: 900;
}

.about-v2-chapter:nth-child(2) > span,
.about-v2-chapter:nth-child(2) .section-kicker {
    color: var(--mint);
}

.about-v2-chapter p:not(.section-kicker) {
    color: var(--ink-soft);
    line-height: 1.74;
}

.about-v2-chapter:nth-child(2) p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.74);
}

.about-v2-process {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: 46px;
    align-items: start;
    padding-top: 28px;
}

.about-v2-process-copy {
    position: sticky;
    top: 116px;
}

.about-v2-process-copy p:not(.section-kicker) {
    color: var(--ink-soft);
    line-height: 1.74;
}

.about-v2-process-stage {
    transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
    transition: transform 380ms var(--ease);
}

.about-v2-process-stage picture {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.about-v2-process-stage picture::after {
    position: absolute;
    inset: -30% 0;
    content: "";
    background: linear-gradient(115deg, transparent 20%, rgba(157, 255, 212, 0.24) 48%, rgba(21, 200, 255, 0.18) 52%, transparent 78%);
    transform: translateX(-85%);
    animation: aboutProcessScan 5600ms var(--ease) infinite;
    pointer-events: none;
}

.about-v2-process-stage img {
    width: 100%;
}

.about-v2-step-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-v2-step-list li {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    min-height: 118px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    backdrop-filter: blur(18px);
    transform: perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.about-v2-step-list li:hover,
.about-v2-service:hover,
.about-v2-proof:hover,
.about-v2-case-reel article:hover {
    border-color: rgba(0, 208, 132, 0.42);
    box-shadow: 0 18px 42px rgba(17, 19, 15, 0.12);
}

.about-v2-step-list span {
    color: var(--green-deep);
    font-size: 1.3rem;
    font-weight: 900;
}

.about-v2-step-list p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.6;
}

.about-v2-services {
    position: relative;
    width: 100%;
    max-width: none;
    padding-right: max(38px, calc((100vw - 1180px) / 2));
    padding-left: max(38px, calc((100vw - 1180px) / 2));
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 10% 18%, rgba(0, 208, 132, 0.22), transparent 22rem),
        radial-gradient(circle at 86% 18%, rgba(21, 200, 255, 0.18), transparent 20rem),
        var(--ink);
}

.about-v2-services .section-kicker {
    color: var(--mint);
}

.about-v2-services-head {
    max-width: 820px;
    margin-bottom: 36px;
}

.about-v2-service-orbit {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.about-v2-service {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 24px;
    color: var(--paper-strong);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    transform: perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
    transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.about-v2-service:hover {
    background: rgba(255, 255, 255, 0.1);
}

.about-v2-service span {
    display: block;
    margin-bottom: 52px;
    color: var(--mint);
    font-weight: 900;
}

.about-v2-service p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.58;
}

.about-v2-choice {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 56px;
    align-items: start;
}

.about-v2-choice-copy {
    position: sticky;
    top: 116px;
}

.about-v2-choice-copy p:not(.section-kicker),
.about-v2-portfolio-copy p {
    color: var(--ink-soft);
    line-height: 1.74;
}

.about-v2-proof-wall {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-v2-proof {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    padding: 20px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transform: perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.about-v2-proof span {
    display: block;
    width: 14px;
    height: 14px;
    margin-bottom: 46px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(0, 208, 132, 0.1);
}

.about-v2-proof p {
    margin: 0;
    color: var(--ink-soft);
    font-weight: 800;
    line-height: 1.42;
}

.about-v2-portfolio {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: stretch;
}

.about-v2-portfolio-copy {
    padding: 36px;
    background: linear-gradient(135deg, rgba(231, 243, 247, 0.98), rgba(217, 255, 240, 0.74));
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.about-v2-case-reel {
    display: grid;
    gap: 12px;
}

.about-v2-case-reel article {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    min-height: 138px;
    padding: 24px;
    color: var(--paper-strong);
    background:
        linear-gradient(135deg, rgba(0, 208, 132, 0.16), rgba(21, 200, 255, 0.1)),
        var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.about-v2-case-reel article:hover {
    transform: translateX(8px);
}

.about-v2-case-reel span {
    color: var(--mint);
    font-weight: 900;
}

.about-v2-case-reel strong {
    font-size: 1.6rem;
    line-height: 1.1;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 18px;
}

.dashboard-panel {
    overflow: hidden;
    padding: 26px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.main-panel {
    grid-row: span 2;
}

.panel-header,
.panel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.panel-header {
    margin-bottom: 28px;
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.chart {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 12px;
    height: 260px;
    padding: 20px;
    margin-bottom: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(233, 248, 242, 0.9) 100%),
        linear-gradient(90deg, rgba(21, 200, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 208, 132, 0.08) 1px, transparent 1px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background-size: 100% 100%, 52px 52px;
}

.bar {
    display: block;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, var(--green) 0%, rgba(21, 200, 255, 0.22) 100%);
    transform: scaleY(0.18);
    transform-origin: bottom;
    animation: none;
}

.main-panel.is-visible .bar {
    animation: barRise 2200ms var(--ease) both;
}

.main-panel.is-visible .bar-1 { animation-delay: 160ms; }
.main-panel.is-visible .bar-2 { animation-delay: 320ms; }
.main-panel.is-visible .bar-3 { animation-delay: 480ms; }
.main-panel.is-visible .bar-4 { animation-delay: 640ms; }
.main-panel.is-visible .bar-5 { animation-delay: 800ms; }
.main-panel.is-visible .bar-6 { animation-delay: 960ms; }

.bar-1 { height: 38%; }
.bar-2 { height: 52%; }
.bar-3 { height: 48%; }
.bar-4 { height: 68%; }
.bar-5 { height: 78%; }
.bar-6 { height: 92%; }

.panel-row {
    min-height: 50px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
}

.panel-row strong {
    color: var(--ink);
}

.card-preview {
    position: relative;
    min-height: 260px;
    color: var(--paper-strong);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
        radial-gradient(circle at 82% 10%, rgba(0, 208, 132, 0.24), transparent 24%),
        radial-gradient(circle at 18% 88%, rgba(21, 200, 255, 0.18), transparent 30%),
        #10120f;
}

.flip-card {
    position: relative;
    min-height: 280px;
    padding: 0;
    background: transparent;
    perspective: 1200px;
}

.flip-card::after {
    position: absolute;
    inset: 1px;
    z-index: 0;
    content: "";
    border: 1px solid rgba(157, 255, 212, 0.46);
    border-radius: var(--radius);
    opacity: 0.76;
    pointer-events: none;
    animation: cardInvite 2600ms var(--ease) infinite;
}

.flip-card-toggle {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    min-height: 280px;
    padding: 0;
    color: inherit;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
    perspective: inherit;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.flip-card-toggle:focus-visible {
    outline: none;
}

.flip-card-toggle:focus-visible .flip-card-face,
.flip-card:hover .flip-card-face {
    border-color: rgba(157, 255, 212, 0.72);
    box-shadow: 0 22px 54px rgba(0, 208, 132, 0.2), var(--shadow-crisp);
}

.flip-card:hover .service-card-cue,
.flip-card-toggle:focus-visible .service-card-cue {
    color: #06100c;
    background: linear-gradient(135deg, var(--mint), var(--green) 48%, var(--cyan));
    border-color: rgba(255, 255, 255, 0.48);
    transform: translateY(-2px);
}

.flip-card-inner {
    position: relative;
    display: block;
    min-height: 280px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 700ms var(--ease);
    will-change: transform;
}

.flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg) translateZ(0);
}

.flip-card-face {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: end;
    gap: 12px;
    min-height: 280px;
    padding: 26px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
        radial-gradient(circle at 82% 10%, rgba(0, 208, 132, 0.24), transparent 24%),
        radial-gradient(circle at 18% 88%, rgba(21, 200, 255, 0.18), transparent 30%),
        #10120f;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(0deg) translateZ(1px);
    transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.flip-card-front::before {
    position: absolute;
    top: -34%;
    right: -22%;
    z-index: 0;
    width: 260px;
    height: 260px;
    content: "";
    background: radial-gradient(circle, rgba(0, 208, 132, 0.24), transparent 68%);
    border-radius: 50%;
}

.flip-card-back {
    background:
        radial-gradient(circle at 16% 20%, rgba(21, 200, 255, 0.24), transparent 30%),
        radial-gradient(circle at 82% 78%, rgba(0, 208, 132, 0.24), transparent 28%),
        linear-gradient(135deg, #10120f, #0c1f18);
    transform: rotateY(180deg) translateZ(1px);
}

.flip-card-face::after {
    content: none;
}

.service-card-label,
.flip-card-face strong,
.flip-card-face small,
.service-card-meter,
.service-card-cue,
.service-card-steps,
.service-card-tags,
.flip-card-face .chip,
.flip-card-face .signal {
    position: relative;
    z-index: 1;
}

.flip-card-face .chip,
.flip-card-face .signal {
    position: absolute;
}

.service-card-label,
.flip-card-face small {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.service-card-label {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card-cue {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    color: var(--paper-strong);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    transition: color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.service-card-cue svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: cueSpin 2200ms var(--ease) infinite;
}

.flip-card-face strong {
    max-width: 320px;
    color: var(--paper-strong);
    font-size: 1.75rem;
    line-height: 1.08;
}

.flip-card-face small {
    max-width: 360px;
    font-size: 0.92rem;
    line-height: 1.45;
}

.service-card-meter {
    display: block;
    width: min(260px, 72%);
    height: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.service-card-meter span {
    display: block;
    width: 84%;
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--cyan));
    border-radius: inherit;
}

.service-card-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
}

.service-card-steps span {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 800;
}

.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.service-card-tags span {
    padding: 8px 10px;
    color: var(--paper-strong);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
}

.chip,
.signal {
    position: absolute;
    display: block;
}

.chip {
    top: 28px;
    left: 26px;
    width: 44px;
    height: 34px;
    background: var(--gold);
    border-radius: 7px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.signal {
    top: 32px;
    right: 28px;
    width: 34px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.62);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: pulseSignal 2.6s ease-in-out infinite;
}

.limit-panel {
    min-height: 240px;
}

.limit-panel span {
    display: block;
    color: var(--ink-soft);
    font-weight: 700;
}

.limit-panel strong {
    display: block;
    margin: 30px 0;
    font-size: 3.7rem;
    line-height: 1;
}

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

.progress span {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
}

.is-visible .progress span,
.limit-panel.is-visible .progress span {
    animation: progressFill 2200ms var(--ease) forwards;
}

.contrast-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: none;
    padding-right: max(38px, calc((100vw - 1180px) / 2));
    padding-left: max(38px, calc((100vw - 1180px) / 2));
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 14% 10%, rgba(0, 208, 132, 0.22), transparent 24rem),
        radial-gradient(circle at 88% 20%, rgba(21, 200, 255, 0.2), transparent 24rem),
        linear-gradient(135deg, #080d11 0%, #0c1f18 58%, #061016 100%);
}

.contrast-section::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(0, 208, 132, 0.74), rgba(21, 200, 255, 0.68), transparent);
}

.contrast-section .section-kicker {
    color: var(--mint);
}

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

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}

.feature-card::after {
    position: absolute;
    right: -40px;
    bottom: -48px;
    width: 150px;
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(21, 200, 255, 0.18), rgba(0, 208, 132, 0.16), transparent 70%);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.09);
}

.feature-card p {
    color: var(--mint);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-card span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.workflow-section {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 72px;
    align-items: start;
}

.split-copy p:not(.section-kicker) {
    color: var(--ink-soft);
    line-height: 1.75;
}

.workflow-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.workflow-list li {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    min-height: 92px;
    padding: 18px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 700;
    transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.workflow-list li:hover {
    border-color: rgba(0, 208, 132, 0.42);
    box-shadow: var(--shadow-crisp);
    transform: translateX(6px);
}

.workflow-list span {
    color: var(--green-deep);
    font-weight: 800;
}

.pricing-section {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 36px;
    align-items: center;
    padding: 54px;
    background:
        linear-gradient(135deg, rgba(231, 243, 247, 0.96), rgba(217, 255, 240, 0.74)),
        var(--steel);
    border-radius: var(--radius);
}

.pricing-section::after {
    position: absolute;
    top: -32%;
    right: -12%;
    width: 360px;
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(21, 200, 255, 0.22), rgba(0, 208, 132, 0.2), transparent 68%);
}

.pricing-copy p:not(.section-kicker),
.pricing-card p {
    color: var(--ink-soft);
    line-height: 1.7;
}

.pricing-card {
    position: relative;
    z-index: 1;
    padding: 28px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.pricing-card span {
    display: block;
    margin-bottom: 14px;
    color: var(--green-deep);
    font-weight: 800;
}

.pricing-card strong {
    display: block;
    margin-bottom: 14px;
    font-size: 2.4rem;
}

.pricing-card .button {
    width: 100%;
    margin-top: 10px;
}

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

details {
    padding: 22px 24px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

summary {
    cursor: pointer;
    font-weight: 800;
}

details p {
    margin: 16px 0 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.contact-section {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center;
    margin-bottom: 44px;
    padding: 48px;
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 10% 12%, rgba(0, 208, 132, 0.22), transparent 26rem),
        radial-gradient(circle at 90% 30%, rgba(21, 200, 255, 0.16), transparent 22rem),
        var(--ink);
    border-radius: var(--radius);
}

.contact-section::after {
    position: absolute;
    inset: auto -80px -130px auto;
    width: 320px;
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(21, 200, 255, 0.18), rgba(0, 208, 132, 0.16), transparent 70%);
}

.contact-section .section-kicker {
    color: var(--mint);
}

.lead-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 700;
}

.lead-form input {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    color: var(--paper-strong);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    font: inherit;
    transition: border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.lead-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(191, 232, 196, 0.72);
    box-shadow: 0 0 0 4px rgba(191, 232, 196, 0.12);
}

.lead-form input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.lead-form .button-primary {
    color: var(--ink);
    background: var(--paper-strong);
}

.site-footer {
    padding-bottom: 34px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    width: min(1180px, calc(100% - 76px));
    margin: 0 auto;
    padding-top: 24px;
    color: var(--ink-soft);
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.footer-social a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--ink);
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: var(--shadow-crisp);
    transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.footer-social a:hover,
.footer-social a:focus-visible {
    color: var(--ink);
    background: linear-gradient(135deg, var(--green), var(--cyan));
    box-shadow: 0 16px 34px rgba(0, 208, 132, 0.22);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social svg path {
    fill: currentColor;
    stroke: none;
}

.footer-social a:first-child svg path {
    fill: none;
    stroke: currentColor;
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
    display: grid;
    width: 52px;
    height: 52px;
    padding: 0;
    place-items: center;
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.34), transparent 30%),
        linear-gradient(135deg, var(--green), var(--cyan));
    border: 0;
    border-radius: 50%;
    box-shadow: 0 18px 44px rgba(0, 208, 132, 0.28);
    cursor: pointer;
    opacity: 0;
    transform: translateY(14px) scale(0.92);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.scroll-top[hidden] {
    display: none;
}

.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-top:hover,
.scroll-top:focus-visible {
    box-shadow: 0 22px 54px rgba(0, 208, 132, 0.38);
    outline: none;
    transform: translateY(-3px) scale(1.04);
}

.scroll-top svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.custom-cursor {
    display: none;
}

.cursor-ring,
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    pointer-events: none;
    transform: translate3d(-50px, -50px, 0);
    transition: opacity 160ms var(--ease), width 160ms var(--ease), height 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease);
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 138, 88, 0.46);
    border-radius: 50%;
    box-shadow: 0 0 28px rgba(0, 208, 132, 0.16);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    border-radius: 50%;
}

.custom-cursor.is-hidden .cursor-ring,
.custom-cursor.is-hidden .cursor-dot {
    opacity: 0;
}

.custom-cursor.is-hovering .cursor-ring,
.custom-cursor.is-hovering .cursor-dot {
    opacity: 0;
}

.blog-page,
.blog-article {
    overflow: hidden;
}

.blog-hero,
.blog-article-hero,
.blog-article-layout,
.blog-article-cta {
    width: min(1180px, calc(100% - 76px));
    margin: 0 auto;
}

.blog-hero {
    padding: 58px 0 84px;
}

.blog-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.5fr);
    gap: 36px;
    align-items: stretch;
}

.blog-hero-copy h1 {
    max-width: 900px;
    margin-bottom: 24px;
    font-size: clamp(3.35rem, 6.4vw, 6.25rem);
    line-height: 0.92;
}

.blog-hero-copy p:not(.section-kicker) {
    max-width: 720px;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.76;
}

.blog-hero-media {
    position: relative;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    background: var(--ink);
    border: 1px solid rgba(215, 229, 223, 0.92);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
    transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}

.blog-hero-media::before,
.blog-hero-media::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
}

.blog-hero-media::before {
    background:
        linear-gradient(180deg, transparent 16%, rgba(8, 13, 17, 0.12) 48%, rgba(8, 13, 17, 0.82) 100%),
        linear-gradient(115deg, transparent 0 42%, rgba(157, 255, 212, 0.2) 49%, rgba(21, 200, 255, 0.16) 53%, transparent 61% 100%);
}

.blog-hero-media::after {
    opacity: 0.7;
    background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.22) 48%, transparent 58% 100%);
    transform: translateX(-82%);
    animation: blogLightSweep 5200ms var(--ease) infinite;
}

.blog-hero-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    animation: blogMediaDrift 13s ease-in-out infinite alternate;
}

.blog-hero-media picture,
.blog-featured-media picture,
.blog-card-figure picture,
.blog-article-cover picture {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-hero-media figcaption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    display: grid;
    gap: 12px;
    color: var(--paper-strong);
}

.blog-hero-media figcaption span {
    color: var(--mint);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-hero-media figcaption strong {
    max-width: 360px;
    font-size: clamp(2rem, 3.5vw, 3.45rem);
    line-height: 0.98;
}

.blog-hero-media figcaption p {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.58;
}

.blog-media-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    box-shadow: var(--shadow-crisp);
    backdrop-filter: blur(16px);
    font-size: 0.82rem;
    font-weight: 900;
    animation: blogChipFloat 5.4s ease-in-out infinite;
}

.blog-media-chip-top {
    top: 24px;
    left: 24px;
}

.blog-media-chip-bottom {
    right: 22px;
    bottom: 184px;
    animation-delay: -1.8s;
}

.blog-hero-panel,
.blog-featured-card,
.blog-sidebar-card,
.blog-article-summary {
    position: relative;
    overflow: hidden;
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 18% 16%, rgba(0, 208, 132, 0.24), transparent 20rem),
        radial-gradient(circle at 90% 84%, rgba(21, 200, 255, 0.18), transparent 20rem),
        var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
}

.blog-hero-panel {
    display: grid;
    align-content: end;
    min-height: 360px;
    padding: 28px;
}

.blog-hero-panel::after,
.blog-featured-card::after,
.blog-article-summary::after {
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 220px;
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(157, 255, 212, 0.24), transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-hero-panel span,
.blog-featured-card-copy > span,
.blog-sidebar-card span,
.blog-card-category {
    display: block;
    color: var(--mint);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-hero-panel strong {
    display: block;
    margin: 18px 0 14px;
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    line-height: 0.98;
}

.blog-hero-panel p,
.blog-featured-card li,
.blog-article-summary li {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.62;
}

.blog-featured {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 22px;
    align-items: stretch;
    padding: 42px;
    background: linear-gradient(135deg, rgba(231, 243, 247, 0.98), rgba(217, 255, 240, 0.74));
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.blog-featured-copy p:not(.section-kicker) {
    max-width: 640px;
    color: var(--ink-soft);
    line-height: 1.74;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 28px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    color: var(--green-deep);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 208, 132, 0.22);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.blog-featured-card {
    display: grid;
    grid-template-rows: 230px 1fr;
    align-content: stretch;
    min-height: auto;
    padding: 10px;
    transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
    transition: transform 400ms var(--ease);
}

.blog-featured-media {
    position: relative;
    z-index: 1;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: calc(var(--radius) - 2px);
}

.blog-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms var(--ease);
}

.blog-featured-card:hover .blog-featured-media img {
    transform: scale(1.05);
}

.blog-featured-card-copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    padding: 24px 20px 20px;
}

.blog-featured-card strong {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 600px;
    margin: 34px 0 22px;
    font-size: clamp(1.8rem, 3.4vw, 3.6rem);
    line-height: 1;
}

.blog-featured-card ul,
.blog-article-summary ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-featured-card li,
.blog-article-summary li {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 10px;
}

.blog-featured-card li::before,
.blog-article-summary li::before {
    width: 10px;
    height: 10px;
    margin-top: 7px;
    content: "";
    background: linear-gradient(135deg, var(--mint), var(--cyan));
    border-radius: 50%;
}

.blog-index {
    padding-bottom: 72px;
}

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

.blog-card {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    min-height: 430px;
    padding: 10px 10px 22px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    cursor: pointer;
    transform: perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.blog-card::after {
    position: absolute;
    right: -56px;
    bottom: -68px;
    width: 170px;
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(0, 208, 132, 0.2), rgba(21, 200, 255, 0.14), transparent 70%);
    pointer-events: none;
}

.blog-card:hover {
    background: #fbfffd;
    border-color: rgba(0, 208, 132, 0.42);
    box-shadow: 0 18px 42px rgba(17, 19, 15, 0.12);
    transform: translateY(-4px) perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
}

.blog-card-figure {
    position: relative;
    z-index: 1;
    height: 168px;
    margin: 0 0 18px;
    overflow: hidden;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) - 2px);
}

.blog-card-figure::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(115deg, transparent 0 44%, rgba(157, 255, 212, 0.28) 50%, transparent 58% 100%),
        linear-gradient(180deg, transparent 56%, rgba(8, 13, 17, 0.18) 100%);
    opacity: 0;
    transform: translateX(-70%);
    transition: opacity 220ms var(--ease), transform 520ms var(--ease);
}

.blog-card:hover .blog-card-figure::after,
.blog-card:focus-visible .blog-card-figure::after {
    opacity: 1;
    transform: translateX(70%);
}

.blog-card-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms var(--ease), filter 520ms var(--ease);
}

.blog-card:hover .blog-card-figure img,
.blog-card:focus-visible .blog-card-figure img {
    filter: saturate(1.08);
    transform: scale(1.05);
}

.blog-card-category,
.blog-card h3,
.blog-card p,
.blog-card small,
.blog-card-action {
    position: relative;
    z-index: 1;
    margin-right: 14px;
    margin-left: 14px;
}

.blog-card h3 {
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 1.65rem;
    line-height: 1.08;
}

.blog-card p {
    color: var(--ink-soft);
    line-height: 1.66;
}

.blog-card small {
    align-self: end;
    margin-top: 18px;
    color: var(--green-deep);
    font-weight: 900;
}

.blog-card-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: start;
    min-height: 40px;
    margin-top: 14px;
    padding: 0 13px;
    color: #06100c;
    background: linear-gradient(135deg, var(--mint), var(--green) 52%, var(--cyan));
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(0, 208, 132, 0.18);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0;
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.blog-card-action span {
    display: inline-block;
    transition: transform 180ms var(--ease);
}

.blog-card:hover .blog-card-action,
.blog-card:focus-visible .blog-card-action {
    box-shadow: 0 16px 34px rgba(0, 208, 132, 0.28);
    transform: translateY(-2px);
}

.blog-card:hover .blog-card-action span,
.blog-card:focus-visible .blog-card-action span {
    transform: translateX(3px);
}

.blog-cta,
.blog-article-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    justify-items: center;
    color: var(--paper-strong);
    text-align: center;
    background:
        radial-gradient(circle at 50% -20%, rgba(157, 255, 212, 0.2), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent),
        var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.blog-cta h2,
.blog-article-cta h2 {
    max-width: 960px;
}

.blog-cta p:not(.section-kicker),
.blog-article-cta p:not(.section-kicker) {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.72;
}

.blog-cta .section-kicker,
.blog-article-cta .section-kicker {
    color: var(--mint);
}

.blog-cta .button-primary,
.blog-article-cta .button-primary {
    color: var(--ink);
    background: linear-gradient(135deg, var(--mint), var(--green) 48%, var(--cyan));
}

.blog-cta .button-secondary,
.blog-article-cta .button-secondary {
    color: var(--paper-strong);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.blog-article {
    background: #eef8f5;
}

.blog-article-hero {
    position: relative;
    padding: 54px 0 74px;
    color: var(--paper-strong);
    isolation: isolate;
}

.blog-article-hero::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: -1;
    width: 100vw;
    content: "";
    background:
        radial-gradient(circle at 86% 6%, rgba(21, 200, 255, 0.18), transparent 25rem),
        radial-gradient(circle at 12% 30%, rgba(0, 208, 132, 0.2), transparent 23rem),
        linear-gradient(135deg, #080d11 0%, #10231c 58%, #061016 100%);
    transform: translateX(-50%);
}

.blog-article-hero .portfolio-breadcrumb {
    color: rgba(255, 255, 255, 0.62);
}

.blog-article-hero .portfolio-breadcrumb a {
    color: var(--mint);
}

.blog-article-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: 34px;
    align-items: end;
}

.blog-article-copy h1 {
    max-width: 900px;
    margin-bottom: 24px;
    color: var(--paper-strong);
    font-size: clamp(3.05rem, 5.7vw, 5.8rem);
    line-height: 0.94;
}

.blog-article-copy > p:not(.section-kicker) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.76;
}

.blog-article-summary {
    display: grid;
    min-height: auto;
    padding: 10px;
}

.blog-article-cover {
    position: relative;
    z-index: 1;
    height: 250px;
    margin: 0;
    overflow: hidden;
    border-radius: calc(var(--radius) - 2px);
}

.blog-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: blogMediaDrift 14s ease-in-out infinite alternate;
}

.blog-summary-content {
    position: relative;
    z-index: 1;
    padding: 22px;
}

.blog-summary-content > span {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 28px;
    color: var(--mint);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-article-layout {
    display: grid;
    grid-template-columns: minmax(230px, 280px) minmax(0, 760px);
    gap: 54px;
    align-items: start;
    padding: 82px 0 42px;
}

.blog-article-sidebar {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 14px;
}

.blog-sidebar-card {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.blog-sidebar-card strong {
    font-size: 1.7rem;
    line-height: 1.05;
}

.blog-sidebar-card .button {
    width: 100%;
    margin-top: 8px;
}

.blog-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag-list span {
    padding: 8px 10px;
    color: var(--green-deep);
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
}

.blog-article-body {
    display: grid;
    gap: 42px;
}

.blog-content-section {
    padding-bottom: 42px;
    border-bottom: 1px solid var(--line);
}

.blog-content-section:last-child {
    border-bottom: 0;
}

.blog-content-section h2 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    line-height: 1;
}

.blog-content-section p,
.blog-content-section li {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.82;
}

.blog-content-section p {
    margin-bottom: 18px;
}

.blog-content-section ul {
    display: grid;
    gap: 10px;
    padding: 20px 22px 20px 44px;
    margin: 26px 0 0;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
}

.blog-content-section li::marker {
    color: var(--green-deep);
}

.blog-inline-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 14px;
    padding: 28px;
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 8% 18%, rgba(0, 208, 132, 0.28), transparent 18rem),
        radial-gradient(circle at 88% 12%, rgba(21, 200, 255, 0.22), transparent 18rem),
        var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
}

.blog-inline-cta::after {
    position: absolute;
    right: -72px;
    bottom: -92px;
    width: 220px;
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(157, 255, 212, 0.24), transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-inline-cta > * {
    position: relative;
    z-index: 1;
}

.blog-inline-cta span {
    color: var(--mint);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-inline-cta h2 {
    max-width: 620px;
    margin: 0;
    color: var(--paper-strong);
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    line-height: 1;
}

.blog-inline-cta p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.68;
}

.blog-inline-cta .button {
    justify-self: start;
    margin-top: 8px;
    color: var(--ink);
    background: linear-gradient(135deg, var(--mint), var(--green) 48%, var(--cyan));
}

.blog-article-cta {
    padding: 96px 38px;
    margin-top: 36px;
    margin-bottom: 34px;
}

.blog-related {
    padding-top: 62px;
}

.blog-page + .site-footer,
.blog-article + .site-footer {
    padding-top: clamp(54px, 7vw, 108px);
}

@keyframes blogMediaDrift {
    from {
        transform: scale(1.04) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.1) translate3d(-14px, -8px, 0);
    }
}

@keyframes blogLightSweep {
    0%,
    42% {
        opacity: 0;
        transform: translateX(-82%);
    }

    56% {
        opacity: 0.7;
    }

    82%,
    100% {
        opacity: 0;
        transform: translateX(82%);
    }
}

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

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

.portfolio-page {
    overflow: hidden;
}

.portfolio-hero {
    width: min(1180px, calc(100% - 76px));
    margin: 0 auto;
    padding: 58px 0 86px;
}

.portfolio-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 800;
}

.portfolio-breadcrumb a {
    color: var(--green-deep);
}

.portfolio-breadcrumb a:hover,
.portfolio-breadcrumb a:focus-visible {
    color: var(--ink);
}

.portfolio-hero-copy h1 {
    max-width: 1040px;
    margin-bottom: 34px;
    font-size: clamp(3.6rem, 7.15vw, 6.7rem);
    line-height: 0.9;
}

.portfolio-hero-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.24fr);
    gap: 30px;
    align-items: stretch;
}

.portfolio-hero-media {
    position: relative;
    min-height: 430px;
    margin: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 208, 132, 0.14), rgba(21, 200, 255, 0.12)),
        var(--mist);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
    transition: transform 400ms var(--ease);
}

.portfolio-hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(115deg, transparent 0 42%, rgba(157, 255, 212, 0.26) 49%, rgba(21, 200, 255, 0.18) 53%, transparent 61% 100%),
        linear-gradient(0deg, rgba(8, 13, 17, 0.14), transparent 44%);
    opacity: 0.74;
    pointer-events: none;
}

.portfolio-hero-media picture,
.portfolio-hero-media img {
    width: 100%;
    height: 100%;
}

.portfolio-hero-media img {
    object-fit: cover;
    object-position: center;
}

.portfolio-hero-stats {
    display: grid;
    align-content: center;
    gap: 0;
    margin: 0;
}

.portfolio-hero-stats div {
    padding: 24px 0;
    border-bottom: 1px solid rgba(74, 86, 94, 0.28);
}

.portfolio-hero-stats div:first-child {
    padding-top: 0;
}

.portfolio-hero-stats div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.portfolio-hero-stats dt {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: clamp(2.35rem, 4.2vw, 3.45rem);
    font-weight: 900;
    line-height: 0.95;
}

.portfolio-hero-stats dd {
    margin: 0;
    color: var(--ink-soft);
    font-weight: 850;
    line-height: 1.3;
}

.portfolio-hero-summary {
    display: grid;
    grid-template-columns: minmax(0, 820px) auto;
    gap: 22px;
    align-items: center;
    margin-top: 28px;
}

.portfolio-hero-summary p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.65;
}

.portfolio-impact {
    width: 100%;
    max-width: none;
    padding: 94px max(38px, calc((100vw - 1180px) / 2));
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 12% 12%, rgba(0, 208, 132, 0.22), transparent 23rem),
        radial-gradient(circle at 92% 18%, rgba(21, 200, 255, 0.18), transparent 24rem),
        linear-gradient(135deg, #080d11 0%, #0d211b 55%, #061016 100%);
}

.portfolio-impact .section-kicker {
    color: var(--mint);
}

.portfolio-impact-head {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.portfolio-impact-head h2 {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.portfolio-impact-head p:not(.section-kicker) {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.72;
}

.portfolio-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto 18px;
}

.portfolio-capability {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}

.portfolio-capability::after {
    position: absolute;
    right: -54px;
    bottom: -58px;
    width: 170px;
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(21, 200, 255, 0.18), rgba(0, 208, 132, 0.14), transparent 70%);
}

.portfolio-capability:hover,
.portfolio-case:hover,
.portfolio-proof-list article:hover {
    border-color: rgba(0, 208, 132, 0.42);
    box-shadow: 0 18px 42px rgba(17, 19, 15, 0.12);
    transform: translateY(-4px);
}

.portfolio-capability p {
    color: var(--mint);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.portfolio-capability h3 {
    max-width: 520px;
    color: var(--paper-strong);
}

.portfolio-capability span {
    position: relative;
    z-index: 1;
    display: block;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.66;
}

.portfolio-case-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto;
}

.portfolio-case {
    position: relative;
    overflow: hidden;
    min-height: 570px;
    color: var(--paper-strong);
    background: #111712;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transform: perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.portfolio-case::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(157, 255, 212, 0.22), transparent 34%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms var(--ease);
}

.portfolio-case:hover::before {
    opacity: 1;
}

.portfolio-case > * {
    position: relative;
    z-index: 1;
}

.portfolio-case-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 208, 132, 0.28), rgba(21, 200, 255, 0.16)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        #13231b;
    background-size: auto, 42px 42px, 42px 42px, auto;
}

.portfolio-case-media::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    background:
        linear-gradient(180deg, rgba(8, 13, 17, 0.08) 0%, rgba(8, 13, 17, 0.46) 32%, rgba(8, 13, 17, 0.94) 100%),
        linear-gradient(90deg, rgba(8, 13, 17, 0.18), transparent 52%);
}

.portfolio-case-crm .portfolio-case-media {
    background:
        radial-gradient(circle at 18% 16%, rgba(21, 200, 255, 0.26), transparent 24rem),
        radial-gradient(circle at 88% 24%, rgba(0, 208, 132, 0.24), transparent 18rem),
        #111a23;
}

.portfolio-case-mobile .portfolio-case-media,
.portfolio-case-tracking .portfolio-case-media {
    background:
        linear-gradient(135deg, rgba(0, 208, 132, 0.24), transparent 42%),
        radial-gradient(circle at 72% 18%, rgba(21, 200, 255, 0.32), transparent 18rem),
        #10120f;
}

.portfolio-browser-preview,
.portfolio-dashboard-preview,
.portfolio-phone-preview {
    position: absolute;
    z-index: 1;
    display: block;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
}

.portfolio-browser-preview {
    top: 34px;
    right: 18px;
    left: 18px;
    min-height: 245px;
    border-radius: var(--radius);
    transform: rotate(-4deg);
}

.portfolio-browser-top {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    background: rgba(8, 13, 17, 0.08);
    border-radius: var(--radius) var(--radius) 0 0;
}

.portfolio-browser-top i {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

.portfolio-browser-top i:nth-child(2) {
    background: var(--gold);
}

.portfolio-browser-top i:nth-child(3) {
    background: var(--cyan);
}

.portfolio-preview-hero {
    display: block;
    height: 86px;
    margin: 16px;
    background:
        linear-gradient(135deg, rgba(0, 208, 132, 0.36), rgba(21, 200, 255, 0.28)),
        var(--mist);
    border-radius: var(--radius);
}

.portfolio-preview-lines {
    display: grid;
    gap: 8px;
    padding: 0 18px;
}

.portfolio-preview-lines i,
.portfolio-preview-cta,
.portfolio-dashboard-list i,
.portfolio-phone-panel i {
    display: block;
    height: 9px;
    background: rgba(8, 13, 17, 0.14);
    border-radius: 999px;
}

.portfolio-preview-lines i:nth-child(1) {
    width: 82%;
}

.portfolio-preview-lines i:nth-child(2) {
    width: 58%;
}

.portfolio-preview-lines i:nth-child(3) {
    width: 70%;
}

.portfolio-preview-cta {
    width: 82px;
    height: 24px;
    margin: 18px;
    background: linear-gradient(90deg, var(--green), var(--cyan));
}

.portfolio-dashboard-preview {
    top: 34px;
    right: 18px;
    left: 18px;
    min-height: 260px;
    padding: 16px;
    border-radius: var(--radius);
    transform: rotate(3deg);
}

.portfolio-dashboard-nav {
    display: block;
    height: 22px;
    margin-bottom: 14px;
    background: rgba(8, 13, 17, 0.12);
    border-radius: 999px;
}

.portfolio-dashboard-chart {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 8px;
    height: 112px;
    padding: 12px;
    background: var(--mist);
    border-radius: var(--radius);
}

.portfolio-dashboard-chart i {
    display: block;
    background: linear-gradient(180deg, var(--green), rgba(21, 200, 255, 0.42));
    border-radius: 999px 999px 3px 3px;
}

.portfolio-dashboard-chart i:nth-child(1) { height: 40%; }
.portfolio-dashboard-chart i:nth-child(2) { height: 72%; }
.portfolio-dashboard-chart i:nth-child(3) { height: 56%; }
.portfolio-dashboard-chart i:nth-child(4) { height: 88%; }

.portfolio-dashboard-list {
    display: grid;
    gap: 9px;
    margin-top: 16px;
}

.portfolio-dashboard-list i:nth-child(1) {
    width: 92%;
}

.portfolio-dashboard-list i:nth-child(2) {
    width: 74%;
}

.portfolio-dashboard-list i:nth-child(3) {
    width: 84%;
}

.portfolio-phone-preview {
    top: 26px;
    left: 50%;
    width: 168px;
    height: 318px;
    padding: 22px 14px 16px;
    background: #f8fffb;
    border: 8px solid rgba(8, 13, 17, 0.88);
    border-radius: 28px;
    transform: translateX(-50%) rotate(-3deg);
}

.portfolio-case-tracking .portfolio-phone-preview {
    transform: translateX(-50%) rotate(4deg);
}

.portfolio-phone-speaker {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 44px;
    height: 5px;
    background: rgba(8, 13, 17, 0.24);
    border-radius: 999px;
    transform: translateX(-50%);
}

.portfolio-phone-map {
    position: relative;
    display: block;
    height: 154px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 208, 132, 0.16) 1px, transparent 1px),
        linear-gradient(180deg, rgba(21, 200, 255, 0.16) 1px, transparent 1px),
        var(--mist);
    background-size: 24px 24px;
    border-radius: 16px;
}

.portfolio-phone-map::before {
    position: absolute;
    top: 66px;
    left: 18px;
    width: 104px;
    height: 42px;
    content: "";
    border: 3px solid var(--green-deep);
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(-14deg);
}

.portfolio-phone-map i {
    position: absolute;
    width: 13px;
    height: 13px;
    background: var(--cyan);
    border: 3px solid var(--paper-strong);
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(8, 13, 17, 0.18);
}

.portfolio-phone-map i:nth-child(1) {
    top: 42px;
    left: 24px;
}

.portfolio-phone-map i:nth-child(2) {
    top: 92px;
    right: 26px;
    background: var(--green);
}

.portfolio-phone-map i:nth-child(3) {
    right: 54px;
    bottom: 32px;
    background: var(--gold);
}

.portfolio-phone-panel {
    display: grid;
    gap: 9px;
    margin-top: 16px;
    padding: 14px;
    background: rgba(8, 13, 17, 0.05);
    border-radius: 16px;
}

.portfolio-phone-panel i:nth-child(1) {
    width: 86%;
}

.portfolio-phone-panel i:nth-child(2) {
    width: 62%;
}

.portfolio-case-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 24px;
}

.portfolio-case-category {
    margin-bottom: 8px;
    color: var(--mint);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-case h3 {
    margin-bottom: 10px;
    color: var(--paper-strong);
    font-size: 1.42rem;
    line-height: 1.08;
}

.portfolio-case-content > p:not(.portfolio-case-category) {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.93rem;
    line-height: 1.45;
}

.portfolio-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0;
    margin: 0 0 16px;
    list-style: none;
}

.portfolio-case-tags li {
    padding: 6px 8px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 850;
}

.portfolio-case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    color: var(--paper-strong);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.portfolio-case-link:hover,
.portfolio-case-link:focus-visible {
    color: var(--mint);
}

.portfolio-custom {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    gap: 46px;
    align-items: start;
}

.portfolio-custom-copy {
    position: sticky;
    top: 116px;
}

.portfolio-custom-copy p:not(.section-kicker),
.portfolio-proof-list p,
.portfolio-cta p {
    color: var(--ink-soft);
    line-height: 1.74;
}

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

.portfolio-proof-list article {
    position: relative;
    overflow: hidden;
    min-height: 166px;
    padding: 24px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.portfolio-proof-list span {
    display: block;
    margin-bottom: 34px;
    color: var(--green-deep);
    font-weight: 900;
}

.portfolio-proof-list h3 {
    margin-bottom: 8px;
}

.portfolio-proof-list p {
    margin: 0;
}

.portfolio-cta {
    width: 100%;
    max-width: none;
    padding-right: max(38px, calc((100vw - 1180px) / 2));
    padding-left: max(38px, calc((100vw - 1180px) / 2));
    color: var(--paper-strong);
    text-align: center;
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 208, 132, 0.24), transparent 23rem),
        radial-gradient(circle at 86% 24%, rgba(21, 200, 255, 0.18), transparent 22rem),
        var(--ink);
}

.portfolio-cta .section-kicker {
    color: var(--mint);
}

.portfolio-cta h2 {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
}

.portfolio-cta p {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.76);
}

.portfolio-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.portfolio-cta .button-primary {
    color: #06100c;
    background: linear-gradient(135deg, var(--mint), var(--green) 48%, var(--cyan));
    box-shadow: 0 18px 42px rgba(0, 208, 132, 0.22);
}

.portfolio-cta .button-secondary {
    color: var(--paper-strong);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.portfolio-page + .site-footer {
    padding-top: clamp(76px, 8vw, 132px);
}

@media (hover: hover) and (pointer: fine) {
    body.has-custom-cursor,
    body.has-custom-cursor a,
    body.has-custom-cursor button,
    body.has-custom-cursor input,
    body.has-custom-cursor summary,
    body.has-custom-cursor label {
        cursor: none;
    }

    body.has-custom-cursor .custom-cursor {
        display: block;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms var(--ease), transform 720ms var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal-group .reveal:nth-child(2) { --reveal-delay: 90ms; }
.reveal-group .reveal:nth-child(3) { --reveal-delay: 180ms; }
.reveal-group .reveal:nth-child(4) { --reveal-delay: 270ms; }

@keyframes headerDrop {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }
}

@keyframes loaderPulse {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-4px) scale(1.04);
    }
}

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

@keyframes loaderTrack {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes notFoundPulse {
    from {
        box-shadow: 0 18px 44px rgba(0, 208, 132, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.38);
        transform: translateY(0) rotate(-4deg);
    }

    to {
        box-shadow: 0 30px 70px rgba(21, 200, 255, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.48);
        transform: translateY(-5px) rotate(4deg);
    }
}

@keyframes cardInvite {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 208, 132, 0.2);
        opacity: 0.58;
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 208, 132, 0);
        opacity: 1;
    }
}

@keyframes cueSpin {
    0%,
    72%,
    100% {
        transform: rotate(0deg);
    }

    84% {
        transform: rotate(14deg);
    }
}

@keyframes panelDrift {
    from {
        transform: rotate(-3deg) translate3d(0, 0, 0);
    }
    to {
        transform: rotate(-1deg) translate3d(18px, -10px, 0);
    }
}

@keyframes noteFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes barRise {
    to {
        transform: scaleY(1);
    }
}

@keyframes pulseSignal {
    0%,
    100% {
        opacity: 0.68;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.12);
    }
}

@keyframes progressFill {
    to {
        transform: scaleX(1);
    }
}

@keyframes systemMain {
    from {
        opacity: 0;
        transform: translate(-50%, -42%) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes systemOrbit {
    to {
        transform: rotate(348deg);
    }
}

@keyframes wavePulse {
    from {
        transform: scaleY(0.64);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes kineticWord {
    0% {
        opacity: 0;
        transform: translate3d(0, 0.82em, 0) rotateX(72deg) skewY(2deg);
        filter: blur(6px);
    }

    62% {
        opacity: 1;
        transform: translate3d(0, -0.06em, 0) rotateX(-8deg) skewY(0deg);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotateX(0deg) skewY(0deg);
        filter: blur(0);
    }
}

@keyframes aboutGridDrift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 192px 96px;
    }
}

@keyframes aboutHeroSweep {
    0%,
    42% {
        opacity: 0;
        transform: translateX(-72%) skewX(-9deg);
    }

    56% {
        opacity: 0.72;
    }

    82%,
    100% {
        opacity: 0;
        transform: translateX(72%) skewX(-9deg);
    }
}

@keyframes aboutMediaScan {
    0%,
    30% {
        opacity: 0;
        transform: translateX(-82%);
    }

    44% {
        opacity: 1;
    }

    72%,
    100% {
        opacity: 0;
        transform: translateX(92%);
    }
}

@keyframes aboutClipPulse {
    from {
        opacity: 0.34;
    }

    to {
        opacity: 0.74;
    }
}

@keyframes aboutChipOrbit {
    0%,
    100% {
        transform: translate3d(0, var(--scroll-float, 0px), 0) rotate(0deg);
    }

    33% {
        transform: translate3d(12px, calc(var(--scroll-float, 0px) - 10px), 0) rotate(1.6deg);
    }

    66% {
        transform: translate3d(-10px, calc(var(--scroll-float, 0px) + 8px), 0) rotate(-1.2deg);
    }
}

@keyframes aboutMarqueeFlash {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

@keyframes aboutProcessScan {
    0%,
    34% {
        opacity: 0;
        transform: translateX(-85%);
    }

    48% {
        opacity: 1;
    }

    78%,
    100% {
        opacity: 0;
        transform: translateX(90%);
    }
}

@keyframes aboutMediaDrift {
    from {
        transform: scale(1.05) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.11) translate3d(-18px, -10px, 0);
    }
}

@keyframes aboutCue {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 38px);
    }
}

.services-v2 {
    overflow: hidden;
    background:
        linear-gradient(180deg, #fbfffd 0%, var(--paper) 34%, #eef8f5 100%);
}

.services-v2-hero {
    position: relative;
    display: grid;
    min-height: calc(100vh - 82px);
    align-items: end;
    padding: 92px 38px 54px;
    isolation: isolate;
    overflow: hidden;
}

.services-v2-hero::before,
.services-v2-hero::after {
    position: absolute;
    inset: 28px 38px;
    z-index: -1;
    content: "";
    border-radius: var(--radius);
    pointer-events: none;
}

.services-v2-hero::before {
    background:
        linear-gradient(90deg, rgba(0, 208, 132, 0.18) 1px, transparent 1px),
        linear-gradient(180deg, rgba(21, 200, 255, 0.14) 1px, transparent 1px);
    background-size: 86px 86px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.68), transparent 76%);
    opacity: 0.42;
    animation: aboutGridDrift 18s linear infinite;
}

.services-v2-hero::after {
    background:
        linear-gradient(110deg, transparent 0 36%, rgba(157, 255, 212, 0.26) 43%, rgba(21, 200, 255, 0.18) 48%, transparent 57% 100%);
    mix-blend-mode: screen;
    opacity: 0.65;
    transform: translateX(-65%) skewX(-9deg);
    animation: aboutHeroSweep 5200ms var(--ease) 900ms infinite;
}

.services-v2-hero-media {
    position: absolute;
    inset: 28px 38px;
    z-index: -2;
    overflow: hidden;
    background: var(--ink);
    border: 1px solid rgba(215, 229, 223, 0.92);
    border-radius: var(--radius);
    box-shadow: 0 34px 90px rgba(8, 13, 17, 0.18);
    transform: translate3d(0, var(--scroll-float, 0px), 0) scale(1.02);
}

.services-v2-hero-media::before,
.services-v2-hero-media::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
}

.services-v2-hero-media::before {
    background:
        linear-gradient(115deg, transparent 0 43%, rgba(0, 208, 132, 0.18) 48%, rgba(21, 200, 255, 0.16) 52%, transparent 58% 100%);
    transform: translateX(-82%);
    animation: aboutMediaScan 6400ms var(--ease) infinite;
}

.services-v2-hero-media::after {
    border: 1px solid rgba(157, 255, 212, 0.38);
    box-shadow: inset 0 0 0 1px rgba(21, 200, 255, 0.12);
    clip-path: polygon(0 0, 18% 0, 10% 100%, 0 100%);
    animation: aboutClipPulse 2600ms var(--ease) infinite alternate;
}

.services-v2-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    animation: aboutMediaDrift 16s ease-in-out infinite alternate;
}

.services-v2-hero-overlay {
    position: absolute;
    inset: 28px 38px;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(251, 255, 253, 0.96) 0%, rgba(251, 255, 253, 0.78) 36%, rgba(251, 255, 253, 0.12) 72%),
        linear-gradient(0deg, rgba(8, 13, 17, 0.28), transparent 42%);
    border-radius: var(--radius);
}

.services-v2-hero-copy {
    max-width: 720px;
    padding: 0 0 48px;
}

.services-v2-hero-copy h1 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(3.65rem, 7vw, 7.2rem);
    line-height: 0.88;
}

.services-v2-hero-copy p:not(.section-kicker) {
    max-width: 650px;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.76;
}

.services-v2-floating-stack {
    position: absolute;
    top: 18%;
    right: max(52px, 8vw);
    display: grid;
    gap: 14px;
}

.services-v2-floating-stack span {
    display: grid;
    min-width: 112px;
    min-height: 56px;
    place-items: center;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(215, 229, 223, 0.9);
    border-radius: 999px;
    box-shadow: var(--shadow-crisp);
    backdrop-filter: blur(18px);
    font-weight: 900;
    animation: aboutChipOrbit 6.4s ease-in-out infinite;
}

.services-v2-floating-stack span:nth-child(2) {
    margin-left: 72px;
    animation-delay: -1s;
}

.services-v2-floating-stack span:nth-child(3) {
    margin-left: 22px;
    animation-delay: -2s;
}

.services-v2-floating-stack span:nth-child(4) {
    margin-left: 96px;
    animation-delay: -3s;
}

.services-v2-scroll-cue {
    position: absolute;
    right: 58px;
    bottom: 52px;
    width: 44px;
    height: 78px;
    border: 1px solid rgba(8, 13, 17, 0.22);
    border-radius: 999px;
}

.services-v2-scroll-cue span {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    border-radius: 50%;
    transform: translateX(-50%);
    animation: aboutCue 1700ms var(--ease) infinite;
}

.services-v2-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: min(1080px, calc(100% - 76px));
    margin: -28px auto 0;
}

.services-v2-stat,
.services-v2-service,
.services-v2-proof,
.services-v2-step-list li,
.services-v2-portfolio-card {
    transform: perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
}

.services-v2-stat {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    padding: 26px;
    color: var(--paper-strong);
    background:
        linear-gradient(135deg, rgba(0, 208, 132, 0.14), rgba(21, 200, 255, 0.1)),
        var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.services-v2-stat::before,
.services-v2-service::before,
.services-v2-proof::before,
.services-v2-step-list li::before,
.services-v2-portfolio-card::before {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(157, 255, 212, 0.24), transparent 34%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms var(--ease);
}

.services-v2-stat:hover::before,
.services-v2-service:hover::before,
.services-v2-proof:hover::before,
.services-v2-step-list li:hover::before,
.services-v2-portfolio-card:hover::before {
    opacity: 1;
}

.services-v2-stat > *,
.services-v2-service > *,
.services-v2-proof > *,
.services-v2-step-list li > *,
.services-v2-portfolio-card > * {
    position: relative;
    z-index: 1;
}

.services-v2-stat:hover,
.services-v2-service:hover,
.services-v2-proof:hover,
.services-v2-step-list li:hover,
.services-v2-portfolio-card:hover {
    border-color: rgba(0, 208, 132, 0.42);
    box-shadow: 0 18px 42px rgba(17, 19, 15, 0.12);
}

.services-v2-stat strong {
    display: block;
    margin-bottom: 14px;
    font-size: 3.2rem;
    line-height: 1;
}

.services-v2-stat span {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 800;
}

.services-v2-marquee {
    position: relative;
    margin-top: 74px;
    overflow: hidden;
    padding: 12px 0;
    color: var(--paper-strong);
    background: linear-gradient(90deg, var(--ink), #0d211b 48%, #071217);
}

.services-v2-marquee::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(157, 255, 212, 0.16), transparent);
    transform: translateX(-100%);
    animation: aboutMarqueeFlash 3600ms linear infinite;
    pointer-events: none;
}

.services-v2-manifest {
    padding-top: 112px;
    padding-bottom: 72px;
}

.services-v2-manifest h2 {
    max-width: 1060px;
    font-size: clamp(2.35rem, 5vw, 5.2rem);
    line-height: 0.96;
}

.services-v2-manifest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    max-width: 920px;
    margin-top: 34px;
    margin-left: auto;
}

.services-v2-manifest-grid p {
    color: var(--ink-soft);
    font-size: 1.03rem;
    line-height: 1.78;
}

.services-v2-catalog {
    width: 100%;
    max-width: none;
    padding-right: max(38px, calc((100vw - 1180px) / 2));
    padding-left: max(38px, calc((100vw - 1180px) / 2));
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 10% 18%, rgba(0, 208, 132, 0.22), transparent 22rem),
        radial-gradient(circle at 86% 18%, rgba(21, 200, 255, 0.18), transparent 20rem),
        var(--ink);
}

.services-v2-catalog .section-kicker {
    color: var(--mint);
}

.services-v2-catalog-head {
    max-width: 820px;
    margin-bottom: 36px;
}

.services-v2-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.services-v2-service {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 24px;
    color: var(--paper-strong);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.services-v2-service:hover {
    background: rgba(255, 255, 255, 0.1);
}

.services-v2-service > span {
    display: block;
    margin-bottom: 74px;
    color: var(--mint);
    font-weight: 900;
}

.services-v2-service p {
    margin: 0 0 12px;
    color: var(--mint);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.services-v2-service h3 {
    color: var(--paper-strong);
}

.services-v2-service small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.58;
}

.services-v2-objectives {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 46px;
    align-items: start;
}

.services-v2-objectives-copy {
    position: sticky;
    top: 116px;
}

.services-v2-objective-grid {
    display: grid;
    gap: 16px;
}

.services-v2-objective {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 32px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transform: translate3d(0, var(--scroll-float, 0px), 0);
}

.services-v2-objective::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, transparent, rgba(0, 208, 132, 0.18), transparent),
        linear-gradient(180deg, transparent, rgba(21, 200, 255, 0.12), transparent);
    opacity: 0;
    transform: translateY(42%);
    transition: opacity 240ms var(--ease), transform 520ms var(--ease);
    pointer-events: none;
}

.services-v2-objective:hover::before,
.services-v2-objective.is-visible::before {
    opacity: 1;
    transform: translateY(0);
}

.services-v2-objective:nth-child(2) {
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 20% 10%, rgba(0, 208, 132, 0.18), transparent 22rem),
        radial-gradient(circle at 90% 80%, rgba(21, 200, 255, 0.16), transparent 20rem),
        var(--ink);
    border-color: rgba(255, 255, 255, 0.12);
}

.services-v2-objective > * {
    position: relative;
    z-index: 1;
}

.services-v2-objective span {
    display: block;
    margin-bottom: 68px;
    color: var(--green-deep);
    font-weight: 900;
}

.services-v2-objective:nth-child(2) span,
.services-v2-objective:nth-child(2) p {
    color: rgba(255, 255, 255, 0.74);
}

.services-v2-objective:nth-child(2) span {
    color: var(--mint);
}

.services-v2-objective p,
.services-v2-difference-copy p,
.services-v2-process-copy p,
.services-v2-cta-copy p {
    color: var(--ink-soft);
    line-height: 1.74;
}

.services-v2-difference {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 56px;
    align-items: start;
}

.services-v2-difference-copy {
    position: sticky;
    top: 116px;
}

.services-v2-proof-wall {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.services-v2-proof {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    padding: 20px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.services-v2-proof span {
    display: block;
    width: 14px;
    height: 14px;
    margin-bottom: 46px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(0, 208, 132, 0.1);
}

.services-v2-proof p {
    margin: 0;
    color: var(--ink-soft);
    font-weight: 800;
    line-height: 1.42;
}

.services-v2-process {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: 46px;
    align-items: start;
}

.services-v2-process-copy {
    position: sticky;
    top: 116px;
}

.services-v2-step-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.services-v2-step-list li {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    min-height: 142px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    backdrop-filter: blur(18px);
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.services-v2-step-list span {
    color: var(--green-deep);
    font-size: 1.3rem;
    font-weight: 900;
}

.services-v2-step-list p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.6;
}

.services-v2-cta {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: stretch;
}

.services-v2-cta-copy {
    padding: 36px;
    background: linear-gradient(135deg, rgba(231, 243, 247, 0.98), rgba(217, 255, 240, 0.74));
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.services-v2-portfolio-card {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: end;
    min-height: 360px;
    padding: 30px;
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 14% 18%, rgba(0, 208, 132, 0.24), transparent 24rem),
        radial-gradient(circle at 88% 20%, rgba(21, 200, 255, 0.2), transparent 22rem),
        var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.services-v2-portfolio-card span {
    display: block;
    margin-bottom: 86px;
    color: var(--mint);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-v2-portfolio-card strong {
    display: block;
    margin-bottom: 14px;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    line-height: 0.98;
}

.services-v2-portfolio-card p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.64;
}

.services-v2-portfolio-card .button {
    justify-self: start;
    color: var(--ink);
    background: linear-gradient(135deg, var(--mint), var(--green) 48%, var(--cyan));
}

.services-ob {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 70% 8%, rgba(0, 208, 132, 0.16), transparent 26rem),
        radial-gradient(circle at 12% 36%, rgba(21, 200, 255, 0.12), transparent 24rem),
        #1b1b1a;
}

.services-ob::selection {
    color: var(--ink);
    background: var(--mint);
}

.services-ob-hero {
    position: relative;
    display: grid;
    min-height: calc(100svh - 74px);
    padding: clamp(22px, 3vw, 40px) 38px clamp(78px, 8vw, 112px);
    isolation: isolate;
}

.services-ob-orbits,
.services-ob-orbit-side {
    position: absolute;
    pointer-events: none;
}

.services-ob-orbits {
    inset: 4% 7% auto auto;
    z-index: -1;
    width: min(760px, 62vw);
    aspect-ratio: 1;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    animation: servicesOrbit 38s linear infinite;
}

.services-ob-orbits::before,
.services-ob-orbits::after,
.services-ob-orbit-side::before,
.services-ob-orbit-side::after {
    position: absolute;
    inset: 8%;
    content: "";
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.services-ob-orbits::after {
    inset: 17%;
    border-color: rgba(157, 255, 212, 0.12);
}

.services-ob-sphere {
    position: absolute;
    top: 3%;
    right: 12%;
    z-index: -1;
    display: block;
    width: min(580px, 44vw);
    aspect-ratio: 1;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.86), transparent 18%),
        linear-gradient(135deg, var(--green), var(--cyan));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow: 0 34px 120px rgba(0, 208, 132, 0.16);
    transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
    transition: transform 420ms var(--ease);
}

.services-ob-sphere::before,
.services-ob-sphere::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
}

.services-ob-sphere::before {
    background:
        radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.62), transparent 24%),
        linear-gradient(135deg, rgba(255, 209, 102, 0.58), rgba(0, 208, 132, 0.34) 38%, rgba(21, 200, 255, 0.38));
    mix-blend-mode: screen;
}

.services-ob-sphere::after {
    background:
        radial-gradient(circle at 35% 66%, rgba(255, 255, 255, 0.08), transparent 20%),
        linear-gradient(90deg, rgba(27, 27, 26, 0.18), transparent 46%, rgba(255, 255, 255, 0.16));
}

.services-ob-sphere img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.44;
    filter: saturate(0.92) contrast(1.08);
    transform: scale(1.28);
    animation: servicesSphereDrift 18s ease-in-out infinite alternate;
}

.services-ob-hero-copy {
    align-self: start;
    max-width: min(1060px, 82vw);
    padding-top: clamp(4px, 1.4vw, 20px);
}

.services-ob-kicker {
    margin: 0 0 18px;
    color: var(--mint);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.services-ob-title {
    display: grid;
    gap: 0;
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(4rem, 8.8vw, 8.9rem);
    font-weight: 500;
    line-height: 0.86;
    text-transform: uppercase;
}

.services-ob-title span {
    display: block;
    opacity: 0;
    transform: translate3d(0, 0.55em, 0) rotateX(64deg);
    transform-origin: left bottom;
    animation: servicesTitleIn 920ms var(--ease) forwards;
}

.services-ob-title span:nth-child(2) {
    margin-left: min(12vw, 170px);
    color: var(--paper-strong);
    animation-delay: 120ms;
}

.services-ob-title span:nth-child(3) {
    margin-left: min(31vw, 430px);
    color: rgba(157, 255, 212, 0.72);
    animation-delay: 220ms;
}

.services-ob-title span:nth-child(4) {
    color: rgba(255, 255, 255, 0.68);
    animation-delay: 320ms;
}

.services-ob-hero-note {
    position: absolute;
    right: 38px;
    bottom: 54px;
    width: min(360px, 28vw);
    color: rgba(255, 255, 255, 0.66);
}

.services-ob-hero-note span {
    display: block;
    margin-bottom: 18px;
    color: var(--paper-strong);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.services-ob-hero-note p,
.services-ob-intro p,
.services-ob-service-row small,
.services-ob-process-copy p,
.services-ob-process-list p,
.services-ob-proof-grid p {
    margin: 0;
    line-height: 1.68;
}

.services-ob-scroll {
    position: absolute;
    left: 38px;
    bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.services-ob-scroll::after {
    width: 9px;
    height: 9px;
    content: "";
    background: var(--mint);
    border-radius: 50%;
    animation: servicesDot 1400ms var(--ease) infinite;
}

.services-ob-manifest,
.services-ob-index,
.services-ob-outcomes,
.services-ob-process,
.services-ob-proof,
.services-ob-cta {
    width: min(1180px, calc(100% - 76px));
    margin: 0 auto;
}

.services-ob-manifest {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
    gap: clamp(46px, 6vw, 92px);
    align-items: center;
    min-height: 62vh;
    padding: 92px 0;
}

.services-ob-big-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(2.1rem, 4.1vw, 4.45rem);
    line-height: 1.02;
}

.services-ob-intro {
    display: grid;
    gap: 28px;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.62);
    justify-self: end;
}

.services-ob-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: min(260px, 100%);
    min-height: 52px;
    padding: 0 2px;
    color: var(--paper-strong);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-ob-index {
    padding: 112px 0 92px;
}

.services-ob-index-head {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 42px;
    align-items: start;
    margin-bottom: 34px;
}

.services-ob-index-head h2,
.services-ob-outcomes-head h2,
.services-ob-process-copy h2,
.services-ob-cta h2 {
    max-width: 860px;
    margin: 0;
    color: var(--paper-strong);
    font-size: clamp(2.3rem, 5vw, 5.1rem);
    font-weight: 700;
    line-height: 0.98;
}

.services-ob-service-list {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.services-ob-service-row {
    position: relative;
    display: grid;
    grid-template-columns: 88px minmax(220px, 0.72fr) minmax(260px, 1fr) 48px;
    gap: 24px;
    align-items: center;
    min-height: 132px;
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    overflow: hidden;
}

.services-ob-service-row::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(157, 255, 212, 0.12), rgba(21, 200, 255, 0.08), transparent);
    opacity: 0;
    transform: translateX(-12%);
    transition: opacity 220ms var(--ease), transform 420ms var(--ease);
}

.services-ob-service-row:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.services-ob-service-row > * {
    position: relative;
    z-index: 1;
}

.services-ob-number,
.services-ob-service-row p {
    color: var(--mint);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.services-ob-service-row p {
    margin: 0 0 10px;
}

.services-ob-service-row h3 {
    margin: 0;
    color: var(--paper-strong);
    font-size: clamp(1.6rem, 3vw, 3.1rem);
    line-height: 0.95;
}

.services-ob-service-row small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.94rem;
}

.services-ob-plus {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--paper-strong);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    font-size: 0;
    transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.services-ob-plus::before,
.services-ob-plus::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 4px;
    content: "";
    background: currentColor;
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.services-ob-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.services-ob-service-row:hover .services-ob-plus {
    color: var(--ink);
    background: var(--mint);
    border-color: transparent;
    transform: rotate(90deg);
}

.services-ob-outcomes {
    position: relative;
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 58px;
    align-items: center;
    padding: 112px 0;
    isolation: isolate;
}

.services-ob-orbit-side {
    top: 12%;
    left: -28vw;
    z-index: -1;
    width: 58vw;
    aspect-ratio: 1;
    border: 1px dashed rgba(255, 255, 255, 0.11);
    border-radius: 50%;
}

.services-ob-outcomes-head {
    position: sticky;
    top: 32vh;
    align-self: center;
}

.services-ob-outcome-grid {
    display: grid;
    gap: 18px;
}

.services-ob-outcome {
    min-height: 320px;
    padding: 30px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
    transform: translate3d(0, var(--scroll-float, 0px), 0);
}

.services-ob-outcome:nth-child(2) {
    margin-left: 12%;
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 82% 12%, rgba(21, 200, 255, 0.2), transparent 26rem),
        var(--ink);
}

.services-ob-outcome:nth-child(3) {
    margin-left: -6%;
    background: linear-gradient(135deg, var(--mint), rgba(21, 200, 255, 0.76));
}

.services-ob-outcome span {
    display: block;
    margin-bottom: 110px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.services-ob-outcome h3 {
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 0.94;
}

.services-ob-outcome p {
    max-width: 460px;
    color: currentColor;
    line-height: 1.6;
    opacity: 0.72;
}

.services-ob-process {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 62px;
    padding: 112px 0;
}

.services-ob-process-copy {
    position: sticky;
    top: 120px;
    align-self: start;
}

.services-ob-process-copy p {
    max-width: 460px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.62);
}

.services-ob-process-list {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: process;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.services-ob-process-list li {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 24px;
    min-height: 174px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.services-ob-process-list span {
    color: var(--mint);
    font-weight: 900;
    letter-spacing: 0.16em;
}

.services-ob-process-list h3 {
    margin-bottom: 14px;
    color: var(--paper-strong);
    font-size: clamp(1.7rem, 3.2vw, 3.3rem);
    line-height: 0.96;
}

.services-ob-process-list p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.58);
}

.services-ob-proof {
    padding: 80px 0 112px;
}

.services-ob-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.services-ob-proof-grid article {
    min-height: 210px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.services-ob-proof-grid article:last-child {
    border-right: 0;
}

.services-ob-proof-grid span {
    display: block;
    margin-bottom: 64px;
    color: var(--paper-strong);
    font-size: clamp(2rem, 3.8vw, 4rem);
    font-weight: 800;
    line-height: 0.95;
}

.services-ob-proof-grid p {
    color: rgba(255, 255, 255, 0.62);
}

.services-ob-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    justify-items: center;
    padding: 122px 38px;
    margin-bottom: 48px;
    text-align: center;
    background:
        radial-gradient(circle at 50% -20%, rgba(157, 255, 212, 0.2), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.services-ob-cta::before {
    position: absolute;
    inset: auto auto -34% 50%;
    width: min(520px, 70vw);
    aspect-ratio: 1;
    content: "";
    background:
        radial-gradient(circle at 38% 22%, rgba(255, 255, 255, 0.84), transparent 16%),
        radial-gradient(circle at 48% 48%, rgba(157, 255, 212, 0.5), rgba(21, 200, 255, 0.34), transparent 68%);
    border-radius: 50%;
    opacity: 0.55;
    transform: translateX(-50%);
    pointer-events: none;
}

.services-ob-cta > * {
    position: relative;
    z-index: 1;
}

.services-ob-cta h2 {
    max-width: 980px;
}

.services-ob-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.services-ob-cta .button-primary {
    color: var(--ink);
    background: linear-gradient(135deg, var(--mint), var(--green) 48%, var(--cyan));
}

.services-ob-cta .button-secondary {
    color: var(--paper-strong);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.services-ob + .site-footer {
    padding-top: clamp(76px, 8vw, 132px);
}

.service-detail {
    overflow: hidden;
    color: var(--ink);
    background: #eef8f5;
}

.service-detail-hero,
.service-detail-fit,
.service-detail-section,
.service-detail-cta,
.service-detail-related {
    width: min(1180px, calc(100% - 76px));
    margin: 0 auto;
}

.service-detail-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1.12fr);
    gap: clamp(34px, 5vw, 68px);
    align-items: center;
    min-height: auto;
    padding: clamp(38px, 5vw, 58px) 0 clamp(64px, 7vw, 86px);
    isolation: isolate;
}

.service-detail-hero::before,
.service-detail-fit::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: -2;
    width: 100vw;
    content: "";
    background:
        radial-gradient(circle at 88% 8%, rgba(21, 200, 255, 0.18), transparent 26rem),
        radial-gradient(circle at 12% 20%, rgba(0, 208, 132, 0.18), transparent 24rem),
        linear-gradient(180deg, #10120f 0%, #171917 100%);
    transform: translateX(-50%);
}

.service-detail-orbits {
    position: absolute;
    top: 2%;
    right: -14%;
    z-index: -1;
    width: min(680px, 54vw);
    aspect-ratio: 1;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    pointer-events: none;
    animation: servicesOrbit 42s linear infinite;
}

.service-detail-orbits::before,
.service-detail-orbits::after {
    position: absolute;
    content: "";
    border: 1px dashed rgba(157, 255, 212, 0.12);
    border-radius: 50%;
}

.service-detail-orbits::before {
    inset: 10%;
}

.service-detail-orbits::after {
    inset: 21%;
}

.service-detail-back {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-detail-kicker {
    margin: 0 0 16px;
    color: var(--mint);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-detail-hero h1 {
    max-width: 660px;
    margin-bottom: 24px;
    color: var(--paper-strong);
    font-size: clamp(3.1rem, 5.2vw, 5.65rem);
    line-height: 0.94;
}

.service-detail-hero-copy > p:not(.service-detail-kicker) {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.08rem;
    line-height: 1.75;
}

.service-detail-hero-copy {
    animation: serviceCopyIn 780ms var(--ease) both;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.service-detail .button-primary {
    color: var(--ink);
    background: linear-gradient(135deg, var(--mint), var(--green) 48%, var(--cyan));
}

.service-detail .button-secondary {
    color: var(--paper-strong);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.service-detail-media {
    position: relative;
    overflow: hidden;
    margin: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
        var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.24);
    transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
    transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
    animation: serviceMediaIn 880ms var(--ease) 160ms both;
}

.service-detail-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(120deg, transparent, rgba(157, 255, 212, 0.2), transparent);
    opacity: 0.58;
    transform: translateX(-84%);
    animation: aboutProcessScan 6200ms var(--ease) infinite;
    pointer-events: none;
}

.service-detail-media img {
    width: 100%;
    height: auto;
}

.service-detail-fit {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 24px;
    align-items: stretch;
    padding-bottom: 92px;
    color: var(--paper-strong);
    isolation: isolate;
}

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

.service-detail-fit-list article {
    min-height: 160px;
    padding: 22px;
    color: var(--paper-strong);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
    transform: perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
}

.service-detail-fit-list article:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(157, 255, 212, 0.28);
}

.service-detail-fit-list span,
.service-detail-outcome span,
.service-detail-include-list span,
.service-detail-method-list span {
    display: block;
    margin-bottom: 42px;
    color: var(--mint);
    font-weight: 900;
    letter-spacing: 0.16em;
}

.service-detail-fit-list p,
.service-detail-outcome p,
.service-detail-method-copy p,
.service-detail-method-list p {
    margin: 0;
    line-height: 1.66;
}

.service-detail-section {
    padding: 96px 0;
    color: var(--ink);
}

.service-detail-section-head {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 34px;
    align-items: start;
    margin-bottom: 34px;
}

.service-detail-section .service-detail-kicker,
.service-detail-related .service-detail-kicker {
    color: var(--green-deep);
}

.service-detail-section-head h2,
.service-detail-method-copy h2,
.service-detail-cta h2,
.service-detail-related-head h2 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(2.15rem, 4.8vw, 5rem);
    line-height: 0.98;
}

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

.service-detail-outcome {
    min-height: 310px;
    padding: 28px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
    transform: translate3d(0, var(--scroll-float, 0px), 0) perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
}

.service-detail-outcome:hover {
    border-color: rgba(0, 208, 132, 0.34);
    box-shadow: 0 22px 54px rgba(17, 19, 15, 0.14);
}

.service-detail-outcome:nth-child(2) {
    color: var(--paper-strong);
    background:
        radial-gradient(circle at 86% 10%, rgba(21, 200, 255, 0.2), transparent 22rem),
        var(--ink);
    border-color: rgba(255, 255, 255, 0.12);
}

.service-detail-outcome:nth-child(3) {
    background: linear-gradient(135deg, var(--mint), rgba(21, 200, 255, 0.72));
}

.service-detail-outcome h3 {
    font-size: 2rem;
    line-height: 1;
}

.service-detail-includes {
    padding-top: 42px;
}

.service-detail-include-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.service-detail-include-list div {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 104px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.94);
}

.service-detail-include-list span {
    margin: 0;
    color: var(--green-deep);
}

.service-detail-include-list p {
    margin: 0;
    font-weight: 850;
}

.service-detail-method {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 58px;
    align-items: start;
}

.service-detail-method-copy {
    position: sticky;
    top: 120px;
}

.service-detail-method-copy p {
    max-width: 460px;
    margin-top: 24px;
    color: var(--ink-soft);
}

.service-detail-method-list {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.service-detail-method-list li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 22px;
    min-height: 150px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.service-detail-method-list span {
    margin: 0;
    color: var(--green-deep);
}

.service-detail-method-list h3 {
    font-size: 1.75rem;
}

.service-detail-method-list p {
    color: var(--ink-soft);
}

.service-detail-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    justify-items: center;
    padding: 96px 38px;
    color: var(--paper-strong);
    text-align: center;
    background:
        radial-gradient(circle at 50% -20%, rgba(157, 255, 212, 0.2), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent),
        var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.service-detail-cta h2 {
    max-width: 920px;
}

.service-detail-related {
    padding: 96px 0 84px;
    color: var(--ink);
}

.service-detail-related-head {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 34px;
    margin-bottom: 26px;
}

.service-detail-related-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.service-detail-related-list a {
    min-height: 160px;
    padding: 20px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
    transform: perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
}

.service-detail-related-list a:hover {
    border-color: rgba(0, 208, 132, 0.42);
    box-shadow: 0 18px 42px rgba(17, 19, 15, 0.12);
    transform: translateY(-4px) perspective(900px) rotateX(var(--magnet-y, 0deg)) rotateY(var(--magnet-x, 0deg));
}

.service-detail-related-list span {
    display: block;
    margin-bottom: 46px;
    color: var(--green-deep);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-detail-related-list strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1.05;
}

.service-detail + .site-footer {
    padding-top: clamp(54px, 7vw, 108px);
}

@keyframes servicesOrbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes servicesSphereDrift {
    from {
        transform: scale(1.28) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.36) translate3d(-22px, 16px, 0);
    }
}

@keyframes servicesTitleIn {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotateX(0deg);
    }
}

@keyframes servicesDot {
    0%,
    100% {
        opacity: 0.44;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(8px);
    }
}

@keyframes serviceCopyIn {
    from {
        opacity: 0;
        transform: translate3d(-22px, 22px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes serviceMediaIn {
    from {
        opacity: 0;
        transform: translate3d(28px, 28px, 0) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0) scale(1);
    }
}

@media (max-width: 1040px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
    }

    .nav,
    .header-action {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .mobile-menu {
        display: grid;
    }

    .mobile-menu[hidden] {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-hero,
    .about-intro,
    .about-work,
    .about-choice,
    .about-commitment {
        grid-template-columns: 1fr;
    }

    .about-hero {
        min-height: auto;
    }

    .about-hero-system {
        min-height: 560px;
    }

    .about-beliefs {
        grid-template-columns: 1fr;
    }

    .about-work-copy {
        position: static;
    }

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

    .about-portfolio-track {
        grid-template-columns: 1fr;
    }

    .about-v2-hero {
        min-height: auto;
        padding-top: 680px;
    }

    .about-v2-hero-media,
    .about-v2-hero-overlay {
        inset: 24px 24px auto;
        height: 620px;
    }

    .about-v2-floating-stack {
        top: 118px;
        right: 40px;
    }

    .about-v2-stats,
    .about-v2-manifest-grid,
    .about-v2-chapters,
    .about-v2-process,
    .about-v2-choice,
    .about-v2-portfolio {
        grid-template-columns: 1fr;
    }

    .about-v2-chapter,
    .about-v2-chapter:nth-child(2),
    .about-v2-chapter:nth-child(3) {
        min-height: auto;
        margin-top: 0;
    }

    .about-v2-process-copy,
    .about-v2-choice-copy {
        position: static;
    }

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

    .services-v2-hero {
        min-height: auto;
        padding-top: 680px;
    }

    .services-v2-hero-media,
    .services-v2-hero-overlay {
        inset: 24px 24px auto;
        height: 620px;
    }

    .services-v2-floating-stack {
        top: 118px;
        right: 40px;
    }

    .services-v2-stats,
    .services-v2-manifest-grid,
    .services-v2-objectives,
    .services-v2-difference,
    .services-v2-process,
    .services-v2-cta {
        grid-template-columns: 1fr;
    }

    .services-v2-objectives-copy,
    .services-v2-difference-copy,
    .services-v2-process-copy {
        position: static;
    }

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

    .services-ob-hero {
        min-height: auto;
        padding: 34px 24px 132px;
    }

    .services-ob-sphere {
        top: 58px;
        right: -12vw;
        width: min(520px, 62vw);
    }

    .services-ob-orbits {
        right: -18vw;
        width: 78vw;
    }

    .services-ob-title {
        font-size: 6.25rem;
    }

    .services-ob-title span:nth-child(2),
    .services-ob-title span:nth-child(3) {
        margin-left: 0;
    }

    .services-ob-hero-note {
        right: 24px;
        bottom: 52px;
        width: min(430px, calc(100% - 48px));
    }

    .services-ob-scroll {
        left: 24px;
        bottom: 52px;
    }

    .services-ob-manifest,
    .services-ob-index-head,
    .services-ob-outcomes,
    .services-ob-process {
        grid-template-columns: 1fr;
    }

    .services-ob-manifest {
        gap: 36px;
        min-height: auto;
    }

    .services-ob-intro {
        max-width: 620px;
    }

    .services-ob-service-row {
        grid-template-columns: 70px minmax(220px, 0.82fr) minmax(260px, 1fr) 42px;
    }

    .services-ob-outcomes-head,
    .services-ob-process-copy {
        position: static;
    }

    .services-ob-outcome:nth-child(2),
    .services-ob-outcome:nth-child(3) {
        margin-left: 0;
    }

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

    .services-ob-proof-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .services-ob-proof-grid article:last-child {
        border-bottom: 0;
    }

    .service-detail-hero,
    .service-detail-fit,
    .service-detail-section-head,
    .service-detail-method,
    .service-detail-related-head {
        grid-template-columns: 1fr;
    }

    .service-detail-hero {
        min-height: auto;
        padding: 36px 0 68px;
    }

    .service-detail-orbits {
        top: 120px;
        right: -28vw;
        width: 92vw;
    }

    .service-detail-media {
        max-width: 680px;
    }

    .service-detail-fit-list,
    .service-detail-outcome-grid,
    .service-detail-related-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-method-copy {
        position: static;
    }

    .service-detail-include-list {
        grid-template-columns: 1fr;
    }

    .blog-hero-grid,
    .blog-featured,
    .blog-article-hero-grid,
    .blog-article-layout {
        grid-template-columns: 1fr;
    }

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

    .blog-hero-media {
        min-height: 460px;
    }

    .blog-featured-card {
        grid-template-rows: 220px auto;
    }

    .blog-article-sidebar {
        position: static;
    }

    .blog-article-layout {
        max-width: 860px;
        gap: 34px;
    }

    .not-found-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 68px;
    }

    .not-found-panel {
        width: min(720px, 100%);
        min-height: auto;
        margin: 0 auto;
    }

    .not-found-link-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .note-top {
        left: 2%;
    }

    .hero-visual img {
        width: 100%;
    }

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

    .contact-form-panel {
        padding: 76px 42px 38px;
    }

    .contact-image-panel {
        min-height: 560px;
    }

    h1 {
        font-size: 3.35rem;
    }

    h2 {
        font-size: 2.35rem;
    }

    .product-grid,
    .workflow-section,
    .pricing-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 240px;
    }

    .flip-card,
    .flip-card-toggle,
    .flip-card-inner,
    .flip-card-face {
        min-height: 260px;
    }
}

@media (max-width: 720px) {
    .site-header {
        padding: 14px 18px;
    }

    .brand {
        min-width: 0;
    }

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

    .hero {
        padding: 36px 18px 14px;
    }

    .about-hero {
        padding: 42px 18px 24px;
    }

    .about-v2-hero {
        padding: 430px 18px 44px;
    }

    .about-v2-hero-media,
    .about-v2-hero-overlay {
        inset: 18px 18px auto;
        height: 390px;
    }

    .about-v2-hero-copy {
        padding-bottom: 0;
    }

    .about-v2-hero-copy h1 {
        font-size: 3.2rem;
        line-height: 0.94;
    }

    .about-v2-hero-copy p:not(.section-kicker) {
        font-size: 1rem;
    }

    .about-v2-hero-media img {
        object-position: 64% center;
    }

    .about-v2-floating-stack {
        top: 64px;
        right: 28px;
        gap: 9px;
    }

    .about-v2-floating-stack span {
        min-width: 78px;
        min-height: 42px;
        font-size: 0.82rem;
    }

    .about-v2-scroll-cue {
        display: none;
    }

    .services-v2-hero {
        padding: 430px 18px 44px;
    }

    .services-v2-hero-media,
    .services-v2-hero-overlay {
        inset: 18px 18px auto;
        height: 390px;
    }

    .services-v2-hero-copy {
        padding-bottom: 0;
    }

    .services-v2-hero-copy h1 {
        font-size: 3.05rem;
        line-height: 0.94;
    }

    .services-v2-hero-copy p:not(.section-kicker) {
        font-size: 1rem;
    }

    .services-v2-hero-media img {
        object-position: 64% center;
    }

    .services-v2-floating-stack {
        top: 64px;
        right: 28px;
        gap: 9px;
    }

    .services-v2-floating-stack span {
        min-width: 78px;
        min-height: 42px;
        font-size: 0.82rem;
    }

    .services-v2-scroll-cue {
        display: none;
    }

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

    .about-hero-system {
        min-height: 500px;
    }

    .system-panel-main {
        width: min(390px, 86vw);
    }

    .system-panel-top {
        top: 0;
        left: 4%;
    }

    .system-panel-right {
        top: 39%;
        right: 0;
        width: 164px;
    }

    .system-panel-bottom {
        bottom: 16px;
        left: 0;
        width: 184px;
    }

    .hero-visual {
        margin-top: 6px;
    }

    .floating-note {
        min-width: 128px;
        padding: 11px 12px;
        font-size: 0.7rem;
    }

    .note-top {
        top: -8px;
        left: 8px;
    }

    .note-bottom {
        right: 8px;
        bottom: 0;
    }

    h1 {
        font-size: 2.55rem;
        line-height: 1;
    }

    h2 {
        font-size: 2rem;
    }

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

    .metrics,
    .about-metrics,
    .section,
    .contact-section,
    .footer-bottom {
        width: calc(100% - 36px);
    }

    .contact-hero {
        padding: 28px 0 54px;
    }

    .contact-shell {
        padding: 8px;
    }

    .contact-window-controls {
        top: 20px;
        left: 22px;
    }

    .contact-form-panel {
        padding: 62px 20px 24px;
    }

    .contact-form-panel h1 {
        font-size: clamp(2.55rem, 13vw, 3.3rem);
    }

    .contact-intro {
        margin-bottom: 28px;
        font-size: 0.98rem;
    }

    .contact-field-grid,
    .contact-option-grid,
    .contact-form-actions {
        grid-template-columns: 1fr;
    }

    .contact-form-actions .button {
        width: 100%;
    }

    .contact-option {
        min-height: 82px;
        padding: 14px;
    }

    .contact-image-panel {
        min-height: 430px;
    }

    .contact-brand-chip {
        top: 22px;
        left: 22px;
    }

    .contact-image-copy {
        right: 22px;
        bottom: 22px;
        left: 22px;
        gap: 16px;
    }

    .contact-image-copy blockquote {
        font-size: 1.28rem;
        line-height: 1.28;
    }

    .contact-proof-row {
        gap: 9px;
    }

    .contact-proof-row span {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .about-metrics {
        grid-template-columns: 1fr;
        margin-bottom: 36px;
    }

    .about-v2-stats {
        width: calc(100% - 36px);
        margin-top: 18px;
    }

    .services-v2-stats {
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

    .about-v2-marquee {
        margin-top: 46px;
    }

    .services-v2-marquee {
        margin-top: 46px;
    }

    .about-v2-manifest h2 {
        font-size: 2.45rem;
        line-height: 1;
    }

    .services-v2-manifest h2 {
        font-size: 2.35rem;
        line-height: 1;
    }

    .about-v2-chapter {
        padding: 24px;
    }

    .about-v2-chapter > span {
        margin-bottom: 54px;
    }

    .about-v2-service-orbit,
    .about-v2-proof-wall,
    .services-v2-service-grid,
    .services-v2-proof-wall {
        grid-template-columns: 1fr;
    }

    .about-v2-services,
    .services-v2-catalog {
        padding-right: 18px;
        padding-left: 18px;
    }

    .about-v2-service,
    .services-v2-service {
        min-height: 170px;
    }

    .about-v2-service span,
    .services-v2-service > span {
        margin-bottom: 48px;
    }

    .about-v2-step-list li,
    .about-v2-case-reel article,
    .services-v2-step-list li {
        grid-template-columns: 1fr;
    }

    .services-v2-objective {
        min-height: auto;
        padding: 24px;
    }

    .services-v2-objective span {
        margin-bottom: 54px;
    }

    .services-v2-cta-copy,
    .services-v2-portfolio-card {
        padding: 24px;
    }

    .services-v2-portfolio-card {
        min-height: 310px;
    }

    .services-ob-hero {
        padding: 28px 18px 72px;
    }

    .services-ob-sphere {
        top: 62px;
        right: -30vw;
        width: 92vw;
        opacity: 0.72;
    }

    .services-ob-orbits {
        top: 76px;
        right: -42vw;
        width: 132vw;
    }

    .services-ob-title {
        max-width: 100%;
        font-size: 4.35rem;
        line-height: 0.86;
        letter-spacing: 0;
    }

    .services-ob-title span {
        max-width: 100%;
    }

    .services-ob-hero-note {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(100%, 560px);
        margin-top: 24px;
    }

    .services-ob-scroll {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 28px;
    }

    .services-ob-manifest,
    .services-ob-index,
    .services-ob-outcomes,
    .services-ob-process,
    .services-ob-proof,
    .services-ob-cta {
        width: calc(100% - 36px);
    }

    .services-ob-manifest,
    .services-ob-index,
    .services-ob-outcomes,
    .services-ob-process {
        padding: 72px 0;
    }

    .services-ob-big-copy p,
    .services-ob-index-head h2,
    .services-ob-outcomes-head h2,
    .services-ob-process-copy h2,
    .services-ob-cta h2 {
        font-size: 2.55rem;
        line-height: 1;
    }

    .services-ob-service-row {
        grid-template-columns: 1fr 42px;
        gap: 12px;
        min-height: auto;
        padding: 24px 0;
    }

    .services-ob-number {
        grid-column: 1 / 2;
    }

    .services-ob-service-row > div,
    .services-ob-service-row small {
        grid-column: 1 / -1;
    }

    .services-ob-plus {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        justify-self: end;
    }

    .services-ob-outcome {
        min-height: 250px;
        padding: 24px;
    }

    .services-ob-outcome span {
        margin-bottom: 68px;
    }

    .services-ob-process-list li {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .services-ob-proof {
        padding: 38px 0 72px;
    }

    .services-ob-proof-grid span {
        margin-bottom: 44px;
    }

    .services-ob-cta {
        padding: 82px 22px;
        margin-bottom: 34px;
    }

    .services-ob-cta-actions {
        display: grid;
        width: 100%;
    }

    .service-detail-hero,
    .service-detail-fit,
    .service-detail-section,
    .service-detail-cta,
    .service-detail-related {
        width: calc(100% - 36px);
    }

    .service-detail-hero {
        gap: 34px;
        padding: 30px 0 54px;
    }

    .service-detail-orbits {
        top: 92px;
        right: -52vw;
        width: 138vw;
        opacity: 0.72;
    }

    .service-detail-back {
        margin-bottom: 26px;
    }

    .service-detail-hero h1 {
        font-size: 3rem;
        line-height: 0.96;
    }

    .service-detail-hero-copy > p:not(.service-detail-kicker) {
        font-size: 1rem;
        line-height: 1.68;
    }

    .service-detail-media {
        border-radius: 18px;
    }

    .service-detail-fit {
        grid-template-columns: 1fr;
        padding-bottom: 56px;
    }

    .service-detail-fit-list,
    .service-detail-outcome-grid,
    .service-detail-related-list {
        grid-template-columns: 1fr;
    }

    .service-detail-fit-list article,
    .service-detail-outcome,
    .service-detail-related-list a {
        min-height: auto;
    }

    .service-detail-fit-list span,
    .service-detail-outcome span,
    .service-detail-related-list span {
        margin-bottom: 42px;
    }

    .service-detail-section {
        padding: 64px 0;
    }

    .service-detail-section-head,
    .service-detail-related-head {
        gap: 14px;
        margin-bottom: 24px;
    }

    .service-detail-section-head h2,
    .service-detail-method-copy h2,
    .service-detail-cta h2,
    .service-detail-related-head h2 {
        font-size: 2.35rem;
        line-height: 1;
    }

    .service-detail-include-list div,
    .service-detail-method-list li {
        grid-template-columns: 1fr;
    }

    .service-detail-include-list div {
        min-height: auto;
    }

    .service-detail-method-list li {
        gap: 12px;
        min-height: auto;
    }

    .service-detail-cta {
        padding: 72px 22px;
    }

    .service-detail-actions {
        display: grid;
        width: 100%;
    }

    .blog-hero,
    .blog-article-hero,
    .blog-article-layout,
    .blog-article-cta {
        width: calc(100% - 36px);
    }

    .blog-hero {
        padding: 34px 0 62px;
    }

    .blog-hero-copy h1,
    .blog-article-copy h1 {
        font-size: clamp(2.72rem, 12vw, 4rem);
        line-height: 0.96;
    }

    .blog-hero-media,
    .blog-hero-panel {
        min-height: 280px;
    }

    .blog-hero-media figcaption {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .blog-hero-media figcaption strong {
        font-size: 2rem;
    }

    .blog-media-chip {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.76rem;
    }

    .blog-media-chip-top {
        top: 16px;
        left: 16px;
    }

    .blog-media-chip-bottom {
        right: 16px;
        bottom: 152px;
    }

    .blog-featured {
        padding: 22px;
    }

    .blog-featured-card {
        padding: 22px;
        grid-template-rows: 190px auto;
    }

    .blog-featured-card strong {
        margin-top: 24px;
        font-size: 1.75rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        min-height: auto;
        padding: 22px;
    }

    .blog-card h3 {
        margin-top: 14px;
    }

    .blog-cta {
        width: 100%;
        padding-right: 18px;
        padding-left: 18px;
    }

    .blog-cta h2,
    .blog-article-cta h2 {
        font-size: 2.25rem;
        line-height: 1;
    }

    .blog-cta .portfolio-cta-actions,
    .blog-article-cta .portfolio-cta-actions {
        display: grid;
        width: 100%;
    }

    .blog-article-hero {
        padding: 34px 0 58px;
    }

    .blog-article-summary {
        min-height: auto;
        padding: 22px;
    }

    .blog-summary-content > span {
        margin-bottom: 42px;
    }

    .blog-article-layout {
        padding: 58px 0 28px;
    }

    .blog-content-section h2 {
        font-size: 2.1rem;
    }

    .blog-content-section p,
    .blog-content-section li {
        font-size: 1rem;
        line-height: 1.74;
    }

    .blog-content-section ul {
        padding: 18px 18px 18px 36px;
    }

    .blog-article-cta {
        padding: 72px 22px;
    }

    .not-found-hero {
        padding: 50px 18px 44px;
    }

    .not-found-hero::before {
        inset: 18px 18px auto;
    }

    .not-found-hero::after {
        right: 18px;
        bottom: 24px;
        left: 18px;
    }

    .not-found-number {
        top: 34%;
        font-size: clamp(11rem, 58vw, 19rem);
    }

    .not-found-mark {
        width: 58px;
        height: 58px;
        margin-bottom: 22px;
    }

    .not-found-content h1 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .not-found-actions {
        display: grid;
        width: 100%;
    }

    .not-found-panel {
        padding: 20px;
    }

    .not-found-link-list {
        grid-template-columns: 1fr;
    }

    .metrics {
        grid-template-columns: 1fr;
        padding-bottom: 50px;
    }

    .section {
        padding: 64px 0;
    }

    .contrast-section,
    .services-v2-catalog {
        width: 100%;
        padding-right: 18px;
        padding-left: 18px;
    }

    .about-services,
    .about-portfolio {
        padding-right: 18px;
        padding-left: 18px;
    }

    .about-service-grid {
        grid-template-columns: 1fr;
    }

    .about-step {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .belief-card {
        min-height: auto;
    }

    .belief-card > span {
        margin-bottom: 38px;
    }

    .product-grid {
        gap: 14px;
    }

    .dashboard-panel,
    .feature-card,
    .pricing-section,
    .contact-section {
        padding: 22px;
    }

    .flip-card {
        padding: 0;
    }

    .flip-card-face {
        padding: 22px;
    }

    .flip-card-face strong {
        font-size: 1.45rem;
    }

    .service-card-tags span {
        padding: 7px 9px;
    }

    .chart {
        height: 190px;
        padding: 14px;
    }

    .workflow-list li {
        grid-template-columns: 52px 1fr;
    }

    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .scroll-top {
        right: 18px;
        bottom: 18px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 390px) {
    .services-ob-title {
        font-size: 3.95rem;
    }

    .services-ob-hero {
        padding-top: 24px;
    }
}

@media (max-width: 1040px) {
    .portfolio-hero-stage,
    .portfolio-hero-summary,
    .portfolio-custom {
        grid-template-columns: 1fr;
    }

    .portfolio-hero-media {
        min-height: 390px;
    }

    .portfolio-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .portfolio-hero-stats div {
        padding: 20px;
        background: var(--paper-strong);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow-crisp);
    }

    .portfolio-hero-stats div:first-child,
    .portfolio-hero-stats div:last-child {
        padding: 20px;
        border-bottom: 1px solid var(--line);
    }

    .portfolio-capability-grid,
    .portfolio-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-case {
        min-height: 520px;
    }

    .portfolio-custom-copy {
        position: static;
    }
}

@media (max-width: 720px) {
    .portfolio-hero {
        width: calc(100% - 36px);
        padding: 34px 0 62px;
    }

    .portfolio-hero-copy h1 {
        font-size: clamp(2.78rem, 13vw, 4rem);
        line-height: 0.94;
    }

    .portfolio-hero-media {
        min-height: 280px;
    }

    .portfolio-hero-summary {
        align-items: stretch;
    }

    .portfolio-hero-summary .button {
        width: 100%;
    }

    .portfolio-hero-stats {
        grid-template-columns: 1fr;
    }

    .portfolio-impact {
        padding: 68px 18px;
    }

    .portfolio-impact-head {
        text-align: left;
    }

    .portfolio-impact-head h2 {
        font-size: 2.25rem;
    }

    .portfolio-impact-head p:not(.section-kicker) {
        margin-left: 0;
    }

    .portfolio-capability-grid,
    .portfolio-case-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-capability {
        min-height: auto;
        padding: 22px;
    }

    .portfolio-case {
        min-height: 500px;
    }

    .portfolio-case-content {
        padding: 21px;
    }

    .portfolio-case h3 {
        font-size: 1.28rem;
    }

    .portfolio-browser-preview,
    .portfolio-dashboard-preview {
        right: 24px;
        left: 24px;
    }

    .portfolio-phone-preview {
        top: 20px;
        width: 154px;
        height: 286px;
    }

    .portfolio-custom {
        width: calc(100% - 36px);
    }

    .portfolio-proof-list article {
        min-height: auto;
        padding: 22px;
    }

    .portfolio-proof-list span {
        margin-bottom: 26px;
    }

    .portfolio-cta {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        padding-right: 18px;
        padding-left: 18px;
    }

    .portfolio-cta h2 {
        font-size: 2.25rem;
        line-height: 1;
    }

    .portfolio-cta-actions {
        display: grid;
        width: 100%;
    }

    .portfolio-page + .site-footer {
        padding-top: 58px;
    }
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 1100;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 18px;
    color: var(--paper-strong);
    background: var(--ink);
    border: 2px solid var(--cyan);
    border-radius: var(--radius);
    box-shadow: var(--shadow-crisp);
    font-weight: 900;
    transform: translateY(-150%);
    transition: transform 180ms var(--ease);
}

.skip-link:focus-visible {
    outline: 3px solid rgba(21, 200, 255, 0.38);
    outline-offset: 3px;
    transform: translateY(0);
}

:where(a, button, input, textarea, select, summary):focus-visible {
    outline: 3px solid rgba(21, 200, 255, 0.92);
    outline-offset: 4px;
}

.brand,
.nav a,
.service-detail-back {
    min-height: 44px;
}

.nav a:not(.is-services-link) {
    min-width: 44px;
    justify-content: center;
}

.nav-dropdown-toggle,
.menu-toggle,
.footer-social a {
    min-width: 44px;
    min-height: 44px;
}

.nav a:focus-visible,
.header-action:focus-visible,
.button:focus-visible,
.service-detail-back:focus-visible,
.blog-card:focus-visible,
.not-found-link-list a:focus-visible,
.services-ob-link:focus-visible,
.services-ob-scroll:focus-visible,
.mobile-menu a:focus-visible,
.mobile-services-toggle:focus-visible,
.footer-social a:focus-visible,
.scroll-top:focus-visible {
    box-shadow: 0 0 0 4px rgba(21, 200, 255, 0.18), var(--shadow-crisp);
}

.mobile-menu {
    background: var(--paper-strong);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }

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

    body.has-custom-cursor,
    body.has-custom-cursor a,
    body.has-custom-cursor button,
    body.has-custom-cursor input,
    body.has-custom-cursor summary,
    body.has-custom-cursor label {
        cursor: auto;
    }

    .custom-cursor {
        display: none !important;
    }
}
