/* SHAHKINGS / Studio system
   An editorial, hard-edged identity built from the existing royal-fire palette. */

:root {
    --sk-night: #070311;
    --sk-bg: #0b0617;
    --sk-bg-alt: #110820;
    --sk-gold: #ffc629;
    --sk-amber: #ff9d1e;
    --sk-orange: #ff6518;
    --sk-red: #ef233c;
    --sk-purple: #6f38d8;
    --sk-text: #f7f2e8;
    --sk-muted: #aaa1b5;
    --sk-line: rgba(247, 242, 232, .16);
    --sk-line-hot: rgba(255, 198, 41, .7);
    --sk-display: "Syne", "Arial Black", sans-serif;
    --sk-mono: "IBM Plex Mono", Consolas, monospace;
    --sk-font: "Syne", "Segoe UI", sans-serif;
    --sk-radius: 0;
}

html { scroll-padding-top: 82px; }
body {
    background: var(--sk-bg);
    color: var(--sk-text);
    font-family: var(--sk-font);
    line-height: 1.55;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent calc(50% - .5px), rgba(255,255,255,.035) 50%, transparent calc(50% + .5px)),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 100% 100%, 8.333vw 100%;
}
::selection { color: #120600; background: var(--sk-gold); }
.sk-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 3000;
    padding: 12px 16px;
    color: #120600;
    background: var(--sk-gold);
    font-family: var(--sk-mono);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: translateY(-180%);
    transition: transform .2s ease;
}
.sk-skip-link:focus { color: #120600; transform: none; }
:where(a, button, input, textarea, summary):focus-visible {
    outline: 2px solid var(--sk-gold);
    outline-offset: 4px;
}

.sk-bg-glow,
.sk-orbs { display: none; }
.sk-noise {
    position: fixed;
    inset: 0;
    z-index: 2001;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.sk-progress {
    position: fixed;
    z-index: 2100;
    left: 0;
    top: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sk-gold), var(--sk-orange), var(--sk-red));
}
.sk-main { overflow: hidden; }
.container { max-width: 1240px; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sk-display);
    font-weight: 700;
    letter-spacing: -.035em;
}
a { color: var(--sk-gold); }
a:hover { color: var(--sk-amber); }

/* Navigation / operating header */
.sk-navbar {
    min-height: 74px;
    padding: 0 22px;
    background: rgba(7, 3, 17, .95);
    border-bottom: 1px solid var(--sk-line);
    backdrop-filter: blur(16px);
}
.sk-navbar.scrolled {
    padding: 0 22px;
    background: rgba(7, 3, 17, .97) !important;
    box-shadow: none;
}
.sk-navbar .container-fluid { max-width: 1600px; }
.sk-navbar .navbar-brand {
    gap: 13px;
    margin-right: 36px;
    font-family: var(--sk-display);
    font-size: .93rem;
    font-weight: 800;
    letter-spacing: .12em;
}
.sk-navbar .navbar-brand img {
    width: 43px;
    height: 43px;
    object-fit: cover;
    border-radius: 0;
    filter: none;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}
.sk-navbar .navbar-brand:hover img { transform: none; }
.sk-navbar .nav-link {
    position: relative;
    padding: 27px 14px 23px !important;
    border-radius: 0;
    color: rgba(247,242,232,.72) !important;
    font-family: var(--sk-mono);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.sk-navbar .nav-link::before {
    content: attr(data-index);
    margin-right: 6px;
    color: rgba(247,242,232,.32);
    font-size: .56rem;
}
.sk-navbar .nav-link::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 17px;
    left: 14px;
    height: 1px;
    background: var(--sk-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.sk-navbar .nav-link:hover,
.sk-navbar .nav-link.active { color: #fff !important; background: none; }
.sk-navbar .nav-link:hover::after,
.sk-navbar .nav-link.active::after { transform: scaleX(1); }
.sk-navbar .btn-contact {
    margin-left: 12px;
    padding: 14px 20px !important;
    color: #100510 !important;
    background: var(--sk-gold) !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    box-shadow: none;
}
.sk-navbar .btn-contact::after { display: none; }
.sk-navbar .btn-contact:hover { color: #100510 !important; transform: none; box-shadow: none; background: #fff !important; }
.navbar-toggler {
    border: 1px solid var(--sk-line) !important;
    border-radius: 0;
}

.sk-rail {
    position: fixed;
    top: 74px;
    bottom: 0;
    left: 0;
    z-index: 20;
    width: 36px;
    border-right: 1px solid var(--sk-line);
    background: rgba(7,3,17,.74);
    display: flex;
    align-items: center;
    padding: 16px 10px;
    pointer-events: none;
}
.sk-rail span {
    position: absolute;
    top: 18px;
    left: 10px;
    color: rgba(247,242,232,.42);
    font-family: var(--sk-mono);
    font-size: .52rem;
    letter-spacing: .15em;
    white-space: nowrap;
    writing-mode: vertical-rl;
}
.sk-rail i {
    width: 1px;
    height: 20%;
    margin: auto;
    background: var(--sk-gold);
}
.sk-rail b {
    position: absolute;
    bottom: 16px;
    left: 9px;
    color: var(--sk-gold);
    font-family: var(--sk-mono);
    font-size: .5rem;
    font-weight: 500;
    writing-mode: vertical-rl;
}

/* Home hero / studio declaration */
.sk-home-hero {
    min-height: 100svh;
    padding: 150px 7vw 74px 9vw;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    align-items: end;
    gap: 5vw;
    border-bottom: 1px solid var(--sk-line);
    background:
        linear-gradient(130deg, transparent 0 64%, rgba(111,56,216,.13) 64%),
        var(--sk-night);
}
.sk-home-hero::after {
    content: "BUILD / SHIP / OWN";
    position: absolute;
    right: 18px;
    bottom: 18px;
    color: rgba(247,242,232,.35);
    font-family: var(--sk-mono);
    font-size: .58rem;
    letter-spacing: .18em;
    writing-mode: vertical-rl;
}
.sk-hero-copy { position: relative; z-index: 2; min-width: 0; padding-bottom: 4vh; }
.sk-hero-index,
.sk-overline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--sk-gold);
    font-family: var(--sk-mono);
    font-size: .66rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.sk-hero-index::before,
.sk-overline::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}
.sk-home-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(3.6rem, 8.6vw, 9rem);
    font-weight: 800;
    line-height: .81;
    letter-spacing: -.075em;
    text-transform: uppercase;
}
.sk-home-hero h1 span {
    display: block;
    margin-left: .57em;
    color: transparent;
    -webkit-text-stroke: 1px var(--sk-gold);
}
.sk-hero-lede {
    max-width: 580px;
    margin: 32px 0 0 8px;
    color: var(--sk-muted);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
}
.sk-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0 8px; }
.sk-hero-visual {
    position: relative;
    align-self: stretch;
    min-height: 470px;
}
.sk-hero-frame {
    position: absolute;
    inset: 6% 0 8% 6%;
    overflow: hidden;
    border: 1px solid var(--sk-line);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}
.sk-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.08);
}
.sk-hero-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(7,3,17,.08), rgba(7,3,17,.78));
    box-shadow: inset 0 0 0 1px rgba(255,198,41,.13);
}
.sk-hero-logo {
    position: absolute;
    right: -3%;
    bottom: 1%;
    z-index: 2;
    width: 42%;
    mix-blend-mode: screen;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,.6));
}
.sk-hero-spec {
    position: absolute;
    z-index: 3;
    top: 1%;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 1px;
    background: var(--sk-line);
    border: 1px solid var(--sk-line);
}
.sk-hero-spec span {
    padding: 9px 12px;
    color: var(--sk-muted);
    background: var(--sk-night);
    font-family: var(--sk-mono);
    font-size: .55rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* Common editorial section language */
.sk-section {
    padding: clamp(84px, 10vw, 150px) 0;
    border-bottom: 1px solid var(--sk-line);
}
.sk-section::before { display: none; }
.sk-section.alt { background: rgba(255,255,255,.018); }
.sk-section-tight { padding: clamp(64px, 8vw, 110px) 0; }
.section-eyebrow,
.game-tag,
.pf-tag {
    padding: 0 0 8px !important;
    border: 0 !important;
    border-bottom: 1px solid currentColor !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    color: var(--sk-gold) !important;
    font-family: var(--sk-mono) !important;
    font-size: .62rem !important;
    font-weight: 500 !important;
    letter-spacing: .17em !important;
    animation: none !important;
}
.section-title {
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 5.2vw, 5.4rem);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.06em;
    text-transform: uppercase;
}
.section-lead {
    max-width: 710px;
    color: var(--sk-muted);
    font-size: 1.04rem;
    line-height: 1.7;
}
.text-fire,
.text-royal,
.pf-text-fire {
    background: none !important;
    color: var(--sk-gold) !important;
    -webkit-text-fill-color: currentColor !important;
    animation: none !important;
}

.btn-sk,
.btn-sk-outline {
    min-height: 49px;
    padding: 15px 23px;
    border-radius: 0;
    font-family: var(--sk-mono);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .09em;
    line-height: 1;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
    animation: none;
}
.btn-sk {
    color: #120600;
    background: var(--sk-gold);
    box-shadow: none;
}
.btn-sk:hover {
    color: #120600;
    background: #fff;
    box-shadow: none;
    transform: translate(3px, -3px);
}
.btn-sk-outline {
    color: #fff;
    border: 1px solid var(--sk-line);
    background: rgba(255,255,255,.02);
}
.btn-sk-outline:hover {
    color: var(--sk-gold);
    border-color: var(--sk-gold);
    background: transparent;
    transform: translate(3px, -3px);
}

.sk-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0 0 0 36px;
    border: 0;
    border-bottom: 1px solid var(--sk-line);
    background: var(--sk-gold);
}
.sk-stat {
    min-height: 145px;
    padding: 31px 22px;
    border-right: 1px solid rgba(18,6,0,.22);
    color: #120600;
    text-align: left;
}
.sk-stat-num {
    background: none;
    color: #120600;
    -webkit-text-fill-color: currentColor;
    font-family: var(--sk-display);
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    font-weight: 800;
    line-height: .9;
}
.sk-stat-lbl,
.sk-stat p {
    margin-top: 14px;
    color: rgba(18,6,0,.7);
    font-family: var(--sk-mono);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .1em;
}
.sk-marquee {
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid var(--sk-line);
    background: var(--sk-night);
}
.sk-marquee-inner { animation-duration: 42s; }
.sk-marquee-inner span {
    color: rgba(247,242,232,.58);
    font-family: var(--sk-mono);
    font-size: .61rem;
    font-weight: 500;
}
.sk-marquee-inner span::after { content: " [ + ] "; color: var(--sk-gold); }

/* Product imagery and content */
.game-art,
.shot-grid .sk-shot img,
.shot-grid img {
    border: 1px solid var(--sk-line);
    border-radius: 0;
    box-shadow: 13px 13px 0 rgba(111,56,216,.23);
}
.hover-card,
.sk-shot { border-radius: 0; }
.hover-card:hover .game-art,
.game-art:hover,
.shot-grid .sk-shot:hover img,
.shot-grid img:hover {
    transform: translate(-5px, -5px);
    box-shadow: 18px 18px 0 rgba(255,198,41,.22);
}
.game-art::after { display: none; }
.game-title {
    max-width: 620px;
    font-size: clamp(2.2rem, 4.2vw, 4.7rem);
    line-height: .95;
    text-transform: uppercase;
}
.game-desc { color: var(--sk-muted); line-height: 1.7; }
.game-features {
    border-top: 1px solid var(--sk-line);
    counter-reset: feature;
}
.game-features li {
    counter-increment: feature;
    margin: 0;
    padding: 12px 0 12px 46px;
    border-bottom: 1px solid var(--sk-line);
    font-size: .9rem;
}
.game-features li::before {
    content: "0" counter(feature);
    top: 13px;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: var(--sk-gold);
    font-family: var(--sk-mono);
    font-size: .62rem;
}
.sk-play-btn {
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.sk-play-icon { border-radius: 0; }
.sk-play-label,
.sk-play-text small { font-family: var(--sk-mono); }

/* Cards are dossiers, not floating glass tiles */
.sk-card,
.value-box,
.contact-card,
.fh-panel,
.sk-faq-item,
.team-card,
.wallez-hero-panel {
    border: 1px solid var(--sk-line);
    border-radius: 0;
    background: rgba(255,255,255,.025);
    box-shadow: none;
}
.sk-card {
    min-height: 100%;
    padding: 34px 30px 31px;
}
.sk-card::before { display: none; }
.sk-card:hover,
.value-box:hover,
.contact-card:hover,
.team-card:hover {
    border-color: var(--sk-gold);
    background: rgba(255,198,41,.035);
    box-shadow: 7px 7px 0 rgba(255,198,41,.14);
    transform: translate(-4px, -4px);
}
/* Stats inside dark cards (About / Studio) — gold numbers, stacked cleanly */
.sk-card .sk-stat-num {
    display: block;
    margin: 0 0 14px;
    color: var(--sk-gold);
    -webkit-text-fill-color: var(--sk-gold);
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: .9;
    letter-spacing: -.04em;
}
.sk-card.text-center .sk-stat-num { margin-bottom: 16px; }
.sk-card.text-center > p {
    margin: 0;
    color: var(--sk-muted);
    font-family: var(--sk-mono);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.sk-card-icon,
.contact-card-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 0 22px;
    border: 1px solid rgba(255,198,41,.35);
    border-radius: 0;
    background: rgba(255,198,41,.08);
    box-shadow: none;
    color: var(--sk-gold);
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}
.sk-card.text-center .sk-card-icon,
.contact-card .contact-card-icon {
    margin-left: auto;
    margin-right: auto;
}
.sk-card h4,
.sk-card h5 { text-transform: uppercase; }
.sk-card p,
.value-box p,
.contact-card p { color: var(--sk-muted); }
.value-box h4 { color: var(--sk-gold); }

.page-hero {
    min-height: 70vh;
    padding: 180px 7vw 90px 10vw;
    border-bottom: 1px solid var(--sk-line);
    background:
        linear-gradient(115deg, var(--sk-night) 0 66%, rgba(111,56,216,.18) 66%),
        var(--sk-night);
    text-align: left;
    display: flex;
    align-items: flex-end;
}
.page-hero .container { margin-left: 0; }
.page-hero h1 {
    max-width: 980px;
    margin: 24px 0 22px;
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 800;
    line-height: .82;
    letter-spacing: -.075em;
    text-transform: uppercase;
}
.page-hero p { max-width: 700px; margin: 0; color: var(--sk-muted); }

.sk-timeline {
    max-width: 850px;
    padding-left: 0;
    border-top: 1px solid var(--sk-line);
}
.sk-timeline::before { display: none; }
.sk-tl {
    display: grid;
    grid-template-columns: 150px 1fr;
    column-gap: 32px;
    padding: 25px 0;
    border-bottom: 1px solid var(--sk-line);
}
.sk-tl::before { display: none; }
.sk-tl-yr { grid-row: 1 / span 2; font-family: var(--sk-mono); }
.sk-tl h4 { margin: 0 0 7px; font-size: 1.35rem; }

.sk-cta {
    padding: clamp(55px, 8vw, 100px) 7vw;
    border: 1px solid var(--sk-gold);
    border-radius: 0;
    background: var(--sk-gold);
    box-shadow: 12px 12px 0 rgba(111,56,216,.4);
    animation: none;
    text-align: left;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%);
}
.sk-cta::before { display: none; }
.sk-cta h2 { color: #120600; font-size: clamp(2.8rem, 6vw, 6rem); line-height: .9; text-transform: uppercase; }
.sk-cta p { margin: 18px 0 25px; color: rgba(18,6,0,.72); }
.sk-cta .justify-content-center { justify-content: flex-start !important; }
.sk-cta .btn-sk { background: #120600 !important; color: #fff !important; }
.sk-cta .btn-sk-outline { border-color: rgba(18,6,0,.5); color: #120600; }
.sk-cta .sk-play-btn { border-color: #120600; }

/* Team and profile system */
.team-card { align-items: stretch; padding: 0; text-align: left; overflow: hidden; }
.team-card-avatar {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 0;
    background: var(--sk-bg-alt);
    box-shadow: none;
}
.team-card-avatar img { object-position: center 25%; filter: saturate(.75) contrast(1.08); transition: filter .3s, transform .4s; }
.team-card:hover .team-card-avatar img { filter: saturate(1) contrast(1.03); transform: scale(1.025); }
.team-card-body { margin: 0; padding: 26px 28px 30px; }
.team-card-name { font-size: 1.7rem; text-transform: uppercase; }
.team-card-role,
.team-card-cta { font-family: var(--sk-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }

body .pf-root {
    --pf-gold: var(--sk-gold) !important;
    --pf-amber: var(--sk-amber) !important;
    --pf-muted: var(--sk-muted) !important;
    --pf-border: var(--sk-line) !important;
    --pf-surface: rgba(255,255,255,.025) !important;
    --pf-surface-2: rgba(255,198,41,.035) !important;
}
body .pf-root h1,
body .pf-root h2,
body .pf-root h3,
body .pf-root h4 { font-family: var(--sk-display); letter-spacing: -.04em; }
body .pf-wrap { max-width: 1240px; padding-top: 165px; }
body .pf-hero { min-height: 65vh; grid-template-columns: 1.25fr .75fr; }
body .pf-hero h1 {
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: .82;
    letter-spacing: -.075em;
    text-transform: uppercase;
}
body .pf-card-id,
body .pf-stat,
body .pf-card,
body .pf-app {
    border-radius: 0;
    box-shadow: none;
}
body .pf-card-id { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%); }
body .pf-avatar { width: 145px; height: 175px; border: 0; border-radius: 0; }
body .pf-id-head { align-items: flex-start; text-align: left; }
body .pf-stats { gap: 0; background: var(--sk-gold); }
body .pf-stat { border-color: rgba(18,6,0,.2); background: transparent; }
body .pf-stat b { background: none; color: #120600; -webkit-text-fill-color: currentColor; }
body .pf-stat span { color: rgba(18,6,0,.68); font-family: var(--sk-mono); }
body .pf-section { margin-top: 120px; }
body .pf-section-head h2 { font-size: clamp(2.5rem, 5vw, 5rem); line-height: .95; text-transform: uppercase; }
body .pf-kicker { color: var(--sk-gold); font-family: var(--sk-mono); }
body .pf-card,
body .pf-app { padding: 30px; }
body .pf-card:hover { transform: translate(-4px,-4px); border-color: var(--sk-gold); box-shadow: 7px 7px 0 rgba(255,198,41,.14); }
body .pf-card-icon { width: 50px; height: 1px; background: var(--sk-gold); }
body .pf-pill { border-radius: 0; font-family: var(--sk-mono); font-size: .65rem; }
body .pf-app-badge { border-radius: 0; color: #120600; background: var(--sk-gold); }
body .pf-row { border-color: var(--sk-line); }
body .pf-when { font-family: var(--sk-mono); }

/* Forms / lightbox / footer */
.fh-input,
.fh-textarea,
.fh-choice,
.sk-faq-item {
    border-radius: 0;
    font-family: var(--sk-mono);
}
.fh-input,
.fh-textarea { background: var(--sk-night); }
.fh-panel { padding: clamp(26px, 4vw, 48px); }
.fh-label { font-family: var(--sk-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.sk-faq { max-width: 850px; gap: 0; border-top: 1px solid var(--sk-line); }
.sk-faq-item { border-width: 0 0 1px; background: transparent; padding: 0; }
.sk-faq-item summary { padding: 22px 4px; font-size: 1.15rem; }
.sk-lightbox-img { border-radius: 0; }
.sk-lightbox-close,
.sk-lightbox-prev,
.sk-lightbox-next { border-radius: 0; }

.sk-footer {
    padding: 90px 5vw 26px calc(5vw + 36px);
    border-top: 0;
    background: #040208;
}
.sk-footer-statement {
    margin-bottom: 80px;
    color: #fff;
    font-family: var(--sk-display);
    font-size: clamp(3.5rem, 9vw, 9rem);
    font-weight: 800;
    line-height: .76;
    letter-spacing: -.075em;
}
.sk-footer-statement span { color: transparent; -webkit-text-stroke: 1px var(--sk-gold); }
.sk-footer-brand { font-family: var(--sk-display); }
.sk-footer-brand img { border-radius: 0; }
.sk-footer h5,
.sk-footer a,
.sk-footer-bottom { font-family: var(--sk-mono); }
.sk-footer h5 { color: var(--sk-gold); font-size: .64rem; }
.sk-footer a { font-size: .76rem; }
.sk-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-size: .6rem;
    letter-spacing: .08em;
}

[data-reveal] {
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.16,1,.3,1);
}
[data-reveal].revealed { transform: none; }

@media (max-width: 1100px) {
    .sk-home-hero { grid-template-columns: 1fr .75fr; padding-left: 8vw; }
    .sk-navbar .nav-link { padding-right: 8px !important; padding-left: 8px !important; }
    .sk-navbar .btn-contact { margin-left: 5px; }
}
@media (max-width: 1199px) {
    .sk-navbar { padding: 10px 16px; }
    .sk-navbar.scrolled { padding: 10px 16px; }
    .sk-navbar .navbar-collapse {
        margin: 10px -16px -10px;
        padding: 8px 18px 18px;
        border-top: 1px solid var(--sk-line);
        background: var(--sk-night);
    }
    .sk-navbar .nav-link { padding: 12px 4px !important; }
    .sk-navbar .nav-link::after { right: 4px; bottom: 5px; left: 4px; }
    .sk-navbar .btn-contact { margin: 8px 0 0; padding: 16px !important; text-align: center; }
}
@media (max-width: 991px) {
    .sk-home-hero { grid-template-columns: 1fr; align-items: start; padding: 135px 7vw 60px 10vw; }
    .sk-hero-visual { min-height: 440px; }
    .page-hero { padding-left: 10vw; }
    body .pf-hero { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    body::before { background-size: 100% 100%, 25vw 100%; }
    .sk-rail { display: none; }
    .sk-home-hero { padding: 125px 20px 50px; }
    .sk-hero-copy { width: calc(100vw - 40px); }
    .sk-home-hero h1 { font-size: clamp(3.15rem, 16vw, 6.2rem); letter-spacing: -.085em; }
    .sk-home-hero h1 span { margin-left: .18em; }
    .sk-hero-lede,
    .sk-hero-actions { margin-left: 0; }
    .sk-hero-lede {
        display: block;
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        overflow-wrap: break-word;
    }
    .sk-hero-visual { min-height: 340px; }
    .sk-hero-frame { inset: 4% 0 8%; }
    .sk-hero-spec { left: 0; right: auto; }
    .sk-hero-spec span { padding: 7px 8px; font-size: .48rem; }
    .sk-stats { grid-template-columns: repeat(2, 1fr); padding-left: 0; }
    .sk-stat { min-height: 120px; }
    .sk-section { padding: 74px 0; }
    .section-title { font-size: clamp(2.2rem, 12vw, 4rem); }
    .page-hero { min-height: 58vh; padding: 140px 20px 65px; }
    .page-hero h1 { font-size: clamp(3.7rem, 18vw, 6rem); }
    .sk-tl { grid-template-columns: 1fr; gap: 7px; }
    .sk-tl-yr { grid-row: auto; }
    .sk-cta { padding: 48px 25px 55px; box-shadow: 7px 7px 0 rgba(111,56,216,.4); }
    .team-card-avatar { height: 350px; }
    body .pf-wrap { padding: 125px 16px 30px; }
    body .pf-hero h1 { font-size: clamp(3.5rem, 17vw, 6rem); }
    body .pf-stats { grid-template-columns: repeat(2, 1fr); }
    body .pf-section { margin-top: 88px; }
    .sk-footer { padding: 70px 20px 24px; }
    .sk-footer-statement { margin-bottom: 60px; }
    .sk-footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
