:root {
    --bg: #04070c;
    --bg-2: #060b13;
    --ink: #f2f7fb;
    --body: #c3d1de;
    --muted: #9db0c2;
    --dim: #6e8296;
    --blue: #4da3ff;
    --gold: #f0b054;
    --line: rgba(140, 180, 230, 0.14);
    --panel: rgba(9, 14, 22, 0.72);
    --solid: #070c14;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --serif: 'Playfair Display', Georgia, serif;
    --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(240, 176, 84, 0.9); color: #140b02; }

.mono {
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.container.narrow { max-width: 900px; }

#stage {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 2s ease 0.2s;
}
body.is-loaded #stage { opacity: 1; }

.vignette {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    background:
        radial-gradient(ellipse 120% 90% at 50% 40%, transparent 55%, rgba(2, 4, 7, 0.55) 100%),
        linear-gradient(to bottom, rgba(2, 4, 7, 0.5), transparent 12%, transparent 88%, rgba(2, 4, 7, 0.6));
}

.grain {
    position: fixed;
    inset: -100px;
    z-index: 51;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grain 0.6s steps(4) infinite;
}
@keyframes grain {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-30px, 20px); }
    50% { transform: translate(20px, -35px); }
    75% { transform: translate(-15px, -20px); }
    100% { transform: translate(0, 0); }
}

.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease, width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
.cursor-dot { width: 5px; height: 5px; background: var(--gold); }
.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(242, 247, 251, 0.35);
}
.cursor-ring.is-hover { width: 54px; height: 54px; border-color: rgba(240, 176, 84, 0.75); }
@media (hover: hover) and (pointer: fine) {
    .cursor-dot, .cursor-ring { display: block; }
    body.custom-cursor, body.custom-cursor a, body.custom-cursor button,
    body.custom-cursor input, body.custom-cursor textarea { cursor: none; }
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: clip-path 1.1s var(--ease);
    clip-path: inset(0 0 0 0);
}
.preloader.done { clip-path: inset(0 0 100% 0); }
.pre-inner { text-align: center; width: min(420px, 80vw); }
.pre-logo { font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 700; letter-spacing: 0.42em; margin-left: 0.42em; }
.pre-logo span { display: inline-block; opacity: 0; transform: translateY(18px); animation: preLift 0.7s var(--ease) forwards; }
.pre-logo span:nth-child(1) { animation-delay: 0.05s; }
.pre-logo span:nth-child(2) { animation-delay: 0.13s; }
.pre-logo span:nth-child(3) { animation-delay: 0.21s; }
.pre-logo span:nth-child(4) { animation-delay: 0.29s; }
.pre-logo span:nth-child(5) { animation-delay: 0.37s; }
.pre-logo span:nth-child(6) { animation-delay: 0.45s; color: var(--gold); }
@keyframes preLift { to { opacity: 1; transform: translateY(0); } }
.pre-tag { margin-top: 0.9rem; color: var(--dim); }
.pre-bar { height: 1px; background: rgba(255,255,255,0.12); margin-top: 2rem; overflow: hidden; }
.pre-bar i { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--blue), var(--gold)); transform: scaleX(0); transform-origin: left; }
.pre-count { margin-top: 0.8rem; color: var(--muted); font-variant-numeric: tabular-nums; }

.bar {
    position: fixed;
    left: 0;
    right: 0;
    height: 11vh;
    background: #010203;
    z-index: 350;
    transition: transform 1.2s var(--ease) 0.55s;
}
.bar-top { top: 0; }
.bar-bottom { bottom: 0; }
body:not(.is-loaded) .bar { transform: scaleY(0); }
body.is-loaded .bar-top { transform: translateY(-101%); }
body.is-loaded .bar-bottom { transform: translateY(101%); }

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem clamp(1.25rem, 4vw, 3rem);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    background: rgba(4, 7, 12, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: var(--line);
    padding-block: 0.8rem;
}
.logo {
    font-weight: 700;
    letter-spacing: 0.3em;
    font-size: 1.45rem;
    color: var(--ink);
    text-decoration: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.logo-sq {
    display: inline-block;
    width: 0.42em;
    height: 0.42em;
    background: var(--gold);
    margin-left: 0.28em;
}
.logo-dot {
    display: inline-block;
    width: 0.48em;
    height: 0.48em;
    background: #f5821f;
    margin-left: 0.3em;
}
.footer .logo { font-size: 1.2rem; }
.nav { display: flex; gap: 2.4rem; }
.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 1px;
    width: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}
.nav-link:hover, .nav-link.is-active { color: var(--ink); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.btn-pill {
    border: 1px solid rgba(242, 247, 251, 0.28);
    border-radius: 2px;
    padding: 0.6rem 1.4rem;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    display: inline-block;
}
.btn-pill:hover { background: var(--ink); color: #06101c; border-color: var(--ink); }

.burger {
    display: none;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.burger i { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s; }
.burger.open i:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.burger.open i:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(3, 5, 9, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mm-link {
    color: var(--ink);
    text-decoration: none;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.mm-foot { position: absolute; bottom: 2.5rem; color: var(--dim); }

.rail {
    position: fixed;
    left: clamp(1rem, 2.5vw, 2.2rem);
    top: 50%;
    transform: translateY(-50%);
    z-index: 150;
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}
.rail-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: var(--dim);
    text-transform: uppercase;
    transition: color 0.3s;
}
.rail-item b { font-weight: 500; }
.rail-item span {
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s, transform 0.3s;
}
.rail-item::before {
    content: '';
    width: 14px;
    height: 1px;
    background: currentColor;
    transition: width 0.35s var(--ease), background 0.3s;
}
.rail-item:hover span, .rail-item.is-active span { opacity: 1; transform: translateX(0); }
.rail-item.is-active { color: var(--gold); }
.rail-item.is-active::before { width: 26px; }

.progress-track {
    position: fixed;
    right: clamp(1rem, 2.5vw, 2.2rem);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 34vh;
    background: rgba(255, 255, 255, 0.1);
    z-index: 150;
}
.progress-track i {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--blue), var(--gold));
    transform: scaleY(var(--p, 0));
    transform-origin: top;
}

.section { position: relative; z-index: 10; }
.chapter { min-height: 100vh; display: flex; align-items: center; padding: 16vh 0; }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 58% 48% at 50% 44%, rgba(3, 6, 10, 0.82), rgba(3, 6, 10, 0.42) 55%, transparent 76%);
}
.hud {
    position: absolute;
    color: var(--dim);
    z-index: 6;
    opacity: 0;
    transition: opacity 1.2s ease 1.6s;
}
body.is-loaded .hud { opacity: 1; }
.hud-tl { top: 5.5rem; left: clamp(1.25rem, 4vw, 3rem); }
.hud-tr { top: 5.5rem; right: clamp(1.25rem, 4vw, 3rem); }
.hud-bl { bottom: 2.2rem; left: clamp(1.25rem, 4vw, 3rem); }
.hud-br { bottom: 2.2rem; right: clamp(1.25rem, 4vw, 3rem); }

.hero-inner { max-width: 1100px; position: relative; z-index: 6; }
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.9s ease 0.9s, transform 0.9s var(--ease) 0.9s;
}
body.is-loaded .kicker { opacity: 1; transform: none; }
.kicker-line { width: 44px; height: 1px; background: var(--gold); display: inline-block; }

.hero-title {
    font-size: clamp(2.4rem, 7.6vw, 6.2rem);
    line-height: 1.03;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-title .w { display: inline-block; overflow: hidden; vertical-align: top; }
.hero-title .in {
    display: inline-block;
    transform: translateY(112%) rotate(3deg);
    transform-origin: left top;
}
body.is-loaded .hero-title .in { transform: none; transition: transform 1.1s var(--ease); }
body.is-loaded .hero-title .line:nth-child(1) .in { transition-delay: 1.05s; }
body.is-loaded .hero-title .line:nth-child(2) .in { transition-delay: 1.17s; }
body.is-loaded .hero-title .line:nth-child(3) .in { transition-delay: 1.29s; }
.gold-serif {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    color: var(--gold);
    padding-right: 0.06em;
}

.hero-sub {
    max-width: 600px;
    margin: 2.2rem auto 0;
    color: var(--body);
    font-size: clamp(0.98rem, 1.4vw, 1.1rem);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1s ease 1.5s, transform 1s var(--ease) 1.5s;
}
body.is-loaded .hero-sub { opacity: 1; transform: none; }

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.8rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1s ease 1.7s, transform 1s var(--ease) 1.7s;
}
body.is-loaded .hero-cta { opacity: 1; transform: none; }

.btn-primary, .btn-secondary {
    position: relative;
    display: inline-block;
    padding: 1.05rem 2.6rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    transition: box-shadow 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-primary {
    color: #140b02;
    background: var(--gold);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover { box-shadow: 0 10px 40px rgba(240, 176, 84, 0.3); }
.btn-secondary {
    color: var(--ink);
    border: 1px solid rgba(242, 247, 251, 0.3);
    background: rgba(4, 8, 14, 0.4);
    backdrop-filter: blur(6px);
}
.btn-secondary:hover { border-color: var(--ink); background: rgba(255, 255, 255, 0.07); }
.btn-primary span, .btn-secondary span { position: relative; z-index: 1; }
.btn-wide { width: 100%; text-align: center; }

.scroll-hint {
    position: absolute;
    bottom: 2.1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    color: var(--dim);
    opacity: 0;
    transition: opacity 1.4s ease 2.2s;
    z-index: 6;
}
body.is-loaded .scroll-hint { opacity: 1; }
.scroll-line { width: 1px; height: 52px; background: rgba(255,255,255,0.14); overflow: hidden; position: relative; }
.scroll-line i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--gold);
    animation: scrollDrop 1.8s var(--ease) infinite;
}
@keyframes scrollDrop {
    0% { transform: translateY(-110%); }
    60%, 100% { transform: translateY(280%); }
}

.sec-head {
    max-width: 880px;
    --sp: 2.2rem;
    padding: var(--sp);
    margin: calc(var(--sp) * -1);
    margin-bottom: calc(clamp(2.5rem, 6vh, 4.5rem) - var(--sp));
    background: radial-gradient(ellipse 58% 95% at 36% 50%, rgba(3, 6, 10, 0.82), rgba(3, 6, 10, 0.42) 58%, transparent 82%);
}
.scrim-block, .tb-left, .tb-right, .eng-head {
    --sp: 2.2rem;
    padding: var(--sp);
    margin: calc(var(--sp) * -1);
    background: radial-gradient(ellipse 58% 95% at 36% 50%, rgba(3, 6, 10, 0.82), rgba(3, 6, 10, 0.42) 58%, transparent 82%);
}
.tb-left, .tb-right { --sp: 1.6rem; }
.eng-head + .eng-head { margin-top: calc(3.5rem - var(--sp)); }
.sec-title {
    font-size: clamp(1.9rem, 4.4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0;
    margin-top: 1.4rem;
}
.sec-title.left { text-align: left; }
.sec-sub { color: var(--muted); margin-top: 1.3rem; max-width: 620px; font-size: 1.02rem; }

.media-duo {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}
.media-duo figure {
    position: relative;
    border: 1px solid var(--line);
    background: var(--solid);
    overflow: hidden;
}
.media-duo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.05) brightness(0.9);
    transition: filter 0.5s var(--ease);
}
.media-duo figure:hover img { filter: saturate(1) contrast(1.02) brightness(0.98); }
.media-duo .m-main img { aspect-ratio: 16 / 10; }
.media-duo .m-side img { aspect-ratio: 4 / 3.4; }
.media-duo figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.6rem 1.1rem 0.75rem;
    font-size: 0.6rem !important;
    color: var(--body);
    background: linear-gradient(to top, rgba(3, 6, 10, 0.88), transparent);
}

.big-statement {
    font-size: clamp(1.8rem, 4.2vw, 3.2rem);
    line-height: 1.16;
    font-weight: 650;
    letter-spacing: -0.01em;
    margin: 1.6rem 0 2.2rem;
}
.lead { color: var(--body); font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 720px; }

[data-split] .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.12em; margin-bottom: -0.12em; }
[data-split] .word > i {
    display: inline-block;
    font-style: normal;
    transform: translateY(110%);
    transition: transform 0.9s var(--ease);
    transition-delay: calc(var(--d, 0) * 40ms);
}
[data-split].in .word > i { transform: none; }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 3.2rem;
}
.stat { background: var(--solid); padding: 1.7rem 1.6rem; }
.stat b {
    display: block;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.stat span { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

.cards-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    perspective: 1200px;
}
.card {
    position: relative;
    background: var(--solid);
    padding: clamp(1.8rem, 3vw, 2.6rem);
    transition: background 0.4s;
    transform-style: preserve-3d;
    will-change: transform;
}
.card:hover { background: #0a111c; }
.card-num {
    color: var(--gold);
    margin-bottom: 1.6rem;
    display: inline-block;
    border-bottom: 1px solid rgba(240, 176, 84, 0.4);
    padding-bottom: 0.5rem;
}
.card h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); margin-bottom: 0.9rem; letter-spacing: -0.01em; line-height: 1.25; }
.card p:not(.mono) { color: var(--body); font-size: 0.95rem; }

.svc-list { list-style: none; margin-top: 1.5rem; }
.svc-list li {
    position: relative;
    padding: 0.42rem 0 0.42rem 1.6rem;
    color: var(--body);
    font-size: 0.92rem;
}
.svc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.05em;
    width: 12px;
    height: 1px;
    background: var(--gold);
}
.svc-list.tight li { font-size: 0.85rem; padding-block: 0.28rem; color: var(--muted); }

.cta-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2.4rem 0.25rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.cta-strip p {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    color: var(--ink);
    max-width: 560px;
    line-height: 1.45;
    font-weight: 500;
    padding: 1.6rem 2rem;
    margin: -1.6rem -2rem;
    background: radial-gradient(ellipse 60% 90% at 40% 50%, rgba(3, 6, 10, 0.8), rgba(3, 6, 10, 0.4) 58%, transparent 82%);
}

.cards-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    perspective: 1200px;
}
.idx {
    color: var(--gold);
    display: block;
    margin-bottom: 1.3rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(240, 176, 84, 0.35);
    width: fit-content;
}
.card-sm h3 { font-size: 1.15rem; }

.partners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.partner { background: var(--solid); padding: clamp(1.8rem, 3vw, 2.6rem); }
.p-head {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 1.5rem;
}
.p-photo {
    display: block;
    width: clamp(110px, 10vw, 150px);
    height: auto;
    flex-shrink: 0;
    border: 1px solid var(--line);
    filter: grayscale(0.92) contrast(1.05) brightness(0.9);
    transition: filter 0.5s var(--ease);
}
.partner:hover .p-photo { filter: grayscale(0.08) contrast(1.02) brightness(0.98); }
.p-top {
    flex: 1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.2rem;
}
.p-name { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 700; letter-spacing: -0.01em; }
.p-role { color: var(--gold); white-space: nowrap; }
.p-bio { color: var(--body); font-size: 0.96rem; line-height: 1.75; }
.p-record { list-style: none; margin-top: 1.4rem; }
.p-record li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.55;
}
.p-record li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.15em;
    width: 10px;
    height: 1px;
    background: var(--gold);
}

.team-band {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    margin-top: 4.5rem;
    margin-bottom: 3.5rem;
    padding-top: 3.2rem;
    border-top: 1px solid var(--line);
}
.sub-label {
    color: var(--gold);
    display: block;
    margin-bottom: 1.3rem;
}
.team-band p { color: var(--body); font-size: 0.95rem; line-height: 1.75; }
.local-photo {
    width: 100%;
    aspect-ratio: 21 / 10;
    object-fit: cover;
    border: 1px solid var(--line);
    margin-top: 1.5rem;
    display: block;
    filter: saturate(0.85) brightness(0.94);
}
.adv-list { list-style: none; margin-top: 1.8rem; }
.adv-list li {
    display: grid;
    grid-template-columns: minmax(130px, 170px) 1fr;
    gap: 0.35rem 1.6rem;
    align-items: baseline;
    padding: 1.05rem 0;
    border-top: 1px solid var(--line);
}
.adv-list li:first-child { border-top: 0; padding-top: 0.4rem; }
.adv-list b {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
}
.adv-list li {
    display: grid;
    grid-template-columns: 14px minmax(130px, 170px) 1fr;
    gap: 0.35rem 1rem;
    align-items: baseline;
    padding: 1.05rem 0;
    border-top: 1px solid var(--line);
}
.adv-list li::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--gold);
    transform: translateY(-3px);
}
.adv-list b {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
}
.adv-list span {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.engage { list-style: none; margin: 0; }
.engage li {
    display: flex;
    gap: 1.6rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
}
.engage li:first-child { border-top: 0; padding-top: 0.4rem; }
.engage .mono {
    color: var(--gold);
    font-size: 0.85rem;
    padding-top: 0.25em;
    flex-shrink: 0;
}
.engage h6 {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 0.45rem;
}
.engage p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 62ch;
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.4rem;
    padding-top: 1.6rem;
}
.logo-row img {
    height: 54px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s;
}
.logo-row img:hover { opacity: 1; }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.client-card { background: var(--solid); padding: 1.3rem; }
.client-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    margin-bottom: 1.1rem;
    filter: saturate(0.9);
}
.client-card p { font-size: 0.85rem; color: var(--body); line-height: 1.6; margin: 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}
.offices { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.office {
    background: var(--solid);
    padding: 1.35rem 1.6rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    column-gap: 1rem;
    row-gap: 0.15rem;
    transition: background 0.3s;
}
.office:hover { background: #0a111c; }
.office h4 { font-size: 1.08rem; grid-column: 1; }
.o-code { color: var(--gold); grid-column: 1 / -1; margin-bottom: 0.35rem; font-size: 0.6rem !important; }
.office p { grid-column: 1 / -1; color: var(--dim); font-size: 0.62rem !important; margin: 0; }
.direct { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.4rem; }
.mail-chip {
    color: var(--body);
    text-decoration: none;
    font-size: 0.8rem;
    border: 1px solid var(--line);
    padding: 0.55rem 1.1rem;
    border-radius: 2px;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.mail-chip:hover { color: var(--ink); border-color: var(--gold); background: rgba(240, 176, 84, 0.06); }

.form {
    background: var(--solid);
    border: 1px solid var(--line);
    padding: clamp(1.6rem, 3vw, 2.4rem);
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}
.field label { display: block; color: var(--dim); margin-bottom: 0.55rem; font-size: 0.6rem !important; }
.field input, .field textarea {
    width: 100%;
    background: rgba(4, 8, 14, 0.85);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 0.95rem 1.1rem;
    color: var(--ink);
    font-family: var(--font);
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field textarea:focus {
    outline: none;
    border-color: rgba(240, 176, 84, 0.6);
    box-shadow: 0 0 0 3px rgba(240, 176, 84, 0.09);
}
.newsletter { color: var(--muted); text-decoration: none; text-align: center; transition: color 0.3s; font-size: 0.64rem !important; }
.newsletter:hover { color: var(--gold); }

.footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--line);
    background: linear-gradient(to bottom, rgba(3, 5, 9, 0.5), rgba(3, 5, 9, 0.95));
    backdrop-filter: blur(10px);
    padding: 4.5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.f-brand p { color: var(--muted); font-size: 0.92rem; max-width: 360px; margin-top: 1.2rem; }
.f-links { display: flex; flex-direction: column; gap: 0.7rem; }
.f-links h5, .f-contact h5 { color: var(--dim); margin-bottom: 0.6rem; }
.f-links a { color: var(--body); text-decoration: none; font-size: 0.92rem; transition: color 0.3s, transform 0.3s; width: fit-content; }
.f-links a:hover { color: var(--gold); transform: translateX(4px); }
.f-contact .mail { color: var(--ink); text-decoration: none; font-weight: 600; display: inline-block; margin-bottom: 0.7rem; }
.f-contact .mail:hover { color: var(--gold); }
.f-contact p { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.1rem; }
.social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--body);
    text-decoration: none;
    font-size: 0.85rem;
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 0.5rem 1.1rem;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.social:hover { color: #fff; border-color: #0a66c2; background: rgba(10, 102, 194, 0.15); }
.f-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 1.6rem;
}
.f-bottom p { color: var(--dim); }
.f-press { margin-top: 1.4rem; }
.f-press a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--line); transition: color 0.3s; }
.f-press a:hover { color: var(--gold); }

.hud, .rail-item, .scroll-hint { text-shadow: 0 1px 10px rgba(3, 6, 10, 0.9); }
.to-top { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.to-top:hover { color: var(--gold); }

@media (max-width: 1060px) {
    .rail, .progress-track { display: none; }
}

@media (max-width: 900px) {
    .nav, .header .btn-pill { display: none; }
    .burger { display: flex; }
    .contact-grid { grid-template-columns: 1fr; }
    .partners { grid-template-columns: 1fr; }
    .team-band { grid-template-columns: 1fr; gap: 2.5rem; }
    .chapter { padding: 13vh 0; min-height: auto; }
    .hud-tl, .hud-tr { display: none; }
}

@media (max-width: 560px) {
    .stats { grid-template-columns: 1fr 1fr; }
    .hero-cta .btn-primary, .hero-cta .btn-secondary { width: 100%; text-align: center; }
    .office { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
    html { scroll-behavior: auto; }
}
