:root {
    color-scheme: dark;
    --navy: #0d1b2a;
    --navy-2: #07111d;
    --ink: #f4fff8;
    --muted: #b8c4bd;
    --green: #22c55e;
    --green-light: #49f18c;
    --gray: #6b7280;
    --line: rgba(244, 255, 248, 0.14);
    --panel: rgba(7, 17, 29, 0.78);
    --panel-strong: rgba(13, 27, 42, 0.92);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* {
    box-sizing: border-box;
}

*::selection {
    background: rgba(73, 241, 140, 0.28);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at 78% 18%, rgba(34, 197, 94, 0.16), transparent 30%),
        radial-gradient(circle at 8% 45%, rgba(107, 114, 128, 0.14), transparent 28%),
        linear-gradient(135deg, #05080d 0%, var(--navy-2) 48%, #06150d 100%);
    color: var(--ink);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
    z-index: -2;
}

a {
    color: inherit;
}

.site-header {
    width: 100%;
    min-height: 112px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px max(24px, calc((100vw - 1480px) / 2 + 24px));
    border-bottom: 1px solid rgba(244, 255, 248, 0.08);
    background: linear-gradient(180deg, rgba(5, 8, 13, 0.98) 0%, rgba(5, 8, 13, 0.86) 64%, rgba(5, 8, 13, 0.42) 100%);
    backdrop-filter: blur(16px);
    transition: transform 220ms ease;
}

.brand-link {
    width: clamp(280px, 24vw, 420px);
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    text-decoration: none;
}

.brand-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: left center;
    transform: scale(1.65);
    transform-origin: left center;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.site-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    border-color: rgba(34, 197, 94, 0.48);
    color: var(--ink);
    background: rgba(34, 197, 94, 0.1);
}

main {
    width: 100%;
}

section {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
    scroll-margin-top: 132px;
    position: relative;
    isolation: isolate;
}

section > :not(.section-neon) {
    position: relative;
    z-index: 1;
}

.hero-section {
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 42vw);
    align-items: center;
    gap: clamp(42px, 7vw, 110px);
    padding: 178px 0 90px;
}

.hero-copy {
    max-width: 850px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--green-light);
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.consulting-copy h2,
.cta-section h2 {
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 980px;
    font-size: clamp(44px, 5.25vw, 88px);
    line-height: 0.94;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
}

.hero-copy h1 span {
    display: block;
}

.hero-description {
    max-width: 720px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.55;
}

.hero-actions,
.cta-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions {
    margin-top: 42px;
}

.btn-primary,
.btn-secondary {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-primary {
    border: 1px solid var(--green-light);
    background: var(--green-light);
    color: #031008;
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.24);
}

.btn-secondary {
    border: 1px solid var(--line);
    background: rgba(244, 255, 248, 0.05);
    color: var(--ink);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #86ffb4;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: rgba(34, 197, 94, 0.58);
    background: rgba(34, 197, 94, 0.1);
}

.hero-visual {
    width: min(42vw, 580px);
    aspect-ratio: 1;
    justify-self: end;
    display: grid;
    place-items: center;
    position: relative;
}

.logo-stage {
    width: 66%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 0;
    z-index: 3;
}

.logo-stage img {
    width: min(100%, 430px);
    height: auto;
    display: block;
}

.neon-orbits {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 0 18px rgba(73, 241, 140, 0.35));
}

.neon-track,
.neon-inner {
    fill: none;
    stroke: var(--green-light);
    stroke-width: 3.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: url("#neonGlow");
    stroke-dasharray: 230 360;
    stroke-dashoffset: 590;
    animation: drawNeon 5.4s ease-in-out infinite;
}

.track-two {
    animation-delay: -1.3s;
    stroke-dasharray: 210 390;
}

.track-three {
    animation-delay: -2.5s;
    stroke-dasharray: 120 360;
    opacity: 0.72;
}

.track-four {
    animation-delay: -3.7s;
    stroke-dasharray: 130 340;
    opacity: 0.72;
}

.neon-inner {
    stroke: rgba(244, 255, 248, 0.22);
    stroke-width: 2.2;
    stroke-dasharray: 180 420;
    animation-duration: 7s;
    filter: none;
}

.inner-two {
    animation-delay: -3.2s;
}

.metric-chip {
    min-width: 74px;
    min-height: 38px;
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(34, 197, 94, 0.44);
    border-radius: 999px;
    background: rgba(7, 17, 29, 0.86);
    color: var(--green-light);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.chip-top {
    top: 16%;
    left: 8%;
}

.chip-right {
    right: 5%;
    top: 48%;
}

.chip-bottom {
    bottom: 13%;
    left: 19%;
}

@keyframes drawNeon {
    0%,
    100% {
        stroke-dashoffset: 590;
        opacity: 0.34;
    }

    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.reveal-item {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 680ms ease,
        transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.meaning-section,
.services-section,
.consulting-section,
.process-section,
.cta-section,
.footer-section {
    padding: clamp(70px, 9vw, 120px) 0;
}

.section-neon {
    width: clamp(220px, 26vw, 420px);
    height: 180px;
    position: absolute;
    pointer-events: none;
    opacity: 0.78;
    z-index: 0;
    overflow: visible;
    filter: drop-shadow(0 0 10px rgba(73, 241, 140, 0.65)) drop-shadow(0 0 26px rgba(73, 241, 140, 0.25));
}

.section-neon::before,
.section-neon::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, rgba(73, 241, 140, 0.28) 18%, var(--green-light) 52%, rgba(73, 241, 140, 0.24) 82%, transparent 100%);
    box-shadow: 0 0 18px rgba(73, 241, 140, 0.68), 0 0 42px rgba(73, 241, 140, 0.24);
    opacity: 0;
    transform: translate3d(-70px, 120px, 0) rotate(8deg);
    animation: snakeTrail 5.2s linear infinite;
}

.section-neon::before {
    left: 0;
    top: 0;
}

.section-neon::after {
    left: 42px;
    top: 34px;
    width: 130px;
    animation-delay: -2.1s;
    animation-duration: 6.4s;
}

.neon-a {
    right: 4%;
    top: 28px;
}

.neon-b {
    right: 8%;
    top: 28%;
    transform: scaleX(-1) rotate(-4deg);
}

.neon-c {
    left: -18px;
    bottom: 22px;
}

.neon-d {
    right: 4%;
    bottom: 24px;
    transform: rotate(12deg);
}

.neon-e {
    right: 24px;
    top: 18px;
    z-index: 0;
}

@keyframes snakeTrail {
    0% {
        opacity: 0;
        transform: translate3d(-80px, 126px, 0) rotate(7deg) scaleX(0.6);
    }

    12% {
        opacity: 1;
    }

    42% {
        transform: translate3d(118px, 82px, 0) rotate(7deg) scaleX(1);
    }

    58% {
        transform: translate3d(190px, 18px, 0) rotate(-36deg) scaleX(0.92);
    }

    78% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(286px, -34px, 0) rotate(-36deg) scaleX(0.5);
    }
}

.section-heading {
    max-width: 900px;
    margin-bottom: 34px;
}

.section-heading h2,
.consulting-copy h2,
.cta-section h2 {
    font-size: clamp(34px, 4.4vw, 72px);
    line-height: 0.96;
}

.meaning-grid,
.services-grid,
.value-grid {
    display: grid;
    gap: 18px;
}

.meaning-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.meaning-item,
.service-card,
.value-grid article,
.process-list li {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(13, 27, 42, 0.82), rgba(7, 17, 29, 0.58));
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.meaning-item,
.service-card,
.value-grid article {
    min-height: 240px;
    padding: 28px;
}

.meaning-item h3,
.service-card h3,
.value-grid h3,
.process-list h3 {
    margin: 18px 0 10px;
    color: var(--ink);
    font-size: 19px;
    text-transform: uppercase;
}

.meaning-item p,
.service-card p,
.value-grid p,
.process-list p,
.consulting-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.meaning-icon,
.service-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(34, 197, 94, 0.36);
    border-radius: 14px;
    background: rgba(34, 197, 94, 0.08);
    color: var(--green-light);
    box-shadow: inset 0 0 24px rgba(34, 197, 94, 0.08);
}

.meaning-icon svg,
.service-icon svg {
    width: 34px;
    height: 34px;
    display: block;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
    transition:
        opacity 680ms ease,
        transform 220ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(34, 197, 94, 0.56);
    background: linear-gradient(145deg, rgba(13, 27, 42, 0.98), rgba(7, 30, 18, 0.72));
}

.consulting-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: stretch;
}

.consulting-copy {
    padding: clamp(34px, 4vw, 54px);
    border: 1px solid rgba(34, 197, 94, 0.36);
    background:
        linear-gradient(145deg, rgba(34, 197, 94, 0.12), rgba(13, 27, 42, 0.86)),
        var(--panel-strong);
    box-shadow: var(--shadow);
}

.consulting-copy p:last-child {
    margin-top: 22px;
    font-size: clamp(17px, 1.5vw, 21px);
}

.value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-grid article {
    min-height: 0;
}

.value-number {
    color: var(--green-light);
    font-size: 14px;
    font-weight: 900;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    min-height: 200px;
    padding: 24px;
    position: relative;
}

.process-list li::after {
    content: "";
    width: 22px;
    height: 2px;
    position: absolute;
    top: 44px;
    right: -17px;
    background: var(--green-light);
}

.process-list li:last-child::after {
    display: none;
}

.process-list span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(34, 197, 94, 0.5);
    border-radius: 50%;
    color: var(--green-light);
    font-weight: 900;
}

.cta-section {
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 56px;
    padding: clamp(34px, 5vw, 64px);
    border: 1px solid rgba(34, 197, 94, 0.32);
    background:
        linear-gradient(100deg, rgba(7, 17, 29, 0.98), rgba(13, 27, 42, 0.9) 58%, rgba(10, 51, 27, 0.88)),
        var(--navy);
    box-shadow: var(--shadow);
}

.cta-section h2 {
    max-width: 840px;
}

.contact-section {
    align-items: stretch;
}

.contact-copy {
    max-width: 600px;
}

.contact-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.6;
}

.contact-form {
    width: min(100%, 640px);
    display: grid;
    gap: 18px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(244, 255, 248, 0.12);
    background: rgba(5, 8, 13, 0.46);
    box-shadow: inset 0 1px 0 rgba(244, 255, 248, 0.08);
}

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

.contact-form label {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.contact-form label span {
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(244, 255, 248, 0.16);
    border-radius: 0;
    background: rgba(3, 8, 13, 0.72);
    color: var(--ink);
    font: inherit;
    padding: 12px 14px;
    outline: none;
}

.contact-form textarea {
    min-height: 128px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(73, 241, 140, 0.16);
}

.contact-form small,
.form-alert,
.consent-error {
    color: #ffb4b4;
    font-size: 12px;
    line-height: 1.4;
}

.field-wide {
    grid-column: 1 / -1;
}

.consent-field {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 10px !important;
    color: var(--muted);
}

.consent-field input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
    accent-color: var(--green-light);
}

.consent-field span {
    color: var(--muted) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.thanks-page {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 32px;
}

.thanks-card {
    width: min(100%, 920px);
    padding: clamp(34px, 6vw, 72px);
    border: 1px solid rgba(34, 197, 94, 0.32);
    background:
        linear-gradient(100deg, rgba(7, 17, 29, 0.98), rgba(13, 27, 42, 0.9) 58%, rgba(10, 51, 27, 0.88)),
        var(--navy);
    box-shadow: var(--shadow);
}

.thanks-card h1 {
    max-width: 780px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 900;
    line-height: 0.96;
    text-transform: uppercase;
}

.thanks-card p:not(.eyebrow) {
    max-width: 680px;
    margin: 24px 0 34px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
}

.footer-section {
    width: 100%;
    margin-bottom: 0;
    padding-top: clamp(28px, 4vw, 44px);
    padding-bottom: clamp(34px, 5vw, 56px);
    border-top: 1px solid rgba(73, 241, 140, 0.22);
    background:
        linear-gradient(180deg, rgba(5, 8, 13, 0.82), rgba(3, 6, 10, 0.98)),
        rgba(5, 8, 13, 0.96);
}

.footer-section > :not(.section-neon) {
    width: min(100% - 96px, 1280px);
    margin-left: auto;
    margin-right: auto;
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-light), transparent);
    box-shadow: 0 0 26px rgba(73, 241, 140, 0.42);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 128px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.footer-brand img {
    width: clamp(300px, 24vw, 430px);
    height: 112px;
    display: block;
    object-fit: contain;
    object-position: left center;
    transform: scale(1.45);
    transform-origin: left center;
}

.footer-brand p {
    margin: 0;
    color: var(--green-light);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.1fr 0.8fr;
    gap: clamp(24px, 4vw, 56px);
    padding: 32px 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 17px;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p,
.footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.footer-column a {
    text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--green-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.footer-social {
    display: none;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(73, 241, 140, 0.38);
    border-radius: 50%;
    color: var(--green-light);
    text-decoration: none;
    box-shadow: inset 0 0 18px rgba(73, 241, 140, 0.06);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    background: rgba(73, 241, 140, 0.1);
    box-shadow: 0 0 24px rgba(73, 241, 140, 0.24);
}

@media (max-width: 1300px) {
    .hero-section {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 36vw);
        gap: clamp(28px, 5vw, 72px);
    }

    .hero-copy h1 {
        font-size: clamp(42px, 5.6vw, 78px);
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .hero-section,
    .consulting-section {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
        padding-bottom: 70px;
    }

    .hero-copy {
        max-width: 980px;
    }

    .hero-visual {
        width: min(72vw, 500px);
        justify-self: center;
        order: 2;
    }

    .meaning-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-list li::after {
        display: none;
    }
}

@media (max-width: 780px) {
    section,
    .site-header {
        width: min(100% - 32px, 1480px);
    }

    .site-header {
        min-height: 132px;
        height: auto;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px 16px;
    }

    .brand-link {
        width: 260px;
        height: 64px;
        justify-content: flex-start;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav a {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 0 12px;
        font-size: 12px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 182px;
        padding-bottom: 58px;
        gap: 34px;
    }

    .hero-copy h1 {
        font-size: clamp(36px, 9.5vw, 58px);
        line-height: 0.96;
    }

    .hero-description {
        font-size: 17px;
        margin-top: 22px;
    }

    .hero-actions {
        margin-top: 30px;
    }

    .meaning-grid,
    .services-grid,
    .value-grid,
    .process-list {
        grid-template-columns: 1fr;
    }

    .contact-fields {
        grid-template-columns: 1fr;
    }

    .meaning-item,
    .service-card,
    .value-grid article,
    .process-list li {
        min-height: 0;
        padding: 24px;
    }

    .meaning-section,
    .services-section,
    .consulting-section,
    .process-section,
    .cta-section,
    .footer-section {
        padding: 58px 0;
    }

    .section-neon {
        width: clamp(170px, 48vw, 260px);
        height: 120px;
        opacity: 0.55;
    }

    .neon-a,
    .neon-b,
    .neon-c,
    .neon-d,
    .neon-e {
        right: 0;
        left: auto;
        top: 8px;
        bottom: auto;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .section-heading h2,
    .consulting-copy h2,
    .cta-section h2 {
        font-size: clamp(32px, 10vw, 52px);
        line-height: 1;
    }
}

@media (max-width: 900px) {
    .footer-brand,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-section > :not(.section-neon) {
        width: min(100% - 48px, 1280px);
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    section,
    .site-header {
        width: min(100% - 24px, 1480px);
    }

    .site-nav a {
        min-height: 36px;
        padding: 0 10px;
        font-size: 11px;
    }

    .brand-link {
        width: 230px;
        height: 58px;
    }

    .hero-actions,
    .cta-section {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-visual {
        width: min(86vw, 330px);
    }

    .metric-chip {
        display: none;
    }

    .logo-stage {
        width: 70%;
    }

    .hero-copy h1 {
        font-size: clamp(32px, 10.5vw, 48px);
    }

    .eyebrow {
        font-size: 12px;
        line-height: 1.45;
    }

    .meaning-icon,
    .service-icon {
        width: 54px;
        height: 54px;
    }

    .meaning-icon svg,
    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    .consulting-copy,
    .cta-section {
        padding: 26px;
    }

    .footer-brand img {
        width: 260px;
        height: 86px;
    }

    .footer-section > :not(.section-neon) {
        width: min(100% - 24px, 1280px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 30px 0;
    }
}

@media (max-width: 380px) {
    .hero-copy h1 {
        font-size: clamp(30px, 10vw, 40px);
    }

    .brand-link {
        width: 200px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}
