/* ═══════════════════════════════════════════════════════
   EXPLOCY · landing
   Dark editorial / rave-poster. Electric yellow dominant.
   ═══════════════════════════════════════════════════════ */

:root {
    --bg:        #0E0E0E;
    --bg-2:      #141414;
    --surface:   #1a1a1a;
    --ink:       #FFFFFF;
    --ink-muted: #8a8a8a;
    --ink-dim:   #4a4a4a;
    --yellow:    #FFD300;
    --yellow-2:  #FFEC5F;
    --turquoise: #00E0B8;
    --turquoise-2: #7FF5DC;
    --red:       #FF4D4D;
    --border:    rgba(255,255,255,0.08);
    --border-2:  rgba(255,255,255,0.16);

    --f-display: "Unbounded", "Arial Black", sans-serif;
    --f-serif:   "Instrument Serif", "Times New Roman", serif;
    --f-mono:    "DM Mono", "Menlo", monospace;

    --pad-x: clamp(20px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--f-mono);
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

@media (pointer: coarse) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--yellow); color: var(--bg); }

/* ═════ Grain overlay ═════ */
.grain {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 200;
    opacity: .09;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ═════ Floating blobs ═════ */
.blob {
    position: fixed;
    width: 42vw; height: 42vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .35;
    z-index: 0;
    pointer-events: none;
    animation: drift 30s ease-in-out infinite alternate;
}
.blob--yellow    { background: var(--yellow);    top: -15%; left: -10%; }
.blob--turquoise { background: var(--turquoise); bottom: -20%; right: -15%; animation-duration: 38s; animation-delay: -8s; }

@keyframes drift {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(8vw, -6vh, 0) scale(1.15); }
    100% { transform: translate3d(-5vw, 10vh, 0) scale(.9); }
}

/* ═════ Cursor halo ═════ */
.cursor-halo {
    position: fixed;
    width: 28px; height: 28px;
    border: 1px solid var(--yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    transition: width .15s, height .15s, border-color .15s, background .15s;
    mix-blend-mode: difference;
}
.cursor-halo.is-hot {
    width: 64px; height: 64px;
    background: var(--yellow);
    border-color: var(--yellow);
}

/* ═════ NAV ═════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px var(--pad-x);
    backdrop-filter: blur(12px);
    background: linear-gradient(to bottom, rgba(14,14,14,0.85), rgba(14,14,14,0.0));
    transition: background .3s, border-color .3s;
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    background: rgba(14,14,14,0.92);
    border-bottom-color: var(--border);
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-family: var(--f-display);
    font-weight: 800;
    letter-spacing: .04em;
    font-size: 14px;
}
.nav__logo { width: 28px; height: 28px; object-fit: contain; }
.nav__wordmark { position: relative; top: 1px; }

.nav__links {
    display: flex;
    gap: 28px;
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: .04em;
}
.nav__links a {
    position: relative;
    padding: 6px 0;
    color: var(--ink-muted);
    transition: color .2s;
}
.nav__links a:hover { color: var(--yellow); }
.nav__links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--yellow);
    transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
    background: var(--yellow);
    color: var(--bg);
    padding: 10px 18px;
    border-radius: 999px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: transform .2s, background .2s;
}
.nav__cta:hover { transform: translate(-2px, -2px); background: var(--yellow-2); box-shadow: 4px 4px 0 var(--ink); }

.nav__toggle { display: none; }

@media (max-width: 840px) {
    .nav__links { display: none; }
    .nav__cta { font-size: 11px; padding: 8px 14px; }
}

/* ═════ HERO ═════ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px var(--pad-x) 80px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero__grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 340px;
    grid-template-rows: auto auto auto auto auto;
    column-gap: 60px;
    row-gap: 24px;
    position: relative;
}

.hero__eyebrow {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--yellow);
    letter-spacing: .12em;
    text-transform: uppercase;
    grid-column: 1 / 2;
    animation: fade-up .8s .1s both;
}

.hero__title {
    grid-column: 1 / 2;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(56px, 11vw, 180px);
    line-height: .88;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    max-width: 11ch;
}

.hero__line {
    display: block;
    animation: reveal 1s cubic-bezier(.2,.8,.2,1) both;
    transform-origin: left bottom;
}
.hero__line--1 { animation-delay: .15s; }
.hero__line--2 { animation-delay: .25s; margin-left: .4em; }
.hero__line--3 {
    animation-delay: .35s;
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    font-size: .95em;
    color: var(--yellow);
    letter-spacing: -0.01em;
    padding-left: 1.4em;
    position: relative;
}
.hero__line--3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.1em;
    height: 2px;
    background: var(--yellow);
    transform: translateY(-50%);
}
.hero__line--3 em { font-style: italic; }
.hero__line--4 { animation-delay: .45s; -webkit-text-stroke: 2px var(--ink); color: transparent; }

.hero__subtitle {
    grid-column: 1 / 2;
    max-width: 46ch;
    font-family: var(--f-mono);
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-muted);
    margin-top: 12px;
    animation: fade-up 1s .6s both;
}

.hero__ctas {
    grid-column: 1 / 2;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
    animation: fade-up 1s .75s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .2s ease;
}
.btn--primary {
    background: var(--yellow);
    color: var(--bg);
    padding: 16px 28px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--yellow);
}
.btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: translateY(101%);
    transition: transform .35s cubic-bezier(.75,0,.2,1);
    z-index: 0;
}
.btn--primary:hover { color: var(--yellow); }
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary > * { position: relative; z-index: 1; }

.btn--ghost {
    color: var(--ink);
    padding: 16px 0;
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
}
.btn--ghost:hover { color: var(--yellow); border-bottom-color: var(--yellow); }

.hero__stats {
    grid-column: 1 / 2;
    display: flex;
    gap: 56px;
    margin-top: 36px;
    animation: fade-up 1s .9s both;
    border-top: 1px solid var(--border);
    padding-top: 28px;
}
.hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.hero__stats strong {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 28px;
    color: var(--ink);
}
.hero__stats span {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero__scroll {
    position: absolute;
    bottom: -30px;
    left: 0;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--ink-muted);
    letter-spacing: .1em;
    text-transform: uppercase;
}
.hero__scroll span {
    display: inline-block;
    margin-left: 4px;
    animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(4px); }
}

/* ═════ Ticket stub ═════ */
.ticket {
    grid-column: 2 / 3;
    grid-row: 1 / 6;
    align-self: center;
    justify-self: end;
    display: flex;
    width: 330px;
    max-width: 100%;
    background: var(--yellow);
    color: var(--bg);
    border-radius: 4px;
    overflow: visible;
    position: relative;
    animation: ticket-in 1s .5s cubic-bezier(.2,.9,.3,1.2) both;
    transform-origin: center;
    box-shadow: 12px 12px 0 var(--ink), 12px 12px 0 1px var(--yellow);
}

.ticket:hover { animation-play-state: paused; }

@keyframes ticket-in {
    from { opacity: 0; transform: translateY(40px) rotate(-8deg); }
    to   { opacity: 1; transform: translateY(0) rotate(-4deg); }
}

.ticket__body {
    flex: 1;
    padding: 20px 22px;
    position: relative;
}
.ticket__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--f-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-bottom: 1px dashed rgba(0,0,0,.3);
    padding-bottom: 10px;
}
.ticket__label { font-weight: 500; }
.ticket__date { font-weight: 700; }

.ticket__big {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: 64px;
    line-height: .9;
    margin: 16px 0 10px;
    letter-spacing: -.04em;
}
.ticket__big em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    font-size: .5em;
    display: inline-block;
    margin-left: 4px;
}

.ticket__sub {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: lowercase;
    opacity: .75;
    margin-bottom: 18px;
}

.ticket__barcode {
    display: flex;
    gap: 2px;
    height: 38px;
    margin-bottom: 14px;
}
.ticket__barcode span {
    background: var(--bg);
    width: 3px;
}
.ticket__barcode span:nth-child(2n)  { width: 6px; }
.ticket__barcode span:nth-child(3n)  { width: 2px; }
.ticket__barcode span:nth-child(5n)  { width: 9px; }
.ticket__barcode span:nth-child(7n)  { width: 4px; }
.ticket__barcode span:nth-child(4n+1){ width: 7px; }

.ticket__footer {
    display: flex;
    justify-content: space-between;
    font-family: var(--f-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-top: 1px dashed rgba(0,0,0,.3);
    padding-top: 10px;
}

.ticket__perforation {
    width: 1px;
    background: repeating-linear-gradient(to bottom, rgba(0,0,0,.4) 0 5px, transparent 5px 10px);
    margin: 14px 0;
    position: relative;
}
.ticket__perforation::before,
.ticket__perforation::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 18px; height: 18px;
    background: var(--bg);
    border-radius: 50%;
    transform: translateX(-50%);
}
.ticket__perforation::before { top: -25px; }
.ticket__perforation::after  { bottom: -25px; }

.ticket__stub {
    width: 80px;
    padding: 20px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: relative;
}
.ticket__logo {
    width: 44px; height: 44px;
    filter: invert(1);
    opacity: .85;
}

@media (max-width: 900px) {
    .hero__grid { grid-template-columns: 1fr; }
    .ticket {
        grid-column: 1 / 2;
        grid-row: auto;
        justify-self: start;
        margin-top: 24px;
    }
    .hero__stats { gap: 24px; flex-wrap: wrap; }
    .hero__stats strong { font-size: 22px; }
}

/* ═════ MARQUEE ═════ */
.marquee {
    position: relative;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--yellow);
    color: var(--bg);
    overflow: hidden;
    display: flex;
    z-index: 2;
    transform: rotate(-1deg);
    margin: 40px -2vw;
}

.marquee__track {
    display: inline-flex;
    gap: 40px;
    padding-right: 40px;
    animation: scroll 38s linear infinite;
    flex-shrink: 0;
}
.marquee__item {
    font-family: var(--f-display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 34px;
    letter-spacing: -.01em;
    white-space: nowrap;
    flex-shrink: 0;
}
.marquee__bullet { color: var(--bg); font-size: 24px; flex-shrink: 0; }

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* ═════ Section base ═════ */
.section {
    position: relative;
    padding: 120px var(--pad-x);
    z-index: 1;
}
.section__head { margin-bottom: 60px; max-width: 900px; }
.section__marker {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--yellow);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section__title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(36px, 6vw, 80px);
    line-height: .95;
    letter-spacing: -.02em;
    max-width: 18ch;
}
.section__subtitle {
    font-family: var(--f-serif);
    font-size: clamp(18px, 2vw, 24px);
    font-style: italic;
    color: var(--ink-muted);
    margin-top: 16px;
    max-width: 48ch;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ═════ PILLARS ═════ */
.pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 980px) {
    .pillars__grid { grid-template-columns: 1fr; }
}

.pillar {
    position: relative;
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-2);
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s, background .3s;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.pillar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 0%, var(--pillar-accent, var(--yellow)) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.pillar--yellow    { --pillar-accent: rgba(255,211,0,.14); }
.pillar--turquoise { --pillar-accent: rgba(0,224,184,.14); }
.pillar--white     { --pillar-accent: rgba(255,255,255,.08); }

.pillar:hover {
    transform: translateY(-6px);
    border-color: var(--border-2);
}
.pillar:hover::before { opacity: 1; }

.pillar__num {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--ink-dim);
    margin-bottom: 32px;
}

.pillar__body { flex: 1; display: flex; flex-direction: column; }

.pillar__title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 48px;
    letter-spacing: -.02em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 6px;
}
.pillar--yellow    .pillar__title { color: var(--yellow); }
.pillar--turquoise .pillar__title { color: var(--turquoise); }

.pillar__subtitle {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--ink-muted);
    margin-bottom: 22px;
}

.pillar__desc {
    font-family: var(--f-mono);
    font-size: 13px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 24px;
}

.pillar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: auto;
    padding-bottom: 24px;
}
.pillar__tags li {
    border: 1px solid var(--border-2);
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--ink-muted);
    text-transform: lowercase;
}

.pillar__meta {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--ink-muted);
    border-top: 1px dashed var(--border-2);
    padding-top: 16px;
}

/* ═════ MANIFESTO ═════ */
.manifesto {
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}
.manifesto__title {
    font-family: var(--f-display);
    font-weight: 300;
    font-size: clamp(32px, 5.5vw, 72px);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-top: 20px;
    max-width: 20ch;
}
.manifesto__title em,
.manifesto__body em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--yellow);
}
.manifesto__body {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 820px;
}
.manifesto__body p {
    font-family: var(--f-serif);
    font-size: 22px;
    line-height: 1.45;
    color: var(--ink);
}
@media (max-width: 720px) {
    .manifesto__body { grid-template-columns: 1fr; }
    .manifesto__body p { font-size: 18px; }
}

/* ═════ FEATURES ═════ */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}
@media (max-width: 900px) { .features__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features__grid { grid-template-columns: 1fr; } }

.feature {
    padding: 38px 32px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background .3s;
}
.feature:hover { background: var(--surface); }
.feature::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 0; height: 2px;
    background: var(--yellow);
    transition: width .4s cubic-bezier(.2,.8,.2,1);
}
.feature:hover::after { width: 100%; }

.feature__icon {
    color: var(--yellow);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 26px;
    font-family: var(--f-serif);
}
.feature__title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -.01em;
    margin-bottom: 10px;
}
.feature__body {
    font-family: var(--f-mono);
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-muted);
}

/* ═════ SHOWCASE ═════ */
.showcase {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
}
@media (max-width: 900px) {
    .showcase { grid-template-columns: 1fr; }
}

.showcase__title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -.02em;
    margin-top: 16px;
    max-width: 16ch;
}
.showcase__subtitle {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--ink-muted);
    margin-top: 18px;
    max-width: 36ch;
}
.showcase__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}
.chip {
    border: 1px solid var(--border-2);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--ink);
    transition: border-color .2s, color .2s;
}
.chip:hover { border-color: var(--yellow); color: var(--yellow); }

/* ═════ PHONE ═════ */
.phone {
    position: relative;
    justify-self: center;
}
.phone__frame {
    width: 300px;
    height: 600px;
    border-radius: 46px;
    background: #222;
    border: 10px solid #0a0a0a;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.05),
        0 30px 60px rgba(0,0,0,.5),
        0 10px 30px rgba(255,211,0,.08);
    padding: 10px;
    position: relative;
    transform: rotate(-3deg);
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
    z-index: 2;
}
.phone:hover .phone__frame { transform: rotate(0) translateY(-6px); }

.phone__notch {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 22px;
    background: #000;
    border-radius: 14px;
    z-index: 3;
}
.phone__screen {
    width: 100%; height: 100%;
    border-radius: 38px;
    background: linear-gradient(170deg, #111 0%, #1a1a1a 100%);
    padding: 46px 16px 16px;
    overflow: hidden;
    position: relative;
}
.phone__app { display: flex; flex-direction: column; gap: 10px; height: 100%; }

.phone__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.phone__dot { width: 24px; height: 24px; border-radius: 50%; background: var(--yellow); }
.phone__bar { width: 80px; height: 8px; background: #333; border-radius: 4px; }

.phone__card {
    background: #1f1f1f;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 10px;
    position: relative;
    animation: slide-card .6s cubic-bezier(.2,.8,.2,1) both;
}
.phone__card--1 { animation-delay: 1s; }
.phone__card--2 { animation-delay: 1.15s; }
.phone__card--3 { animation-delay: 1.3s; }

@keyframes slide-card {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
}

.phone__card-img {
    height: 92px;
    border-radius: 10px;
    margin-bottom: 10px;
    background:
        radial-gradient(circle at 30% 40%, rgba(255,211,0,.8), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255,77,77,.7), transparent 55%),
        #222;
}
.phone__card-img--alt {
    background:
        radial-gradient(circle at 60% 40%, rgba(0,224,184,.8), transparent 55%),
        radial-gradient(circle at 20% 70%, rgba(255,211,0,.6), transparent 50%),
        #222;
}
.phone__card-img--alt2 {
    background:
        linear-gradient(135deg, rgba(255,255,255,.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255,77,77,.7), transparent 55%),
        #161616;
}
.phone__card-title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 2px;
}
.phone__card-meta {
    font-family: var(--f-mono);
    font-size: 9px;
    color: var(--ink-muted);
    text-transform: lowercase;
}
.phone__card-pill {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--yellow);
    color: var(--bg);
    padding: 3px 8px;
    border-radius: 999px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 10px;
}
.phone__card-pill--alt { background: var(--turquoise); }

.phone__nav {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    padding: 10px 0 6px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: var(--ink-muted);
    font-size: 18px;
}
.phone__nav span:first-child { color: var(--yellow); }

.phone__echo {
    position: absolute;
    inset: -20px;
    border: 1px dashed var(--border-2);
    border-radius: 60px;
    z-index: 1;
    opacity: .6;
    transform: rotate(-3deg);
    animation: echo 6s ease-in-out infinite alternate;
}
@keyframes echo {
    from { transform: rotate(-3deg) scale(1); }
    to   { transform: rotate(2deg) scale(1.02); }
}

/* ═════ CITIES ═════ */
.cities__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 30px; flex-wrap: wrap; gap: 20px; }
.cities__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(28px, 5vw, 60px);
    letter-spacing: -.02em;
    text-transform: uppercase;
}
.cities__list li {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-dim);
    transition: color .3s;
    cursor: none;
}
.cities__list li:hover { color: var(--yellow); }
.cities__dot { font-size: .35em; color: var(--turquoise); }

/* ═════ CTA ═════ */
.cta {
    padding-bottom: 140px;
}
.cta__box {
    max-width: 920px;
    margin: 0 auto;
    padding: 80px 56px;
    background:
        radial-gradient(circle at 20% 0%, rgba(255,211,0,.2), transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(0,224,184,.12), transparent 50%),
        #111;
    border: 1px solid var(--border-2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.cta__box::before {
    content: "✦";
    position: absolute;
    top: 30px; right: 40px;
    font-size: 32px;
    color: var(--yellow);
    animation: spin 18s linear infinite;
}
.cta__box::after {
    content: "";
    position: absolute;
    bottom: -80px; left: -40px;
    width: 180px; height: 180px;
    border: 1px dashed var(--border-2);
    border-radius: 50%;
}
@keyframes spin { to { transform: rotate(360deg); } }

.cta__title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(48px, 7vw, 96px);
    letter-spacing: -.03em;
    text-transform: uppercase;
    line-height: .95;
    margin-top: 14px;
    max-width: 12ch;
}
.cta__subtitle {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 20px;
    color: var(--ink-muted);
    margin-top: 18px;
    max-width: 40ch;
}

.cta__form {
    margin-top: 36px;
    display: flex;
    gap: 10px;
    max-width: 520px;
}
.cta__form input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--ink);
    color: var(--ink);
    font-family: var(--f-mono);
    font-size: 15px;
    padding: 14px 0;
    outline: none;
    transition: border-color .3s;
}
.cta__form input:focus { border-color: var(--yellow); }
.cta__form input::placeholder { color: var(--ink-dim); }
.cta__form button {
    background: var(--yellow);
    color: var(--bg);
    border: none;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: none;
    transition: transform .2s, background .2s;
}
.cta__form button:hover { transform: translate(-2px,-2px); background: var(--yellow-2); box-shadow: 4px 4px 0 var(--ink); }

.cta__form button[disabled] { opacity: .6; cursor: not-allowed; }
.cta__form button[disabled]:hover { transform: none; box-shadow: none; background: var(--yellow); }

.cta__status {
    margin-top: 14px;
    min-height: 1.2em;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: .02em;
    color: var(--ink-muted);
    transition: color .2s;
}
.cta__status.is-error { color: var(--red); }
.cta__status.is-ok    { color: var(--turquoise); }

.cta__note {
    margin-top: 18px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--ink-dim);
}

@media (max-width: 640px) {
    .cta__box { padding: 50px 28px; }
    .cta__form { flex-direction: column; }
}

/* ═════ FOOTER ═════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 80px var(--pad-x) 40px;
    background: var(--bg-2);
    position: relative;
    z-index: 2;
}
.footer__top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer__logo { width: 52px; height: 52px; }
.footer__wordmark {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -.01em;
    text-transform: uppercase;
}
.footer__tagline {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--ink-muted);
}
.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer__col h5 {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--ink-muted);
    transition: color .2s;
}
.footer__col a:hover { color: var(--ink); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--ink-dim);
    flex-wrap: wrap;
    gap: 16px;
}
.footer__social { display: flex; gap: 16px; }
.footer__social a {
    color: var(--ink-dim);
    transition: color .2s;
    font-family: var(--f-display);
    font-weight: 600;
    letter-spacing: .04em;
}
.footer__social a:hover { color: var(--yellow); }

@media (max-width: 760px) {
    .footer__top { grid-template-columns: 1fr; }
    .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ═════ Entrance animations ═════ */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
}
@keyframes reveal {
    from { opacity: 0; transform: translateY(80%); }
    to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .marquee__track { animation: none; }
    .blob { animation: none; }
}
