/* VibesBuilder Studios Production CSS */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --surface-el: #1e1e1e;
    --gold: #c9a55c;
    --gold-light: #e8d5a3;
    --gold-dark: #a68840;
    --text: #f0ece4;
    --text-dim: #b5ae9f;
    --border: rgba(201, 165, 92, 0.15);
    --border-light: rgba(255, 255, 255, 0.06);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: var(--font-body);
    --container: 1200px;
    --nav-h: 120px;
    --nav-h-scrolled: 80px
}

input,
button,
select,
textarea {
    font-family: inherit
}

html {
    scroll-padding-top: 80px
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    background-image: linear-gradient(rgba(201, 165, 92, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 165, 92, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: var(--gold-light)
}

ul {
    list-style: none
}

address {
    font-style: normal
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px
}

.screw {
    position: absolute;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 50% 50%, #0d0d0d 0%, #1c1c1c 70%, #2a2a2a 100%);
    border-radius: 50%;
    box-shadow: inset 0 1.5px 3px rgba(0, 0, 0, 0.85), 0 0.5px 0.5px rgba(255, 255, 255, 0.08);
    z-index: 5
}

.screw::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #888888 0%, #4c4c4c 50%, #202020 85%, #141414 100%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), inset 0 0.75px 0.5px rgba(255, 255, 255, 0.3)
}

.screw::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6.5px;
    height: 6.5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23080808'%3E%3Ccircle cx='12' cy='12' r='3.2'/%3E%3Cpath d='M10.2 3h3.6v18h-3.6z M3 10.2h18v3.6H3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0.5px 0.2px rgba(255, 255, 255, 0.35));
    z-index: 6;
    transform: translate(-50%, -50%) rotate(var(--screw-rotate, 0deg))
}

.screw.top-left {
    top: 8px;
    left: 8px;
    --screw-rotate: 18deg
}

.screw.top-right {
    top: 8px;
    right: 8px;
    --screw-rotate: -35deg
}

.screw.bottom-left {
    bottom: 8px;
    left: 8px;
    --screw-rotate: 52deg
}

.screw.bottom-right {
    bottom: 8px;
    right: 8px;
    --screw-rotate: -74deg
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--gold, #c9a55c);
    color: #080808;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 99999;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: top 0.2s ease-in-out
}

.skip-link:focus {
    top: 20px
}

html {
    scrollbar-width: thin;
    scrollbar-color: #a68840 #080808
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px
}

::-webkit-scrollbar-track {
    background: #080808
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5e481c 0%, #a68840 50%, #5e481c 100%);
    border: 2px solid #080808;
    border-radius: 5px
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8a6c2d 0%, #d4af37 50%, #8a6c2d 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5)
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex="0"]:focus-visible {
    outline: 2px solid #d4af37 !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.45) !important
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), filter 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: transform, opacity, filter
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0)
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: transform, opacity
}

.is-revealed .reveal-stagger>*,
.is-revealed.reveal-stagger>* {
    opacity: 1;
    transform: translateY(0)
}

.parallax-inner {
    display: inline-block;
    will-change: transform
}

#signalCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6
}

.section-header-tech.is-revealed .section-tag-wide {
    transition-delay: 0s
}

.section-header-tech.is-revealed .section-title-massive {
    transition-delay: 0.1s
}

.section-header-tech.is-revealed .header-connector-vertical {
    transform: scaleY(1);
    opacity: 1;
    transition-delay: 0.3s
}

.section-header-tech.is-revealed .section-desc-dim {
    transition-delay: 0.6s
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom-color: rgba(255, 255, 255, 0.1)
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    height: 130px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.navbar.scrolled .nav-container {
    height: 80px
}

.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center
}

.nav-center {
    display: flex;
    justify-content: center;
    align-items: center
}

.nav-right {
    justify-content: flex-end
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo-text-stacked {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    margin-top: 2px
}

.vibes-top {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.48em;
    text-transform: uppercase;
    margin-right: -0.48em
}

.vibes-bottom {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-right: -0.08em
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.navbar.scrolled .nav-logo img {
    height: 42px
}

.nav-links {
    display: flex;
    gap: 50px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-link {
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text);
    padding: 10px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    opacity: 0.85;
    white-space: nowrap
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%)
}

.nav-link:hover {
    color: var(--gold);
    opacity: 1;
    letter-spacing: .26em
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%
}

.nav-links:hover .nav-link:not(:hover) {
    opacity: 0.35;
    filter: blur(0.5px)
}

.nav-link.active {
    color: var(--gold)
}

.nav-link--cta {
    position: relative;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 26px !important;
    background: linear-gradient(90deg, #a68238 0%, #bf9b4d 22%, #cca85b 38%, #d8b86d 48%, #caa558 55%, #b89445 78%, #9e7a32 100%) !important;
    color: #121212 !important;
    text-shadow: none !important;
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    border: 1px solid #5e4414 !important;
    border-radius: 8px !important;
    margin-left: 20px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -1px 0 rgba(0, 0, 0, 0.4) !important;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease !important;
    text-decoration: none
}

.nav-link--cta::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: none !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.01 0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E") !important;
    pointer-events: none !important;
    z-index: 1 !important;
    opacity: 0.28 !important;
    mix-blend-mode: overlay !important;
    border-radius: inherit !important
}

.nav-link--cta>* {
    position: relative;
    z-index: 2
}

.nav-link--cta:hover {
    background: linear-gradient(90deg, #b58f44 0%, #cca758 22%, #d8b365 38%, #e4c578 48%, #d5b060 55%, #c39e4e 78%, #ac873b 100%) !important;
    border-color: #7a581c !important;
    color: #080808 !important;
    transform: translateY(-1.5px) !important;
    letter-spacing: 0.08em !important;
    opacity: 1 !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55), 0 0 18px rgba(201, 165, 92, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 rgba(0, 0, 0, 0.4) !important
}

.nav-link--cta:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.65), inset 0 2px 5px rgba(0, 0, 0, 0.55) !important
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: var(--transition)
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.600);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all
}

.mobile-nav {
    text-align: center
}

.mobile-link {
    display: block;
    padding: 14px 0;
    font-size: 1.4rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color var(--transition), letter-spacing var(--transition)
}

.mobile-link:hover {
    color: var(--gold)
}

.mobile-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 32px;
    border: 1px solid var(--gold);
    border-radius: 6px;
    font-size: 1.2rem !important;
    font-family: var(--font-body) !important;
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em
}

.mobile-cta:hover {
    background: linear-gradient(to right, #b28e46 0%, #dfc47a 25%, #fff0c2 45%, #fff0c2 55%, #dfc47a 75%, #b28e46 100%) !important;
    color: #111 !important;
    border-color: #8c6a25 !important;
    text-shadow: 0 0.5px 0 rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5), inset 0 1.5px 1px rgba(255, 255, 255, 0.5), inset 0 -1.5px 1px rgba(0, 0, 0, 0.35) !important
}

.section {
    padding: 120px 0;
    position: relative
}

.section-header {
    text-align: center;
    margin-bottom: 64px
}

.section-header-tech {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px
}

.section-tag-wide {
    font-size: .75rem;
    letter-spacing: 0.6em;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px
}

.section-title-massive {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--text);
    margin: 0;
    line-height: 1.2
}

.header-connector-vertical {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin-bottom: 32px;
    opacity: 0.4
}

.section-desc-dim {
    max-width: 500px;
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-top: 24px
}

.section-hardware-divider {
    position: relative;
    height: 1px;
    background: transparent;
    width: 100%;
    z-index: 100
}

.divider-rail {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: var(--container);
    height: 40px;
    background: linear-gradient(90deg, #222222 0%, #292929 18%, #323232 35%, #3e3e3e 48%, #363636 55%, #2a2a2a 80%, #1f1f1f 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65), inset 1px 0 0 rgba(255, 255, 255, 0.08), inset -1px 0 0 rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(0, 0, 0, 0.85);
    overflow: hidden
}

.divider-rail::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.01 0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
    mix-blend-mode: overlay
}

.divider-rail .screw {
    top: 13px;
    z-index: 2
}

.divider-rail .screw.top-left {
    left: 12px
}

.divider-rail .screw.top-right {
    right: 12px
}

.divider-connector-line {
    position: absolute;
    top: -40px;
    left: 50%;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), var(--gold));
    transform: translateX(-50%)
}

.divider-label {
    position: relative;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.6;
    padding: 2px 12px;
    background: #000;
    border: 1px solid rgba(201, 165, 92, 0.2);
    border-radius: 2px
}

.footer-chassis {
    padding: 100px 20px 60px;
    background: transparent;
    display: flex;
    justify-content: center
}

.chassis-rail {
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding: 40px;
    background: linear-gradient(90deg, #222222 0%, #292929 18%, #323232 35%, #3e3e3e 48%, #363636 55%, #2a2a2a 80%, #1f1f1f 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -1px 0 rgba(0, 0, 0, 0.7);
    overflow: hidden
}

.chassis-rail::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.01 0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
    mix-blend-mode: overlay
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center
}

.footer-serial {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 0.3em;
    opacity: 0.4;
    padding: 2px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 20px
}

.legal-link {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    opacity: 0.7
}

.legal-link:hover {
    color: var(--gold);
    opacity: 1;
    text-shadow: 0 0 10px rgba(201, 165, 92, 0.5)
}

.gold-sep {
    color: var(--gold);
    opacity: 0.3
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    opacity: 0.6
}

.footer-attribution {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-top: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.attribution-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease
}

.attribution-link:hover {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(201, 165, 92, 0.5);
    opacity: 1
}

.heart-icon {
    display: inline-block;
    color: #e31b23;
    animation: heartBeat 1.2s infinite ease-in-out
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1)
    }

    25% {
        transform: scale(1.2)
    }

    40% {
        transform: scale(1.05)
    }

    55% {
        transform: scale(1.25)
    }

    70% {
        transform: scale(1)
    }
}

.mobile-break {
    display: none
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px
}

.footer-status span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    opacity: 0.5
}

.footer-status-led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333
}

.footer-status-led.lit-green {
    background: #4caf50;
    box-shadow: 0 0 8px #4caf50;
    animation: ledPulse 4s infinite ease-in-out
}

@keyframes ledPulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.6
    }
}

@media (max-width:768px) {
    .chassis-rail {
        padding: 40px 20px;
        border-radius: 0;
        border-left: none;
        border-right: none
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 12px
    }

    .gold-sep {
        display: none
    }

    .mobile-break {
        display: block
    }
}

.fixed-actions {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1), right 0.4s ease
}

.action-btn {
    width: 50px;
    height: 50px;
    background: conic-gradient(from 45deg, #9c7a3c 0deg, #c9a55c 40deg, #e8d5a3 90deg, #c9a55c 130deg, #9c7a3c 180deg, #c9a55c 220deg, #e8d5a3 270deg, #c9a55c 310deg, #9c7a3c 360deg);
    border: 1px solid #6b5018;
    border-radius: 50%;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5), inset 0 1.5px 1px rgba(255, 255, 255, 0.45), inset 0 -1.5px 1px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.action-btn svg {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    color: #111;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease
}

.action-btn:hover {
    background: conic-gradient(from 45deg, #b28e46 0deg, #dfc47a 40deg, #fff0c2 90deg, #dfc47a 130deg, #b28e46 180deg, #dfc47a 220deg, #fff0c2 270deg, #dfc47a 310deg, #b28e46 360deg);
    color: #111;
    border-color: #8c6a25;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6), inset 0 1.5px 1px rgba(255, 255, 255, 0.55), inset 0 -1.5px 1px rgba(0, 0, 0, 0.4)
}

.action-btn:hover svg {
    transform: scale(1.1)
}

.action-btn:active {
    transform: translateY(-2px) scale(0.94);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), inset 0 3px 5px rgba(0, 0, 0, 0.7)
}

.top-btn .arrow-line {
    stroke-dasharray: 10;
    stroke-dashoffset: 10;
    opacity: 1;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), stroke-dashoffset 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.top-btn:hover .arrow-line {
    stroke-dashoffset: 0;
    transform: translateY(-3px)
}

.top-btn .arrow-head {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.top-btn:hover .arrow-head {
    transform: translateY(-3px)
}

.whatsapp-btn {
    position: relative
}

.whatsapp-btn::before {
    content: 'Chat on WhatsApp';
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #0d0d0d;
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 6px 12px;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5)
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--gold);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.whatsapp-btn:hover::before,
.whatsapp-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0)
}

.instagram-btn {
    position: relative
}

.instagram-btn::before {
    content: 'Follow us on Instagram';
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #0d0d0d;
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 6px 12px;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5)
}

.instagram-btn::after {
    content: '';
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--gold);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.instagram-btn:hover::before,
.instagram-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0)
}

.top-btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px)
}

.top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

@media (max-width:768px) {
    .fixed-actions {
        bottom: 16px;
        right: 16px;
        gap: 10px
    }

    .fixed-actions.mini-player-active {
        bottom: 84px !important
    }

    .action-btn {
        width: 42px;
        height: 42px
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%)
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%)
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    filter: brightness(0.65) contrast(1.1)
}

@keyframes heroZoom {
    from {
        transform: scale(1.05)
    }

    to {
        transform: scale(1.15)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.9) 100%), radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, transparent 80%)
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: particleFloat linear infinite;
    animation: particleFloat linear infinite;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

@-webkit-keyframes particleFloat {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100vh, 0) scale(0);
        transform: translate3d(0, 100vh, 0) scale(0)
    }

    10% {
        opacity: .6
    }

    90% {
        opacity: .6
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -10vh, 0) scale(1);
        transform: translate3d(0, -10vh, 0) scale(1)
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100vh, 0) scale(0);
        transform: translate3d(0, 100vh, 0) scale(0)
    }

    10% {
        opacity: .6
    }

    90% {
        opacity: .6
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -10vh, 0) scale(1);
        transform: translate3d(0, -10vh, 0) scale(1)
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 900px
}

.hero-logo-badge {
    margin-bottom: 40px;
    display: inline-flex;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 165, 92, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05)
}

.hero-logo-badge img {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3))
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.2)
}

.hero-content h1 em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    color: #ffd700;
    background: linear-gradient(90deg, #d4af37 0%, #ffea88 50%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 0.15em 0.18em 0.05em;
    margin-bottom: -0.18em;
    display: inline-block;
    animation: goldShimmer 6s linear infinite
}

.section-header h2 em {
    font-style: italic;
    color: #ffd700;
    background: linear-gradient(90deg, #d4af37 0%, #ffea88 50%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 0.15em;
    animation: goldShimmer 6s linear infinite
}

@keyframes goldShimmer {
    0% {
        background-position: -100% center
    }

    100% {
        background-position: 100% center
    }
}

.hero-sub {
    font-family: var(--font-body);
    font-style: normal;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(240, 236, 228, 0.92);
    margin-bottom: 38px;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    max-width: 740px;
    margin-left: auto;
    margin-right: auto
}

.hero-services {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(240, 236, 228, 0.95)
}

.gold-dot {
    color: var(--gold);
    font-weight: 700;
    margin: 0 4px
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 38px;
    background: linear-gradient(90deg, #a68238 0%, #bf9b4d 22%, #cca85b 38%, #d8b86d 48%, #caa558 55%, #b89445 78%, #9e7a32 100%);
    color: #121212;
    text-shadow: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid #5e4414;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -1px 0 rgba(0, 0, 0, 0.4);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.01 0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.28;
    mix-blend-mode: overlay;
    border-radius: inherit
}

.btn-primary>* {
    position: relative;
    z-index: 2
}

.btn-primary svg {
    color: #121212;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1)
}

.btn-primary:hover {
    background: linear-gradient(90deg, #b58f44 0%, #cca758 22%, #d8b365 38%, #e4c578 48%, #d5b060 55%, #c39e4e 78%, #ac873b 100%);
    border-color: #7a581c;
    color: #080808;
    transform: translateY(-1.5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 165, 92, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 rgba(0, 0, 0, 0.4)
}

.btn-primary:hover svg {
    transform: translateX(3px)
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.65), inset 0 2px 5px rgba(0, 0, 0, 0.55)
}

.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100px
}

.scroll-indicator span {
    font-size: .6rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700
}

.scroll-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold));
    position: relative;
    overflow: hidden
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    animation: scrollAnim 2.5s cubic-bezier(.4, 0, .2, 1) infinite;
    will-change: transform, opacity
}

@keyframes scrollAnim {
    0% {
        transform: translateY(-100%);
        opacity: 0
    }

    20% {
        opacity: 1
    }

    80% {
        opacity: 1
    }

    100% {
        transform: translateY(280%);
        opacity: 0
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    perspective: 1200px;
    counter-reset: card-counter
}

.service-card {
    counter-increment: card-counter
}

.service-card {
    background: linear-gradient(165deg, #1a1a1a 0%, #0d0d0d 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.4s ease, background 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
    position: relative
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 1
}

.service-card::after {
    content: 'MODULE-XP // 0' counter(card-counter);
    position: absolute;
    bottom: 20px;
    right: 32px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    opacity: 0.4;
    pointer-events: none
}

.service-card:hover {
    border-color: var(--gold)
}

.card-glare {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 60%);
    transition: opacity 0.4s ease;
    mix-blend-mode: overlay
}

.service-card:hover .card-glare {
    opacity: 1
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%)
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    will-change: transform;
    filter: grayscale(100%) contrast(1.1)
}

.service-content {
    padding: 32px;
    position: relative;
    transform-style: preserve-3d
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    margin-top: -48px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(201, 165, 92, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

.service-card:hover .service-icon {
    border-color: var(--gold)
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text)
}

.service-content p {
    color: var(--text-dim);
    font-size: .95rem;
    line-height: 1.7
}

.service-card:hover .service-image img {
    filter: grayscale(15%) sepia(25%) contrast(1.15) brightness(1.05)
}

.section--dark {
    background: transparent;
    position: relative;
    overflow: hidden
}

.section--dark>.container {
    position: relative;
    z-index: 2
}

.audio-player {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 15%), radial-gradient(circle at 50% 0%, #181818 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 1px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(0, 0, 0, 0.8);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.audio-player::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1
}

.audio-player::after {
    content: '';
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(201, 165, 92, 0.16);
    border-radius: 11px;
    pointer-events: none;
    z-index: 2;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08)
}

.player-eq-canvas {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4
}

.player-controls {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    z-index: 10;
    position: relative;
    text-align: center
}

.player-info {
    width: 100%;
    position: relative;
    z-index: 2
}

.player-now {
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
    display: block
}

.player-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin: 0;
    color: var(--text);
    line-height: 1.2
}

.player-artist {
    font-size: 1rem;
    color: var(--text-dim);
    margin-top: 8px;
    display: block
}

.player-main-ctrl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 10px 0;
    position: relative;
    z-index: 2
}

.player-ctrl-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.8);
    background: #141414;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -3px 6px rgba(0, 0, 0, 0.8)
}

.player-ctrl-btn::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: conic-gradient(from 45deg, #9c7a3c 0deg, #c9a55c 40deg, #e8d5a3 90deg, #c9a55c 130deg, #9c7a3c 180deg, #c9a55c 220deg, #e8d5a3 270deg, #c9a55c 310deg, #9c7a3c 360deg);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease
}

.player-ctrl-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.15), inset 0 -3px 6px rgba(0, 0, 0, 0.8)
}

.player-ctrl-btn:hover::before {
    background: conic-gradient(from 45deg, #b28e46 0deg, #dfc47a 40deg, #fff0c2 90deg, #dfc47a 130deg, #b28e46 180deg, #dfc47a 220deg, #fff0c2 270deg, #dfc47a 310deg, #b28e46 360deg)
}

.player-ctrl-btn:active {
    transform: scale(0.94);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), inset 0 3px 5px rgba(0, 0, 0, 0.9)
}

.player-ctrl-btn:active::before {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8)
}

.player-ctrl-btn svg {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    color: #111;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease
}

.player-play-main {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.8);
    background: #141414;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -5px 10px rgba(0, 0, 0, 0.8)
}

.player-play-main::before {
    content: '';
    position: absolute;
    inset: 5px;
    background: conic-gradient(from 45deg, #9c7a3c 0deg, #c9a55c 40deg, #e8d5a3 90deg, #c9a55c 130deg, #9c7a3c 180deg, #c9a55c 220deg, #e8d5a3 270deg, #c9a55c 310deg, #9c7a3c 360deg);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), inset 0 1px 1.5px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1)
}

.player-play-main:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.15), inset 0 -5px 10px rgba(0, 0, 0, 0.8)
}

.player-play-main:hover::before {
    background: conic-gradient(from 45deg, #b28e46 0deg, #dfc47a 40deg, #fff0c2 90deg, #dfc47a 130deg, #b28e46 180deg, #dfc47a 220deg, #fff0c2 270deg, #dfc47a 310deg, #b28e46 360deg)
}

.player-play-main:active {
    transform: scale(0.94);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), inset 0 4px 8px rgba(0, 0, 0, 0.9)
}

.player-play-main:active::before {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.8)
}

.player-play-main svg {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    color: #111;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.3));
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1)
}

.player-progress-container {
    width: 100%;
    position: relative;
    z-index: 2;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 5px 25px;
    box-shadow: inset 0 2px 15px rgba(0, 0, 0, 0.9), 0 1px 1px rgba(255, 255, 255, 0.05);
    overflow: hidden
}

.player-progress-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    position: relative;
    z-index: 20
}

.player-time {
    font-family: var(--font-body);
    font-size: .7rem;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
    min-width: 45px;
    opacity: 0.9;
    letter-spacing: 0.1em;
    text-shadow: 0 0 8px rgba(201, 165, 92, 0.4)
}

.player-bar {
    flex: 1;
    height: 38px;
    background: rgba(14, 14, 14, 0.9);
    border: 1px solid rgba(201, 165, 92, 0.25);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s ease, box-shadow 0.3s ease
}

.player-bar:hover {
    border-color: rgba(201, 165, 92, 0.55);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 16px rgba(201, 165, 92, 0.2)
}

.player-waveform-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 1
}

.player-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(201, 165, 92, 0.2) 0%, rgba(201, 165, 92, 0.42) 100%);
    border-right: 2px solid #d4af37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
    pointer-events: none;
    z-index: 2;
    transition: width 0.08s linear
}

.player-bar-cursor {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background: #fff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
    pointer-events: none;
    opacity: 0;
    z-index: 3;
    transition: opacity 0.2s ease
}

.player-bar:hover .player-bar-cursor {
    opacity: 0.9
}

.player-upper {
    width: 100%;
    margin-bottom: 20px;
    text-align: center
}

.player-interface {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    justify-items: stretch;
    gap: 32px;
    width: 100%;
    margin-bottom: 20px
}

.player-plates-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%
}

.rack-plate {
    background: linear-gradient(90deg, #222222 0%, #292929 18%, #323232 35%, #3e3e3e 48%, #363636 55%, #2a2a2a 80%, #1f1f1f 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65), inset 1px 0 0 rgba(255, 255, 255, 0.08), inset -1px 0 0 rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(0, 0, 0, 0.85)
}

.rack-plate::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.01 0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
    mix-blend-mode: overlay
}

.rack-plate>*:not(.screw) {
    position: relative;
    z-index: 2
}

.master-plate {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    position: relative
}

.transport-plate {
    padding: 30px 40px
}

.volume-knob-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative
}

.volume-knob {
    width: 70px;
    height: 70px;
    background: #141414;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, 0.8);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.7), inset 0 1px 2px rgba(255, 255, 255, 0.1), inset 0 -4px 10px rgba(0, 0, 0, 0.8);
    transform-style: preserve-3d
}

.knob-cap {
    position: absolute;
    inset: 4px;
    background: conic-gradient(from 45deg, #9c7a3c 0deg, #c9a55c 40deg, #e8d5a3 90deg, #c9a55c 130deg, #9c7a3c 180deg, #c9a55c 220deg, #e8d5a3 270deg, #c9a55c 310deg, #9c7a3c 360deg);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.25)
}

.knob-indicator {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 14px;
    background: #111;
    border-radius: 1px;
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    z-index: 10
}

.knob-scale {
    position: absolute;
    top: 50%;
    left: 40px;
    width: 70px;
    height: 70px;
    transform: translate(0, -50%);
    pointer-events: none
}

.knob-scale::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: repeating-conic-gradient(from -135deg, var(--border-light) 0deg 1deg, transparent 1deg 15deg);
    -webkit-mask-image: radial-gradient(circle, transparent 65%, black 66%);
    mask-image: radial-gradient(circle, transparent 65%, black 66%);
    opacity: 0.3
}

.volume-knob-container .knob-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--gold) !important;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8)
}

.player-mute-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.8);
    background: #141414;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -3px 6px rgba(0, 0, 0, 0.8)
}

.player-mute-btn::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: conic-gradient(from 45deg, #9c7a3c 0deg, #c9a55c 40deg, #e8d5a3 90deg, #c9a55c 130deg, #9c7a3c 180deg, #c9a55c 220deg, #e8d5a3 270deg, #c9a55c 310deg, #9c7a3c 360deg);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease
}

.player-mute-btn:hover,
.player-mute-btn.muted {
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.15), inset 0 -3px 6px rgba(0, 0, 0, 0.8)
}

.player-mute-btn:hover::before,
.player-mute-btn.muted::before {
    background: conic-gradient(from 45deg, #b28e46 0deg, #dfc47a 40deg, #fff0c2 90deg, #dfc47a 130deg, #b28e46 180deg, #dfc47a 220deg, #fff0c2 270deg, #dfc47a 310deg, #b28e46 360deg)
}

.player-mute-btn:active {
    transform: scale(0.94);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), inset 0 3px 5px rgba(0, 0, 0, 0.9)
}

.player-mute-btn:active::before {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8)
}

.player-mute-btn svg {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    color: #111;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease
}

.player-tracklist-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 380px;
    overflow-y: auto;
    padding: 24px 15px;
    width: 100%;
    position: relative;
    border-top: 1px solid rgba(201, 165, 92, 0.1);
    mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%)
}

.player-tracklist-container::-webkit-scrollbar {
    width: 3px
}

.player-tracklist-container::-webkit-scrollbar-thumb {
    background: rgba(201, 165, 92, 0.15);
    border-radius: 10px
}

.player-tracklist {
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1;
    position: relative
}

.track-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
    background: transparent
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 165, 92, 0.4);
    transform: scale(1.01)
}

.track-item.active {
    background: rgba(201, 165, 92, 0.08);
    border-color: rgba(201, 165, 92, 0.2)
}

.track-num {
    font-size: .7rem;
    font-weight: 700;
    color: var(--text-dim);
    min-width: 24px;
    font-variant-numeric: tabular-nums;
    opacity: .5
}

.track-item.active .track-num {
    color: var(--gold);
    opacity: 1
}

.track-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.track-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left
}

.track-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text)
}

.track-artist {
    font-size: .8rem;
    color: var(--text-dim);
    opacity: .7
}

.track-item.active .track-name {
    color: var(--gold)
}

.track-dur {
    font-size: .75rem;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
    font-weight: 500
}

.tracklist-more {
    margin-top: 12px;
    width: 100%;
    padding: 14px;
    background: rgba(201, 165, 92, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--gold);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition)
}

.tracklist-more:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    transform: translateY(-2px)
}

.track-eq {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 16px
}

.track-eq span {
    width: 3px;
    background: var(--gold);
    border-radius: 1px;
    opacity: 0
}

.audio-player.playing .track-item.active .track-eq span {
    opacity: 1;
    animation: eqBounce .6s ease infinite alternate
}

.track-item.active .track-eq span:nth-child(1) {
    height: 8px;
    animation-delay: 0s
}

.track-item.active .track-eq span:nth-child(2) {
    height: 14px;
    animation-delay: .15s
}

.track-item.active .track-eq span:nth-child(3) {
    height: 6px;
    animation-delay: .3s
}

@keyframes eqBounce {
    to {
        height: 16px
    }
}

.knob-numbers {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 1
}

.knob-numbers span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--gold) !important;
    text-shadow: none !important;
    -webkit-text-fill-color: var(--gold) !important;
    -webkit-text-stroke: 0px transparent !important;
    opacity: 0.4;
    font-weight: 700;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-50px) rotate(calc(-1 * var(--angle)));
    transition: all 0.3s ease
}

.knob-numbers span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(13px);
    width: 3px;
    height: 3px;
    background: var(--gold) !important;
    border-radius: 50%;
    opacity: 0.6
}

.volume-knob-container:hover .knob-numbers span {
    opacity: 0.8
}

.hidden {
    display: none !important
}

.sticky-mini-player {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(140px);
    z-index: 999;
    width: calc(100% - 40px);
    max-width: 520px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(12, 12, 12, 0.98));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.12);
    padding: 8px 16px 8px 10px;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    opacity: 0;
    pointer-events: none
}

.sticky-mini-player.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto
}

.mini-player-inner {
    display: flex;
    align-items: center;
    gap: 14px
}

.mini-player-visual {
    flex-shrink: 0
}

.mini-vinyl {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle, #2a2a2a 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6)
}

.sticky-mini-player.playing .mini-vinyl {
    animation: rotateRecord 8s linear infinite
}

.mini-player-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    cursor: pointer
}

.mini-player-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2
}

.mini-player-artist {
    font-size: 11px;
    color: var(--color-gold, #d4af37);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    margin-bottom: 4px
}

.mini-player-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden
}

.mini-player-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-gold, #d4af37);
    border-radius: 2px;
    transition: width 0.15s linear
}

.mini-player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.mini-btn {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.85);
    background: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.65), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -2px 4px rgba(0, 0, 0, 0.75)
}

.mini-btn::before {
    content: '';
    position: absolute;
    inset: 2.5px;
    background: conic-gradient(from 45deg, #9c7a3c 0deg, #c9a55c 40deg, #e8d5a3 90deg, #c9a55c 130deg, #9c7a3c 180deg, #c9a55c 220deg, #e8d5a3 270deg, #c9a55c 310deg, #9c7a3c 360deg);
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: background 0.2s ease
}

.mini-btn svg {
    position: relative;
    z-index: 3;
    width: 14px;
    height: 14px;
    color: #111;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.25))
}

.mini-btn:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.75), inset 0 1px 1px rgba(255, 255, 255, 0.15), inset 0 -2px 4px rgba(0, 0, 0, 0.75)
}

.mini-btn:hover::before {
    background: conic-gradient(from 45deg, #b28e46 0deg, #dfc47a 40deg, #fff0c2 90deg, #dfc47a 130deg, #b28e46 180deg, #dfc47a 220deg, #fff0c2 270deg, #dfc47a 310deg, #b28e46 360deg)
}

.mini-btn:active {
    transform: scale(0.94);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), inset 0 2px 4px rgba(0, 0, 0, 0.9)
}

.mini-btn:active::before {
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.8)
}

@media (max-width:768px) {
    .sticky-mini-player {
        bottom: 14px;
        width: calc(100% - 24px);
        max-width: 480px;
        padding: 6px 12px 6px 8px;
        border-radius: 28px
    }

    .mini-vinyl {
        width: 36px;
        height: 36px
    }

    .mini-player-title {
        font-size: 12px
    }

    .mini-player-artist {
        font-size: 10px
    }
}

.section--about-creative {
    overflow: hidden
}

.about-bg-vinyl {
    position: absolute;
    top: 50%;
    right: -350px;
    width: 900px;
    height: 900px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    opacity: 1
}

.vinyl-record {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, #000 0%, #000 30%, transparent 31%), conic-gradient(from 0deg, rgba(255, 255, 255, 0.05) 0deg, rgba(0, 0, 0, 0.5) 45deg, rgba(255, 255, 255, 0.1) 90deg, rgba(0, 0, 0, 0.5) 135deg, rgba(255, 255, 255, 0.05) 180deg, rgba(0, 0, 0, 0.5) 225deg, rgba(255, 255, 255, 0.1) 270deg, rgba(0, 0, 0, 0.5) 315deg, rgba(255, 255, 255, 0.05) 360deg), radial-gradient(circle at center, #111 0%, #000 100%);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    will-change: transform
}

.vinyl-record::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 0px, rgba(0, 0, 0, 0.6) 2px, transparent 3px, rgba(255, 255, 255, 0.08) 4px, transparent 5px);
    z-index: 1;
    -webkit-mask-image: radial-gradient(circle, transparent 30%, #000 30.5%);
    mask-image: radial-gradient(circle, transparent 30%, #000 30.5%)
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28%;
    height: 28%;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #000;
    z-index: 2
}

.vinyl-label img {
    width: 60%;
    height: auto;
    filter: brightness(0);
    opacity: 0.8
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(201, 165, 92, 0.08);
    border: 1px solid var(--border);
    border-radius: 50px;
    margin-bottom: 24px;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1)
}

.about-text.is-revealed .about-badge {
    transform: translateX(0);
    opacity: 1
}

.about-badge span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold)
}

.badge-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%
}

.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 100px
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px
}

.about-lead {
    font-family: var(--font-body);
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--text);
    font-weight: 400
}

.name-signature {
    font-family: var(--font-display);
    color: var(--gold);
    font-style: italic;
    font-weight: 700;
    position: relative;
    padding-right: 4px
}

.about-text p {
    color: var(--text-dim);
    margin-bottom: 20px;
    font-size: 1rem
}

.about-stats-column {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.about-stats-hardware {
    display: flex;
    gap: 20px;
    margin-top: 0;
    padding-top: 36px;
    position: relative;
    width: 100%;
    justify-content: center
}

.about-stats-hardware::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a), repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, 0.03) 40px, rgba(255, 255, 255, 0.03) 41px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 2px
}

.about-stats-hardware::after {
    content: 'TECHNICAL-SPECIFICATION // UNIT-RACK';
    position: absolute;
    top: 12px;
    left: 0;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 0.2em;
    opacity: 0.4
}

.stat-unit {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: linear-gradient(90deg, #222222 0%, #292929 18%, #323232 35%, #3e3e3e 48%, #363636 55%, #2a2a2a 80%, #1f1f1f 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 26px 10px 20px 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65), inset 1px 0 0 rgba(255, 255, 255, 0.08), inset -1px 0 0 rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(0, 0, 0, 0.85);
    overflow: hidden
}

.stat-unit .screw.top-left {
    top: 6px;
    left: 6px
}

.stat-unit .screw.top-right {
    top: 6px;
    right: 6px
}

.stat-unit .screw.bottom-left {
    bottom: 6px;
    left: 6px
}

.stat-unit .screw.bottom-right {
    bottom: 6px;
    right: 6px
}

.stat-unit::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.01 0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
    mix-blend-mode: overlay
}

.unit-display,
.unit-nixie,
.unit-vu {
    width: calc(100% - 20px);
    height: 65px;
    background: #000;
    border: 1px solid rgba(201, 165, 92, 0.35);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 1)
}

.unit-display::after,
.unit-nixie::after,
.unit-vu::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 25%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 20;
    border-radius: 4px
}

.unit-display::before,
.unit-nixie::before,
.unit-vu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    z-index: 21
}

.unit-num {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(201, 165, 92, 0.7);
    z-index: 3
}

@keyframes statGlow {
    from {
        text-shadow: 0 0 10px rgba(201, 165, 92, 0.6), 0 0 20px rgba(201, 165, 92, 0.2)
    }

    to {
        text-shadow: 0 0 15px rgba(201, 165, 92, 0.8), 0 0 30px rgba(201, 165, 92, 0.4)
    }
}

.unit-label {
    position: relative;
    z-index: 2;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center
}

.unit-nixie {
    background: #000
}

.nixie-tube {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.nixie-num {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(201, 165, 92, 0.4);
    letter-spacing: -0.05em
}

.nixie-label {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.7
}

.nixie-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(201, 165, 92, 0.1) 0%, transparent 70%);
    filter: blur(5px);
    pointer-events: none
}

.unit-vu {
    flex-direction: column;
    justify-content: center;
    gap: 6px
}

.vu-meter-leds {
    display: flex;
    gap: 3px;
    width: 100%;
    height: 12px;
    padding: 0 10px;
    padding-top: 2px
}

.vu-segment {
    flex: 1;
    height: 100%;
    background: #111;
    border-radius: 1px;
    transition: all 0.1s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5)
}

.vu-segment:nth-child(-n+2).lit {
    background: #f44336;
    box-shadow: 0 0 8px rgba(244, 67, 54, 0.6)
}

.vu-segment:nth-child(n+3):nth-child(-n+4).lit {
    background: #ffeb3b;
    box-shadow: 0 0 8px rgba(255, 235, 59, 0.6)
}

.vu-segment:nth-child(n+5).lit {
    background: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6)
}

.venue-rack-plate {
    position: relative;
    padding: 14px 16px 14px 16px;
    background: linear-gradient(90deg, #222222 0%, #292929 18%, #323232 35%, #3e3e3e 48%, #363636 55%, #2a2a2a 80%, #1f1f1f 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7), inset 1px 0 0 rgba(255, 255, 255, 0.08), inset -1px 0 0 rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(0, 0, 0, 0.85);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease
}

.venue-rack-plate:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.8), 0 0 24px rgba(201, 165, 92, 0.15), inset 1px 0 0 rgba(255, 255, 255, 0.1), inset -1px 0 0 rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.85)
}

.venue-rack-plate::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.01 0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.25;
    mix-blend-mode: overlay
}

.venue-rack-plate .screw.top-left {
    top: 10px;
    left: 12px;
    z-index: 3
}

.venue-rack-plate .screw.top-right {
    top: 10px;
    right: 12px;
    z-index: 3
}

.venue-rack-plate .screw.bottom-left {
    bottom: 10px;
    left: 12px;
    z-index: 3
}

.venue-rack-plate .screw.bottom-right {
    bottom: 10px;
    right: 12px;
    z-index: 3
}

.venue-plate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 34px 10px 34px;
    position: relative;
    z-index: 2
}

.venue-plate-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--gold);
    text-transform: uppercase
}

.venue-plate-sub {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase
}

.venue-rack-plate .frame-inner {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 2px 6px rgba(0, 0, 0, 0.8)
}

.venue-rack-plate .frame-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.venue-rack-plate:hover .frame-inner img {
    transform: scale(1.04)
}

.image-overlay-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(201, 165, 92, 0.08), transparent);
    pointer-events: none
}

.venue-plate-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 34px 0 34px;
    position: relative;
    z-index: 2
}

.venue-plate-caption {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #f0ece4;
    text-transform: uppercase;
    text-align: center
}

@media (max-width:540px) {
    .venue-plate-header {
        flex-direction: column;
        gap: 3px;
        padding: 0 30px 8px 30px
    }

    .venue-plate-footer {
        padding: 8px 30px 0 30px
    }
}

.about-retreat-showcase {
    position: relative;
    z-index: 2;
    margin: 80px 0 110px;
    padding: 48px 44px;
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px)
}

.retreat-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.retreat-badge-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.retreat-pill {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #121212;
    background: var(--gold);
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase
}

.retreat-kicker {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.14em;
    text-transform: uppercase
}

.retreat-main-title {
    font-family: var(--font-body);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 700;
    line-height: 1.35;
    color: #f0ece4;
    margin-bottom: 18px;
    letter-spacing: -0.01em
}

.retreat-paragraph {
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 16px
}

.retreat-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08)
}

.retreat-perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 500
}

.retreat-perk-item svg {
    color: var(--gold);
    flex-shrink: 0
}

@media (max-width:992px) {
    .retreat-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .about-retreat-showcase {
        padding: 30px 24px;
        margin: 60px 0 80px
    }

    .about-stats-hardware {
        flex-wrap: wrap
    }
}

.team-section {
    margin-top: 100px;
    padding-top: 60px;
    position: relative
}

.team-title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text);
    letter-spacing: 0.05em
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px
}

.team-card {
    text-align: center;
    perspective: 1000px
}

.team-photo-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    position: relative;
    cursor: pointer;
    isolation: isolate
}

.team-photo-wrapper .screw {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 30% 30%, #444, #111);
    border-radius: 50%;
    position: absolute;
    z-index: 12;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    opacity: 0.8
}

.team-photo-wrapper .screw::before {
    content: none !important
}

.team-photo-wrapper .screw::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 1px;
    background: rgba(0, 0, 0, 0.4);
    transform: translate(-50%, -50%) rotate(45deg)
}

.team-photo-wrapper .screw.top-left {
    top: 0;
    left: 0
}

.team-photo-wrapper .screw.top-right {
    top: 0;
    right: 0
}

.team-photo-wrapper .screw.bottom-left {
    bottom: 0;
    left: 0
}

.team-photo-wrapper .screw.bottom-right {
    bottom: 0;
    right: 0
}

.photo-circle-bg {
    position: absolute;
    inset: 10px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    border-radius: 50%;
    border: 2px solid rgba(201, 165, 92, 0.3);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    z-index: 2
}

.photo-circle-front {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 2px solid rgba(201, 165, 92, 0.3);
    pointer-events: none;
    z-index: 3;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.team-card:hover .photo-circle-front {
    border-color: rgba(201, 165, 92, 0.8);
    transform: scale(1.05)
}

.photo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 165, 92, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1
}

.team-img-clipper {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 300px;
    border-radius: 0 0 100px 100px;
    overflow: hidden;
    z-index: 100;
    transform: translateZ(1px);
    pointer-events: none
}

.team-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
}

#img-yannick {
    transform: translateX(-50%) scale(1.8) !important;
    bottom: 0 !important
}

#img-tobi {
    transform: translateX(-50%) scale(1.5) !important;
    bottom: 0 !important
}

#img-thomas {
    transform: translateX(-50%) scale(1.2) !important;
    bottom: -25px !important
}

.team-card:hover #img-yannick {
    transform: translateX(-50%) translateY(-12px) scale(1.8) !important
}

.team-card:hover #img-tobi {
    transform: translateX(-50%) translateY(-12px) scale(1.5) !important
}

.team-card:hover #img-thomas {
    transform: translateX(-50%) translateY(-12px) scale(1.2) !important
}

.team-card:hover .photo-circle-bg {
    border-color: var(--gold);
    background: radial-gradient(circle at center, #222 0%, #050505 100%)
}

.team-info {
    text-align: center;
    position: relative;
    padding: 20px 15px;
    background: linear-gradient(90deg, #222222 0%, #292929 18%, #323232 35%, #3e3e3e 48%, #363636 55%, #2a2a2a 80%, #1f1f1f 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), inset 1px 0 0 rgba(255, 255, 255, 0.08), inset -1px 0 0 rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(0, 0, 0, 0.85);
    overflow: hidden;
    will-change: transform;
    transform-style: preserve-3d
}

.team-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.01 0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
    mix-blend-mode: overlay
}

.team-info .screw.top-left {
    top: 6px;
    left: 6px
}

.team-info .screw.top-right {
    top: 6px;
    right: 6px
}

.team-info .screw.bottom-left {
    bottom: 6px;
    left: 6px
}

.team-info .screw.bottom-right {
    bottom: 6px;
    right: 6px
}

.team-info h4 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2
}

.team-role {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    position: relative;
    z-index: 2
}

.photo-glass {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.04) 100%);
    z-index: 11;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease
}

.team-card:hover .photo-glass {
    opacity: 0.9;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.08) 100%)
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden
}

.testimonial-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px 20px;
    text-align: center;
    position: relative
}

.quote-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 15rem;
    line-height: 1;
    color: var(--gold);
    opacity: .18;
    pointer-events: none;
    z-index: 0
}

.testimonial-slide blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.testimonial-slide cite {
    display: block;
    font-size: .75rem;
    color: var(--gold);
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    position: relative;
    z-index: 1;
    padding-top: 16px
}

.testimonial-slide cite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: rgba(201, 165, 92, 0.3)
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0 auto 0;
    padding: 24px 40px;
    background: linear-gradient(90deg, #222222 0%, #292929 18%, #323232 35%, #3e3e3e 48%, #363636 55%, #2a2a2a 80%, #1f1f1f 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    position: relative;
    width: fit-content;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65), inset 1px 0 0 rgba(255, 255, 255, 0.08), inset -1px 0 0 rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(0, 0, 0, 0.85);
    overflow: hidden
}

.carousel-controls::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.01 0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
    mix-blend-mode: overlay
}

.carousel-controls>*:not(.screw) {
    position: relative;
    z-index: 2
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.8);
    background: #141414;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -3px 6px rgba(0, 0, 0, 0.8)
}

.carousel-btn::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: conic-gradient(from 45deg, #9c7a3c 0deg, #c9a55c 40deg, #e8d5a3 90deg, #c9a55c 130deg, #9c7a3c 180deg, #c9a55c 220deg, #e8d5a3 270deg, #c9a55c 310deg, #9c7a3c 360deg);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease
}

.carousel-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.15), inset 0 -3px 6px rgba(0, 0, 0, 0.8)
}

.carousel-btn:hover::before {
    background: conic-gradient(from 45deg, #b28e46 0deg, #dfc47a 40deg, #fff0c2 90deg, #dfc47a 130deg, #b28e46 180deg, #dfc47a 220deg, #fff0c2 270deg, #dfc47a 310deg, #b28e46 360deg)
}

.carousel-btn:active {
    transform: scale(0.94);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), inset 0 3px 5px rgba(0, 0, 0, 0.9)
}

.carousel-btn:active::before {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8)
}

.carousel-btn svg {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    color: #111;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
    overflow: visible
}

.arrow-line {
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.carousel-prev .arrow-line {
    transform: scaleX(0);
    transform-origin: left
}

.carousel-next .arrow-line {
    transform: scaleX(0);
    transform-origin: right
}

.carousel-btn:hover .arrow-line {
    opacity: 1;
    transform: scaleX(1)
}

.carousel-btn polyline {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.carousel-next:hover polyline {
    transform: translateX(2px)
}

.carousel-prev:hover polyline {
    transform: translateX(-2px)
}

.carousel-dots {
    display: flex;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.carousel-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 10px var(--gold)
}

.carousel-dot.active {
    background: var(--gold);
    width: 6px
}

.carousel-dot.active::after {
    opacity: 1
}

.section--gallery {
    background: transparent;
    position: relative;
    z-index: 2;
    padding-bottom: 120px;
    overflow: hidden
}

.polaroids-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 80px auto 40px;
    max-width: 1100px;
    padding: 20px;
    position: relative;
    min-height: 520px
}

.polaroid-card {
    background: linear-gradient(135deg, #fbfaf7 0%, #eae6dc 100%);
    padding: 16px 16px 48px 16px;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: inline-block;
    position: relative;
    width: 250px;
    cursor: pointer;
    z-index: var(--zi, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    opacity: 0;
    transform: rotate(var(--rot, 0deg)) translateY(calc(var(--ty, 0px) + 50px)) translateX(var(--tx, 0px));
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, opacity
}

.polaroid-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #141414;
    border: 1px solid rgba(0, 0, 0, 0.12);
    position: relative
}

.polaroid-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.12) contrast(1.05) brightness(0.96) saturate(0.9);
    transition: filter 0.4s ease
}

.polaroid-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.35);
    pointer-events: none
}

.polaroid-caption {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    font-style: italic;
    color: #1c1a18;
    text-align: center;
    margin-top: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform: rotate(-1deg)
}

.polaroids-container.is-revealed .polaroid-card {
    opacity: 1;
    transform: rotate(var(--rot, 0deg)) translateY(var(--ty, 0px)) translateX(var(--tx, 0px))
}

.polaroids-container.is-revealed:not(.reveal-finished) .polaroid-card:nth-child(1) {
    transition-delay: 0.1s
}

.polaroids-container.is-revealed:not(.reveal-finished) .polaroid-card:nth-child(2) {
    transition-delay: 0.25s
}

.polaroids-container.is-revealed:not(.reveal-finished) .polaroid-card:nth-child(3) {
    transition-delay: 0.4s
}

.polaroids-container.is-revealed:not(.reveal-finished) .polaroid-card:nth-child(4) {
    transition-delay: 0.55s
}

.polaroid-card:hover {
    z-index: 10 !important;
    transform: scale(1.08) rotate(var(--hover-rot, 0deg)) translateY(-25px) translateX(var(--tx, 0px)) !important;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6), 0 8px 16px rgba(0, 0, 0, 0.35), inset 0 0 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s, box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s, filter 0.4s ease 0s
}

.polaroid-card:hover .polaroid-img-wrap img {
    filter: sepia(0.02) contrast(1.02) brightness(1.02) saturate(1)
}

@media (min-width:992px) {
    .polaroids-container {
        height: 520px;
        flex-wrap: nowrap;
        gap: 0
    }

    .polaroid-card {
        position: absolute
    }

    .polaroid-card:nth-child(1) {
        left: 5%;
        --rot: -8deg;
        --ty: 25px;
        --tx: 0px;
        --zi: 2;
        --hover-rot: -2deg
    }

    .polaroid-card:nth-child(2) {
        left: 28%;
        --rot: 5deg;
        --ty: -35px;
        --tx: 0px;
        --zi: 4;
        --hover-rot: 0deg
    }

    .polaroid-card:nth-child(3) {
        left: 51%;
        --rot: -4deg;
        --ty: 15px;
        --tx: 0px;
        --zi: 3;
        --hover-rot: 2deg
    }

    .polaroid-card:nth-child(4) {
        left: 74%;
        --rot: 8deg;
        --ty: -15px;
        --tx: 0px;
        --zi: 1;
        --hover-rot: -3deg
    }
}

@media (max-width:991px) and (min-width:577px) {
    .polaroids-container {
        gap: 30px;
        min-height: auto;
        justify-content: center;
        margin-top: 40px
    }

    .polaroid-card {
        width: 220px
    }

    .polaroid-card:nth-child(1) {
        --rot: -6deg;
        --ty: 0px
    }

    .polaroid-card:nth-child(2) {
        --rot: 4deg;
        --ty: -10px
    }

    .polaroid-card:nth-child(3) {
        --rot: -3deg;
        --ty: 5px
    }

    .polaroid-card:nth-child(4) {
        --rot: 5deg;
        --ty: -5px
    }
}

@media (max-width:576px) {
    .polaroids-container {
        gap: 20px;
        padding: 10px;
        margin-top: 30px
    }

    .polaroid-card {
        width: calc(50% - 10px);
        min-width: 140px;
        padding: 10px 10px 32px 10px
    }

    .polaroid-card:nth-child(1) {
        --rot: -4deg
    }

    .polaroid-card:nth-child(2) {
        --rot: 3deg
    }

    .polaroid-card:nth-child(3) {
        --rot: -2deg
    }

    .polaroid-card:nth-child(4) {
        --rot: 4deg
    }

    .polaroid-caption {
        font-size: 1.15rem;
        margin-top: 10px
    }
}

.polaroid-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease
}

.polaroid-lightbox.active {
    opacity: 1;
    visibility: visible
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    cursor: zoom-out
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10002;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 165, 92, 0.2);
    border-radius: 50%;
    color: var(--text-dim);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px)
}

.lightbox-close:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 165, 92, 0.1);
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(201, 165, 92, 0.3)
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10002;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 165, 92, 0.2);
    border-radius: 50%;
    color: var(--text-dim);
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px)
}

.lightbox-nav:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 165, 92, 0.1);
    box-shadow: 0 0 15px rgba(201, 165, 92, 0.3)
}

.lightbox-prev {
    left: 40px
}

.lightbox-next {
    right: 40px
}

.lightbox-content {
    position: relative;
    z-index: 10001;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto
}

.polaroid-large {
    background: linear-gradient(135deg, #fbfaf7 0%, #eae6dc 100%);
    padding: 24px 24px 64px 24px;
    border-radius: 3px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 15px 30px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
    transform: scale(0.9) rotate(-1deg);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease
}

.polaroid-lightbox.active .polaroid-large {
    transform: scale(1) rotate(0deg);
    opacity: 1
}

.polaroid-large-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #141414;
    border: 1px solid rgba(0, 0, 0, 0.15);
    position: relative
}

.polaroid-large-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.08) contrast(1.03) brightness(0.98) saturate(0.95)
}

.polaroid-large-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 3px 12px rgba(0, 0, 0, 0.4);
    pointer-events: none
}

.polaroid-large-caption {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: #1c1a18;
    text-align: center;
    margin-top: 24px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform: rotate(-0.5deg)
}

@media (max-width:991px) {
    .lightbox-prev {
        left: 20px
    }

    .lightbox-next {
        right: 20px
    }

    .lightbox-nav {
        width: 45px;
        height: 45px
    }
}

@media (max-width:576px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px
    }

    .lightbox-nav {
        position: fixed;
        bottom: 30px;
        top: auto;
        transform: none;
        width: 50px;
        height: 50px;
        background: rgba(10, 10, 10, 0.6);
        border-color: rgba(201, 165, 92, 0.4)
    }

    .lightbox-prev {
        left: calc(50% - 60px)
    }

    .lightbox-next {
        right: calc(50% - 60px)
    }

    .polaroid-large {
        padding: 12px 12px 36px 12px;
        max-width: 320px
    }

    .polaroid-large-caption {
        font-size: 1.4rem;
        margin-top: 12px
    }
}

.polaroid-card::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
    width: 55px;
    height: 16px;
    background: rgba(240, 230, 210, 0.24);
    backdrop-filter: blur(2px);
    border-left: 2px dashed rgba(255, 255, 255, 0.18);
    border-right: 2px dashed rgba(255, 255, 255, 0.18);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    z-index: 10;
    pointer-events: none
}

.contact-compact-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.contact-header-strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 40px;
    background: linear-gradient(90deg, #222222 0%, #292929 18%, #323232 35%, #3e3e3e 48%, #363636 55%, #2a2a2a 80%, #1f1f1f 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65), inset 1px 0 0 rgba(255, 255, 255, 0.08), inset -1px 0 0 rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(0, 0, 0, 0.85)
}

.contact-header-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.01 0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
    mix-blend-mode: overlay
}

.contact-header-strip>*:not(.screw) {
    position: relative;
    z-index: 2
}

.contact-item-mini {
    display: flex;
    align-items: center;
    gap: 16px
}

.contact-icon-mini {
    width: 24px;
    height: 24px;
    color: var(--gold);
    opacity: 0.8
}

.contact-text-mini {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.contact-text-mini span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--gold);
    opacity: 0.7
}

.contact-text-mini address,
.contact-text-mini a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text);
    font-style: normal;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease
}

.contact-text-mini a:hover {
    color: var(--gold)
}

.external-link-icon {
    width: 12px;
    height: 12px;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease
}

.contact-text-mini a:hover .external-link-icon {
    opacity: 1;
    transform: translate(1px, -1px)
}

.contact-divider-vertical {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: linear-gradient(90deg, #222222 0%, #292929 18%, #323232 35%, #3e3e3e 48%, #363636 55%, #2a2a2a 80%, #1f1f1f 100%);
    padding: 60px 40px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65), inset 1px 0 0 rgba(255, 255, 255, 0.08), inset -1px 0 0 rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(0, 0, 0, 0.85)
}

.contact-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.01 0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.22;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1
}

.contact-form>*:not(.screw):not(::before) {
    position: relative;
    z-index: 2
}

.form-unit-id {
    position: absolute;
    top: 15px;
    right: 35px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--gold);
    opacity: 0.4;
    letter-spacing: 3px;
    pointer-events: none
}

.form-group {
    position: relative
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 24px 20px 10px;
    background: #060606;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition);
    outline: none;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.85), 0 1px 0 rgba(255, 255, 255, 0.03)
}

.form-group textarea {
    resize: vertical;
    min-height: 140px
}

.form-group::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 4px;
    z-index: 5
}

.form-group:focus-within::after {
    opacity: 0.4
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 15px rgba(201, 165, 92, 0.05)
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 18px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: 6px;
    font-size: .6rem;
    color: var(--gold);
    letter-spacing: 2px
}

.status-led {
    position: absolute;
    top: 12px;
    right: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease
}

.form-group:focus-within .status-led {
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold)
}

.form-group input:valid:not(:placeholder-shown)~.status-led,
.form-group textarea:valid:not(:placeholder-shown)~.status-led {
    background: #4caf50;
    box-shadow: 0 0 8px #4caf50
}

.send-slider-wrapper {
    width: 100%;
    margin-top: 10px;
    padding: 20px 0
}

.send-slider-track {
    width: 100%;
    height: 60px;
    background: linear-gradient(90deg, #0b0b0b 0%, #151515 25%, #1a1a1a 40%, #222222 45%, #1a1a1a 50%, #121212 75%, #070707 100%);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    cursor: pointer;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.95), 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
    display: flex;
    align-items: center
}

.send-slider-track::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.01 0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.08
}

.slider-scale {
    position: absolute;
    top: 5px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    opacity: 0.3;
    z-index: 2
}

.slider-scale span {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--text-dim)
}

.slider-label {
    position: absolute;
    width: 100%;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2
}

.slider-knob {
    width: 90px;
    height: 48px;
    background: linear-gradient(to bottom, #e5c158 0%, #b88a32 40%, #8a641e 50%, #b88a32 60%, #fce8a6 100%);
    border: 1px solid #6b5018;
    border-radius: 4px;
    position: absolute;
    left: 6px;
    z-index: 5;
    cursor: grab;
    transition: transform 0.1s linear, background 0.3s ease;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -1px 0 rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.slider-knob .knob-label {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    text-shadow: 0 0.5px 0 rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    opacity: 0.95
}

.slider-chevrons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    z-index: 2
}

.slider-chevrons::after {
    content: '» » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » »';
    font-family: var(--font-mono);
    font-size: 1.4rem;
    color: var(--gold);
    opacity: 0.08;
    white-space: nowrap;
    animation: flowChevrons 30s linear infinite;
    letter-spacing: 15px
}

@keyframes flowChevrons {
    from {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0)
    }
}

.contact-form.is-revealed .slider-knob {
    animation: knobWiggle 1.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 1.5s
}

@keyframes knobWiggle {

    0%,
    100% {
        transform: translateX(0)
    }

    30% {
        transform: translateX(60px)
    }

    50% {
        transform: translateX(0)
    }

    70% {
        transform: translateX(30px)
    }
}

.slider-knob::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0px, rgba(255, 255, 255, 0.12) 1px, transparent 1px, transparent 2px);
    background-size: 3px 100%;
    pointer-events: none;
    border-radius: 4px
}

.knob-indicator-line {
    width: 3px;
    height: 12%;
    background: #111;
    box-shadow: 0 0.5px 0 rgba(255, 255, 255, 0.3);
    border-radius: 2px
}

.send-slider-track:hover .slider-label {
    opacity: 0.8
}

.send-slider-track:active .slider-knob,
.send-slider-track:hover .slider-knob {
    cursor: grabbing;
    background: linear-gradient(to bottom, #fce8a6 0%, #e5c158 40%, #a67a21 50%, #e5c158 60%, #fff 100%)
}

.send-slider-track.sent {
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.1), transparent)
}

.send-slider-track.sent .slider-label {
    color: #4caf50;
    opacity: 1
}

.send-slider-track.slider-invalid {
    background: linear-gradient(90deg, rgba(255, 77, 77, 0.15), transparent);
    border-color: rgba(255, 77, 77, 0.3);
    box-shadow: inset 0 4px 12px rgba(255, 0, 0, 0.2)
}

.send-slider-track.slider-invalid .slider-label {
    color: #ff4d4d;
    opacity: 1
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
    border-color: #ff4d4d;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 77, 77, 0.15)
}

.form-group input.is-invalid~.status-led,
.form-group textarea.is-invalid~.status-led {
    background: #ff4d4d;
    box-shadow: 0 0 8px #ff4d4d
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #141414 inset !important;
    -webkit-text-fill-color: #f0ece4 !important;
    caret-color: #d4af37 !important;
    transition: background-color 5000s ease-in-out 0s
}

.legal-section {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 80vh;
    background: var(--bg)
}

.legal-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 50px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark))
}

.legal-card h2 {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px
}

.legal-card h2:first-of-type {
    margin-top: 0
}

.legal-card h3 {
    font-family: var(--font-body);
    color: var(--gold-light);
    font-size: 1.25rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600
}

.legal-card h4,
.legal-card h5 {
    color: var(--text);
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600
}

.legal-card p {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem
}

.legal-card ul,
.legal-card ol {
    margin-left: 25px;
    margin-bottom: 25px;
    color: var(--text-dim);
    line-height: 1.7
}

.legal-card li {
    margin-bottom: 8px;
    font-size: 1.05rem
}

.legal-card a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition)
}

.legal-card a:hover {
    color: var(--gold-light);
    text-decoration: underline
}

@media (max-width:768px) {
    .legal-section {
        padding-top: 130px;
        padding-bottom: 60px
    }

    .legal-card {
        padding: 25px;
        margin-top: 25px
    }

    .legal-card h2 {
        font-size: 1.5rem
    }

    .legal-card h3 {
        font-size: 1.15rem
    }
}

@media (max-width:1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .about-stats-hardware {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding-top: 60px
    }

    .stat-unit {
        flex: 1 1 140px;
        min-width: 140px
    }

    .audio-player {
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none
    }

    .contact-compact-container {
        padding: 0 15px;
        gap: 24px
    }

    #contact.section {
        padding: 48px 0
    }

    #contact .header-connector-vertical {
        height: 35px;
        margin-bottom: 16px
    }

    #contact .section-header-tech {
        margin-bottom: 24px
    }

    #contact .section-desc-dim {
        margin-top: 12px
    }

    .contact-header-strip {
        flex-direction: column;
        gap: 18px;
        padding: 22px 18px
    }

    .contact-divider-vertical {
        display: none
    }

    .contact-item-mini {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 6px
    }

    .contact-icon-mini {
        width: 20px;
        height: 20px
    }

    .contact-text-mini span {
        font-size: .55rem;
        letter-spacing: 1.5px
    }

    .contact-text-mini a,
    .contact-text-mini address {
        font-size: .82rem
    }

    .contact-form {
        padding: 32px 18px 24px
    }

    .form-unit-id {
        display: none
    }

    .form-group textarea {
        min-height: 110px
    }

    .slider-scale {
        display: none
    }

    .slider-label {
        font-size: 0.55rem;
        letter-spacing: 1px;
        width: calc(100% - 100px);
        right: 10px;
        text-align: center
    }

    .knob-label {
        font-size: 0.8rem
    }

    .form-group label {
        font-size: 0.7rem
    }

    .form-group input:focus~label,
    .form-group input:not(:placeholder-shown)~label,
    .form-group textarea:focus~label,
    .form-group textarea:not(:placeholder-shown)~label {
        font-size: 0.55rem
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .scroll-cable-container {
        display: none
    }

    .section-title-massive {
        font-size: 2.5rem
    }
}

@media (max-width:1300px) {
    :root {
        --nav-h: 90px;
        --nav-h-scrolled: 70px
    }

    .nav-container {
        height: var(--nav-h);
        padding: 0 20px
    }

    .navbar.scrolled .nav-container {
        height: var(--nav-h-scrolled)
    }

    .nav-logo img {
        height: 48px
    }

    .navbar.scrolled .nav-logo img {
        height: 38px
    }

    .nav-links,
    .nav-center,
    .nav-right .nav-link--cta {
        display: none !important
    }

    .hamburger {
        display: block !important;
        width: 30px;
        height: 24px;
        position: relative;
        cursor: pointer;
        z-index: 1101
    }

    .hamburger span {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #ffffff;
        border-radius: 4px;
        transition: all 0.3s ease
    }

    .hamburger span:nth-child(1) {
        top: 0
    }

    .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%)
    }

    .hamburger span:nth-child(3) {
        bottom: 0
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg)
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg)
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(30, 30, 30, 0.4) 0%, rgba(10, 10, 10, 0.7) 100%);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        z-index: 1050;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.6s ease, visibility 0.6s ease;
        overflow-y: auto
    }

    .mobile-overlay.open {
        opacity: 1;
        visibility: visible
    }

    .mobile-nav li {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        margin: 20px 0
    }

    .mobile-overlay.open .mobile-nav li {
        opacity: 1;
        transform: translateY(0)
    }

    .mobile-overlay.open .mobile-nav li:nth-child(1) {
        transition-delay: 0.3s
    }

    .mobile-overlay.open .mobile-nav li:nth-child(2) {
        transition-delay: 0.38s
    }

    .mobile-overlay.open .mobile-nav li:nth-child(3) {
        transition-delay: 0.46s
    }

    .mobile-overlay.open .mobile-nav li:nth-child(4) {
        transition-delay: 0.54s
    }

    .mobile-overlay.open .mobile-nav li:nth-child(5) {
        transition-delay: 0.62s
    }

    .mobile-overlay.open .mobile-nav li:nth-child(6) {
        transition-delay: 0.7s
    }

    .mobile-overlay.open .mobile-nav li:nth-child(7) {
        transition-delay: 0.78s
    }

    .mobile-nav {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center
    }

    .mobile-link {
        display: block;
        font-family: var(--font-body);
        font-size: 1.35rem;
        font-weight: 600;
        color: var(--text);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        transition: color 0.3s ease, letter-spacing 0.3s ease
    }

    @media (max-width:400px) {
        .mobile-link {
            font-size: 1.15rem;
            letter-spacing: 0.14em
        }

        .mobile-nav li {
            margin: 14px 0
        }
    }

    .mobile-link--cta {
        font-family: var(--font-body) !important;
        color: var(--gold) !important;
        border: 1px solid var(--gold) !important;
        border-radius: 6px !important;
        padding: 12px 36px !important;
        display: inline-block !important;
        margin-top: 22px;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.14em !important;
        text-transform: uppercase !important
    }

    .section {
        padding: 80px 0
    }

    .player-controls {
        padding: 40px 20px;
        gap: 24px
    }

    .player-title {
        font-size: 1.5rem
    }

    .player-artist {
        font-size: .9rem
    }

    .player-main-ctrl {
        gap: 24px
    }

    .player-play-main {
        width: 72px;
        height: 72px
    }

    .player-play-main svg {
        width: 28px;
        height: 28px
    }

    .player-ctrl-btn {
        width: 44px;
        height: 44px
    }

    .player-eq-bg {
        top: 110px;
        height: 140px;
        padding: 0 20px
    }

    .eq-bar {
        width: 5px
    }

    .player-master-section,
    .player-mute-btn {
        display: none
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero-sub br {
        display: none
    }

    #testimonials.section {
        padding: 48px 0
    }

    #testimonials .header-connector-vertical {
        height: 35px;
        margin-bottom: 16px
    }

    #testimonials .section-header-tech {
        margin-bottom: 24px
    }

    #testimonials .section-desc-dim {
        margin-top: 12px
    }

    .testimonial-slide {
        padding: 6px 15px
    }

    .quote-icon {
        font-size: 14rem;
        opacity: .08
    }

    .testimonial-slide blockquote {
        font-size: 1.35rem;
        line-height: 1.55
    }

    .testimonial-slide cite {
        padding-top: 12px;
        margin-top: 8px
    }

    .carousel-controls {
        padding: 16px 32px;
        gap: 22px;
        margin-top: 16px
    }

    .carousel-btn {
        width: 46px;
        height: 46px
    }
}

@media (max-width:480px) {
    #testimonials.section {
        padding: 40px 0
    }

    .testimonial-slide blockquote {
        font-size: 1.25rem;
        line-height: 1.52
    }

    .carousel-controls {
        padding: 14px 24px;
        gap: 18px
    }
}

@media (max-width:1024px) {
    .hero-services {
        display: block;
        margin-top: 12px
    }

    .hero-services-group {
        display: block;
        line-height: 1.6
    }

    .service-sep {
        display: none
    }
}