:root {
    color-scheme: dark;
    --bg: #070909;
    --bg-rgb: 7, 9, 9;
    --bg-soft: #0e1513;
    --surface: rgba(17, 24, 22, 0.76);
    --surface-strong: rgba(22, 31, 28, 0.94);
    --surface-solid: #111a17;
    --text: #f6f4ef;
    --muted: #b7beb7;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.22);
    --red: #e21838;
    --red-deep: #8f1d24;
    --green: #10a85a;
    --green-deep: #063e26;
    --gold: #f0be45;
    --cyan: #28d6e6;
    --blue: #6685ff;
    --ink: #050606;
    --radius: 8px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    --section-y: 112px;
    --font-main: Inter, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, Arial, sans-serif;
}

:root[data-theme="light"] {
    color-scheme: light;
    --bg: #f7f6f1;
    --bg-rgb: 247, 246, 241;
    --bg-soft: #ebe9df;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: rgba(255, 255, 255, 0.96);
    --surface-solid: #ffffff;
    --text: #141813;
    --muted: #5c675f;
    --line: rgba(20, 24, 19, 0.12);
    --line-strong: rgba(20, 24, 19, 0.22);
    --shadow: 0 24px 70px rgba(39, 42, 31, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        linear-gradient(118deg, rgba(226, 24, 56, 0.2), transparent 28%),
        linear-gradient(246deg, rgba(16, 168, 90, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(40, 214, 230, 0.08), transparent 42%),
        linear-gradient(34deg, transparent 0 62%, rgba(240, 190, 69, 0.1) 63%, transparent 74%),
        var(--bg);
    background-size: 140% 140%, 130% 130%, 100% 100%, 180% 180%, auto;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    animation: ambientShift 18s ease-in-out infinite;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    content: "";
    opacity: 0.58;
    background-image:
        repeating-linear-gradient(112deg, rgba(240, 190, 69, 0.12) 0 1px, transparent 1px 26px),
        repeating-linear-gradient(24deg, rgba(40, 214, 230, 0.07) 0 1px, transparent 1px 58px),
        linear-gradient(135deg, rgba(226, 24, 56, 0.12), transparent 36%, rgba(16, 168, 90, 0.12));
    background-size: 180px 180px, 120px 120px, 100% 100%;
    animation: gridDrift 22s linear infinite;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}

body::after {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    content: "";
    opacity: 0.58;
    background:
        linear-gradient(118deg, transparent 0 21%, rgba(226, 24, 56, 0.18) 22%, transparent 31%),
        linear-gradient(126deg, transparent 0 49%, rgba(240, 190, 69, 0.18) 50%, transparent 58%),
        linear-gradient(134deg, transparent 0 69%, rgba(16, 168, 90, 0.18) 70%, transparent 78%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 24px),
        linear-gradient(to bottom, transparent, rgba(var(--bg-rgb), 0.72));
    animation: fieldSweep 20s ease-in-out infinite;
    mix-blend-mode: screen;
}

@keyframes ambientShift {
    0%,
    100% {
        background-position: 0% 0%, 100% 10%, 0 0, 0% 50%, 0 0;
    }
    50% {
        background-position: 100% 18%, 0% 84%, 0 0, 100% 50%, 0 0;
    }
}

@keyframes gridDrift {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 72px 72px;
    }
}

@keyframes fieldSweep {
    0%,
    100% {
        transform: translate3d(-2%, -1%, 0);
        opacity: 0.4;
    }
    50% {
        transform: translate3d(2%, 1%, 0);
        opacity: 0.72;
    }
}

@keyframes cardShineWide {
    0% {
        transform: translateX(-130%) skewX(-18deg);
    }
    42%,
    100% {
        transform: translateX(230%) skewX(-18deg);
    }
}

@keyframes colorPulse {
    0%,
    100% {
        filter: saturate(1) brightness(1);
    }
    50% {
        filter: saturate(1.18) brightness(1.08);
    }
}

@keyframes mobileLineDrift {
    0% {
        transform: translate3d(-4%, -2%, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(3%, 2%, 0) rotate(0.6deg);
    }
    100% {
        transform: translate3d(-4%, -2%, 0) rotate(0deg);
    }
}

@keyframes mobileSignalSweep {
    0% {
        transform: translate3d(-18%, -10%, 0);
        opacity: 0.18;
    }
    50% {
        transform: translate3d(12%, 6%, 0);
        opacity: 0.34;
    }
    100% {
        transform: translate3d(-18%, -10%, 0);
        opacity: 0.18;
    }
}

@keyframes mobileCardShine {
    0% {
        transform: translateX(-120%) skewX(-18deg);
    }
    46%,
    100% {
        transform: translateX(220%) skewX(-18deg);
    }
}

@keyframes mobileLogoGlow {
    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(226, 24, 56, 0.2)) drop-shadow(0 0 12px rgba(16, 168, 90, 0.18));
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(240, 190, 69, 0.28)) drop-shadow(0 0 22px rgba(16, 168, 90, 0.2));
    }
}

@keyframes navAurora {
    0%,
    100% {
        background-position: 0% 50%, 100% 50%, 0 0;
        opacity: 0.56;
    }
    50% {
        background-position: 100% 50%, 0% 50%, 48px 0;
        opacity: 0.86;
    }
}

@keyframes countPop {
    0% {
        transform: translateY(6px) scale(0.96);
    }
    64% {
        transform: translateY(-2px) scale(1.045);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes countGlow {
    0%,
    100% {
        text-shadow: 0 0 0 rgba(240, 190, 69, 0);
    }
    42% {
        text-shadow: 0 0 22px rgba(240, 190, 69, 0.52), 0 0 34px rgba(40, 214, 230, 0.22);
    }
}

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

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

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

button {
    cursor: pointer;
}

::selection {
    color: #ffffff;
    background: var(--red);
}

#site-field {
    position: fixed;
    inset: 0;
    z-index: -4;
    width: 100%;
    height: 100%;
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    width: 260px;
    height: 260px;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    background: radial-gradient(circle, rgba(216, 167, 68, 0.2), transparent 62%);
    mix-blend-mode: screen;
    transition: opacity 160ms ease;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--cyan), var(--blue));
    box-shadow: 0 0 18px rgba(240, 190, 69, 0.45);
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 200;
    padding: 10px 14px;
    color: #ffffff;
    background: #000000;
    border-radius: var(--radius);
    transform: translateY(-140%);
    transition: transform 180ms ease;
}

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

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

.section {
    padding: var(--section-y) 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
    transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
    padding: 8px 0;
    background: rgba(var(--bg-rgb), 0.72);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(22px);
}

.nav-shell {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 18px;
    align-items: center;
    min-height: 74px;
    padding: 10px 12px 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(var(--bg-rgb), 0.56);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    isolation: isolate;
}

.nav-shell::before {
    position: absolute;
    inset: 1px;
    z-index: 0;
    pointer-events: none;
    content: "";
    border-radius: inherit;
    background:
        linear-gradient(115deg, rgba(226, 24, 56, 0.16), transparent 34%, rgba(16, 168, 90, 0.16)),
        linear-gradient(285deg, transparent 0 46%, rgba(240, 190, 69, 0.16) 47%, transparent 62%);
    background-size: 220% 220%, 180% 180%;
    animation: navAurora 9s ease-in-out infinite;
}

.nav-shell > * {
    position: relative;
    z-index: 1;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.brand-mark::before {
    position: absolute;
    inset: -3px;
    content: "";
    border-radius: inherit;
    background: conic-gradient(from 90deg, var(--red), var(--gold), var(--green), var(--red));
    animation: spinSoft 8s linear infinite;
}

@keyframes spinSoft {
    to {
        transform: rotate(1turn);
    }
}

.brand-logo {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.74);
    border-radius: 50%;
    box-shadow: 0 0 28px rgba(197, 22, 46, 0.25), 0 0 28px rgba(11, 122, 68, 0.22);
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.78rem;
    white-space: nowrap;
}

.site-nav {
    display: inline-flex;
    justify-content: center;
    gap: 4px;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 999px;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
}

.nav-tools {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav-actions {
    display: none;
}

.icon-button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.icon-button:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: 0 0 26px rgba(216, 167, 68, 0.24);
}

.icon-button svg,
.btn svg,
.nav-cta svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

.nav-toggle {
    display: none;
}

.language-switch {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.language-switch button {
    min-width: 54px;
    min-height: 34px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    border: 0;
    border-radius: 999px;
    background: transparent;
}

.language-switch button.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--gold), var(--green));
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24), 0 0 24px rgba(240, 190, 69, 0.22);
}

.nav-cta,
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    overflow: hidden;
    color: var(--text);
    font-weight: 800;
    border: 1px solid var(--line);
    border-radius: 999px;
    isolation: isolate;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-cta::before,
.btn::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0;
    background: linear-gradient(135deg, var(--red), var(--gold), var(--green));
    transition: opacity 180ms ease;
}

.nav-cta {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.btn:hover {
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 18px 50px rgba(197, 22, 46, 0.22), 0 18px 50px rgba(11, 122, 68, 0.16);
}

.nav-cta:hover::before,
.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, var(--red), var(--gold), var(--green));
    box-shadow: 0 14px 40px rgba(226, 24, 56, 0.2), 0 14px 40px rgba(16, 168, 90, 0.16);
}

.btn-primary::before {
    opacity: 0.36;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.07);
}

.btn-light {
    color: #10140f;
    border-color: transparent;
    background: #ffffff;
}

.btn-light::before {
    background: linear-gradient(135deg, #ffffff, #f5e8c5);
}

.hero {
    position: relative;
    min-height: calc(100vh - 102px);
    display: grid;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    inset: 36px -8vw auto;
    display: block;
    height: 420px;
    pointer-events: none;
    content: "";
    opacity: 0.42;
    background:
        linear-gradient(118deg, transparent 0 18%, rgba(226, 24, 56, 0.16) 19%, transparent 28%),
        linear-gradient(126deg, transparent 0 43%, rgba(240, 190, 69, 0.18) 44%, transparent 51%),
        linear-gradient(136deg, transparent 0 66%, rgba(16, 168, 90, 0.17) 67%, transparent 76%);
    animation: fieldSweep 16s ease-in-out infinite reverse;
    mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-grid,
.page-hero-grid,
.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
    gap: 54px;
    align-items: center;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--cyan));
    box-shadow: 0 0 18px rgba(240, 190, 69, 0.34);
}

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

h1,
h2,
h3 {
    line-height: 1.05;
}

h1 {
    margin-bottom: 22px;
    font-size: 5.6rem;
    font-weight: 900;
}

.hero h1 {
    color: transparent;
    background: linear-gradient(112deg, #ffffff 0%, #ffe8a4 24%, #ffffff 42%, #7ff0b7 64%, #ffffff 86%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 34px rgba(240, 190, 69, 0.16);
    animation: headlineGlow 8s ease-in-out infinite;
}

@keyframes headlineGlow {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

h2 {
    margin-bottom: 18px;
    font-size: 3.1rem;
    font-weight: 900;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

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

.hero-lead {
    color: var(--text);
    font-size: 1.22rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
}

.hero-meta span {
    display: grid;
    gap: 4px;
    min-height: 96px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    backdrop-filter: blur(16px);
}

.hero-meta svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.hero-meta strong {
    font-size: 1rem;
}

.hero-meta small {
    color: var(--muted);
    font-size: 0.78rem;
}

.hero-stage {
    position: relative;
    min-height: 620px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(226, 24, 56, 0.2), transparent 38%),
        linear-gradient(315deg, rgba(16, 168, 90, 0.22), transparent 42%),
        linear-gradient(35deg, transparent 0 60%, rgba(240, 190, 69, 0.12) 61%, transparent 74%),
        var(--surface);
    box-shadow: var(--shadow), 0 0 54px rgba(40, 214, 230, 0.08);
    transform-style: preserve-3d;
}

.hero-logo-wrap {
    position: relative;
    display: grid;
    place-items: center;
    width: min(430px, 82%);
    aspect-ratio: 1;
    margin: 14px auto 28px;
}

.hero-logo-wrap img {
    position: relative;
    z-index: 2;
    width: min(340px, 82%);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 62px rgba(197, 22, 46, 0.34), 0 0 62px rgba(11, 122, 68, 0.3);
    animation: floatLogo 6s ease-in-out infinite;
}

.orbit-line {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
}

.orbit-one {
    transform: rotateX(70deg) rotateZ(-18deg);
    animation: orbitPulse 4.5s ease-in-out infinite;
}

.orbit-two {
    inset: 9%;
    transform: rotateX(72deg) rotateZ(38deg);
    border-color: rgba(216, 167, 68, 0.32);
    animation: orbitPulse 5.6s ease-in-out infinite reverse;
}

@keyframes floatLogo {
    50% {
        transform: translateY(-12px);
    }
}

@keyframes orbitPulse {
    50% {
        opacity: 0.45;
        transform: rotateX(70deg) rotateZ(24deg) scale(1.04);
    }
}

.hero-service-cloud {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hero-service-cloud a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 68px;
    padding: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-service-cloud a > * {
    position: relative;
    z-index: 2;
}

.hero-service-cloud a:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.1);
}

.hero-service-cloud a.is-major {
    color: #ffffff;
    border-color: rgba(240, 190, 69, 0.42);
    background:
        linear-gradient(135deg, rgba(226, 24, 56, 0.28), rgba(240, 190, 69, 0.16), rgba(16, 168, 90, 0.24)),
        rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(240, 190, 69, 0.2), 0 0 28px rgba(240, 190, 69, 0.12);
}

.hero-service-cloud svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
}

.accent-red svg,
.accent-red .service-icon,
.accent-red.service-card::after {
    color: var(--red);
}

.accent-green svg,
.accent-green .service-icon,
.accent-green.service-card::after {
    color: var(--green);
}

.accent-gold svg,
.accent-gold .service-icon,
.accent-gold.service-card::after {
    color: var(--gold);
}

.accent-blue svg,
.accent-blue .service-icon,
.accent-blue.service-card::after {
    color: var(--blue);
}

.accent-cyan svg,
.accent-cyan .service-icon,
.accent-cyan.service-card::after {
    color: var(--cyan);
}

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

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

.stats-section {
    padding-top: 30px;
}

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

.stat-card,
.value-card,
.process-card,
.project-card,
.scope-card,
.location-card,
.profile-highlight,
.registry-panel,
.contact-form-panel,
.office-panel,
.contact-quick-panel,
.service-search-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.stat-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 164px;
    padding: 22px;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.stat-card::before {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 0;
    width: 42%;
    pointer-events: none;
    content: "";
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-130%) skewX(-18deg);
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-card.is-counting {
    border-color: rgba(240, 190, 69, 0.38);
    box-shadow: var(--shadow), 0 0 26px rgba(240, 190, 69, 0.13), 0 0 28px rgba(40, 214, 230, 0.08);
}

.stat-card.is-counting::before {
    opacity: 0.32;
    animation: cardShineWide 1.25s ease-out;
}

.stat-card.count-complete {
    border-color: rgba(16, 168, 90, 0.36);
}

.stat-card strong {
    display: flex;
    align-items: baseline;
    color: var(--text);
    font-size: 2.7rem;
    line-height: 1;
}

.stat-card strong [data-count] {
    display: inline-block;
    min-width: 1.65ch;
}

.stat-card strong [data-count].count-complete {
    animation: countPop 520ms ease, countGlow 1.55s ease;
}

.stat-card strong span:first-child:not([data-count]) {
    font-size: 1.4rem;
}

.stat-card p {
    margin: 16px 0 0;
}

.priority-section {
    padding-top: 70px;
}

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

.priority-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.priority-card::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(135deg, rgba(226, 24, 56, 0.24), transparent 34%, rgba(16, 168, 90, 0.22)),
        linear-gradient(35deg, transparent 0 60%, rgba(240, 190, 69, 0.16) 61%, transparent 72%);
}

.priority-card::after,
.service-card.major-service::before,
.hero-service-cloud a.is-major::after {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 1;
    width: 38%;
    pointer-events: none;
    content: "";
    opacity: 0.38;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    animation: cardShineWide 6.6s ease-in-out infinite;
}

.service-card.major-service > * {
    position: relative;
    z-index: 2;
}

.priority-card:hover {
    border-color: var(--line-strong);
    box-shadow: 0 24px 74px rgba(0, 0, 0, 0.34), 0 0 42px rgba(240, 190, 69, 0.18), 0 0 34px rgba(40, 214, 230, 0.1);
}

.priority-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    filter: saturate(1.18) contrast(1.08);
    animation: colorPulse 9s ease-in-out infinite;
}

.priority-card > div {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.priority-card h3 {
    margin-top: 10px;
    font-size: 1.8rem;
}

.priority-card p {
    margin-bottom: 24px;
}

.priority-card strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.service-grid,
.project-grid,
.value-grid,
.process-grid,
.location-grid,
.scope-list {
    display: grid;
    gap: 18px;
}

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

.service-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    position: relative;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    isolation: isolate;
    transform-style: preserve-3d;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card.major-service {
    border-color: rgba(240, 190, 69, 0.42);
    background:
        linear-gradient(145deg, rgba(226, 24, 56, 0.18), transparent 42%),
        linear-gradient(315deg, rgba(16, 168, 90, 0.18), transparent 46%),
        linear-gradient(35deg, transparent 0 60%, rgba(240, 190, 69, 0.12) 61%, transparent 74%),
        var(--surface);
    box-shadow: var(--shadow), 0 0 34px rgba(240, 190, 69, 0.1);
}

.service-card.major-service .service-kicker {
    color: #f2cc73;
}

.service-card::after {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 78px;
    height: 2px;
    content: "";
    background: currentColor;
    opacity: 0.9;
    box-shadow: 0 0 26px currentColor;
}

.service-card:hover {
    border-color: var(--line-strong);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), 0 0 36px rgba(216, 167, 68, 0.14);
}

.service-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: calc(var(--radius) - 2px);
    filter: saturate(1.14) contrast(1.05);
    transition: transform 420ms ease;
}

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

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-top: 16px;
    margin-left: 0;
    color: var(--gold);
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(226, 24, 56, 0.18), rgba(16, 168, 90, 0.18)),
        var(--surface-strong);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 0 22px rgba(240, 190, 69, 0.12);
}

.service-icon svg {
    width: 22px;
    height: 22px;
}

.service-kicker,
.service-number,
.project-card span,
.strip-item span {
    margin-top: 18px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.service-number {
    position: absolute;
    top: 28px;
    left: 28px;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(226, 24, 56, 0.42), rgba(16, 168, 90, 0.34)),
        rgba(0, 0, 0, 0.58);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.service-card h2,
.service-card h3 {
    margin-top: 10px;
    margin-bottom: 12px;
    font-size: 1.35rem;
    line-height: 1.18;
}

.service-card p {
    flex: 1 1 auto;
    margin-bottom: 22px;
}

.service-card strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
    gap: 42px;
    align-items: start;
}

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

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
    position: relative;
    display: grid;
    gap: 12px;
    min-height: 172px;
    padding: 22px;
    overflow: hidden;
}

.process-card::after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.process-card > span {
    color: var(--gold);
    font-weight: 900;
}

.process-card p {
    margin-bottom: 0;
}

.project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
    overflow: hidden;
    padding: 16px;
}

.project-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border-radius: calc(var(--radius) - 2px);
    filter: saturate(1.12) contrast(1.04);
}

.project-card h3 {
    margin-top: 8px;
}

.project-card p {
    margin-bottom: 4px;
}

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

.achievement-section::before {
    position: absolute;
    inset: 8% -10% auto;
    height: 360px;
    pointer-events: none;
    content: "";
    opacity: 0.45;
    background:
        linear-gradient(112deg, transparent 0 18%, rgba(226, 24, 56, 0.22) 19%, transparent 32%),
        linear-gradient(128deg, transparent 0 50%, rgba(240, 190, 69, 0.18) 51%, transparent 62%),
        linear-gradient(136deg, transparent 0 70%, rgba(16, 168, 90, 0.2) 71%, transparent 82%);
    animation: fieldSweep 18s ease-in-out infinite;
}

.achievement-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    gap: 34px;
    align-items: center;
}

.achievement-copy {
    position: relative;
    z-index: 1;
}

.achievement-copy > p {
    max-width: 660px;
}

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

.achievement-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(226, 24, 56, 0.14), transparent 42%),
        linear-gradient(315deg, rgba(16, 168, 90, 0.14), transparent 48%),
        var(--surface);
    box-shadow: var(--shadow), 0 0 30px rgba(40, 214, 230, 0.06);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.achievement-card::after {
    position: absolute;
    inset: 0 auto 0 0;
    width: 42%;
    pointer-events: none;
    content: "";
    opacity: 0.24;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    animation: cardShineWide 7.8s ease-in-out infinite;
}

.achievement-card:hover {
    border-color: rgba(240, 190, 69, 0.4);
    box-shadow: var(--shadow), 0 0 34px rgba(240, 190, 69, 0.12), 0 0 30px rgba(40, 214, 230, 0.1);
}

.achievement-card svg {
    width: 30px;
    height: 30px;
    color: var(--gold);
}

.achievement-card strong {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 24px;
    color: var(--text);
    font-size: 2.45rem;
    line-height: 1;
}

.achievement-card strong [data-count] {
    display: inline-block;
    min-width: 1.45ch;
}

.achievement-card strong [data-count].count-complete {
    animation: countPop 520ms ease, countGlow 1.55s ease;
}

.achievement-card h3 {
    margin: 14px 0 8px;
}

.achievement-card p {
    margin: 0;
}

.achievement-media-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 156px;
    gap: 12px;
}

.achievement-media-tile {
    position: relative;
    min-height: 156px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #000000;
    box-shadow: var(--shadow);
}

.achievement-media-tile:nth-child(1) {
    grid-column: span 4;
    grid-row: span 2;
}

.achievement-media-tile:nth-child(2),
.achievement-media-tile:nth-child(3) {
    grid-column: span 2;
}

.achievement-media-tile:nth-child(4) {
    grid-column: span 6;
}

.achievement-media-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.12) contrast(1.04);
    transition: transform 520ms ease, opacity 180ms ease;
}

.achievement-media-tile::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 58%);
}

.achievement-media-tile figcaption {
    position: absolute;
    right: 14px;
    bottom: 12px;
    left: 14px;
    z-index: 2;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.achievement-media-tile:hover img {
    opacity: 0.95;
    transform: scale(1.045);
}

.commerce-showcase-section {
    position: relative;
    overflow: hidden;
}

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

.showcase-column-header {
    max-width: 620px;
    margin-bottom: 18px;
}

.showcase-column-header h3 {
    margin-top: 8px;
    font-size: 1.8rem;
}

.showcase-gallery {
    display: grid;
    gap: 12px;
}

.showcase-card,
.service-gallery-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.showcase-card {
    display: grid;
    grid-template-columns: minmax(170px, 0.62fr) minmax(0, 1fr);
    min-height: 210px;
}

.showcase-card:hover,
.service-gallery-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow), 0 0 32px rgba(240, 190, 69, 0.1);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    filter: saturate(1.12) contrast(1.04);
}

.showcase-card > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
}

.showcase-card h4 {
    margin: 0 0 10px;
    font-size: 1.08rem;
}

.showcase-card p {
    margin: 0;
}

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

.service-gallery-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    filter: saturate(1.12) contrast(1.04);
    transition: transform 420ms ease;
}

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

.service-gallery-card > div {
    padding: 22px;
}

.service-gallery-card h3 {
    margin-top: 0;
}

.service-gallery-card p {
    margin-bottom: 0;
}

.cta-band {
    margin: var(--section-y) 0 0;
    padding: 64px 0;
    background:
        linear-gradient(100deg, rgba(226, 24, 56, 0.96), rgba(240, 190, 69, 0.88), rgba(16, 168, 90, 0.96)),
        #111111;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 -24px 70px rgba(226, 24, 56, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta-inner h2 {
    max-width: 760px;
    color: #ffffff;
}

.cta-inner p {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.page-hero {
    padding-top: 86px;
}

.page-hero-grid {
    min-height: 500px;
}

.page-hero-media,
.service-detail-media {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.page-hero-media img,
.service-detail-media img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    filter: saturate(1.14) contrast(1.04);
}

.story-copy {
    max-width: 650px;
}

.story-copy p {
    font-size: 1.03rem;
}

.value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid.compact {
    grid-template-columns: 1fr;
}

.value-card {
    min-height: 210px;
    padding: 24px;
    transition: transform 220ms ease, border-color 220ms ease;
}

.value-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
}

.value-card svg {
    width: 30px;
    height: 30px;
    margin-bottom: 24px;
    color: var(--gold);
}

.timeline {
    position: relative;
    display: grid;
    gap: 14px;
}

.timeline::before {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 94px;
    width: 1px;
    content: "";
    background: linear-gradient(var(--red), var(--gold), var(--green));
}

.timeline article {
    position: relative;
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 26px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.timeline article span {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 900;
}

.timeline article h3,
.timeline article p {
    grid-column: 2;
}

.image-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.strip-item {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #000000;
}

.strip-item img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 380ms ease, opacity 180ms ease;
}

.strip-item span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    color: #ffffff;
}

.strip-item:hover img {
    opacity: 0.95;
    transform: scale(1.05);
}

.service-search-panel {
    padding: 24px;
}

.service-search-panel label {
    display: block;
    margin-bottom: 10px;
    font-weight: 900;
}

.input-shell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.input-shell input {
    width: 100%;
    color: var(--text);
    border: 0;
    outline: 0;
    background: transparent;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.filter-chip {
    min-height: 38px;
    padding: 0 13px;
    color: var(--muted);
    font-weight: 800;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.filter-chip.active,
.filter-chip:hover {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--red-deep), var(--green));
}

.empty-state {
    display: grid;
    place-items: center;
    gap: 12px;
    min-height: 240px;
    margin-top: 24px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    color: var(--muted);
}

.service-detail-grid {
    min-height: 560px;
}

.service-detail-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 58%);
}

.service-detail-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 16px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
}

.service-detail-badge svg {
    width: 30px;
    height: 30px;
}

.service-scope-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
    gap: 34px;
    align-items: start;
}

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

.scope-card {
    display: grid;
    gap: 18px;
    min-height: 150px;
    padding: 24px;
}

.scope-card svg {
    width: 28px;
    height: 28px;
    color: var(--green);
}

.profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
    gap: 24px;
    align-items: start;
}

.profile-highlight {
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: 28px;
    text-align: center;
}

.profile-highlight img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 52px rgba(197, 22, 46, 0.28), 0 0 52px rgba(11, 122, 68, 0.24);
}

.profile-highlight span {
    color: var(--gold);
    font-weight: 900;
}

.profile-highlight strong {
    font-size: 1.8rem;
}

.profile-table-wrap {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-table caption {
    padding: 22px;
    text-align: left;
    color: var(--text);
    font-size: 1.4rem;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.04);
}

.profile-table th,
.profile-table td {
    padding: 18px 22px;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid var(--line);
}

.profile-table th {
    width: 34%;
    color: var(--text);
}

.profile-table td {
    color: var(--muted);
}

.registry-panel {
    padding: 26px;
}

.clean-list {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.clean-list li {
    display: flex;
    gap: 12px;
    color: var(--muted);
}

.clean-list svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: var(--gold);
}

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

.location-card {
    padding: 28px;
}

.location-card > svg {
    width: 30px;
    height: 30px;
    margin-bottom: 22px;
    color: var(--gold);
}

.location-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--text);
    font-weight: 900;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: 24px;
    align-items: start;
}

.contact-quick-panel {
    display: grid;
    gap: 10px;
    padding: 20px;
}

.contact-quick-panel a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
}

.contact-quick-panel svg {
    color: var(--gold);
}

.contact-form-panel,
.office-panel {
    padding: 28px;
}

.form-status {
    display: flex;
    gap: 12px;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.form-status p {
    margin: 0;
}

.form-status.success {
    border-color: rgba(11, 122, 68, 0.5);
    background: rgba(11, 122, 68, 0.14);
}

.form-status.error {
    border-color: rgba(197, 22, 46, 0.5);
    background: rgba(197, 22, 46, 0.14);
}

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

.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}

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

.form-row.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-row label,
.consent-row {
    color: var(--text);
    font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    outline: 0;
    background: rgba(255, 255, 255, 0.06);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-row input,
.form-row select {
    min-height: 54px;
    padding: 0 14px;
}

.form-row textarea {
    resize: vertical;
    min-height: 160px;
    padding: 14px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: rgba(216, 167, 68, 0.75);
    box-shadow: 0 0 0 4px rgba(216, 167, 68, 0.14);
}

.form-row [aria-invalid="true"] {
    border-color: var(--red);
}

.form-row small,
.form-error {
    color: #ff9eaa;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
}

.consent-row input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
}

.office-panel {
    display: grid;
    gap: 28px;
}

.office-panel a {
    color: var(--text);
    font-weight: 800;
}

.site-footer {
    padding: 70px 0 30px;
    border-top: 1px solid var(--line);
    background: rgba(var(--bg-rgb), 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.8fr 0.7fr;
    gap: 34px;
}

.footer-brand p {
    max-width: 420px;
    margin-top: 18px;
}

.footer-grid h3 {
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a,
.site-footer p a {
    color: var(--muted);
    transition: color 180ms ease;
}

.footer-links a:hover,
.site-footer p a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 34px;
    margin-top: 42px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 800;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 620ms ease, transform 620ms ease;
}

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

.tilt-card {
    transform-style: preserve-3d;
}

@media (max-width: 1100px) {
    .nav-shell {
        grid-template-columns: auto auto 1fr auto;
    }

    .nav-toggle {
        display: inline-grid;
        justify-self: end;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: 20px;
        display: grid;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--surface-strong);
        box-shadow: var(--shadow);
        transition: max-height 220ms ease, padding 220ms ease;
    }

    .site-nav.is-open {
        max-height: 420px;
        padding: 12px;
    }

    .site-nav a {
        justify-content: space-between;
        border-radius: var(--radius);
    }

    .nav-tools {
        justify-self: end;
    }

    .hero-grid,
    .page-hero-grid,
    .service-detail-grid,
    .achievement-layout,
    .showcase-split,
    .split-layout,
    .service-scope-grid,
    .profile-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: auto;
    }

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

    .service-grid,
    .project-grid,
    .value-grid,
    .priority-grid,
    .service-gallery-grid,
    .image-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    :root {
        --section-y: 58px;
        --shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    html {
        scroll-behavior: auto;
    }

    body {
        background:
            radial-gradient(circle at 10% 8%, rgba(226, 24, 56, 0.3), transparent 34%),
            radial-gradient(circle at 92% 16%, rgba(16, 168, 90, 0.3), transparent 38%),
            linear-gradient(150deg, rgba(226, 24, 56, 0.22), transparent 38%),
            linear-gradient(318deg, rgba(16, 168, 90, 0.24), transparent 44%),
            linear-gradient(180deg, rgba(240, 190, 69, 0.13), transparent 34%),
            var(--bg);
        background-size: 130% 130%, 130% 130%, 150% 150%, 145% 145%, 100% 100%, auto;
    }

    body.nav-open {
        overflow: hidden;
    }

    body::before {
        inset: -18%;
        opacity: 0.56;
        background-image:
            repeating-linear-gradient(112deg, rgba(240, 190, 69, 0.18) 0 1px, transparent 1px 19px),
            repeating-linear-gradient(18deg, rgba(40, 214, 230, 0.1) 0 1px, transparent 1px 54px),
            linear-gradient(118deg, rgba(226, 24, 56, 0.18), transparent 42%, rgba(16, 168, 90, 0.18));
        background-size: 150px 150px, 112px 112px, 100% 100%;
        animation: mobileLineDrift 16s ease-in-out infinite;
        mask-image: linear-gradient(to bottom, black 0%, black 58%, transparent 100%);
    }

    body::after {
        display: block;
        inset: -24%;
        opacity: 0.44;
        background:
            linear-gradient(126deg, transparent 0 28%, rgba(226, 24, 56, 0.36) 29%, transparent 34%),
            linear-gradient(132deg, transparent 0 52%, rgba(16, 168, 90, 0.34) 53%, transparent 59%),
            linear-gradient(108deg, transparent 0 68%, rgba(240, 190, 69, 0.28) 69%, transparent 74%),
            linear-gradient(84deg, transparent 0 18%, rgba(40, 214, 230, 0.18) 19%, transparent 25%);
        animation: mobileSignalSweep 18s ease-in-out infinite;
        mix-blend-mode: screen;
    }

    #site-field,
    .cursor-glow {
        display: none;
    }

    .site-header {
        padding: 6px 0;
    }

    .site-header.is-scrolled {
        background:
            linear-gradient(115deg, rgba(226, 24, 56, 0.08), rgba(16, 168, 90, 0.08)),
            linear-gradient(180deg, rgba(var(--bg-rgb), 0.82), rgba(var(--bg-rgb), 0.46));
        backdrop-filter: blur(14px);
    }

    .nav-shell {
        min-height: 64px;
        padding: 7px;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 8px;
        border-radius: 22px;
        border-color: rgba(255, 255, 255, 0.2);
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
            linear-gradient(115deg, rgba(226, 24, 56, 0.16), rgba(16, 168, 90, 0.14)),
            rgba(var(--bg-rgb), 0.54);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3), 0 0 32px rgba(240, 190, 69, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(18px) saturate(1.18);
    }

    .nav-shell::before {
        opacity: 0.82;
        background:
            linear-gradient(115deg, rgba(226, 24, 56, 0.28), transparent 36%, rgba(16, 168, 90, 0.26)),
            linear-gradient(282deg, transparent 0 40%, rgba(240, 190, 69, 0.22) 41%, transparent 62%),
            repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
        background-size: 240% 240%, 180% 180%, 90px 90px;
        animation-duration: 7.5s;
    }

    .brand {
        gap: 10px;
        min-width: 0;
    }

    .brand-mark,
    .brand-logo {
        width: 46px;
        min-width: 46px;
        height: 46px;
        min-height: 46px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
    }

    .brand-mark::before {
        inset: -2px;
        animation: spinSoft 18s linear infinite;
        opacity: 0.86;
    }

    .brand-logo {
        display: block;
        max-width: none;
        object-fit: cover;
        animation: mobileLogoGlow 3.8s ease-in-out infinite;
    }

    .brand-text {
        min-width: 0;
    }

    .brand-text small {
        display: none;
    }

    .brand-text strong {
        max-width: min(28vw, 128px);
        overflow: hidden;
        font-size: 0.8rem;
        text-overflow: ellipsis;
    }

    .nav-tools {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        gap: 5px;
        padding: 3px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 999px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
            rgba(var(--bg-rgb), 0.28);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 20px rgba(40, 214, 230, 0.08);
        backdrop-filter: blur(12px);
    }

    .nav-tools .icon-button {
        width: 36px;
        height: 36px;
        border-color: rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-tools .language-switch {
        padding: 3px;
        border-color: rgba(255, 255, 255, 0.12);
        background: rgba(0, 0, 0, 0.22);
    }

    .nav-tools .language-switch button {
        min-width: 34px;
        min-height: 30px;
        padding: 0 5px;
        font-size: 0.72rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        width: 42px;
        height: 42px;
        border-color: rgba(255, 255, 255, 0.14);
        background:
            linear-gradient(135deg, rgba(226, 24, 56, 0.24), rgba(16, 168, 90, 0.18)),
            rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 22px rgba(240, 190, 69, 0.08);
    }

    .site-nav {
        top: calc(100% + 8px);
        right: 14px;
        left: 14px;
        gap: 6px;
        border-color: rgba(255, 255, 255, 0.18);
        background:
            linear-gradient(145deg, rgba(226, 24, 56, 0.2), transparent 38%),
            linear-gradient(315deg, rgba(16, 168, 90, 0.2), transparent 42%),
            linear-gradient(34deg, transparent 0 60%, rgba(240, 190, 69, 0.12) 61%, transparent 74%),
            rgba(10, 14, 13, 0.88);
        box-shadow: 0 24px 58px rgba(0, 0, 0, 0.46), 0 0 36px rgba(40, 214, 230, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(18px);
        transition: max-height 180ms ease, padding 180ms ease;
    }

    .site-nav.is-open {
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        padding: 12px;
    }

    .site-nav a {
        min-height: 48px;
        padding: 0 14px;
        color: var(--text);
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .site-nav a.active {
        border-color: rgba(240, 190, 69, 0.42);
        background: linear-gradient(135deg, rgba(226, 24, 56, 0.28), rgba(240, 190, 69, 0.14), rgba(16, 168, 90, 0.24));
    }

    .site-nav a:active,
    .hero-service-cloud a:active,
    .service-card:active,
    .priority-card:active,
    .btn:active {
        transform: scale(0.985);
    }

    .site-nav a::after {
        display: none;
    }

    .mobile-nav-actions {
        display: grid;
        gap: 10px;
        padding-top: 10px;
        margin-top: 4px;
        border-top: 1px solid var(--line);
    }

    .mobile-tool-row {
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .mobile-tool-row .language-switch {
        flex: 1 1 auto;
    }

    .mobile-tool-row .language-switch button {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding-top: 38px;
        overflow: hidden;
    }

    .hero::before {
        position: absolute;
        top: 26px;
        right: -26px;
        left: -26px;
        display: block;
        height: 280px;
        pointer-events: none;
        content: "";
        opacity: 0.52;
        background:
            linear-gradient(115deg, transparent 0 18%, rgba(226, 24, 56, 0.34) 19%, transparent 28%),
            linear-gradient(122deg, transparent 0 42%, rgba(240, 190, 69, 0.28) 43%, transparent 49%),
            linear-gradient(132deg, transparent 0 64%, rgba(16, 168, 90, 0.3) 65%, transparent 72%),
            linear-gradient(100deg, transparent 0 8%, rgba(40, 214, 230, 0.14) 9%, transparent 18%);
        animation: mobileSignalSweep 12s ease-in-out infinite reverse;
        mask-image: linear-gradient(to bottom, black, transparent 92%);
    }

    h1 {
        font-size: 2.72rem;
        line-height: 1.02;
    }

    h2 {
        font-size: 1.9rem;
        line-height: 1.08;
    }

    h3 {
        line-height: 1.18;
    }

    p {
        line-height: 1.58;
    }

    .hero-grid,
    .page-hero-grid,
    .service-detail-grid {
        gap: 28px;
    }

    .hero-meta,
    .stat-grid,
    .achievement-grid,
    .service-grid,
    .service-grid.three-up,
    .service-gallery-grid,
    .priority-grid,
    .project-grid,
    .value-grid,
    .process-grid,
    .location-grid,
    .scope-list,
    .image-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .achievement-media-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 10px;
    }

    .achievement-media-tile,
    .achievement-media-tile:nth-child(1),
    .achievement-media-tile:nth-child(2),
    .achievement-media-tile:nth-child(3),
    .achievement-media-tile:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        min-height: 230px;
    }

    .achievement-card {
        min-height: auto;
        padding: 18px;
        background:
            linear-gradient(145deg, rgba(226, 24, 56, 0.16), transparent 42%),
            linear-gradient(315deg, rgba(16, 168, 90, 0.16), transparent 48%),
            rgba(13, 18, 17, 0.8);
    }

    .achievement-card strong {
        margin-top: 18px;
        font-size: 2rem;
    }

    .showcase-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .showcase-card img {
        min-height: auto;
        aspect-ratio: 16 / 10;
    }

    .showcase-card > div,
    .service-gallery-card > div {
        padding: 18px;
    }

    .hero-stage {
        position: relative;
        overflow: hidden;
        padding: 16px;
        border-color: rgba(255, 255, 255, 0.16);
        background:
            linear-gradient(145deg, rgba(226, 24, 56, 0.26), transparent 42%),
            linear-gradient(315deg, rgba(16, 168, 90, 0.25), transparent 46%),
            linear-gradient(34deg, transparent 0 60%, rgba(240, 190, 69, 0.16) 61%, transparent 72%),
            rgba(12, 17, 16, 0.72);
        box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3), 0 0 34px rgba(40, 214, 230, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(12px);
    }

    .hero-stage::before {
        position: absolute;
        inset: 0;
        pointer-events: none;
        content: "";
        opacity: 0.42;
        background:
            linear-gradient(120deg, transparent 0 22%, rgba(255, 255, 255, 0.14) 23%, transparent 31%),
            repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
        animation: mobileSignalSweep 11s ease-in-out infinite;
    }

    .hero-logo-wrap {
        width: min(260px, 76vw);
        height: min(260px, 76vw);
        margin: 4px auto 18px;
    }

    .hero-logo-wrap::before {
        position: absolute;
        inset: -9%;
        pointer-events: none;
        content: "";
        border-radius: 50%;
        background: conic-gradient(from 110deg, rgba(226, 24, 56, 0.34), rgba(240, 190, 69, 0.26), rgba(16, 168, 90, 0.34), rgba(40, 214, 230, 0.2), rgba(226, 24, 56, 0.34));
        filter: blur(9px);
        opacity: 0.72;
        animation: spinSoft 15s linear infinite;
    }

    .hero-logo-wrap img {
        width: min(210px, 64vw);
        max-width: none;
        height: min(210px, 64vw);
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 50%;
        animation: floatLogo 5.6s ease-in-out infinite, mobileLogoGlow 3.8s ease-in-out infinite;
        box-shadow: 0 0 38px rgba(226, 24, 56, 0.28), 0 0 38px rgba(16, 168, 90, 0.26), 0 0 34px rgba(240, 190, 69, 0.14);
    }

    .orbit-line {
        display: none;
    }

    .hero-service-cloud a {
        position: relative;
        overflow: hidden;
        min-height: 56px;
        padding: 12px;
        border-color: rgba(255, 255, 255, 0.12);
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .hero-service-cloud a.is-major {
        border-color: rgba(240, 190, 69, 0.4);
        background:
            linear-gradient(135deg, rgba(226, 24, 56, 0.28), rgba(240, 190, 69, 0.14), rgba(16, 168, 90, 0.24)),
            rgba(255, 255, 255, 0.08);
    }

    .hero-service-cloud a.is-major::after,
    .priority-card::after,
    .service-card.major-service::before {
        position: absolute;
        inset: 0 auto 0 0;
        width: 42%;
        pointer-events: none;
        content: "";
        opacity: 0.42;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
        animation: mobileCardShine 5.8s ease-in-out infinite;
    }

    .priority-section {
        padding-top: 44px;
    }

    .priority-card {
        position: relative;
        grid-template-columns: 1fr;
        min-height: auto;
        border-color: rgba(255, 255, 255, 0.15);
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
            rgba(13, 18, 17, 0.78);
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(12px);
        transition: border-color 160ms ease, background 160ms ease;
    }

    .priority-card img {
        height: auto;
        min-height: 220px;
        aspect-ratio: 16 / 10;
        filter: saturate(1.08) contrast(1.05);
    }

    .priority-card > div {
        padding: 20px;
    }

    .priority-card h3 {
        font-size: 1.38rem;
    }

    .hero-meta span,
    .stat-card,
    .value-card,
    .process-card,
    .project-card,
    .scope-card,
    .location-card,
    .profile-highlight,
    .registry-panel,
    .contact-form-panel,
    .office-panel,
    .contact-quick-panel,
    .service-search-panel,
    .service-detail-badge {
        backdrop-filter: none;
    }

    [data-reveal] {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 360ms ease, transform 360ms ease;
    }

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

    .tilt-card {
        transform: none !important;
        will-change: auto;
    }

    .stat-card {
        min-height: auto;
        padding: 18px;
        border-color: rgba(255, 255, 255, 0.16);
        background:
            linear-gradient(145deg, rgba(226, 24, 56, 0.16), transparent 42%),
            linear-gradient(315deg, rgba(16, 168, 90, 0.16), transparent 48%),
            rgba(13, 18, 17, 0.8);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26), 0 0 24px rgba(40, 214, 230, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .stat-card strong {
        font-size: 2rem;
        text-shadow: 0 0 20px rgba(240, 190, 69, 0.12);
    }

    .section-header {
        margin-bottom: 26px;
        text-align: left;
    }

    .service-grid,
    .project-grid,
    .value-grid,
    .process-grid,
    .location-grid,
    .scope-list,
    .image-strip {
        gap: 12px;
    }

    .service-card {
        position: relative;
        min-height: auto;
        padding: 14px;
        border-color: rgba(255, 255, 255, 0.13);
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
            rgba(13, 18, 17, 0.78);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: border-color 160ms ease, background 160ms ease;
    }

    .service-card::after {
        width: 46px;
        box-shadow: none;
    }

    .service-card img {
        aspect-ratio: 16 / 9;
        transition: none;
        filter: saturate(1.08) contrast(1.03);
    }

    .service-card.major-service {
        border-color: rgba(240, 190, 69, 0.36);
        background:
            linear-gradient(145deg, rgba(226, 24, 56, 0.2), transparent 42%),
            linear-gradient(315deg, rgba(16, 168, 90, 0.2), transparent 46%),
            linear-gradient(34deg, transparent 0 60%, rgba(240, 190, 69, 0.12) 61%, transparent 72%),
            rgba(13, 18, 17, 0.82);
        box-shadow: 0 18px 46px rgba(0, 0, 0, 0.29), 0 0 24px rgba(240, 190, 69, 0.1);
    }

    .service-card:hover img,
    .strip-item:hover img {
        transform: none;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        margin-top: 14px;
        margin-left: 0;
    }

    .service-number {
        top: 24px;
        left: 24px;
        width: 38px;
        height: 38px;
    }

    .page-hero {
        padding-top: 44px;
    }

    .page-hero-grid {
        min-height: auto;
    }

    .page-hero-media img,
    .service-detail-media img {
        min-height: 260px;
    }

    .service-detail-grid {
        min-height: auto;
    }

    .service-detail-badge {
        min-height: auto;
    }

    .profile-table-wrap {
        overflow-x: auto;
    }

    .profile-table th,
    .profile-table td {
        display: block;
        width: 100%;
        padding: 14px 16px;
    }

    .profile-table td {
        padding-top: 0;
        overflow-wrap: anywhere;
        border-top: 0;
    }

    .profile-highlight {
        min-height: auto;
    }

    .profile-highlight img {
        width: 132px;
        height: 132px;
    }

    .contact-form-panel,
    .office-panel,
    .registry-panel,
    .location-card {
        padding: 20px;
    }

    .filter-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-chip {
        width: 100%;
    }

    .cta-band {
        padding: 44px 0;
    }

    .timeline::before {
        left: 24px;
    }

    .timeline article {
        grid-template-columns: 1fr;
        padding-left: 54px;
    }

    .timeline article h3,
    .timeline article p {
        grid-column: 1;
    }

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

    .cta-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.28rem;
    }

    h2 {
        font-size: 1.68rem;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .brand-text strong {
        max-width: 76px;
        overflow: hidden;
        font-size: 0.74rem;
        text-overflow: ellipsis;
    }

    .brand-mark,
    .brand-logo {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
    }

    .nav-tools .icon-button {
        width: 34px;
        height: 34px;
    }

    .nav-tools .language-switch button {
        min-width: 32px;
        min-height: 28px;
        font-size: 0.7rem;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }
}

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

    .cursor-glow,
    #site-field {
        display: none;
    }
}
