:root {
    --ink: #07111f;
    --ink-soft: #101d31;
    --blue: #456ed7;
    --blue-dark: #3154b5;
    --blue-light: #dfe9ff;
    --cyan: #69d8ff;
    --whatsapp: #118a57;
    --whatsapp-hover: #0c7046;
    --white: #ffffff;
    --paper: #f7f9fc;
    --soft: #eef3fa;
    --line: #dce3ec;
    --muted: #657185;
    --success: #14734c;
    --error: #a22b35;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --shadow-sm: 0 16px 45px rgba(7, 17, 31, 0.08);
    --shadow-lg: 0 28px 80px rgba(7, 17, 31, 0.18);
    --container: 1180px;
    --transition: 220ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(3rem, 6vw, 6.2rem);
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 4.3rem);
}

h3 {
    font-size: 1.35rem;
}

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

::selection {
    color: var(--white);
    background: var(--blue);
}

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

[hidden] {
    display: none !important;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--ink);
    border-radius: 6px;
    transform: translateY(-150%);
    transition: transform var(--transition);
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 2px;
    background: currentColor;
}

.eyebrow--light {
    color: #9ab7ff;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 24px;
    border: 1px solid var(--blue);
    border-radius: 999px;
    color: var(--white);
    background: var(--blue);
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    box-shadow: 0 14px 32px rgba(69, 110, 215, 0.28);
    transform: translateY(-2px);
}

.button:active {
    box-shadow: 0 7px 18px rgba(69, 110, 215, 0.2);
    transform: translateY(0);
}

.button:disabled,
button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
    transform: none;
}

.button--small {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.82rem;
}

.button--light {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.button--light:hover {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
}

.button--outline {
    color: var(--ink);
    background: transparent;
    border-color: var(--ink);
}

.button--outline:hover {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.button--outline-light {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.38);
}

.button--outline-light:hover {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 750;
    transition: color var(--transition);
}

.text-link span {
    transition: transform var(--transition);
}

.text-link:hover {
    color: var(--blue);
}

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

.text-link--light {
    color: var(--white);
}

.text-link--light:hover {
    color: var(--cyan);
}

.topbar {
    color: rgba(255, 255, 255, 0.78);
    background: var(--ink);
    font-size: 0.72rem;
    letter-spacing: 0.035em;
}

.topbar__inner {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
}

.topbar p {
    margin: 0;
    color: inherit;
}

.topbar__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar a {
    transition: color var(--transition);
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: 78px;
    border-bottom: 1px solid rgba(220, 227, 236, 0.84);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    transition: box-shadow var(--transition), height var(--transition);
}

.site-header.is-scrolled {
    height: 70px;
    box-shadow: 0 12px 30px rgba(7, 17, 31, 0.07);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    width: 198px;
    align-items: center;
}

.brand img {
    width: 100%;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.2vw, 34px);
}

.primary-nav > a:not(.button) {
    position: relative;
    padding-block: 8px;
    color: #344054;
    font-size: 0.86rem;
    font-weight: 700;
    transition: color var(--transition);
}

.primary-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    background: var(--blue);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.primary-nav > a:hover,
.primary-nav > a.is-active {
    color: var(--blue);
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 9px 0 9px 12px;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
}

.menu-toggle__lines {
    display: grid;
    width: 28px;
    gap: 6px;
}

.menu-toggle__lines span {
    display: block;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(223, 233, 255, 0.3) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(rgba(223, 233, 255, 0.3) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(145deg, #fbfdff 0%, #edf3ff 54%, #f9fbff 100%);
}

.hero__grid {
    display: grid;
    min-height: 780px;
    align-items: center;
    gap: 80px;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    padding-block: 86px;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero-network {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 28px;
    font-weight: 780;
}

.hero h1 em {
    color: var(--blue);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.hero__lead {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.hero__trust > div {
    display: grid;
    min-width: 132px;
    gap: 2px;
    padding: 0 24px;
    border-left: 1px solid var(--line);
}

.hero__trust > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero__trust strong {
    color: var(--ink);
    font-size: 1.45rem;
    line-height: 1.1;
}

.hero__trust span {
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.35;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.hero__glow--one {
    top: 8%;
    right: -10%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(69, 110, 215, 0.2), rgba(69, 110, 215, 0) 68%);
}

.hero__glow--two {
    bottom: -30%;
    left: 30%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(105, 216, 255, 0.18), rgba(105, 216, 255, 0) 70%);
}

.dev-visual {
    position: relative;
    z-index: 2;
    min-width: 0;
    min-height: 590px;
}

.dev-window {
    position: absolute;
    z-index: 2;
    top: 62px;
    right: 0;
    width: min(100%, 530px);
    overflow: hidden;
    border: 1px solid rgba(120, 157, 220, 0.25);
    border-radius: 18px;
    color: #d7e2f7;
    background: #0b1524;
    box-shadow:
        0 34px 80px rgba(7, 17, 31, 0.24),
        0 0 0 8px rgba(255, 255, 255, 0.54);
    transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
}

.dev-window::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    content: "";
    pointer-events: none;
}

.dev-window__bar {
    display: grid;
    min-height: 48px;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #101d2f;
    grid-template-columns: auto 1fr auto;
}

.dev-window__bar > div {
    display: flex;
    gap: 5px;
}

.dev-window__bar > div span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #53657e;
}

.dev-window__bar > div span:first-child {
    background: #ff6b77;
}

.dev-window__bar > div span:nth-child(2) {
    background: #e9bf55;
}

.dev-window__bar > div span:last-child {
    background: #44c889;
}

.dev-window__bar p {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #7f90aa;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.63rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dev-window__bar > span {
    padding: 3px 7px;
    border: 1px solid rgba(68, 200, 137, 0.28);
    border-radius: 5px;
    color: #69e2a7;
    background: rgba(68, 200, 137, 0.07);
    font-size: 0.51rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.dev-window__body {
    display: grid;
    min-height: 354px;
    grid-template-columns: 42px minmax(0, 1fr);
}

.code-rail {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 27px 9px;
    border-right: 1px solid rgba(255, 255, 255, 0.055);
    color: #41516a;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.62rem;
    text-align: right;
}

.code-editor {
    margin: 0;
    overflow: hidden;
    padding: 25px 22px;
    color: #cdd8ea;
    background:
        linear-gradient(90deg, transparent 31px, rgba(255, 255, 255, 0.035) 32px, transparent 33px),
        #0b1524;
    font-family: Consolas, "Courier New", monospace;
    font-size: clamp(0.68rem, 1.15vw, 0.82rem);
    line-height: 1.78;
    tab-size: 2;
}

.code-comment {
    color: #5c708f;
}

.code-tag,
.code-keyword {
    color: #79a7ff;
}

.code-attr,
.code-function {
    color: #7ee0ff;
}

.code-string {
    color: #eebc78;
}

.code-bool {
    color: #ce8cff;
}

.dev-window__status {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: #687a95;
    background: #0e1a2a;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.55rem;
}

.dev-window__status span:first-child {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #9dafc9;
}

.dev-window__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #44c889;
    box-shadow: 0 0 0 4px rgba(68, 200, 137, 0.1);
}

.tech-stack {
    position: absolute;
    z-index: 4;
    right: 12px;
    bottom: 16px;
    left: -18px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tech-badge {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    padding: 8px 13px 8px 8px;
    border: 1px solid rgba(197, 210, 231, 0.95);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(7, 17, 31, 0.11);
    backdrop-filter: blur(10px);
}

.tech-badge > span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 7px;
    color: var(--white);
    background: var(--blue);
    font-family: Consolas, monospace;
    font-size: 0.58rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tech-badge strong {
    font-size: 0.65rem;
}

.tech-badge--2 > span {
    background: #1769aa;
}

.tech-badge--3 > span {
    color: #171b24;
    background: #f1c232;
}

.tech-badge--4 > span {
    background: #6772a5;
}

.tech-badge--5 > span {
    background: #087993;
}

.dev-signal {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border: 1px solid rgba(192, 207, 232, 0.9);
    border-radius: 9px;
    color: #41506a;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
}

.dev-signal > span {
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 5px;
    color: var(--white);
    background: var(--blue);
}

.dev-signal--top {
    top: 20px;
    right: 38px;
}

.dev-signal--top > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #44c889;
    box-shadow: 0 0 0 4px rgba(68, 200, 137, 0.14);
}

.dev-signal--bottom {
    right: -28px;
    bottom: 116px;
}

.hero-visual {
    position: relative;
    z-index: 1;
    min-height: 590px;
}

.hero-visual__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(69, 110, 215, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero-visual__orbit::before,
.hero-visual__orbit::after {
    position: absolute;
    border: 1px solid rgba(69, 110, 215, 0.13);
    border-radius: inherit;
    content: "";
}

.hero-visual__orbit::before {
    inset: 52px;
}

.hero-visual__orbit::after {
    inset: 104px;
}

.hero-project-card {
    position: absolute;
    z-index: 2;
    top: 64px;
    right: 0;
    width: min(100%, 480px);
    overflow: hidden;
    border: 8px solid var(--white);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: rotate(1.6deg);
}

.browser-bar {
    display: flex;
    height: 38px;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    background: #edf1f7;
}

.browser-bar > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #aeb8c8;
}

.browser-bar > div {
    flex: 1;
    margin-left: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #8793a4;
    background: var(--white);
    font-size: 0.56rem;
}

.hero-project-card > img {
    width: 100%;
    aspect-ratio: 1.2;
    object-fit: cover;
}

.hero-project-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 12px;
}

.hero-project-card__meta > div {
    display: grid;
}

.hero-project-card__meta span {
    color: var(--muted);
    font-size: 0.62rem;
    text-transform: uppercase;
}

.hero-project-card__meta strong {
    font-size: 0.98rem;
}

.project-arrow {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--white) !important;
    background: var(--blue);
    font-size: 1rem !important;
}

.floating-note {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid rgba(220, 227, 236, 0.85);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.floating-note--top {
    top: 28px;
    left: -32px;
}

.floating-note--bottom {
    right: -34px;
    bottom: 52px;
}

.floating-note > span:last-child {
    display: grid;
    color: var(--muted);
    font-size: 0.63rem;
    line-height: 1.35;
}

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

.floating-note__dot {
    width: 12px;
    height: 12px;
    border: 3px solid #b4f1d9;
    border-radius: 50%;
    background: #22a86c;
    box-shadow: 0 0 0 4px #e8fff5;
}

.floating-note__number {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    color: var(--white);
    background: var(--ink);
    font-size: 0.67rem;
    font-weight: 800;
}

.trust-strip {
    color: rgba(255, 255, 255, 0.7);
    background: var(--ink);
}

.trust-strip__inner {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
    white-space: nowrap;
}

.trust-strip span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trust-strip i {
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 50%;
    background: var(--blue);
}

.section {
    padding-block: clamp(88px, 10vw, 140px);
}

.section--ink {
    color: var(--white);
    background: var(--ink);
}

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

.section-heading {
    display: grid;
    align-items: end;
    gap: 80px;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    margin-bottom: 58px;
}

.section-heading h2 {
    max-width: 800px;
    margin-bottom: 0;
}

.section-heading > div:last-child p {
    margin-bottom: 18px;
}

.section-heading--center {
    align-items: end;
}

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

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

.service-card:hover {
    z-index: 1;
    color: var(--white);
    background: var(--blue);
    transform: translateY(-6px);
}

.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
}

.service-card__top > span:first-child {
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 800;
}

.service-card__arrow {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.service-card h3 {
    max-width: 240px;
    margin-bottom: 16px;
    font-size: 1.55rem;
}

.service-card p {
    max-width: 290px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.service-card > a {
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
}

.service-card:hover p,
.service-card:hover .service-card__top > span:first-child,
.service-card:hover > a {
    color: rgba(255, 255, 255, 0.78);
}

.service-card:hover .service-card__arrow {
    color: var(--blue);
    border-color: var(--white);
    background: var(--white);
}

.service-card:focus-within {
    z-index: 1;
    box-shadow: 0 18px 40px rgba(69, 110, 215, 0.13);
}

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

.value-section::after {
    position: absolute;
    top: -240px;
    right: -200px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.value-section__grid {
    display: grid;
    align-items: center;
    gap: 110px;
    grid-template-columns: 0.86fr 1.14fr;
}

.value-poster {
    position: relative;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, #2e5ed2, #3f74f2);
    box-shadow: 22px 22px 0 rgba(255, 255, 255, 0.05);
}

.value-poster > span {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.26em;
}

.value-poster > strong {
    position: relative;
    z-index: 1;
    max-width: 340px;
    font-size: clamp(2.5rem, 4.3vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.value-poster__grid {
    position: absolute;
    top: 65px;
    right: -40px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow:
        0 0 0 44px rgba(255, 255, 255, 0.06),
        0 0 0 88px rgba(255, 255, 255, 0.04);
}

.value-section__content h2 {
    max-width: 720px;
    margin-bottom: 26px;
}

.value-section__content > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.06rem;
}

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

.check-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-block: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
}

.check-list li span {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--cyan);
    font-size: 0.65rem;
    font-weight: 900;
}

.project-grid {
    display: grid;
    gap: 56px 28px;
    grid-template-columns: repeat(2, 1fr);
}

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

.project-grid--featured .project-card:first-child {
    grid-column: 1 / -1;
}

.project-grid--featured .project-card:first-child .project-card__image {
    aspect-ratio: 1.72;
}

.project-card {
    min-width: 0;
}

.project-card__image {
    position: relative;
    aspect-ratio: 1.18;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--soft);
}

.project-card__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 17, 31, 0.62));
    content: "";
    opacity: 0;
    transition: opacity var(--transition);
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__image > span {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 20px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition);
}

.project-card:hover .project-card__image img {
    transform: scale(1.035);
}

.project-card:hover .project-card__image::after,
.project-card:hover .project-card__image > span {
    opacity: 1;
}

.project-card:hover .project-card__image > span {
    transform: translateY(0);
}

.project-card__info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
}

.project-card__info > div {
    display: grid;
    gap: 5px;
}

.project-card__info span {
    color: var(--blue);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-card__info h3 {
    margin: 0;
    font-size: 1.45rem;
}

.project-card__info .project-index {
    color: #bdc6d3;
    font-size: 0.72rem;
}

.centered-action {
    margin-top: 62px;
    text-align: center;
}

.process-section {
    border-top: 1px solid var(--line);
}

.process-list {
    display: grid;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
    grid-template-columns: repeat(4, 1fr);
}

.process-list li {
    min-height: 265px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
    border-left: 1px solid var(--line);
}

.process-list li > span {
    display: block;
    margin-bottom: 72px;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 800;
}

.process-list h3 {
    margin-bottom: 12px;
}

.process-list p {
    margin: 0;
    font-size: 0.88rem;
}

.insight-section {
    padding-top: 0;
}

.insight-card {
    display: grid;
    align-items: end;
    gap: 80px;
    padding: clamp(42px, 7vw, 82px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 92% 15%, rgba(105, 216, 255, 0.28), transparent 26%),
        linear-gradient(135deg, #dfe9ff, #f5f8ff);
    grid-template-columns: 1.25fr 0.75fr;
}

.insight-card h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.insight-card > div:last-child p {
    margin-bottom: 24px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
        var(--ink);
}

.page-hero::before {
    position: absolute;
    top: -320px;
    right: -230px;
    width: 760px;
    height: 760px;
    border: 1px solid rgba(105, 216, 255, 0.15);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(69, 110, 215, 0.06),
        0 0 0 160px rgba(69, 110, 215, 0.035);
    content: "";
}

.page-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 545px;
    align-items: end;
    gap: 90px;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    padding-block: 110px 90px;
}

.page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.2rem, 6.5vw, 6.5rem);
}

.page-hero__aside {
    padding-bottom: 8px;
}

.page-hero__aside p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 1.04rem;
}

.page-hero__marquee {
    position: absolute;
    right: -2%;
    bottom: -44px;
    left: -2%;
    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(5rem, 11vw, 11rem);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.page-hero--services {
    background-color: #09172b;
}

.page-hero--portfolio::after,
.page-hero--contact::after,
.page-hero--about::after {
    position: absolute;
    width: 310px;
    height: 18px;
    background: var(--blue);
    content: "";
    transform: rotate(-32deg);
}

.page-hero--portfolio::after {
    right: 12%;
    bottom: 23%;
}

.page-hero--contact::after {
    top: 30%;
    right: 8%;
}

.page-hero--about::after {
    right: 17%;
    bottom: 17%;
}

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

.service-detail {
    display: grid;
    gap: 42px;
    padding-block: 54px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 80px minmax(0, 1.1fr) minmax(280px, 0.75fr);
}

.service-detail__number {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: var(--blue-light);
    font-size: 0.74rem;
    font-weight: 900;
}

.service-detail__label {
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-detail__content h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.service-detail__content > p:not(.service-detail__label) {
    max-width: 620px;
    margin-bottom: 22px;
}

.service-detail__deliverables {
    padding: 28px;
    border-radius: var(--radius-sm);
    background: var(--paper);
}

.service-detail__deliverables h3 {
    margin-bottom: 18px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-detail__deliverables ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-detail__deliverables li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.85rem;
}

.service-detail__deliverables li span {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    font-size: 0.58rem;
    font-weight: 900;
}

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

.goal-card {
    display: flex;
    min-height: 380px;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.goal-card > span {
    display: inline-flex;
    width: max-content;
    margin-bottom: 72px;
    padding: 6px 11px;
    border-radius: 999px;
    color: var(--blue);
    background: var(--blue-light);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.goal-card h3 {
    font-size: 1.65rem;
}

.goal-card p {
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.goal-card > a {
    margin-top: auto;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 800;
}

.faq-layout {
    display: grid;
    align-items: start;
    gap: 100px;
    grid-template-columns: 0.75fr 1.25fr;
}

.faq-intro {
    position: sticky;
    top: 112px;
}

.faq-intro h2 {
    margin-bottom: 24px;
    font-size: clamp(2.4rem, 4.3vw, 4rem);
}

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

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

.faq-item h3 {
    margin: 0;
}

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

.faq-item button span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue);
    font-size: 1.3rem;
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.faq-item button[aria-expanded="true"] span {
    color: var(--white);
    background: var(--blue);
    transform: rotate(45deg);
}

.faq-answer {
    max-width: 680px;
    padding: 0 54px 28px 0;
}

.faq-answer p {
    margin: 0;
}

.portfolio-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 58px;
}

.portfolio-toolbar h2 {
    margin-bottom: 0;
    font-size: clamp(2.3rem, 4.2vw, 4rem);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.portfolio-filters button {
    padding: 9px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.portfolio-filters button:hover,
.portfolio-filters button.is-active {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.project-card.is-filtered {
    display: none;
}

.filter-empty {
    padding: 80px 20px;
    text-align: center;
}

.portfolio-note {
    display: grid;
    align-items: end;
    gap: 60px;
    grid-template-columns: 150px 1fr 0.65fr;
}

.portfolio-note__number {
    color: var(--blue);
    font-size: clamp(4.5rem, 8vw, 8rem);
    font-weight: 850;
    line-height: 0.8;
    letter-spacing: -0.07em;
}

.portfolio-empty {
    display: grid;
    min-height: 320px;
    place-items: center;
    padding: 40px;
    border: 1px dashed #bdc9d9;
    border-radius: var(--radius-md);
    background: var(--paper);
    text-align: center;
}

.portfolio-empty p {
    margin-bottom: 20px;
}

.portfolio-note h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.portfolio-note > p {
    margin: 0;
}

.about-story__grid {
    display: grid;
    align-items: center;
    gap: 100px;
    grid-template-columns: 0.85fr 1.15fr;
}

.about-story__visual {
    display: grid;
    gap: 20px;
}

.about-metric {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.about-metric strong {
    color: var(--blue);
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.about-metric span {
    max-width: 220px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.about-visual-card {
    position: relative;
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 34px;
    border-radius: var(--radius-md);
    color: var(--white);
    background: var(--blue);
}

.about-visual-card > span {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.about-visual-card strong {
    position: relative;
    z-index: 1;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.about-visual-card i {
    position: absolute;
    top: 64px;
    right: -80px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    box-shadow:
        0 0 0 52px rgba(255, 255, 255, 0.08),
        0 0 0 104px rgba(255, 255, 255, 0.05);
}

.about-story__content h2 {
    margin-bottom: 26px;
}

.about-story__content > p:not(.eyebrow) {
    font-size: 1.03rem;
}

.principles-section .section-heading p {
    color: rgba(255, 255, 255, 0.6);
}

.principles-grid {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    grid-template-columns: repeat(4, 1fr);
}

.principle-card {
    min-height: 335px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.principle-card > span {
    display: block;
    margin-bottom: 90px;
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 800;
}

.principle-card h3 {
    margin-bottom: 16px;
}

.principle-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.86rem;
}

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

.collaboration-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.collaboration-card__mark {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 64px;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: var(--blue-light);
    font-size: 0.75rem;
    font-weight: 900;
}

.collaboration-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.technology-section__grid {
    display: grid;
    align-items: center;
    gap: 90px;
    grid-template-columns: 1fr 1fr;
}

.technology-section h2 {
    margin-bottom: 0;
}

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

.technology-list span {
    display: grid;
    min-height: 100px;
    place-items: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    background: var(--white);
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.contact-layout {
    display: grid;
    align-items: start;
    gap: 90px;
    grid-template-columns: 0.8fr 1.2fr;
}

.contact-details {
    position: sticky;
    top: 108px;
}

.contact-details h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 4.3vw, 4.25rem);
}

.contact-details > p:not(.eyebrow) {
    margin-bottom: 40px;
    font-size: 1rem;
}

.contact-methods {
    border-top: 1px solid var(--line);
}

.contact-methods > a,
.contact-methods > div {
    display: grid;
    align-items: center;
    gap: 16px;
    padding-block: 20px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 42px 1fr auto;
}

.contact-methods > a {
    transition: color var(--transition);
}

.contact-methods > a:hover {
    color: var(--blue);
}

.contact-method__icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: var(--blue-light);
    font-size: 0.63rem;
    font-weight: 900;
}

.contact-methods > a > span:nth-child(2),
.contact-methods > div > span:nth-child(2) {
    display: grid;
}

.contact-methods small {
    color: var(--muted);
    font-size: 0.68rem;
}

.contact-methods strong {
    font-size: 0.91rem;
}

.contact-methods i {
    font-style: normal;
}

.contact-promise {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 32px;
    padding: 18px;
    border-radius: var(--radius-sm);
    background: var(--paper);
}

.contact-promise > span {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--success);
    font-size: 0.62rem;
}

.contact-promise p {
    margin: 0;
    font-size: 0.8rem;
}

.contact-form-card {
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
}

.contact-form-card__heading {
    margin-bottom: 34px;
}

.contact-form-card__heading > span {
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form-card__heading h2 {
    margin: 10px 0 8px;
    font-size: clamp(2rem, 3.3vw, 3rem);
}

.contact-form-card__heading p {
    margin: 0;
    font-size: 0.78rem;
}

.form-alert {
    margin-bottom: 26px;
    padding: 18px 20px;
    border: 1px solid;
    border-radius: var(--radius-sm);
}

.form-alert strong {
    display: block;
    margin-bottom: 4px;
}

.form-alert p,
.form-alert ul {
    margin: 0;
    color: inherit;
    font-size: 0.82rem;
}

.form-alert ul {
    padding-left: 20px;
}

.form-alert--success {
    color: var(--success);
    border-color: #b7dfcb;
    background: #ebfaf2;
}

.form-alert--error {
    color: var(--error);
    border-color: #efbec3;
    background: #fff1f2;
}

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

.form-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr 1fr;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label,
.label-row label {
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #cfd8e5;
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input,
.form-field select {
    height: 52px;
    padding-inline: 14px;
}

.form-field textarea {
    min-height: 155px;
    padding: 13px 14px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--blue);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(69, 110, 215, 0.12);
}

.form-field textarea::placeholder {
    color: #9aa6b7;
}

.label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.label-row > span {
    color: var(--muted);
    font-size: 0.68rem;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.73rem;
    line-height: 1.45;
    cursor: pointer;
}

.checkbox-field input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 2px;
    accent-color: var(--blue);
}

.form-submit {
    width: 100%;
    margin-top: 4px;
    justify-content: space-between;
    padding-inline: 22px;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.closing-cta {
    color: var(--white);
    background: var(--blue);
}

.closing-cta__inner {
    display: grid;
    min-height: 330px;
    align-items: center;
    gap: 80px;
    grid-template-columns: 1.2fr 0.8fr;
    padding-block: 68px;
}

.closing-cta h2 {
    max-width: 780px;
    margin-bottom: 0;
    font-size: clamp(2.3rem, 4.2vw, 4rem);
}

.closing-cta__actions {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.62);
    background: #050c16;
}

.site-footer__grid {
    display: grid;
    gap: 60px;
    padding-block: 82px 68px;
    grid-template-columns: 1.6fr 0.72fr 0.9fr 1.1fr;
}

.brand--footer {
    width: 210px;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
    opacity: 0.94;
}

.footer-brand > p {
    max-width: 360px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 9px;
}

.social-links a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 900;
    transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.social-links a:hover {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.footer-heading {
    margin-bottom: 22px;
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-contact a {
    font-size: 0.82rem;
    transition: color var(--transition);
}

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

.footer-contact {
    display: grid;
    gap: 10px;
    font-style: normal;
}

.footer-contact span {
    font-size: 0.82rem;
}

.site-footer__bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.7rem;
}

.floating-contact {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: 22px;
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    padding: 8px 16px 8px 8px;
    border-radius: 999px;
    color: var(--white);
    background: var(--whatsapp);
    box-shadow: 0 16px 34px rgba(7, 17, 31, 0.22);
    font-size: 0.74rem;
    font-weight: 800;
    transition: transform var(--transition), background var(--transition);
}

.floating-contact:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-3px);
}

.floating-contact__icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    color: var(--whatsapp);
    background: var(--white);
    font-weight: 900;
}

.floating-contact__icon--chat {
    font-size: 0.72rem;
    letter-spacing: -0.08em;
}

.floating-contact__icon--phone {
    font-size: 1rem;
}

.floating-contact--left {
    right: auto;
    left: 22px;
}

.floating-contact--icon-only {
    width: 52px;
    height: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 6px;
}

.floating-contact--icon-only .floating-contact__icon {
    width: 38px;
    height: 38px;
}

.maintenance-page {
    color: var(--white);
    background: var(--maintenance-bg, var(--ink));
}

.maintenance-shell {
    position: relative;
    display: grid;
    min-height: 100vh;
    overflow: hidden;
    place-items: center;
    padding: 30px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 64px 64px,
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 64px 64px;
}

.maintenance-network {
    position: absolute;
    right: -140px;
    bottom: -140px;
    width: min(62vw, 720px);
    height: min(62vw, 720px);
    border: 1px solid color-mix(in srgb, var(--maintenance-accent, var(--blue)) 38%, transparent);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px color-mix(in srgb, var(--maintenance-accent, var(--blue)) 8%, transparent),
        0 0 0 160px color-mix(in srgb, var(--maintenance-accent, var(--blue)) 5%, transparent);
}

.maintenance-card {
    position: relative;
    z-index: 1;
    width: min(100%, 780px);
    padding: clamp(30px, 7vw, 76px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.maintenance-card img {
    width: 205px;
    margin-bottom: 68px;
    filter: brightness(0) invert(1);
}

.maintenance-eyebrow {
    margin-bottom: 18px;
    color: color-mix(in srgb, var(--maintenance-accent, var(--blue)) 70%, white);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.maintenance-card h1 {
    max-width: 650px;
    margin-bottom: 22px;
    font-size: clamp(3.4rem, 9vw, 7rem);
}

.maintenance-card > p:not(.maintenance-eyebrow, .maintenance-return) {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
}

.maintenance-return {
    margin-block: 24px;
    color: var(--white);
    font-weight: 750;
}

.maintenance-card .button {
    margin-top: 14px;
    border-color: var(--maintenance-accent, var(--blue));
    background: var(--maintenance-accent, var(--blue));
}

.maintenance-card small {
    display: block;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.4);
}

.error-page {
    display: grid;
    min-height: 650px;
    place-items: center;
    background: var(--paper);
    text-align: center;
}

.error-page__inner {
    max-width: 760px;
}

.error-page .eyebrow {
    justify-content: center;
}

.error-page__inner > strong {
    display: block;
    margin-bottom: -30px;
    color: var(--blue-light);
    font-size: clamp(8rem, 20vw, 15rem);
    line-height: 0.9;
    letter-spacing: -0.09em;
}

.error-page h1 {
    position: relative;
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.error-page p {
    margin-bottom: 28px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

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

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

    .topbar {
        display: none;
    }

    .site-header {
        height: 72px;
    }

    .site-header.is-scrolled {
        height: 66px;
    }

    .brand {
        width: 180px;
    }

    .menu-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 36px 24px;
        background: rgba(255, 255, 255, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-15px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .site-header.is-scrolled .primary-nav {
        top: 66px;
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav > a:not(.button) {
        width: 100%;
        padding-block: 15px;
        border-bottom: 1px solid var(--line);
        font-size: 1.1rem;
    }

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

    .primary-nav .nav-cta {
        width: 100%;
        margin-top: 24px;
    }

    .hero__grid {
        gap: 44px;
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
    }

    .dev-visual {
        min-height: 540px;
    }

    .dev-window {
        top: 54px;
    }

    .tech-stack {
        left: -10px;
    }

    .tech-badge {
        padding-right: 10px;
    }

    .tech-badge strong {
        font-size: 0.6rem;
    }

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

    .floating-note--top {
        left: -10px;
    }

    .floating-note--bottom {
        right: -12px;
    }

    .value-section__grid,
    .about-story__grid {
        gap: 64px;
    }

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

    .process-list li:nth-child(3) {
        border-left: 1px solid var(--line);
    }

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

    .principle-card {
        min-height: 290px;
    }

    .service-detail {
        grid-template-columns: 68px 1fr;
    }

    .service-detail__deliverables {
        grid-column: 2;
    }

    .portfolio-note {
        gap: 36px;
        grid-template-columns: 120px 1fr;
    }

    .portfolio-note > p {
        grid-column: 2;
    }

    .contact-layout {
        gap: 56px;
    }
}

@media (max-width: 820px) {
    h1 {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .section {
        padding-block: 88px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        padding-block: 70px 40px;
    }

    .hero__lead {
        max-width: 720px;
    }

    .hero-visual {
        min-height: 560px;
    }

    .dev-visual {
        width: min(100%, 650px);
        min-height: 570px;
        margin-inline: auto;
    }

    .dev-window {
        right: 4%;
        width: 88%;
    }

    .tech-stack {
        right: 4%;
        left: 1%;
    }

    .dev-signal--top {
        right: 1%;
    }

    .dev-signal--bottom {
        right: 0;
    }

    .hero-project-card {
        right: 7%;
        width: 72%;
    }

    .floating-note--top {
        top: 20px;
        left: 3%;
    }

    .floating-note--bottom {
        right: 2%;
    }

    .trust-strip__inner {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .section-heading,
    .page-hero__grid,
    .value-section__grid,
    .insight-card,
    .faq-layout,
    .about-story__grid,
    .technology-section__grid,
    .contact-layout,
    .closing-cta__inner {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 26px;
    }

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

    .value-poster {
        max-width: 560px;
        min-height: 440px;
    }

    .project-grid,
    .project-grid--featured {
        grid-template-columns: 1fr;
    }

    .project-grid--featured .project-card:first-child {
        grid-column: auto;
    }

    .project-grid--featured .project-card:first-child .project-card__image {
        aspect-ratio: 1.18;
    }

    .page-hero__grid {
        min-height: auto;
        gap: 42px;
        padding-block: 86px;
    }

    .page-hero__aside {
        max-width: 600px;
    }

    .goal-grid,
    .collaboration-grid {
        grid-template-columns: 1fr;
    }

    .goal-card {
        min-height: 310px;
    }

    .goal-card > span {
        margin-bottom: 48px;
    }

    .faq-intro,
    .contact-details {
        position: static;
    }

    .portfolio-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .portfolio-filters {
        justify-content: flex-start;
    }

    .technology-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-layout {
        gap: 72px;
    }

    .site-footer__grid {
        grid-template-columns: 1.6fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .brand {
        width: 158px;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid {
        min-height: auto;
        padding-top: 56px;
    }

    .hero h1 {
        margin-bottom: 22px;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

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

    .hero__trust > div {
        min-width: 0;
        padding-inline: 12px;
    }

    .hero__trust strong {
        font-size: 1.2rem;
    }

    .hero-visual {
        min-height: 420px;
    }

    .dev-visual {
        min-height: 500px;
    }

    .dev-window {
        top: 45px;
        right: 0;
        width: 96%;
        border-radius: 14px;
        transform: none;
    }

    .dev-window__body {
        min-height: 300px;
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .code-rail {
        gap: 12px;
        padding: 23px 6px;
        font-size: 0.54rem;
    }

    .code-editor {
        padding: 21px 13px;
        font-size: clamp(0.57rem, 2.7vw, 0.7rem);
        line-height: 1.78;
    }

    .dev-window__status span:last-child {
        display: none;
    }

    .tech-stack {
        right: 0;
        bottom: 5px;
        left: 0;
        gap: 6px;
    }

    .tech-badge {
        min-height: 40px;
        padding: 5px 8px 5px 5px;
        border-radius: 8px;
    }

    .tech-badge > span {
        width: 27px;
        height: 27px;
    }

    .tech-badge strong {
        font-size: 0.54rem;
    }

    .dev-signal {
        padding: 7px 9px;
        font-size: 0.49rem;
    }

    .dev-signal--top {
        top: 4px;
    }

    .dev-signal--bottom {
        right: 0;
        bottom: 73px;
    }

    .hero-visual__orbit {
        width: 360px;
        height: 360px;
    }

    .hero-project-card {
        top: 48px;
        right: 2%;
        width: 88%;
    }

    .floating-note {
        padding: 10px 12px;
    }

    .floating-note--top {
        top: 8px;
        left: 0;
    }

    .floating-note--bottom {
        right: 0;
        bottom: 15px;
    }

    .service-card-grid {
        grid-template-columns: 1fr;
    }

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

    .value-section__grid {
        gap: 56px;
    }

    .value-poster {
        min-height: 390px;
        padding: 26px;
    }

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

    .process-list li,
    .process-list li:nth-child(3) {
        min-height: auto;
        border-left: 1px solid var(--line);
    }

    .process-list li > span {
        margin-bottom: 44px;
    }

    .insight-card {
        gap: 40px;
        padding: 34px 24px;
    }

    .page-hero h1 {
        font-size: clamp(3rem, 13vw, 4.5rem);
    }

    .service-detail {
        gap: 24px;
        padding-block: 42px;
        grid-template-columns: 1fr;
    }

    .service-detail__number {
        width: 46px;
        height: 46px;
    }

    .service-detail__deliverables {
        grid-column: auto;
    }

    .portfolio-note {
        grid-template-columns: 1fr;
    }

    .portfolio-note > p {
        grid-column: auto;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

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

    .principle-card > span {
        margin-bottom: 68px;
    }

    .about-metric {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-visual-card {
        min-height: 370px;
    }

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

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 26px 18px;
        border-radius: var(--radius-md);
    }

    .closing-cta__inner {
        gap: 42px;
        padding-block: 62px;
    }

    .site-footer__grid {
        gap: 42px;
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
    }

    .floating-contact {
        right: 14px;
        bottom: 14px;
        padding-right: 8px;
    }

    .floating-contact--left {
        right: auto;
        left: 14px;
    }

    .floating-contact > span:last-child {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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

    .hero-network {
        opacity: 0.55;
    }
}
