/* Turczer Things — premium / modern + strange hangulat (finoman)
   GitHub Pages kompatibilis (statikus) */

:root {
    --bg: #0b0b0f;
    --bg2: #0f1017;
    --card: #121320cc;
    --text: #f2f4ff;
    --muted: #b7bdd6;
    --line: #24263a;
    --accent: #d11d32;
    /* finom vörös akcent (nem túl Netflix-es) */
    --glow: rgba(209, 29, 50, .45);
    --fog-strong: rgba(209, 29, 50, .18);
    --fog-soft: rgba(255, 255, 255, .07);
    --fog-opacity: .35;
    --line-glow: rgba(209, 29, 50, .55);
    --logo-deep: rgba(123, 22, 14, .22);
    --logo-stroke: rgba(219, 63, 53, .92);
    --logo-stroke2: rgba(255, 130, 130, .26);
    --logo-glow1: rgba(219, 63, 53, .55);
    --logo-glow2: rgba(219, 63, 53, .30);
    --logo-glow3: rgba(219, 63, 53, .16);
    --shadow: 0 20px 60px rgba(0, 0, 0, .45);
    --radius: 18px;
    --radius2: 26px;
    --max: 1120px;
    --font: "Sora", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --serif: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
    --sora-adjust: 0.52;
    --serif-adjust: 0.44;
    --scan-opacity: .07;
    --noise-opacity: .075;
    --grain: 0.18;
    --lift: translateY(10px);
    --hero-h: min(88vh, 860px);
}


/* Upside Down mód (kicsit sötétebb + vörösebb) */

html[data-mode="upside"] {
    --bg: #07070c;
    --bg2: #0b0b12;
    --accent: #ff2a3a;
    --glow: rgba(255, 42, 58, .55);
    --fog-strong: rgba(255, 42, 58, .24);
    --fog-soft: rgba(255, 255, 255, .05);
    --fog-opacity: .5;
    --line-glow: rgba(255, 42, 58, .65);
    --logo-deep: rgba(143, 28, 20, .22);
    --logo-stroke: rgba(255, 74, 64, .92);
    --logo-stroke2: rgba(255, 160, 160, .28);
    --logo-glow1: rgba(255, 74, 64, .60);
    --logo-glow2: rgba(255, 74, 64, .32);
    --logo-glow3: rgba(255, 74, 64, .18);
    --scan-opacity: .12;
    --noise-opacity: .10;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: var(--font);
    font-size-adjust: var(--sora-adjust);
    color: var(--text);
    background: radial-gradient(1200px 700px at 80% -10%, rgba(209, 29, 50, .12), transparent 60%), radial-gradient(900px 500px at 10% 10%, rgba(255, 255, 255, .05), transparent 55%), linear-gradient(180deg, var(--bg), var(--bg2));
    overflow-x: hidden;
}

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

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

.wrap {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto
}

#noise {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: var(--noise-opacity);
    mix-blend-mode: overlay;
    z-index: 999;
}


/* Header */

.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 50;
    padding: 14px 0;
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(10, 10, 14, .72), rgba(10, 10, 14, .25));
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

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

.logo {
    --logo-pad-y: clamp(18px, 3.2vw, 38px);
    --logo-pad-x: clamp(18px, 4vw, 42px);
    --logo-gap: clamp(6px, 1.2vw, 12px);
    --logo-row-gap: clamp(12px, 2.4vw, 20px);
    --logo-dash-width: clamp(70px, 14vw, 160px);
    --logo-dash-height: 12px;
    --logo-font-size: clamp(62px, 9vw, 132px);
    --logo-stroke-width: 2.2px;
    --logo-stroke2-width: 1.15px;
    --logo-bars-top: 10px;
    --logo-bars-height: 12px;
    position: relative;
    padding: var(--logo-pad-y) var(--logo-pad-x);
    display: grid;
    gap: var(--logo-gap);
    filter: drop-shadow(0 0 26px var(--logo-glow3));
}

.logo::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: var(--logo-bars-top);
    height: var(--logo-bars-height);
    background: linear-gradient(90deg, transparent 0%, rgba(219, 63, 53, .92) 12%, rgba(195, 52, 43, .62) 50%, rgba(219, 63, 53, .92) 88%, transparent 100%) 0 1px / 100% 2px no-repeat, linear-gradient(90deg, transparent 0%, rgba(219, 63, 53, .84) 12%, rgba(195, 52, 43, .56) 50%, rgba(219, 63, 53, .84) 88%, transparent 100%) 0 8px / 100% 2px no-repeat, linear-gradient(90deg, transparent 0%, rgba(219, 63, 53, .18) 10%, rgba(219, 63, 53, .30) 50%, rgba(219, 63, 53, .18) 90%, transparent 100%) 0 0 / 100% 100% no-repeat;
    filter: blur(.22px);
    box-shadow: 0 0 10px var(--logo-glow2), 0 0 28px var(--logo-glow3);
    opacity: .98;
}

.logo .row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: .86;
    gap: var(--logo-row-gap);
}

.logo .dash {
    position: relative;
    width: var(--logo-dash-width);
    height: var(--logo-dash-height);
    background: linear-gradient(90deg, transparent 0%, rgba(219, 63, 53, .92) 18%, rgba(195, 52, 43, .60) 50%, rgba(219, 63, 53, .92) 82%, transparent 100%) 0 1px / 100% 2px no-repeat, linear-gradient(90deg, transparent 0%, rgba(219, 63, 53, .82) 18%, rgba(195, 52, 43, .54) 50%, rgba(219, 63, 53, .82) 82%, transparent 100%) 0 8px / 100% 2px no-repeat, linear-gradient(90deg, transparent 0%, rgba(219, 63, 53, .16) 16%, rgba(219, 63, 53, .28) 50%, rgba(219, 63, 53, .16) 84%, transparent 100%) 0 0 / 100% 100% no-repeat;
    filter: blur(.22px);
    box-shadow: 0 0 10px var(--logo-glow2), 0 0 26px var(--logo-glow3);
    opacity: .98;
}

.logo .text {
    font-family: var(--serif);
    font-weight: 600;
    font-size-adjust: var(--serif-adjust);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: var(--logo-font-size);
    color: var(--logo-deep);
    -webkit-text-stroke: var(--logo-stroke-width) var(--logo-stroke);
    text-shadow: 0 0 7px rgba(219, 63, 53, .30), 0 0 16px rgba(219, 63, 53, .24), 0 0 34px rgba(219, 63, 53, .18), 0 0 62px rgba(219, 63, 53, .12);
    position: relative;
    filter: drop-shadow(0 0 18px rgba(219, 63, 53, .10));
}

.logo .text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: transparent;
    -webkit-text-stroke: var(--logo-stroke2-width) var(--logo-stroke2);
    text-shadow: 0 0 10px rgba(219, 63, 53, .16), 0 0 22px rgba(219, 63, 53, .10);
    pointer-events: none;
    filter: blur(.12px);
}

.logo.flicker .text {
    opacity: .94;
    text-shadow: 0 0 6px rgba(219, 63, 53, .24), 0 0 14px rgba(219, 63, 53, .18), 0 0 26px rgba(219, 63, 53, .12);
}

.logo.flicker .dash,
.logo.flicker::before {
    opacity: .82;
    filter: blur(.28px);
}

.logo--hero {
    --logo-pad-y: clamp(6px, 1.8vw, 16px);
    --logo-pad-x: clamp(4px, 1.6vw, 12px);
    --logo-font-size: clamp(56px, 7.2vw, 120px);
    --logo-dash-width: clamp(60px, 12vw, 140px);
}

.logo--nav {
    --logo-pad-y: 2px;
    --logo-pad-x: 2px;
    --logo-gap: 4px;
    --logo-row-gap: 6px;
    --logo-dash-width: 42px;
    --logo-dash-height: 8px;
    --logo-font-size: 20px;
    --logo-stroke-width: 1.2px;
    --logo-stroke2-width: .6px;
    --logo-bars-top: -2px;
    --logo-bars-height: 8px;
    filter: drop-shadow(0 0 18px var(--logo-glow2));
}

@media (max-width: 520px) {
    .logo--hero {
        --logo-font-size: clamp(46px, 12vw, 88px);
        --logo-dash-width: 22vw;
    }
    .logo .text {
        letter-spacing: .04em;
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    color: var(--muted)
}

.nav a {
    padding: 10px 8px;
    border-radius: 10px
}

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

.mode {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    color: var(--muted);
    padding: 10px 12px;
    border-radius: 999px;
    cursor: pointer;
}

.mode:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, .18)
}

.mode__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 18px var(--glow);
}

.mode__text {
    font-size: 12px;
    letter-spacing: .24em;
    text-transform: uppercase
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.btn:active {
    transform: scale(.98)
}

.btn--primary {
    background: linear-gradient(180deg, rgba(209, 29, 50, .95), rgba(145, 16, 28, .92));
    border-color: rgba(255, 255, 255, .18);
    box-shadow: 0 18px 55px rgba(209, 29, 50, .20);
    color: #fff;
}

.btn--primary:hover {
    transform: translateY(-1px)
}

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

.btn--secondary:hover {
    background: rgba(255, 255, 255, .10)
}

.btn--ghost {
    background: transparent;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .06)
}

.btn--link {
    border: none;
    padding: 0;
    border-radius: 0;
    color: var(--muted);
}

.btn--link:hover {
    color: var(--text);
    text-shadow: 0 0 20px rgba(255, 255, 255, .12)
}


/* Hero */

.hero {
    position: relative;
    height: var(--hero-h);
    min-height: 720px;
    display: grid;
    place-items: center;
    padding-top: 78px;
    /* header */
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.08) saturate(.9) brightness(.78);
    transform: scale(1.03);
}

html[data-mode="upside"] .hero__video {
    filter: contrast(1.12) saturate(.84) brightness(.72);
}

.hero__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 380px at 50% 20%, rgba(255, 255, 255, .05), transparent 60%), radial-gradient(700px 420px at 30% 50%, rgba(209, 29, 50, .10), transparent 62%), linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .68));
}

.hero__fog {
    position: absolute;
    inset: 0;
    background: radial-gradient(820px 320px at 18% 30%, var(--fog-strong), transparent 68%), radial-gradient(720px 280px at 78% 60%, var(--fog-soft), transparent 70%), radial-gradient(420px 220px at 60% 8%, rgba(255, 255, 255, .06), transparent 72%);
    opacity: var(--fog-opacity);
    filter: blur(6px);
    mix-blend-mode: screen;
}

.hero__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

.line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 22px var(--line-glow);
    opacity: .55;
    transform-origin: left;
}

.line--one {
    top: 26%;
    left: 10%;
    width: 38%
}

.line--two {
    top: 66%;
    right: 8%;
    width: 46%
}

.line--three {
    display: none
}

.hero__scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient( 0deg, rgba(255, 255, 255, var(--scan-opacity)) 0px, rgba(255, 255, 255, var(--scan-opacity)) 1px, transparent 3px, transparent 6px);
    mix-blend-mode: overlay;
    opacity: .55;
}

.hero__content {
    position: relative;
    width: min(820px, calc(100% - 48px));
    text-align: left;
    z-index: 2;
}

.kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.kicker__line {
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    box-shadow: 0 0 20px var(--glow);
}

.title {
    margin: 16px 0 12px;
    font-family: var(--serif);
    line-height: .86;
    letter-spacing: .02em;
    font-weight: 600;
    font-size: clamp(56px, 7vw, 104px);
    text-shadow: 0 0 22px rgba(255, 255, 255, .10), 0 0 46px var(--glow);
}

.title__top {
    position: relative;
    display: block;
    transform-origin: left;
}

.title__bottom {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .42);
    text-shadow: 0 0 52px var(--glow);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
}

.glitch::before {
    color: rgba(255, 42, 58, .35);
    text-shadow: 0 0 24px var(--glow);
    mix-blend-mode: screen;
    animation: glitchShift 7s infinite;
}

.glitch::after {
    color: rgba(255, 255, 255, .18);
    mix-blend-mode: screen;
    animation: glitchShift 9s infinite;
}

@keyframes glitchShift {
    0%,
    96%,
    100% {
        transform: translate(0);
        opacity: .1
    }
    97% {
        transform: translate(-2px, -1px);
        opacity: .4
    }
    98% {
        transform: translate(2px, 1px);
        opacity: .3
    }
    99% {
        transform: translate(-1px, 2px);
        opacity: .2
    }
}

.lead {
    max-width: 56ch;
    color: rgba(242, 244, 255, .92);
    font-size: 16px;
    line-height: 1.7;
}

.lead strong {
    color: #fff
}

.hero__logo {
    margin: 10px 0 14px;
    min-height: clamp(150px, 24vw, 280px);
}

.hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero__stats {
    display: flex;
    gap: 18px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.stat {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(12, 13, 19, .55);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
    min-width: 170px;
}

.stat__num {
    font-family: var(--serif);
    font-size: 20px;
    font-size-adjust: var(--serif-adjust);
    letter-spacing: .02em;
}

.stat__label {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero__ground {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 34%;
    pointer-events: none;
    z-index: 1;
    perspective: 900px;
}

.ground {
    position: absolute;
    inset: auto 0 0 0;
    height: 70%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .65) 35%, rgba(0, 0, 0, .82));
    z-index: 0;
}

.skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14%;
    height: 56%;
    filter: drop-shadow(0 0 34px rgba(0, 0, 0, .65));
    opacity: .9;
    z-index: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: rotateX(4deg);
    overflow: visible;
}

.skyline::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .02)) 0 0 / 100% 1px no-repeat, radial-gradient(18px 18px at 12% 64%, rgba(209, 29, 50, .22), transparent 70%), radial-gradient(22px 22px at 78% 38%, rgba(209, 29, 50, .15), transparent 70%), radial-gradient(14px 14px at 52% 54%, rgba(255, 255, 255, .10), transparent 70%);
    opacity: .85;
    pointer-events: none;
}

.skyline::after {
    content: "";
    position: absolute;
    left: -6%;
    right: -6%;
    bottom: -2%;
    height: 70%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .72) 45%, rgba(0, 0, 0, 0) 100%);
    filter: blur(14px);
    opacity: .9;
    pointer-events: none;
}

.building {
    position: absolute;
    bottom: 0;
    left: var(--x);
    width: var(--w);
    height: var(--h);
    z-index: 1;
    --lit: .1;
    --d: 8px;
    --grid-y: 8px;
    --grid-x: 10px;
    --roof: 6px;
    --skew: -12deg;
    --top-skew: -20deg;
    background: linear-gradient(0deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .48) 30%, rgba(0, 0, 0, 0) 55%), linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(0, 0, 0, 0) 45%), repeating-linear-gradient(0deg, rgba(255, 255, 255, var(--lit)) 0 1px, transparent 1px var(--grid-y)), repeating-linear-gradient(90deg, rgba(255, 255, 255, var(--lit)) 0 1px, transparent 1px var(--grid-x)), linear-gradient(180deg, #18223a 0%, #24314a 55%, #2c3954 100%);
    border: 1px solid rgba(255, 255, 255, .09);
    border-bottom: none;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .45), 0 0 24px rgba(255, 255, 255, .03);
    transform-origin: bottom center;
    transform-style: preserve-3d;
}

.building::before {
    content: "";
    position: absolute;
    top: 0;
    right: calc(var(--d) * -1);
    width: var(--d);
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .42) 30%, rgba(0, 0, 0, 0) 55%), linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, 0) 45%), linear-gradient(180deg, #121b2d, #1a2436);
    transform-origin: left bottom;
    transform: skewY(var(--skew));
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.building::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(var(--roof) * -1);
    width: 100%;
    height: var(--roof);
    background: linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
    transform-origin: left bottom;
    transform: skewX(var(--top-skew));
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.scroll {
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 34px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(0, 0, 0, .25);
    display: grid;
    place-items: center;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.scroll__dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 18px var(--glow);
    animation: scroll 1.6s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(-8px);
        opacity: .2
    }
    40% {
        opacity: 1
    }
    100% {
        transform: translateY(10px);
        opacity: .2
    }
}


/* Sections */

.section {
    padding: 92px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.section--contact {
    background: radial-gradient(900px 420px at 80% 20%, rgba(209, 29, 50, .10), transparent 60%);
}

.section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px
}

.grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr;
    gap: 26px;
}

.about__intro {
    margin-bottom: 28px;
}

@media (max-width: 900px) {
    .nav {
        display: none
    }
    .grid {
        grid-template-columns: 1fr
    }
    .hero {
        min-height: 760px
    }
}

.h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size-adjust: var(--serif-adjust);
    letter-spacing: .01em;
    margin: 0 0 10px;
    font-size: 42px;
}

.h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size-adjust: var(--serif-adjust);
    margin: 0 0 10px;
    font-size: 22px;
}

.p {
    margin: 0 0 14px;
    line-height: 1.8;
    color: rgba(242, 244, 255, .92);
}

.p.small {
    font-size: 13px;
    line-height: 1.7
}

.subtle {
    color: var(--muted)
}

.card {
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(180deg, rgba(18, 19, 32, .72), rgba(8, 9, 14, .62));
    box-shadow: var(--shadow);
    padding: 22px;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .12), transparent);
    margin: 18px 0;
}

.list {
    margin: 0;
    padding: 0 0 0 18px;
    color: var(--muted);
    line-height: 1.9;
}

.list li {
    margin: 6px 0
}

.press {
    margin-top: 16px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .35);
}

.press img {
    width: 100%;
    height: auto;
    display: block;
}

.press__caption {
    margin: 10px 12px 12px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 18px
}

.chip {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--muted);
}

.chip:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, .18)
}

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

.cards--about {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cards--about .card {
    height: 100%;
}

@media (max-width: 980px) {
    .cards {
        grid-template-columns: 1fr
    }
}

.listing {
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, .10);
    overflow: hidden;
    background: rgba(12, 13, 19, .55);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .25);
    transform: translateY(0);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.listing:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .18);
    background: rgba(12, 13, 19, .72);
}

.listing__media {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
}

.listing__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(.92) brightness(.86);
}

.tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .35);
    color: rgba(242, 244, 255, .92);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.listing__body {
    padding: 16px
}

.meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 10px 0 14px;
}

.meta span {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
}

.video {
    border-radius: var(--radius2);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(12, 13, 19, .55);
    box-shadow: var(--shadow);
    padding: 14px
}

.video__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden
}

.video__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.video__frame--lite {
    display: grid;
    place-items: center;
    cursor: pointer;
    background: radial-gradient(420px 220px at 60% 40%, rgba(209, 29, 50, .25), transparent 65%), linear-gradient(135deg, rgba(12, 13, 19, .85), rgba(8, 9, 14, .9));
    border: 1px solid rgba(255, 255, 255, .08);
}

.video__frame--lite::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 4px);
    opacity: .35;
    pointer-events: none;
}

.video__play {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .35);
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35), 0 0 24px rgba(209, 29, 50, .18);
}

.quote {
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    padding: 18px;
    margin: 18px 0;
}

.quote p {
    margin: 0;
    font-family: var(--serif);
    font-size-adjust: var(--serif-adjust);
    font-size: 22px;
    line-height: 1.25;
    text-shadow: 0 0 20px rgba(255, 255, 255, .06);
}

.quote span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .10em;
    text-transform: uppercase
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 18px;
}

@media (max-width: 980px) {
    .steps {
        grid-template-columns: 1fr
    }
}

.step {
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(12, 13, 19, .55);
    padding: 16px;
}

.step__num {
    color: var(--accent);
    letter-spacing: .22em;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.step__title {
    font-family: var(--serif);
    font-size: 20px;
    margin-bottom: 8px;
}

.step__text {
    color: var(--muted);
    line-height: 1.7;
    font-size: 13px;
}

.form {
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(12, 13, 19, .55);
    box-shadow: var(--shadow);
    padding: 18px;
}

.field {
    display: block;
    margin-bottom: 12px
}

.field span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .10em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

input,
textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    padding: 12px 14px;
    color: var(--text);
    font-family: var(--font);
    outline: none;
}

input:focus,
textarea:focus {
    border-color: rgba(255, 255, 255, .18);
    box-shadow: 0 0 0 4px rgba(209, 29, 50, .12);
}

.contact__meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 14px 0
}

.contact__link {
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding-bottom: 2px;
}

.contact__link:hover {
    color: var(--text);
    border-bottom-color: rgba(255, 255, 255, .22)
}

.footer {
    padding: 26px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer__inner {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 13px;
}

.footer__sep {
    opacity: .6
}

@media (prefers-reduced-motion: reduce) {
    .scroll__dot {
        animation: none
    }
    .glitch::before,
    .glitch::after {
        animation: none
    }
    .hero__video {
        transform: none
    }
}
