:root {
    --ink: #0A0A0B;
    --ink-2: #151518;
    --paper: #FFFFFF;
    --neon: #FF35BC;
    --neon-soft: #FF93E4;
    --deep: #7A1456;
    --blush: #FFF3FB;
    --ash: #63636A;
    --hair: rgba(255, 255, 255, .17);
    --hair-dark: rgba(10, 10, 11, .14);
    --display: "Bodoni Moda", serif;
    --body: "Archivo", system-ui, sans-serif;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--body);
    font-weight: 300;
    -webkit-font-smoothing: antialiased
}

body.locked {
    overflow: hidden
}

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

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

:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 3px
}

.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px
}

@media(max-width:600px) {
    .wrap {
        padding: 0 20px
    }
}

.band {
    padding: clamp(70px, 9vw, 130px) 0
}

.band-light {
    background: var(--paper);
    color: var(--ink)
}

.band-blush {
    background: var(--blush);
    color: var(--ink)
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .34em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--neon);
    margin: 0 0 20px
}

h2.section-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    margin: 0 0 18px;
    letter-spacing: -.01em
}

.section-intro {
    max-width: 46ch;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ash);
    margin: 0
}

.band:not(.band-light):not(.band-blush) .section-intro {
    color: rgba(255, 255, 255, .85)
}

.head-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 60px
}

@media(max-width:860px) {
    .head-split {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 42px
    }
}

.btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 17px 34px;
    border-radius: 2px;
    transition: .28s ease
}

.btn-neon {
    background: var(--neon);
    color: #fff
}

.btn-neon:hover {
    box-shadow: 0 0 28px rgba(255, 53, 188, .55);
    transform: translateY(-1px)
}

.btn-ghost {
    border: 1px solid var(--hair);
    color: var(--paper)
}

.btn-ghost:hover {
    border-color: var(--neon);
    color: var(--neon)
}

.band-light .btn-ghost,
.band-blush .btn-ghost {
    border-color: var(--hair-dark);
    color: var(--ink)
}

.band-light .btn-ghost:hover,
.band-blush .btn-ghost:hover {
    border-color: var(--neon);
    color: var(--neon)
}

.textlink {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--neon);
    border-bottom: 1px solid rgba(255, 53, 188, .4);
    padding-bottom: 4px;
    transition: .25s
}

.textlink:hover {
    border-color: var(--neon)
}

.neon-type {
    color: #fff;
    text-shadow: 0 0 2px #fff, 0 0 10px var(--neon), 0 0 26px rgba(255, 53, 188, .4)
}

.grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .4;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E")
}

.bloom {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: 1100px;
    height: 1100px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 53, 188, .2) 0%, rgba(255, 53, 188, .07) 32%, transparent 62%)
}

/* ---------- header + hamburger ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 70;
    background: rgba(10, 10, 11, .76);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hair)
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
    gap: 16px
}

.nav-logo img {
    height: 34px;
    width: auto
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px
}

.nav-book {
    font-size: 11px;
    letter-spacing: .19em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--neon);
    color: var(--neon);
    padding: 11px 20px;
    border-radius: 2px;
    transition: .25s
}

.nav-book:hover {
    background: var(--neon);
    color: #fff;
    box-shadow: 0 0 22px rgba(255, 53, 188, .5)
}

@media(max-width:520px) {
    .nav-book {
        display: none
    }
}

.burger {
    width: 44px;
    height: 44px;
    border: 1px solid var(--hair);
    background: none;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: .25s
}

.burger:hover {
    border-color: var(--neon)
}

.burger i {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--paper);
    transition: .3s ease
}

.burger.open i:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
    background: var(--neon)
}

.burger.open i:nth-child(2) {
    opacity: 0
}

.burger.open i:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
    background: var(--neon)
}

.menu {
    position: fixed;
    inset: 0;
    z-index: 65;
    background: var(--ink);
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s
}

.menu.open {
    opacity: 1;
    visibility: visible
}

.menu-in {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 110px 28px 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center
}

@media(max-width:860px) {
    .menu-in {
        grid-template-columns: 1fr;
        gap: 34px;
        align-items: start;
        overflow-y: auto;
        max-height: 100vh
    }
}

.menu-links a {
    display: block;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(29px, 5.4vw, 60px);
    line-height: 1.18;
    letter-spacing: -.01em;
    color: rgba(255, 255, 255, .92);
    transition: .3s ease;
    position: relative
}

.menu-links a:hover,
.menu-links a.current {
    color: var(--neon);
    padding-left: 22px
}

.menu-links a.current::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 1px;
    background: var(--neon);
    box-shadow: 0 0 10px var(--neon)
}

.menu-side h4 {
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--neon);
    margin: 0 0 14px
}

.menu-side p,
.menu-side a.line {
    display: block;
    font-size: 14px;
    line-height: 1.95;
    color: rgba(255, 255, 255, .82);
    margin: 0
}

.menu-side a.line:hover {
    color: var(--neon)
}

.menu-side .blk {
    margin-bottom: 30px
}

/* ---------- views ---------- */
[data-view] {
    display: none
}

[data-view].active {
    display: block
}

.legal-hero .phero-in {
    max-width: 920px
}

.legal-card {
    max-width: 920px;
    margin: 0 auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none
}

.legal-copy {
    display: grid;
    gap: 24px
}

.legal-copy h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -.01em
}

.legal-copy p {
    margin: 0;
    max-width: 70ch;
    font-family: var(--body);
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, .85);
    line-height: 1.65
}

.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
    padding: 18px 18px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
    cursor: pointer
}

.terms-check input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--neon)
}

.terms-check span,
.terms-status {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .82)
}

.terms-status {
    margin: 14px 0 0
}

@media (max-width: 640px) {
    .terms-check {
        padding: 14px 14px 12px
    }
}

/* ---------- hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    min-height: min(86vh, 740px);
    display: flex;
    align-items: center;
    text-align: center
}

.hero-in {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 96px 0 86px
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: .42em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, .78);
    margin: 0 0 34px;
    animation: heroUp .9s cubic-bezier(.22, 1, .36, 1) .1s both
}

.hero-logo {
    width: min(560px, 80vw);
    margin: 0 auto;
    filter: drop-shadow(0 0 14px rgba(255, 53, 188, .55)) drop-shadow(0 0 40px rgba(255, 53, 188, .28))
}

.hero-rule {
    width: 64px;
    height: 1px;
    background: var(--neon);
    margin: 36px auto 26px;
    box-shadow: 0 0 10px var(--neon);
    animation: heroUp .9s cubic-bezier(.22, 1, .36, 1) .45s both, rulePulse 4s ease-in-out 2.5s infinite
}

.hero-line {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, .92);
    max-width: 38ch;
    margin: 0 auto 38px;
    animation: heroUp .9s cubic-bezier(.22, 1, .36, 1) .55s both
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroUp .9s cubic-bezier(.22, 1, .36, 1) .7s both
}

.hero .bloom {
    animation: bloomPulse 8s ease-in-out infinite, hueDrift 14s ease-in-out infinite;
    transition: translate .7s cubic-bezier(.22, 1, .36, 1)
}

.flicker {
    animation: flicker 2.1s ease-out both, glowPulse 5s ease-in-out 2.3s infinite, logoBreathe 5s ease-in-out 2.3s infinite
}

@keyframes flicker {
    0% {
        opacity: 0;
        filter: none
    }

    8% {
        opacity: 1
    }

    10% {
        opacity: .25
    }

    14% {
        opacity: 1
    }

    17% {
        opacity: .4
    }

    20%,
    100% {
        opacity: 1
    }
}

@keyframes heroUp {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes glowPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 14px rgba(255, 53, 188, .55)) drop-shadow(0 0 40px rgba(255, 53, 188, .28))
    }

    50% {
        filter: drop-shadow(0 0 19px rgba(255, 53, 188, .72)) drop-shadow(0 0 52px rgba(255, 53, 188, .38))
    }
}

@keyframes bloomPulse {

    0%,
    100% {
        opacity: .75;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.09)
    }
}

@keyframes rulePulse {

    0%,
    100% {
        box-shadow: 0 0 10px var(--neon)
    }

    50% {
        box-shadow: 0 0 17px var(--neon), 0 0 30px rgba(255, 53, 188, .4)
    }
}

@keyframes logoBreathe {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.02)
    }
}

@keyframes hueDrift {

    0%,
    100% {
        filter: hue-rotate(0deg)
    }

    50% {
        filter: hue-rotate(-14deg)
    }
}

@media (max-width:640px) {
    .hero .bloom {
        animation: bloomPulse 8s ease-in-out infinite
    }

    .flicker {
        animation: flicker 2.1s ease-out both, glowPulseM 5s ease-in-out 2.3s infinite, logoBreathe 5s ease-in-out 2.3s infinite
    }
}

@keyframes glowPulseM {

    0%,
    100% {
        filter: drop-shadow(0 0 12px rgba(255, 53, 188, .5)) drop-shadow(0 0 34px rgba(255, 53, 188, .25))
    }

    50% {
        filter: drop-shadow(0 0 17px rgba(255, 53, 188, .68)) drop-shadow(0 0 45px rgba(255, 53, 188, .35))
    }
}

.hero-actions .btn-neon {
    position: relative;
    overflow: hidden;
    animation: btnGlow 3.4s ease-in-out 3.2s infinite
}

.hero-actions .btn-neon::after {
    content: "";
    position: absolute;
    top: 0;
    left: -90%;
    width: 55%;
    height: 100%;
    transform: skewX(-20deg);
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .5), transparent);
    animation: btnShine 3.4s ease-in-out 3.2s infinite
}

@keyframes btnGlow {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(255, 53, 188, 0)
    }

    45% {
        box-shadow: 0 0 30px rgba(255, 53, 188, .75), 0 0 60px rgba(255, 53, 188, .35)
    }
}

@keyframes btnShine {

    0%,
    55% {
        left: -90%
    }

    85%,
    100% {
        left: 140%
    }
}

/* ---------- page hero ---------- */
.phero {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 10vw, 126px) 0 clamp(48px, 6vw, 72px);
    border-bottom: 1px solid var(--hair)
}

.phero-in {
    position: relative;
    z-index: 2
}

.phero h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(42px, 8vw, 94px);
    line-height: .98;
    letter-spacing: -.02em;
    margin: 14px 0 20px
}

.phero h1 em {
    font-style: italic
}

.phero p {
    max-width: 50ch;
    font-size: 16px;
    line-height: 1.72;
    color: rgba(255, 255, 255, .86);
    margin: 0
}

.crumb {
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--neon)
}

/* ---------- strip ---------- */
.strip {
    border-top: 1px solid var(--hair);
    border-bottom: 1px solid var(--hair);
    background: var(--ink-2)
}

.strip-in {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.strip-cell {
    padding: 28px 22px;
    text-align: center;
    border-left: 1px solid var(--hair);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, .84)
}

.strip-cell b {
    color: var(--neon);
    font-weight: 600
}

.strip-cell:first-child {
    border-left: none
}

@media(max-width:720px) {
    .strip-in {
        grid-template-columns: 1fr
    }

    .strip-cell {
        border-left: none;
        border-top: 1px solid var(--hair)
    }

    .strip-cell:first-child {
        border-top: none
    }
}

/* ---------- services ---------- */
.svc-list {
    border-top: 1px solid var(--hair-dark)
}

.svc {
    display: grid;
    grid-template-columns: 34px 1fr 1.15fr;
    gap: 26px;
    align-items: baseline;
    padding: 28px 4px;
    border-bottom: 1px solid var(--hair-dark);
    position: relative;
    transition: padding-left .3s ease
}

.svc:hover {
    padding-left: 14px
}

.svc::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0;
    background: var(--neon);
    transition: width .45s ease
}

.svc:hover::after {
    width: 100%
}

.svc-num {
    font-size: 10px;
    letter-spacing: .16em;
    font-weight: 600;
    color: var(--neon);
    font-variant-numeric: tabular-nums
}

.svc-name {
    font-family: var(--display);
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 400;
    line-height: 1.16
}

.svc-copy {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--ash)
}

.svc-detail {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--neon);
    font-weight: 600;
    margin-top: 10px;
    display: block
}

@media(max-width:760px) {
    .svc {
        grid-template-columns: 28px 1fr;
        gap: 8px 18px
    }

    .svc-copy {
        grid-column: 2/3
    }
}

/* ---------- team ---------- */
.team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start
}

@media(max-width:900px) {
    .team {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:620px) {
    .team {
        grid-template-columns: 1fr;
        gap: 26px
    }
}

.member {
    border: 1px solid var(--hair);
    background: var(--ink-2);
    transition: .35s ease
}

.member:hover {
    border-color: rgba(255, 53, 188, .5);
    box-shadow: 0 0 40px rgba(255, 53, 188, .12)
}

.portrait {
    aspect-ratio: 4/5;
    background: radial-gradient(circle at 50% 38%, rgba(255, 53, 188, .20), transparent 60%), linear-gradient(160deg, #1b1b1f, #0d0d0f);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--hair)
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.portrait span {
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3)
}

.member-body {
    padding: 26px 24px 30px
}

.member-name {
    font-family: var(--display);
    font-size: 25px;
    font-weight: 400;
    margin: 0 0 6px
}

.member-role {
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--neon);
    margin: 0 0 16px
}

.member-bio {
    font-size: 14px;
    line-height: 1.72;
    color: rgba(255, 255, 255, .85);
    margin: 0
}

.member-bio-collapsible {
    position: relative;
    padding-bottom: 5px
}

.member-bio-collapsible .bio-toggle {
    position: absolute;
    right : 2px;
    bottom :-15px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--neon);
    font: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    vertical-align: baseline;
    line-height: 1;
}

.member-bio-collapsible.injector-inline .bio-toggle {
    position: absolute;
    right: 2px;
    bottom: -15px;
}

.member-bio-collapsible.injector-inline .bio-more {
    display: none;
}

.member-bio-collapsible.injector-inline.expanded .bio-more {
    display: block;
}

.member-bio-collapsible .bio-toggle:hover {
    color: var(--neon-soft)
}

.member-bio-collapsible .bio-more {
    display: none
}

.member-bio-collapsible.expanded .bio-more {
    display: inline
}

.member-bio-collapsible.expanded .bio-toggle {
    display: inline
}

.member-tags {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--hair);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45)
}

/* ---------- before & after ---------- */
.ba-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 42px
}

.ba-filter button {
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 100px;
    border: 1px solid var(--hair);
    background: none;
    color: rgba(255, 255, 255, .72);
    cursor: pointer;
    transition: .25s
}

.ba-filter button:hover {
    border-color: var(--neon);
    color: var(--neon)
}

.ba-filter button.on {
    background: var(--neon);
    border-color: var(--neon);
    color: #fff
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px
}

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

.ba-case {
    border: 1px solid var(--hair);
    background: var(--ink-2)
}

.ba-stage {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: ew-resize;
    touch-action: none;
    user-select: none
}

.ba-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 26px;
    color: rgba(255, 255, 255, .34)
}

.ba-before {
    background: linear-gradient(150deg, #191920, #0c0c0e)
}

.ba-after {
    background: radial-gradient(circle at 50% 40%, rgba(255, 53, 188, .22), transparent 62%), linear-gradient(150deg, #26141d, #0e0b0d);
    clip-path: inset(0 0 0 50%)
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--neon);
    box-shadow: 0 0 14px var(--neon);
    pointer-events: none
}

.ba-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 22px rgba(255, 53, 188, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff
}

.ba-tagline {
    position: absolute;
    top: 14px;
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    z-index: 3
}

.ba-tagline.l {
    left: 16px
}

.ba-tagline.r {
    right: 16px;
    color: var(--neon-soft)
}

.ba-info {
    padding: 22px 24px 26px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: baseline;
    flex-wrap: wrap
}

.ba-info h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 22px;
    margin: 0
}

.ba-info span {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45)
}

.ba-note {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--hair);
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .58);
    max-width: 70ch
}

/* ---------- specials ---------- */
.board-outer {
    position: relative;
    overflow: hidden
}

.board {
    position: relative;
    z-index: 2;
    border: 2px solid var(--neon);
    border-radius: 4px;
    box-shadow: 0 0 22px rgba(255, 53, 188, .45), inset 0 0 22px rgba(255, 53, 188, .18);
    padding: clamp(36px, 5.5vw, 62px) clamp(24px, 4.6vw, 56px);
    background: rgba(10, 10, 11, .55)
}

.board-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 38px
}

.board-title {
    font-family: var(--display);
    font-size: clamp(30px, 4.6vw, 50px);
    font-weight: 400;
    margin: 0
}

.board-month {
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--neon)
}

.deals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hair)
}

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

.deal {
    background: var(--ink);
    padding: 30px 26px
}

.deal-tag {
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--neon-soft);
    margin: 0 0 14px
}

.deal-name {
    font-family: var(--display);
    font-size: 23px;
    font-weight: 400;
    margin: 0 0 10px;
    line-height: 1.2
}

.deal-copy {
    font-size: 13.5px;
    line-height: 1.68;
    color: rgba(255, 255, 255, .85);
    margin: 0
}

.board-note {
    margin: 32px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .58)
}

/* ---------- reviews ---------- */
.rev-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--hair-dark);
    border-radius: 100px;
    padding: 10px 20px;
    margin-bottom: 26px;
}

.rev-badge .stars {
    color: var(--neon);
    letter-spacing: .14em;
    font-size: 13px
}

.rev-badge span {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ash)
}

.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--hair-dark)
}

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

.quote {
    padding: 42px 32px;
    border-right: 1px solid var(--hair-dark);
    border-bottom: 1px solid var(--hair-dark)
}

.quote:last-child {
    border-right: none
}

@media(max-width:900px) {
    .quote {
        border-right: none;
        padding: 36px 4px
    }
}

.quote-mark {
    font-family: var(--display);
    font-size: 56px;
    line-height: .6;
    color: var(--neon);
    display: block;
    margin-bottom: 18px
}

.quote p {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.55;
    margin: 0 0 22px;
    color: var(--ink)
}

.quote-by {
    font-size: 10px;
    letter-spacing: .26em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ash)
}

/* ---------- book ---------- */
.book {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--ink)
}

.book-in {
    position: relative;
    z-index: 2
}

.book h2 {
    font-family: var(--display);
    font-weight: 400;
    line-height: 1.02;
    font-size: clamp(36px, 6.5vw, 80px);
    margin: 0 0 24px;
    letter-spacing: -.015em
}

.book p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .86);
    max-width: 40ch;
    margin: 0 auto 38px
}

/* ---------- footer ---------- */
.foot {
    border-top: 1px solid var(--hair);
    background: var(--ink);
    padding: 58px 0 42px
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 34px
}

@media(max-width:820px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }
}

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

.foot h4 {
    font-size: 10px;
    letter-spacing: .26em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--neon);
    margin: 0 0 16px
}

.foot p,
.foot a.line {
    font-size: 13.5px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .8);
    display: block;
    margin: 0
}

.foot a.line:hover {
    color: var(--neon)
}

.foot-logo img {
    height: 38px;
    width: auto;
    margin-bottom: 16px
}

.foot-base {
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid var(--hair);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .34)
}

.fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .8s ease, transform .8s ease
}

.fade-up.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .fade-up {
        opacity: 1;
        transform: none
    }

    html {
        scroll-behavior: auto
    }
}
