:root {
    --matrix: #00ff00;
    --cyber: #00ffff;
    --neon: #ff00ff;
    --dark: #0d0d0d;
    --ink: #ffffff;
    --muted: rgba(255, 255, 255, 0.62);
    --faint: rgba(255, 255, 255, 0.4);
    --panel: rgba(13, 13, 13, 0.9);
    --matrix-border: rgba(0, 255, 0, 0.28);
    --cyber-border: rgba(0, 255, 255, 0.24);
    --neon-border: rgba(255, 0, 255, 0.24);
    --shadow: 0 0 30px rgba(0, 255, 0, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.bitforge-body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        radial-gradient(circle at 80% 18%, rgba(0, 255, 255, 0.12), transparent 32rem),
        radial-gradient(circle at 10% 36%, rgba(255, 0, 255, 0.08), transparent 26rem),
        var(--dark);
    background-size: 40px 40px, 40px 40px, auto, auto, auto;
    color: var(--ink);
    font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    letter-spacing: 0;
    font-variant-ligatures: none;
}

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

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

button,
input,
textarea {
    font: inherit;
    letter-spacing: 0;
}

.container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.container.narrow {
    width: min(900px, calc(100% - 48px));
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    background: rgba(13, 13, 13, 0.82);
    backdrop-filter: blur(16px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1280px, calc(100% - 48px));
    min-height: 72px;
    margin: 0 auto;
}

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

.brand-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 2px;
    background: var(--matrix);
    color: var(--dark);
    transition: transform 500ms ease;
}

.brand:hover .brand-icon {
    transform: rotate(90deg);
}

.brand-icon svg,
.menu-toggle svg,
.icon-box svg,
.project-actions svg,
.pipeline-list svg,
.social-row svg,
.price-card li svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.brand-text {
    color: var(--matrix);
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
}

.brand-text span {
    color: var(--ink);
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--matrix);
    text-shadow: 2px 0 var(--neon), -2px 0 var(--cyber);
}

.nav-cta,
.btn-primary,
.btn-secondary,
.price-card > a,
.project-actions a:first-child,
.contact-form button,
.newsletter-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-cta,
.btn-primary,
.contact-form button,
.newsletter-form button {
    border: 1px solid var(--matrix);
    background: var(--matrix);
    color: var(--dark);
    box-shadow: 0 0 18px rgba(0, 255, 0, 0.28);
}

.nav-cta {
    padding: 11px 20px;
}

.menu-toggle {
    display: none;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--matrix);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    flex-direction: column;
    gap: 24px;
    padding: 28px;
    background: var(--dark);
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 42px;
}

.mobile-menu a {
    color: var(--ink);
    font-size: 28px;
    font-weight: 700;
}

.mobile-menu a:hover {
    color: var(--matrix);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 92px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--hero-bg, none) center / cover no-repeat;
    filter: grayscale(1);
    opacity: 0.1;
}

/* Только цветная подсветка. Тёмной заливки здесь быть не должно: слой лежит
   поверх .hero-bg и при непрозрачности 0.7-0.98 полностью гасил фоновое фото. */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 72% 45%, rgba(0, 255, 0, 0.16), transparent 24rem);
}

.scanline {
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, rgba(0, 255, 0, 0), rgba(0, 255, 0, 0.08), rgba(0, 255, 0, 0));
    opacity: 0.12;
    animation: scanline 10s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% {
        bottom: 100%;
    }

    100% {
        bottom: -100%;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    min-height: calc(100vh - 92px);
    align-items: center;
    gap: 64px;
}

.system-tag {
    display: inline-flex;
    margin-bottom: 32px;
    padding: 5px 12px;
    border: 1px solid var(--matrix-border);
    background: rgba(0, 255, 0, 0.05);
    color: var(--matrix);
    font-size: 10px;
    text-transform: uppercase;
}

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

h1 {
    max-width: 760px;
    margin-bottom: 32px;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    text-transform: uppercase;
}

h3 {
    font-size: 24px;
    line-height: 1.2;
}

.matrix {
    color: var(--matrix);
}

.glitch-hover:hover {
    text-shadow: 2px 0 var(--neon), -2px 0 var(--cyber);
}

.terminal-window {
    border: 1px solid var(--matrix-border);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.hero-terminal {
    max-width: 680px;
    margin-bottom: 34px;
    padding: 24px;
}

.hero-terminal p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.cursor-blink {
    color: var(--matrix);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
    min-height: 54px;
    padding: 15px 28px;
}

.btn-secondary {
    border: 1px solid var(--matrix-border);
    background: transparent;
    color: var(--matrix);
}

.btn-primary:hover,
.btn-secondary:hover,
.price-card > a:hover,
.project-actions a:first-child:hover,
.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 26px rgba(0, 255, 0, 0.34);
}

.hero-markers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
}

.hero-markers span {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 10px;
    color: var(--faint);
    font-size: 11px;
    text-transform: uppercase;
}

.hero-visual,
.career-photo {
    position: relative;
    border: 1px solid var(--matrix-border);
    background: rgba(13, 13, 13, 0.5);
    padding: 16px;
}

.hero-visual img,
.career-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 700ms ease, transform 700ms ease;
}

.hero-visual:hover img,
.project-card:hover img,
.career-photo:hover img {
    filter: grayscale(0);
}

.hero-visual:hover img {
    transform: scale(1.02);
}

.corner {
    position: absolute;
    width: 96px;
    height: 96px;
    pointer-events: none;
}

.corner-top {
    top: -16px;
    right: -16px;
    border-top: 2px solid var(--matrix);
    border-right: 2px solid var(--matrix);
}

.corner-bottom {
    bottom: -16px;
    left: -16px;
    border-bottom: 2px solid var(--matrix);
    border-left: 2px solid var(--matrix);
}

.trusted-band {
    border-block: 1px solid rgba(0, 255, 0, 0.1);
    background: rgba(0, 255, 0, 0.05);
    padding: 72px 0;
}

.trusted-band p {
    margin-bottom: 44px;
    color: var(--faint);
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px 86px;
    color: rgba(255, 255, 255, 0.34);
    filter: grayscale(1);
}

.trusted-logos span {
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 700;
    text-transform: uppercase;
}

.content-section {
    padding: 118px 0;
}

.section-head {
    margin-bottom: 72px;
}

.section-head p {
    max-width: 700px;
    color: var(--faint);
    line-height: 1.7;
}

.section-head.split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
}

.section-head.split a {
    color: var(--matrix);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.section-head.centered {
    text-align: center;
}

.section-head.centered p {
    margin-inline: auto;
}

.section-head.centered span {
    display: block;
    width: 96px;
    height: 4px;
    margin: 28px auto 0;
    background: var(--matrix);
}

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

.track-card {
    min-height: 360px;
    padding: 32px;
    transition: border-color 300ms ease, transform 300ms ease;
}

.track-card:hover,
.price-card:hover,
.metric-card:hover,
.testimonial-card:hover,
details.terminal-window:hover {
    transform: translateY(-4px);
}

.accent-2 {
    border-color: var(--cyber-border);
}

.accent-3 {
    border-color: var(--neon-border);
}

.accent-4 {
    border-color: var(--matrix-border);
}

.accent-2 .icon-box,
.accent-2 h3,
.accent-2 span {
    color: var(--cyber);
}

.accent-3 .icon-box,
.accent-3 h3,
.accent-3 span {
    color: var(--neon);
}

.icon-box {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 32px;
    background: rgba(0, 255, 0, 0.08);
    color: var(--matrix);
}

.track-card h3,
.project-card h3,
.price-card h3 {
    margin-bottom: 18px;
}

.track-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.project-band {
    background: rgba(0, 255, 0, 0.05);
}

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

.project-card {
    overflow: hidden;
    border: 1px solid var(--matrix-border);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 700ms ease, transform 700ms ease;
}

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

.project-image em {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 10px;
    background: var(--matrix);
    color: var(--dark);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.project-card.accent-2 .project-image em {
    background: var(--cyber);
}

.project-card.accent-3 .project-image em {
    background: var(--neon);
}

.project-body {
    padding: 30px;
}

.project-body p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.project-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
}

.project-actions a:first-child {
    border: 1px solid currentColor;
    padding: 9px 18px;
    color: var(--matrix);
}

.project-actions a:last-child {
    display: grid;
    place-items: center;
    color: var(--faint);
}

.project-card.accent-2 .project-actions a:first-child {
    color: var(--cyber);
}

.project-card.accent-3 .project-actions a:first-child {
    color: var(--neon);
}

.project-body small {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.22);
    font-size: 10px;
    text-transform: uppercase;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 110px;
}

.metric-card {
    padding: 30px;
    text-align: center;
    transition: transform 300ms ease;
}

.metric-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--matrix);
    font-size: clamp(32px, 4vw, 46px);
}

.metric-card span {
    color: var(--faint);
    font-size: 10px;
    text-transform: uppercase;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
    align-items: center;
    gap: 72px;
}

.pipeline-grid h3 {
    margin-bottom: 36px;
    font-size: 32px;
    text-transform: uppercase;
}

.pipeline-list {
    display: grid;
    gap: 36px;
}

.pipeline-list article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 22px;
}

.pipeline-list svg {
    width: 52px;
    height: 52px;
    padding: 13px;
    border: 1px solid var(--matrix-border);
    background: rgba(0, 255, 0, 0.08);
    color: var(--matrix);
}

.pipeline-list h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.pipeline-list p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

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

.testimonial-card {
    padding: 36px;
    transition: transform 300ms ease;
}

.alumni-head {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 28px;
}

.alumni-head img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(1);
}

.alumni-head h3 {
    margin: 0 0 6px;
}

.alumni-head span {
    color: var(--matrix);
    font-size: 10px;
    text-transform: uppercase;
}

.testimonial-card blockquote {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    font-style: italic;
    line-height: 1.8;
}

.price-card {
    position: relative;
    display: flex;
    min-height: 420px;
    flex-direction: column;
    padding: 38px;
    transition: transform 300ms ease;
}

.price-card.is-popular {
    border-color: var(--matrix);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.18);
}

.price-card em {
    position: absolute;
    top: -14px;
    left: 50%;
    padding: 5px 13px;
    background: var(--matrix);
    color: var(--dark);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.plan-kicker {
    margin-bottom: 28px;
    color: var(--faint);
    font-size: 10px;
    text-transform: uppercase;
}

.plan-price {
    margin-bottom: 32px;
    color: var(--matrix);
    font-size: 42px;
    font-weight: 700;
}

.price-card ul {
    display: grid;
    flex: 1;
    gap: 14px;
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}

.price-card li {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.price-card li svg {
    width: 18px;
    height: 18px;
    color: var(--matrix);
}

.price-card > a {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--matrix);
    color: var(--matrix);
}

.price-card.is-popular > a {
    background: var(--matrix);
    color: var(--dark);
}

.roi-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 60px;
    margin-top: 88px;
    padding: 46px;
    background: rgba(0, 255, 0, 0.05);
}

.roi-panel h3 {
    margin-bottom: 18px;
    font-size: 32px;
    text-transform: uppercase;
}

.roi-panel p {
    color: var(--muted);
    line-height: 1.7;
}

.roi-panel label {
    display: block;
    margin: 34px 0 12px;
    color: var(--faint);
    font-size: 10px;
    text-transform: uppercase;
}

.range {
    width: 100%;
    accent-color: var(--matrix);
}

.range-row,
.salary-estimate,
.projection-box p,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.range-row {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
}

.range-row strong,
.salary-estimate strong,
.projection-box strong {
    color: var(--matrix);
}

.salary-estimate {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 255, 0, 0.12);
}

.salary-estimate span {
    color: var(--faint);
    font-size: 12px;
    text-transform: uppercase;
}

.salary-estimate strong {
    font-size: 38px;
}

.projection-box {
    border: 1px solid var(--matrix-border);
    background: var(--dark);
    padding: 30px;
}

.projection-box h4 {
    color: var(--matrix);
    font-size: 12px;
    text-transform: uppercase;
}

.projection-box p {
    margin-bottom: 16px;
    color: var(--ink);
    font-size: 14px;
}

.projection-box p:last-child {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 0, 0.12);
    font-weight: 700;
}

.projection-box span {
    color: var(--faint);
}

.faq-section details {
    margin-bottom: 18px;
}

.faq-section summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 30px;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    text-transform: uppercase;
}

.faq-section summary::-webkit-details-marker {
    display: none;
}

.faq-section details p {
    margin: 0;
    padding: 0 30px 30px;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.apply-section {
    padding: 112px 0;
    background: var(--matrix);
    color: var(--dark);
}

.apply-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr);
    align-items: start;
    gap: 62px;
}

.apply-section h2 {
    color: var(--dark);
    font-size: clamp(42px, 6vw, 72px);
}

.apply-section p {
    color: rgba(13, 13, 13, 0.78);
    font-weight: 700;
    line-height: 1.7;
}

.contact-lines {
    display: grid;
    gap: 10px;
    margin-top: 34px;
    color: rgba(13, 13, 13, 0.78);
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 18px;
    border: 2px solid var(--dark);
    background: rgba(13, 13, 13, 0.95);
    padding: 30px;
    color: var(--ink);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--matrix);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.newsletter-form input {
    width: 100%;
    border: 1px solid rgba(0, 255, 0, 0.22);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
    outline: none;
}

.contact-form input,
.contact-form textarea {
    padding: 13px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
    border-color: var(--matrix);
}

.check-line {
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    color: var(--muted) !important;
    text-transform: none !important;
}

.check-line input {
    width: 16px;
    height: 16px;
    accent-color: var(--matrix);
}

.contact-form button {
    min-height: 50px;
    cursor: pointer;
}

.contact-form button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: var(--matrix);
    font-size: 13px;
}

.form-status.is-error {
    color: var(--neon);
}

.bitforge-footer {
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    background: var(--dark);
    padding: 88px 0 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 48px;
    margin-bottom: 68px;
}

.footer-brand {
    margin-bottom: 28px;
}

.bitforge-footer p {
    color: var(--faint);
    font-size: 14px;
    line-height: 1.8;
}

.bitforge-footer h4 {
    margin-bottom: 24px;
    color: var(--matrix);
    font-size: 12px;
    text-transform: uppercase;
}

.bitforge-footer a:not(.brand):not(.social-row a) {
    display: block;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 14px;
    transition: color 180ms ease;
}

.bitforge-footer a:hover {
    color: var(--matrix);
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-row a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(0, 255, 0, 0.22);
    color: var(--matrix);
    transition: background 180ms ease, color 180ms ease;
}

.social-row a:hover {
    background: var(--matrix);
    color: var(--dark);
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 70px;
    gap: 8px;
}

.newsletter-form input {
    min-height: 40px;
    padding: 10px 12px;
}

.newsletter-form button {
    border: 1px solid var(--matrix);
    cursor: pointer;
}

.footer-bottom {
    padding-top: 34px;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.24) !important;
    font-size: 10px !important;
    text-transform: uppercase;
}

.footer-bottom div {
    display: flex;
    gap: 24px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

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

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

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .hero-grid,
    .pipeline-grid,
    .apply-grid,
    .roi-panel {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 42px;
        padding: 58px 0 92px;
    }

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

    .track-grid,
    .price-grid,
    .metric-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .container,
    .container.narrow,
    .nav-shell {
        width: min(100% - 28px, 1280px);
    }

    .nav-shell {
        min-height: 64px;
    }

    .hero-section {
        padding-top: 76px;
    }

    h1 {
        font-size: clamp(42px, 15vw, 64px);
    }

    h2 {
        font-size: clamp(30px, 11vw, 42px);
    }

    .content-section {
        padding: 82px 0;
    }

    .section-head {
        margin-bottom: 46px;
    }

    .section-head.split {
        display: block;
    }

    .section-head.split a {
        display: inline-flex;
        margin-top: 22px;
        white-space: normal;
    }

    .track-grid,
    .project-grid,
    .price-grid,
    .metric-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .track-card,
    .price-card,
    .testimonial-card,
    .contact-form,
    .roi-panel {
        padding: 26px;
    }

    .pipeline-list article {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .pipeline-list svg {
        width: 42px;
        height: 42px;
        padding: 10px;
    }

    .apply-section {
        padding: 78px 0;
    }

    .footer-bottom,
    .salary-estimate {
        align-items: flex-start;
        flex-direction: column;
    }
}
