:root {
    --black: #080808;
    --black2: #10100f;
    --paper: #f5f0e7;
    --warm: #e7ded1;
    --muted: #9c958b;
    --gold: #f1aa32;
    --orange: #ff7043;
    --green: #8bcfa0;
    --line: rgba(245,240,231,.15);
    --ink: #151412;
    --display: 'Space Grotesk',sans-serif;
    --sans: 'DM Sans',sans-serif;
    --serif: 'Instrument Serif',Georgia,serif;
    --mx: 50vw;
    --my: 50vh;
    --scroll: 0;
    --hero-progress: 0;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    background: var(--black)
}

body {
    margin: 0;
    background: var(--black);
    color: var(--paper);
    font-family: var(--sans);
    overflow-x: hidden
}

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

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

button,input {
    font: inherit
}

::selection {
    background: var(--gold);
    color: #111
}

/* GLOBAL ATMOSPHERE */
.noise {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.cursor-light {
    position: fixed;
    z-index: 90;
    pointer-events: none;
    width: 380px;
    height: 380px;
    left: var(--mx);
    top: var(--my);
    transform: translate(-50%,-50%);
    background: radial-gradient(circle,rgba(241,170,50,.08),transparent 67%);
    mix-blend-mode: screen
}

/* NAV */
.navbar {
    position: fixed;
    z-index: 80;
    inset: 0 0 auto;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5.5vw;
    background: linear-gradient(180deg,rgba(8,8,8,.88),transparent);
    transition: transform .35s ease
}

.navbar.hidden {
    transform: translateY(-110%)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 600;
    letter-spacing: -.035em
}

.brand img {
    width: 31px;
    height: 31px;
    object-fit: contain
}

.nav {
    display: flex;
    gap: 30px;
    color: #bbb5ad;
    font-size: 12px
}

.nav a {
    position: relative;
    padding: 7px 0
}

.nav a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: .25s
}

.nav a:hover:after {
    width: 100%
}

.nav-cta {
    color: #111;
    background: var(--paper);
    padding: 10px 17px;
    font-size: 12px
}

/* HERO */
.hero {
    position: relative;
    min-height: 94svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden
}

.hero-image {
    position: absolute;
    inset: -4%;
    background: linear-gradient(90deg,rgba(8,8,8,.98) 0%,rgba(8,8,8,.82) 30%,rgba(8,8,8,.34) 66%,rgba(8,8,8,.2)),url('/images/site/landing/hero.jpg') center/cover;
    transform: translate3d(calc((var(--mx) - 50vw)*.010),calc((var(--my) - 50vh)*.010),0) scale(1.055);
    will-change: transform
}

.hero-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 48%,transparent 0,rgba(0,0,0,.04) 25%,rgba(0,0,0,.58) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 7vw 9vh;
    max-width: 1080px
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #d5cec3
}

.eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 16px rgba(139,207,160,.8)
}

.hero h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(70px,10vw,154px);
    line-height: .80;
    letter-spacing: -.083em;
    font-weight: 600
}

.hero h1 em {
    font-family: var(--serif);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    letter-spacing: -.045em
}

.hero-intro {
    max-width: 610px;
    margin: 38px 0 34px;
    color: #b9b3aa;
    font-size: 17px;
    line-height: 1.7
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 19px;
    background: var(--paper);
    color: #111;
    font-size: 13px;
    font-weight: 600
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,.28)
}

.text-link {
    font-size: 12px;
    color: #d3cdc4;
    border-bottom: 1px solid rgba(211,205,196,.4);
    padding-bottom: 4px
}

.hero-metrics {
    position: absolute;
    right: 5.5vw;
    bottom: 9vh;
    z-index: 2;
    display: flex;
    gap: 38px;
    align-items: flex-end
}

.metric strong {
    display: block;
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: -.035em
}

.metric span {
    display: block;
    margin-top: 4px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #7d786f
}

.navbar:after {
    content: none;
}

.scroll-mark {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 2;
    width: 1px;
    height: 58px;
    background: linear-gradient(var(--paper),transparent);
    opacity: .65
}

/* MARQUEE */
.marquee {
    overflow: hidden;
    background: var(--gold);
    color: #10100f;
    padding: 13px 0
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 52px;
    animation: marquee 27s linear infinite;
    font-family: var(--display);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.02em
}

.marquee-track span {
    display: flex;
    gap: 52px;
    align-items: center
}

.marquee-track em {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

/* MANIFESTO */
.manifesto {
    background: var(--paper);
    color: var(--ink);
    padding: 145px 7vw 135px;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 9vw
}

.label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #77716a
}

.manifesto h2 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(52px,7vw,104px);
    line-height: .86;
    letter-spacing: -.075em;
    margin: 24px 0 0
}

.manifesto h2 em {
    font-family: var(--serif);
    font-weight: 400;
    color: #ae6a13
}

.manifesto-copy {
    align-self: end;
    max-width: 430px;
    font-size: 16px;
    line-height: 1.75;
    color: #615b53
}

.manifesto-copy strong {
    color: #171512
}

.stateline {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(17,17,15,.18);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 11px;
    color: #716b63;
    text-transform: uppercase;
    letter-spacing: .08em
}

/* DISCOVER */
.discover {
    position: relative;
    background: var(--black2);
    padding-top: 145px;
    overflow: hidden
}

.discover-head {
    padding: 0 7vw clamp(48px,6vw,70px);
    display: grid;
    grid-template-columns: minmax(0,1.35fr) minmax(220px,340px);
    gap: clamp(28px,5vw,70px);
    align-items: end
}

.discover-head h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(54px,7.6vw,112px);
    line-height: .84;
    letter-spacing: -.075em
}

.discover-head h2 em {
    font-family: var(--serif);
    font-weight: 400;
    font-style: italic;
    color: var(--gold)
}

.discover-head p {
    margin: 0 0 3px;
    color: #908980;
    font-size: 14px;
    line-height: 1.75
}

.vibe-field {
    position: relative;
    min-height: 650px;
    overflow: hidden
}

.vibe-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(16,16,15,.95),rgba(16,16,15,.56),rgba(16,16,15,.15)),url('/images/site/landing/vibe-bg.jpg') center/cover;
    filter: saturate(.72)
}

.vibe-bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(16,16,15,.95),transparent 52%)
}

.vibes {
    position: relative;
    z-index: 2;
    padding: 90px 7vw 150px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 42px;
    row-gap: 8px;
    max-width: 1250px
}

.vibe {
    font-family: var(--display);
    font-size: clamp(44px,6.2vw,88px);
    line-height: .96;
    letter-spacing: -.065em;
    font-weight: 600;
    color: #eee7dc;
    text-shadow: 0 18px 45px rgba(0,0,0,.3);
    transition: transform .4s,color .25s
}

.vibe:nth-child(3n),.vibe:nth-child(7) {
    font-family: var(--serif);
    font-weight: 400;
    font-style: italic;
    color: #ddbd7e
}

.vibe:hover {
    color: var(--orange);
    transform: translateY(-7px) rotate(-1deg)
}

.vibe-note {
    position: absolute;
    z-index: 3;
    left: 7vw;
    bottom: 35px;
    color: #d1c9bd;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .13em
}

.vibe-note span {
    color: #7f7970
}

/* DISCOVERY FLOW */
.flow {
    background: #ece6dc;
    color: var(--ink);
    padding: 150px 7vw 155px
}

.flow-head {
    max-width: 900px;
    margin-bottom: 100px
}

.flow-head h2 {
    font-family: var(--display);
    font-size: clamp(54px,7vw,108px);
    line-height: .86;
    letter-spacing: -.075em;
    margin: 23px 0 0
}

.flow-head h2 em {
    font-family: var(--serif);
    font-weight: 400;
    color: #ae6a13
}

.flow-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid rgba(21,20,18,.22)
}

.flow-step {
    min-height: 390px;
    padding: 25px 28px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(21,20,18,.15)
}

.flow-step:not(:first-child) {
    padding-left: 28px
}

.flow-step:last-child {
    border-right: 0
}

.flow-number {
    font-family: var(--serif);
    font-size: 27px;
    color: #b5761b
}

.flow-step h3 {
    margin: 0 0 10px;
    font-family: var(--display);
    font-size: 30px;
    letter-spacing: -.05em
}

.flow-step p {
    margin: 0;
    max-width: 330px;
    color: #625c54;
    font-size: 14px;
    line-height: 1.7
}

.flow-visual {
    position: relative;
    margin-top: 65px;
    height: 280px;
    overflow: hidden;
    background: url('/images/site/landing/flow.jpg') center/cover
}

.flow-visual:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.12))
}

.flow-caption {
    position: absolute;
    z-index: 2;
    left: 32px;
    bottom: 28px;
    color: #fff;
    max-width: 470px
}

.flow-caption strong {
    font-family: var(--display);
    font-size: 24px;
    letter-spacing: -.04em
}

.flow-caption p {
    margin: 6px 0 0;
    color: #d2cbc0;
    font-size: 12px
}

/* BILL */
.bill {
    background: var(--black);
    color: var(--paper);
    padding: 155px 7vw 160px;
    position: relative;
    overflow: hidden
}

.bill-head {
    max-width: 940px;
    margin-bottom: 90px
}

.bill-head h2 {
    margin: 22px 0 0;
    font-family: var(--display);
    font-size: clamp(55px,7.8vw,116px);
    line-height: .83;
    letter-spacing: -.08em
}

.bill-head h2 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold)
}

.bill-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 9vw;
    align-items: start
}

.bill-photo {
    height: 680px;
    background: url('/images/site/landing/bill.jpg') center/cover;
    position: relative
}

.bill-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,.72),transparent 52%)
}

.bill-photo-label {
    position: absolute;
    z-index: 2;
    left: 28px;
    bottom: 25px;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .15em
}

.bill-copy h3 {
    font-family: var(--display);
    font-size: 48px;
    line-height: .9;
    letter-spacing: -.065em;
    margin: 0 0 24px
}

.bill-copy h3 em {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--gold)
}

.bill-copy>p {
    max-width: 470px;
    color: #9b958b;
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 47px
}

.split-interface {
    max-width: 550px;
    border-top: 1px solid var(--line);
    padding-top: 25px
}

.split-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 12px 0;
    color: #bab3a8;
    font-size: 12px
}

.split-line output {
    color: #fff;
    font-family: var(--display);
    font-size: 15px
}

input[type=range] {
    width: 100%;
    accent-color: var(--gold);
    cursor: pointer
}

.people {
    display: flex;
    gap: 7px;
    margin-top: 16px;
    flex-wrap: wrap
}

.person {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(245,240,231,.28);
    color: #bdb5aa;
    font-size: 9px
}

.bill-total {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: end
}

.bill-total span {
    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #827c73
}

.bill-total strong {
    font-family: var(--display);
    font-size: 51px;
    letter-spacing: -.06em
}

.bill-note {
    margin-top: 24px;
    color: #69635c;
    font-size: 11px;
    line-height: 1.7;
    max-width: 500px
}

/* REALTIME */
.realtime {
    background: #121110;
    color: var(--paper);
    padding: 155px 7vw;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 9vw;
    align-items: center;
    overflow: hidden
}

.realtime-copy h2 {
    font-family: var(--display);
    font-size: clamp(53px,7vw,100px);
    line-height: .84;
    letter-spacing: -.075em;
    margin: 20px 0 25px
}

.realtime-copy h2 em {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--gold)
}

.realtime-copy>p {
    max-width: 470px;
    color: #918b82;
    line-height: 1.75;
    font-size: 14px
}

.steps {
    margin-top: 50px;
    border-top: 1px solid var(--line)
}

.step {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    align-items: start
}

.step-num {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 20px
}

.step strong {
    font-family: var(--display);
    font-size: 15px
}

.step p {
    margin: 5px 0 0;
    color: #777169;
    font-size: 12px;
    line-height: 1.5
}

.step-mark {
    font-size: 10px;
    color: var(--green)
}

.device-scene {
    min-height: 650px;
    position: relative;
    perspective: 1300px;
    display: flex;
    justify-content: center;
    align-items: center
}

.device-scene:before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(241,170,50,.18),transparent 62%);
    filter: blur(35px)
}

.phone {
    position: relative;
    width: 308px;
    height: 622px;
    background: #0c0d0e;
    border: 1px solid rgba(255,255,255,.2);
    box-shadow: 0 50px 110px rgba(0,0,0,.55);
    transform: rotateY(-13deg) rotateX(6deg) rotateZ(3deg);
    transition: transform .22s ease;
    z-index: 2
}

.phone-screen {
    position: absolute;
    inset: 9px;
    background: #f4efe7;
    color: #161412;
    padding: 16px;
    overflow: hidden
}

.phone-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    letter-spacing: .11em
}

.live {
    color: #28653c;
    font-weight: 700
}

.phone-total {
    margin-top: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(17,17,15,.14)
}

.phone-total span {
    font-size: 9px;
    text-transform: uppercase;
    color: #777169;
    letter-spacing: .12em
}

.phone-total strong {
    display: block;
    font-family: var(--display);
    font-size: 45px;
    letter-spacing: -.06em;
    margin-top: 4px
}

.avatars {
    display: flex;
    gap: 6px;
    margin: 18px 0
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd3c2;
    color: #453a2d;
    display: grid;
    place-items: center;
    font-size: 9px
}

.avatar.active {
    background: #111;
    color: white
}

.item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(17,17,15,.1);
    font-size: 11px
}

.item small {
    display: block;
    color: #898278;
    margin-top: 3px
}

.item strong {
    font-family: var(--display)
}

.phone-toast {
    position: absolute;
    right: -100px;
    bottom: 75px;
    background: #151514;
    color: #fff;
    padding: 13px 15px;
    font-size: 11px;
    box-shadow: 0 18px 45px rgba(0,0,0,.4);
    z-index: 3
}

.phone-toast b {
    color: var(--green);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em
}

/* SOCIAL */
.social {
    background: var(--paper);
    color: var(--ink);
    padding: 160px 7vw 150px;
    overflow: hidden
}

.social-head {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 9vw;
    align-items: end;
    margin-bottom: 85px
}

.social-head h2 {
    font-family: var(--display);
    font-size: clamp(54px,7vw,105px);
    line-height: .84;
    letter-spacing: -.075em;
    margin: 22px 0 0
}

.social-head h2 em {
    font-family: var(--serif);
    font-weight: 400;
    color: #ae6a13
}

.social-head p {
    margin: 0 0 4px;
    color: #655f57;
    line-height: 1.75;
    font-size: 14px
}

.stream {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 1fr 1fr;
    gap: 1px;
    background: rgba(18,17,15,.16)
}

.stream > * {
    min-height: 240px;
    background: var(--paper);
    padding: 30px
}

.stream-main {
    grid-row: span 2;
    position: relative;
    background-image: url('/images/site/landing/stream-main.jpg');
    color: #fff;
    display: flex;
    align-items: flex-end
}

.stream-main:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,.78),transparent 62%)
}

.stream-main-content {
    position: relative;
    z-index: 2
}

.stream-main small {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #dfd8cf
}

.stream-main h3 {
    font-family: var(--display);
    font-size: 47px;
    line-height: .9;
    letter-spacing: -.06em;
    margin: 9px 0 0
}

.stream-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.stream-item .symbol {
    font-family: var(--serif);
    font-size: 36px;
    color: #b77716
}

.stream-item small {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #777067
}

.stream-item strong {
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: -.04em
}

.stream-item p {
    max-width: 290px;
    margin: 8px 0 0;
    color: #6c665e;
    font-size: 12px;
    line-height: 1.6
}

/* FINAL CTA */
.final {
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('/images/site/landing/final.jpg') center/cover
}

.final:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(8,8,8,.72),rgba(8,8,8,.87))
}

.final-inner {
    position: relative;
    z-index: 2;
    padding: 40px 20px
}

.final h2 {
    font-family: var(--display);
    font-size: clamp(64px,9vw,138px);
    line-height: .8;
    letter-spacing: -.085em;
    margin: 25px 0
}

.final h2 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold)
}

.final p {
    max-width: 560px;
    margin: 0 auto 30px;
    color: #b8b1a7;
    font-size: 15px;
    line-height: 1.7
}

.final small {
    display: block;
    margin-top: 18px;
    color: #7b756d;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .13em
}

footer {
    background: #080808;
    color: #69645c;
    padding: 32px 5.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px
}

footer .brand {
    color: #ddd
}

/* CAÇA-ROLÊ / CITY MAP */
.city-scene {
    position: relative;
    min-height: clamp(640px,78vh,820px);
    overflow: hidden;
    background: #101313;
    isolation: isolate;
    --parallax-y: 0px;
    cursor: grab;
}

.city-depth,.city-road,.city-glow {
    position: absolute;
    inset: -10%;
    will-change: transform;
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
}

.city-back {
    background: linear-gradient(180deg,rgba(10,15,18,.12),rgba(10,15,18,.7)),url('/images/site/landing/city-back.jpg') center/cover;
    filter: saturate(.62) contrast(1.04);
    transform: translate3d(0,var(--parallax-y),0) scale(1.08)
}

.city-mid {
    background: radial-gradient(circle at 68% 40%,rgba(241,170,50,.14),transparent 26%),linear-gradient(90deg,rgba(7,9,10,.72),transparent 55%);
    transform: translate3d(0,var(--parallax-y),0)
}

.city-front {
    background: linear-gradient(to top,rgba(10,11,11,.94),transparent 36%);
    transform: translate3d(0,var(--parallax-y),0)
}

.city-road {
    inset: auto;
    left: 9%;
    right: 9%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#d5aa5e 18%,#d5aa5e 82%,transparent);
    opacity: .18;
    transform: rotate(-11deg);
    transform-origin: center
}

.city-road-1 {
    top: 56%
}

.city-road-2 {
    top: 68%;
    transform: rotate(6deg);
    opacity: .1
}

.city-glow {
    inset: auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: 5%;
    top: 6%;
    background: radial-gradient(circle,rgba(255,169,69,.16),transparent 68%);
    filter: blur(30px)
}

.map-ui {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #d8d1c6
}

.map-ui-top {
    left: 7vw;
    top: 34px
}

.map-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7bd398;
    box-shadow: 0 0 15px #7bd398
}

.map-time {
    color: #f5f5f5;
    margin-left: 18px
}

.map-ui-bottom {
    left: 7vw;
    right: 7vw;
    bottom: 32px;
    justify-content: space-between;
    color: #8c867c
}

.map-ui-bottom i {
    height: 1px;
    flex: 1;
    background: rgba(255,255,255,.16);
    margin: 0 18px
}

.map-pin {
    position: absolute;
    z-index: 6;
    border: 0;
    background: transparent;
    color: #efe7dc;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0;
    --pin-x: 0px;
    --pin-y: 0px;
    transform: translate3d(var(--pin-x),var(--pin-y),0);
    transition: transform .28s cubic-bezier(.2,.8,.2,1),filter .28s ease;
    will-change: transform;
    filter: drop-shadow(0 14px 28px rgba(0,0,0,.38));
}

.map-pin:before {
    content: none;
    display: none;
}

.pin-avatar {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #1c1c1a center/cover no-repeat;
    border: 2px solid rgba(245,240,231,.38);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.25),0 12px 28px rgba(0,0,0,.35);
    transition: border-color .25s ease,box-shadow .25s ease,transform .28s cubic-bezier(.2,.8,.2,1);
}

.pin-avatar:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 50%;
    background: linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.45));
    pointer-events: none;
}

.pin-icon {
    position: absolute;
    right: -2px;
    bottom: -2px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(17,17,15,.92);
    border: 1px solid rgba(245,240,231,.28);
    color: #f0e7db;
    box-shadow: 0 8px 18px rgba(0,0,0,.35);
}

.map-pin small {
    position: static;
    font-size: 9px;
    color: #c4bbb0;
    text-transform: uppercase;
    letter-spacing: .12em;
    text-shadow: 0 8px 18px rgba(0,0,0,.55);
}

.map-pin:hover {
    transform: translate3d(var(--pin-x),calc(var(--pin-y) - 8px),0) scale(1.05);
    z-index: 9;
}

.map-pin:hover .pin-avatar {
    border-color: rgba(241,170,50,.7);
    box-shadow: 0 0 0 4px rgba(241,170,50,.14),0 16px 34px rgba(0,0,0,.4);
}

.map-pin.active {
    z-index: 10;
    filter: drop-shadow(0 0 24px rgba(241,170,50,.28));
}

.map-pin.active .pin-avatar {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(241,170,50,.22),0 18px 40px rgba(0,0,0,.45);
    transform: scale(1.06);
}

.map-pin.active .pin-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: #171513;
}

.map-pin.active small {
    color: #f3ebdf;
}

.mp1 {
    left: 17%;
    top: 28%
}

.mp2 {
    left: 46%;
    top: 22%
}

.mp3 {
    left: 58%;
    top: 54%
}

.mp4 {
    right: 16%;
    top: 29%
}

.mp5 {
    right: 28%;
    bottom: 20%
}

.vibe-float {
    position: absolute;
    z-index: 5;
    appearance: none;
    border: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(241,170,50,.55);
    padding: 10px 14px;
    color: #d9d1c5;
    font: inherit;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(15,15,14,.55);
    backdrop-filter: blur(12px);
    cursor: pointer;
    --pin-x: 0px;
    --pin-y: 0px;
    transform: translate3d(var(--pin-x),var(--pin-y),0);
    transition: transform .25s ease,border-color .25s ease,color .25s ease,background .25s ease,opacity .25s ease;
}

.vibe-float span {
    color: var(--gold);
    margin-left: 8px
}

.vibe-float:hover {
    transform: translate3d(var(--pin-x),calc(var(--pin-y) - 5px),0);
    border-color: rgba(241,170,50,.45);
    border-left-color: var(--gold);
    color: #fff;
    background: rgba(20,20,18,.72);
}

.vf1 {
    left: 16%;
    bottom: 29%
}

.vf2 {
    right: 12%;
    top: 53%
}

.vf3 {
    left: 36%;
    top: 47%
}

.search-orb {
    position: absolute;
    z-index: 8;
    left: 50%;
    top: 50%;
    width: min(560px,72vw);
    padding: 24px 26px 20px;
    transform: translate(-50%,-50%);
    background: rgba(13,14,14,.72);
    border: 1px solid rgba(255,255,255,.08);
    border-top-color: rgba(255,255,255,.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 35px 90px rgba(0,0,0,.42);
    transition: transform .35s cubic-bezier(.2,.8,.2,1),box-shadow .3s ease;
}

.search-orb-kicker {
    color: var(--gold);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .16em
}

.search-orb-text {
    font-family: var(--display);
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -.04em;
    margin-top: 10px
}

.search-orb-meta {
    display: flex;
    gap: 22px;
    margin-top: 18px;
    color: #8f897f;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .13em
}

.hunt-wrap {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 8vw;
    align-items: center;
    padding: 140px 7vw 155px;
    background: #11110f
}

.hunt-copy h3 {
    font-family: var(--display);
    font-size: clamp(50px,6vw,88px);
    line-height: .86;
    letter-spacing: -.075em;
    margin: 22px 0
}

.hunt-copy p {
    max-width: 430px;
    color: #918a80;
    line-height: 1.8;
    font-size: 14px
}

.hunt-rule {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    margin-bottom: 24px;
    color: #bdb4a8;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em
}

.hunt-rule i {
    width: 35px;
    height: 1px;
    background: rgba(255,255,255,.16)
}

.hunt-live-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: #9a9287;
    font-size: 11px;
    letter-spacing: .04em;
    transition: color .35s ease
}

.hunt-live-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #7bd398;
    box-shadow: 0 0 12px rgba(123,211,152,.65)
}

.hunt-live-arrow {
    display: none;
    flex-shrink: 0;
    line-height: 1
}

.hunt-live-arrow .icon-arrow,
.hunt-live-arrow .icon-arrow svg {
    margin-left: 0;
    width: 15px !important;
    height: 15px !important;
    min-width: 15px;
    min-height: 15px;
    max-width: 15px;
    max-height: 15px;
    color: var(--gold)
}

.hunt-live-meta.is-chosen .hunt-live-arrow {
    display: inline-flex
}

.hunt-live-meta.is-searching {
    animation: hunt-live-pulse 1.8s ease-in-out infinite
}

.hunt-live-meta.is-searching .hunt-live-dot {
    animation: hunt-live-dot-pulse 1.8s ease-in-out infinite
}

.hunt-live-meta.is-chosen {
    color: var(--gold);
    animation: none
}

.hunt-live-meta.is-chosen .hunt-live-dot {
    display: none;
    animation: none
}

@keyframes hunt-live-pulse {
    0%, 100% { opacity: .55 }
    50% { opacity: 1 }
}

@keyframes hunt-live-dot-pulse {
    0%, 100% { opacity: .45; transform: scale(.92); box-shadow: 0 0 8px rgba(123,211,152,.35) }
    50% { opacity: 1; transform: scale(1); box-shadow: 0 0 14px rgba(123,211,152,.8) }
}

.hunt-stage {
    position: relative;
    min-height: 670px;
    perspective: 1400px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hunt-glow {
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(241,170,50,.16),transparent 66%);
    filter: blur(25px)
}

.hunt-map-route {
    position: absolute;
    inset: 10% 6%;
    opacity: .25;
    transform: rotate(-7deg)
}

.hunt-map-route:before,.hunt-map-route:after {
    content: none;
    display: none;
}

.hunt-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(410px,72%);
    height: 560px;
    transform: translate(-50%,-50%) rotateX(0deg) rotateY(-7deg) rotateZ(-2.5deg);
    transform-style: preserve-3d;
    overflow: hidden;
    box-shadow: 0 55px 110px rgba(0,0,0,.55);
    background: #25211c
}

.hunt-card-back {
    background: #211d19;
    transition: transform .4s ease
}

.hunt-card.back-2 {
    transform: translate(-43%,-48%) rotate(7deg) scale(.96);
    opacity: .5
}

.hunt-card.back-1 {
    transform: translate(-47%,-50%) rotate(3deg) scale(.985);
    opacity: .72
}

.hunt-main-card {
    will-change: transform;
    transition: transform .35s cubic-bezier(.2,.8,.2,1),opacity .35s
}

.hunt-main-card.swipe-right {
    transform: translate3d(calc(var(--card-x,0px) + 0px),calc(var(--card-y,0px) + 0px),0) translate(45%,-58%) rotate(14deg);
    opacity: 0
}

.hunt-main-card.swipe-right {
    transform: translate(45%,-58%) rotate(14deg);
    opacity: 0
}

.hunt-main-card.swipe-left {
    transform: translate(-145%,-52%) rotate(-18deg);
    opacity: 0
}

.hunt-photo {
    position: absolute;
    inset: 0;
    background: center/cover
}

.hunt-photo-1 {
    background-image: url('/images/site/landing/hero.jpg')
}

.hunt-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,rgba(0,0,0,.05),transparent 43%,rgba(0,0,0,.86))
}

.hunt-card-info {
    position: absolute;
    left: 27px;
    right: 27px;
    bottom: 27px;
    z-index: 2
}

.hunt-tag {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #c9c0b3
}

.hunt-card h4 {
    font-family: var(--display);
    font-size: 42px;
    line-height: .92;
    letter-spacing: -.055em;
    margin: 9px 0
}

.hunt-card p {
    margin: 0;
    color: #aaa197;
    font-size: 12px
}

.hunt-actions {
    position: absolute;
    bottom: 16px;
    display: flex;
    gap: 12px;
    z-index: 10
}

.hunt-actions button {
    width: 58px;
    height: 58px;
    border: 0;
    background: #f3eee6;
    color: #111;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0,0,0,.28)
}

.hunt-actions button:last-child {
    background: var(--gold);
    color: #111
}

.hunt-route-pill {
    position: absolute;
    right: -4%;
    bottom: 17%;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    background: #f3eee6;
    color: #111;
    box-shadow: 0 25px 50px rgba(0,0,0,.34);
    opacity: 0;
    transform: translateY(15px);
    transition: .35s
}

.hunt-route-pill.show {
    opacity: 1;
    transform: none
}

.hunt-route-pill strong {
    font-family: var(--display);
    font-size: 17px
}

.hunt-route-pill span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #6d675f
}

.hunt-route-pill b {
    font-size: 20px;
    color: #ad6a13
}

/* BILL SCENE */
.bill-table-scene {
    background-image: linear-gradient(to top,rgba(0,0,0,.66),rgba(0,0,0,.1)),url('/images/site/landing/bill-table.png');
    background-position: center,var(--parallax-y) center
}

.table-product {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eee8de;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    background: rgba(15,15,14,.7);
    padding: 9px 11px;
    backdrop-filter: blur(9px)
}

.table-product small {
    font-size: 9px;
    color: #b5ada2
}

.product-beer {
    left: 8%;
    top: 18%
}

.product-pizza {
    right: 8%;
    top: 31%
}

.product-music {
    left: 18%;
    bottom: 20%
}

.product-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 24px
}

.glass:before {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 11px;
    height: 16px;
    border: 1px solid #d9ad68;
    border-top: 0
}

.glass:after {
    content: "";
    position: absolute;
    left: 9px;
    bottom: 1px;
    width: 7px;
    height: 1px;
    background: #d9ad68
}

.pizza-icon:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 5px;
    width: 20px;
    height: 13px;
    border: 1px solid #d9ad68;
    border-radius: 50% 50% 7px 7px;
    transform: rotate(-17deg)
}

.pizza-icon:after {
    content: "";
    position: absolute;
    left: 9px;
    top: 8px;
    width: 4px;
    height: 4px;
    background: #d9ad68;
    border-radius: 50%;
    box-shadow: 6px 4px 0 #d9ad68
}

.plate-icon:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 8px;
    width: 20px;
    height: 7px;
    border: 1px solid #d9ad68;
    border-radius: 50%
}

.plate-icon:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 12px;
    width: 12px;
    height: 1px;
    background: #d9ad68
}

.table-total-float {
    position: absolute;
    right: 7%;
    bottom: 18%;
    z-index: 3;
    padding: 14px 16px;
    background: #f3eee5;
    color: #111;
    min-width: 145px;
    box-shadow: 0 20px 50px rgba(0,0,0,.35)
}

.table-total-float span,.table-total-float small {
    display: block;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #736c64
}

.table-total-float strong {
    display: block;
    font-family: var(--display);
    font-size: 30px;
    letter-spacing: -.06em;
    margin: 3px 0
}

/* phone depth */
.device-scene {
    --phone-glow-x: 50%;
    --phone-glow-y: 35%
}

.device-scene:after {
    content: "";
    position: absolute;
    width: 420px;
    height: 520px;
    right: 10%;
    top: 10%;
    background: radial-gradient(circle at var(--phone-glow-x) var(--phone-glow-y),rgba(241,170,50,.18),transparent 55%);
    filter: blur(25px);
    pointer-events: none
}

.phone {
    transform-style: preserve-3d;
    will-change: transform
}

.phone:after {
    content: "";
    position: absolute;
    inset: 20% -14% 5% -14%;
    border-radius: 45%;
    background: radial-gradient(circle at 50% 45%,rgba(0,0,0,.5),transparent 68%);
    filter: blur(24px);
    transform: translateZ(-70px);
    z-index: -1
}

.phone-screen:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--phone-glow-x) var(--phone-glow-y),rgba(255,255,255,.18),transparent 23%);
    pointer-events: none;
    mix-blend-mode: screen
}

.phone-toast {
    transform: translateZ(80px)
}

/* REVEAL */
[data-reveal] {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity .8s ease,transform .8s cubic-bezier(.2,.7,.2,1)
}

[data-reveal].in {
    opacity: 1;
    transform: none
}

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

    .hero-metrics {
        display: none
    }

    .manifesto,.discover-head,.bill-layout,.realtime,.social-head,.hunt-wrap {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .flow-row {
        grid-template-columns: 1fr
    }

    .flow-step,.flow-step:not(:first-child) {
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(21,20,18,.15);
        min-height: auto;
        gap: 50px
    }

    .flow-step:last-child {
        border-bottom: 0
    }

    .story-grid {
        grid-template-columns: 1fr
    }

    .bill-demo {
        position: static
    }

    .story-photo {
        min-height: 540px
    }

    .split-wrap {
        max-width: none
    }

    .device-scene {
        min-height: 600px
    }

    .phone-toast {
        right: 4vw
    }

    .hunt-stage {
        min-height: 610px
    }

    .hunt-card {
        height: 500px
    }

    .hunt-route-pill {
        right: 0
    }

    .stream {
        grid-template-columns: 1fr
    }

    .stream-main {
        grid-row: auto;
        min-height: 440px
    }
}

@media(max-width: 650px) {
    .navbar {
        height:68px;
        padding: 0 20px
    }

    .nav-cta {
        display: none
    }

    .hero-content {
        padding: 0 20px 55px
    }

    .hero h1 {
        font-size: 62px
    }

    .hero-intro {
        font-size: 15px
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column
    }

    .text-link {
        margin-left: 2px
    }

    .manifesto,.discover,.flow,.bill,.realtime,.social {
        padding-left: 20px;
        padding-right: 20px
    }

    .manifesto {
        padding-top: 90px;
        padding-bottom: 90px
    }

    .discover {
        padding-top: 95px
    }

    .discover-head {
        padding-left: 0;
        padding-right: 0
    }

    .vibes {
        padding: 70px 20px 120px
    }

    .vibe {
        font-size: 48px
    }

    .vibe-field {
        min-height: 600px
    }

    .vibe-note {
        left: 20px
    }

    .flow {
        padding-top: 95px;
        padding-bottom: 95px
    }

    .flow-head {
        margin-bottom: 60px
    }

    .bill {
        padding-top: 95px;
        padding-bottom: 100px
    }

    .bill-photo {
        height: 470px
    }

    .bill-copy h3 {
        font-size: 39px
    }

    .bill-total strong {
        font-size: 40px
    }

    .realtime {
        padding-top: 95px;
        padding-bottom: 95px
    }

    .device-scene {
        min-height: 520px
    }

    .phone {
        transform: rotateY(-10deg) rotateZ(3deg) scale(.92)
    }

    .phone-toast {
        right: -12px;
        bottom: 30px
    }

    .hunt-wrap {
        padding-top: 95px;
        padding-bottom: 105px
    }

    .hunt-stage {
        min-height: 560px
    }

    .hunt-card {
        height: 470px;
        width: 78%
    }

    .hunt-route-pill {
        right: 1%;
        bottom: 13%
    }

    .social {
        padding-top: 95px;
        padding-bottom: 95px
    }

    .stream-main h3 {
        font-size: 38px
    }

    .final {
        min-height: 650px
    }

    .final h2 {
        font-size: 66px
    }

    footer {
        padding: 25px 20px;
        flex-direction: column;
        gap: 18px;
        align-items: flex-start
    }
}

/* V5 — deeper interaction + smart bill + after hunt */
.smart-bill {
    margin-top: 24px;
    max-width: 500px;
    padding: 22px 22px 18px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid rgba(21,20,18,.08);
    box-shadow: 0 24px 60px rgba(0,0,0,.28)
}

.smart-bill-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 0 0 14px
}

.mini-label {
    display: block;
    color: #6f695f;
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.smart-bill-head strong {
    display: block;
    margin-top: 6px;
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: -.045em;
    color: var(--ink)
}

.live-badge {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #2f6b40;
    padding-bottom: 3px
}

.bill-order {
    border-top: 1px solid rgba(17,17,15,.12)
}

.bill-order-row {
    display: grid;
    grid-template-columns: 1.5fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(17,17,15,.1)
}

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

.order-info strong,.order-info small {
    display: block
}

.order-info strong {
    font-size: 13px;
    color: var(--ink)
}

.order-info small {
    margin-top: 3px;
    color: #6f695f;
    font-size: 9px
}

.order-icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px
}

.beer-icon:before {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    width: 13px;
    height: 16px;
    border: 1px solid #ae7416;
    border-radius: 2px 2px 5px 5px
}

.beer-icon:after {
    content: '';
    position: absolute;
    left: 20px;
    top: 8px;
    width: 5px;
    height: 8px;
    border: 1px solid #ae7416;
    border-left: 0;
    border-radius: 0 4px 4px 0
}

.pizza-line-icon:before {
    content: '';
    position: absolute;
    left: 3px;
    top: 6px;
    width: 21px;
    height: 15px;
    border: 1px solid #ae7416;
    border-radius: 60% 60% 35% 35%;
    transform: rotate(-13deg)
}

.pizza-line-icon:after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    left: 9px;
    top: 10px;
    border-radius: 50%;
    background: #ae7416;
    box-shadow: 7px 3px 0 #ae7416
}

.plate-line-icon:before {
    content: '';
    position: absolute;
    left: 3px;
    top: 8px;
    width: 21px;
    height: 8px;
    border: 1px solid #ae7416;
    border-radius: 50%
}

.plate-line-icon:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 12px;
    width: 13px;
    height: 1px;
    background: #ae7416
}

.drink-line-icon:before {
    content: '';
    position: absolute;
    left: 7px;
    top: 5px;
    width: 14px;
    height: 14px;
    border: 1px solid #ae7416;
    border-radius: 2px 2px 6px 6px
}

.drink-line-icon:after {
    content: '';
    position: absolute;
    left: 3px;
    top: 2px;
    width: 22px;
    height: 1px;
    background: #ae7416;
    transform: rotate(18deg)
}

.participant-picker {
    display: flex;
    gap: 5px;
    justify-content: flex-end
}

.avatar-choice {
    width: 29px;
    height: 29px;
    border: 1px solid #a89f94;
    background: #f7f2ea;
    color: #4f4942;
    font-size: 8px;
    font-weight: 700;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s
}

.avatar-choice.active {
    background: #151412;
    color: #fff;
    border-color: #151412;
    box-shadow: 0 4px 0 #d9b272
}

.avatar-choice:hover {
    transform: translateY(-2px)
}

.avatar-choice:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px
}

.item-split {
    text-align: right;
    min-width: 70px
}

.item-split span {
    display: block;
    font-family: var(--display);
    font-size: 12px;
    color: var(--ink)
}

.item-split small {
    color: #6f695f;
    font-size: 8px
}

.bill-instruction {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    color: #5c564e
}

.instruction-cursor {
    width: 23px;
    height: 23px;
    border: 1px solid #9f968b;
    display: grid;
    place-items: center;
    font-size: 16px;
    color: var(--ink)
}

.bill-instruction strong {
    display: block;
    font-size: 11px;
    color: var(--ink)
}

.bill-instruction small {
    display: block;
    margin-top: 2px;
    font-size: 9px;
    color: #6f695f
}

.member-totals {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin-top: 4px
}

.member-total {
    display: grid;
    grid-template-columns: 29px 1fr;
    gap: 8px;
    align-items: center;
    padding: 11px 9px;
    background: #ebe4d8;
    border: 1px solid rgba(21,20,18,.06);
    color: var(--ink)
}

.member-avatar {
    grid-row: span 2;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #1b1917;
    color: #fff;
    font-size: 8px;
    font-weight: 700
}

.member-avatar.cl {
    background: #6a5342
}

.member-avatar.lu {
    background: #435f4b
}

.member-total strong,.member-total small {
    display: block
}

.member-total strong {
    font-size: 10px;
    color: var(--ink)
}

.member-total small {
    margin-top: 2px;
    font-size: 7px;
    color: #5f5850;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.member-total b {
    grid-column: 2;
    font-family: var(--display);
    font-size: 13px;
    color: var(--ink)
}

.smart-bill-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0 3px;
    color: var(--ink)
}

.smart-bill-footer span {
    display: block;
    color: #6f695f;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.smart-bill-footer strong {
    display: block;
    font-family: var(--display);
    font-size: 29px;
    letter-spacing: -.055em;
    margin-top: 3px;
    color: var(--ink)
}

.smart-bill-footer label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #5c564e;
    font-size: 9px
}

.smart-bill-footer output {
    font-weight: 700;
    color: #181613
}

.smart-bill-footer input {
    width: 100px;
    accent-color: #151412
}

@media(max-width: 650px) {
    .bill-order-row {
        grid-template-columns:1fr auto
    }

    .item-split {
        grid-column: 2
    }

    .member-totals {
        grid-template-columns: 1fr
    }

    .smart-bill-footer {
        align-items: flex-start;
        gap: 18px;
        flex-direction: column
    }

    .smart-bill-footer input {
        width: 150px
    }
}

.hunt-wrap {
    position: relative;
    overflow: hidden
}

.hunt-stage {
    overflow: visible
}

.hunt-driver-photo {
    position: absolute;
    inset: 5% -4% 8% 3%;
    background: linear-gradient(90deg,rgba(17,17,15,.88),rgba(17,17,15,.15)),url('/images/site/landing/hunt-driver.png') center/cover;
    opacity: .55;
    filter: saturate(.65) contrast(1.05);
    transform: translate3d(calc((var(--mx) - 50vw)*.012),calc((var(--my) - 50vh)*.008),0) scale(1.08);
    will-change: transform
}

.hunt-driver-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 45%,rgba(241,170,50,.12),transparent 30%),linear-gradient(90deg,#11110f 2%,rgba(17,17,15,.7) 38%,rgba(17,17,15,.1) 75%,#11110f 100%);
    pointer-events: none
}

.hunt-status {
    position: absolute;
    left: 5%;
    top: 8%;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d5cdc1;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .14em
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    box-shadow: 0 0 12px rgba(139,207,160,.8)
}

.hunt-driver-copy {
    position: absolute;
    left: 4%;
    bottom: 10%;
    z-index: 15;
    max-width: 230px;
    color: #fff;
    text-shadow: 0 12px 35px rgba(0,0,0,.5)
}

.hunt-driver-copy span {
    display: block;
    color: #bdb3a5;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .16em
}

.hunt-driver-copy strong {
    display: block;
    margin-top: 6px;
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: -.045em
}

.hunt-driver-copy small {
    display: block;
    margin-top: 5px;
    color: #aaa095;
    font-size: 10px;
    line-height: 1.5
}

.hunt-map-route {
    z-index: 3;
    inset: 8% 3% 9% auto;
    width: 58%;
    opacity: .8;
    transform: rotate(-4deg) translateZ(-20px);
    pointer-events: none
}

.route-road {
    position: absolute;
    border: 1px solid rgba(236,226,213,.08)
}

.r1 {
    inset: 15% 4%;
    transform: rotate(9deg)
}

.r2 {
    inset: 30% 12%;
    transform: rotate(-14deg)
}

.r3 {
    inset: 4% 22%;
    transform: rotate(24deg)
}

.route-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible
}

.route-line path {
    fill: none;
    stroke: #f1aa32;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 18 12;
    filter: drop-shadow(0 0 10px rgba(241,170,50,.25));
    animation: routeFlow 3s linear infinite
}

@keyframes routeFlow {
    to {
        stroke-dashoffset: -60
    }
}

.route-pin {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 2px solid #151412;
    background: #f1aa32
}

.route-pin.start {
    left: 12%;
    bottom: 8%;
    border-radius: 50%
}

.route-pin.end {
    right: 4%;
    top: 12%;
    transform: rotate(45deg)
}

.route-label {
    position: absolute;
    right: 5%;
    top: 4%;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #c6bcaf
}

.hunt-like-stamp,.hunt-nope-stamp {
    position: absolute;
    top: 40px;
    z-index: 5;
    padding: 8px 12px;
    border: 2px solid currentColor;
    font-family: var(--display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    opacity: 0
}

.hunt-like-stamp {
    right: 25px;
    color: #9ad6a9;
    transform: rotate(8deg)
}

.hunt-nope-stamp {
    left: 25px;
    color: #f2d7af;
    transform: rotate(-8deg)
}

.hunt-main-card.swipe-right .hunt-like-stamp {
    opacity: 1
}

.hunt-main-card.swipe-left .hunt-nope-stamp {
    opacity: 1
}

.hunt-card {
    z-index: 6
}

.hunt-route-pill {
    z-index: 20
}

.hunt-open-map {
    position: absolute;
    z-index: 20;
    right: 2%;
    bottom: 4%;
    padding: 9px 11px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(17,17,15,.7);
    color: #e9e1d6;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    backdrop-filter: blur(8px);
    cursor: pointer
}

.hunt-open-map span {
    color: var(--gold);
    margin-left: 5px
}

.hunt-stage.route-open .hunt-card {
    transform: translate(-50%,-50%) rotateY(-16deg) rotateZ(-4deg) translateX(-15%);
    transition: transform .55s cubic-bezier(.2,.8,.2,1)
}

.hunt-stage.route-open .hunt-map-route {
    opacity: 1;
    transform: rotate(-4deg) translateX(13%) scale(1.1);
    transition: .55s
}

.route-mini-icon {
    width: 22px;
    height: 22px;
    border-left: 2px solid #ae6a13;
    border-bottom: 2px solid #ae6a13;
    transform: skew(-15deg)
}

/* V8 — robust Caça-Rolê deck */
.hunt-stage-v8 {
    isolation: isolate;
    overflow: hidden;
    touch-action: none
}

.hunt-stage-v8 .hunt-driver-photo {
    z-index: 0;
    pointer-events: none
}

.hunt-stage-v8 .hunt-driver-overlay {
    z-index: 1
}

.hunt-stage-v8 .hunt-glow {
    z-index: 1;
    pointer-events: none
}

.hunt-stage-v8 .hunt-map-route {
    z-index: 2;
    pointer-events: none;
    transition: opacity .45s ease,transform .55s cubic-bezier(.2,.8,.2,1)
}

.hunt-deck {
    position: absolute;
    z-index: 8;
    left: 50%;
    top: 50%;
    width: min(430px,42vw);
    height: 570px;
    transform: translate(-50%,-50%);
    perspective: 1600px;
    pointer-events: none
}

.hunt-card-stack,.hunt-choice-card {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #211f1b;
    box-shadow: 0 45px 100px rgba(0,0,0,.42);
    border: 1px solid rgba(255,255,255,.08);
    pointer-events: none
}

.hunt-card-stack {
    transition: transform .5s cubic-bezier(.2,.8,.2,1),opacity .5s ease;
}

.hunt-card-stack:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,rgba(255,255,255,.06),transparent 35%);
    z-index: 2
}

.hunt-card-stack.card-far {
    transform: translate3d(58px,28px,-160px) rotateZ(8deg) scale(.88);
    opacity: .22
}

.hunt-card-stack.card-mid {
    transform: translate3d(34px,14px,-85px) rotateZ(4.5deg) scale(.94);
    opacity: .48
}

.hunt-choice-card.card-main {
    cursor: grab;
    transform: translate3d(0,0,40px) rotateY(-7deg) rotateX(1deg) rotateZ(-2.5deg);
    transform-style: preserve-3d;
    will-change: transform,opacity;
    pointer-events: auto;
    transition: transform .48s cubic-bezier(.2,.8,.2,1),opacity .35s ease,box-shadow .35s ease
}

.hunt-choice-card.card-main:hover {
    box-shadow: 0 55px 125px rgba(0,0,0,.55)
}

.hunt-choice-card.card-main.is-dragging {
    cursor: grabbing;
    transition: none;
    box-shadow: 0 35px 95px rgba(0,0,0,.58)
}

.hunt-photo {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transition: transform .45s ease,filter .45s ease
}

.hunt-card-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
    pointer-events: none
}

.hunt-card-shade {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(180deg,rgba(4,4,4,.02) 20%,rgba(4,4,4,.12) 42%,rgba(4,4,4,.9) 100%);
    pointer-events: none
}

.hunt-card-info {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 6;
    color: #f5eee4
}

.hunt-card-info .hunt-tag {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #e2d3bf
}

.hunt-card-info h4 {
    font-family: var(--display);
    font-size: 43px;
    line-height: .9;
    letter-spacing: -.06em;
    margin: 10px 0 8px
}

.hunt-card-info .hunt-meta {
    font-size: 12px;
    color: #c2b8ab;
    margin: 0;
    line-height: 1.45
}

.hunt-card-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.18);
    font-size: 10px;
    color: #c5bcb0;
    text-transform: uppercase;
    letter-spacing: .12em
}

.hunt-card-bottom span:last-child {
    color: #e1ad58
}

.hunt-like-stamp,.hunt-nope-stamp {
    position: absolute;
    top: 32px;
    z-index: 6;
    padding: 8px 12px;
    border: 2px solid currentColor;
    font-family: var(--display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    opacity: 0;
    transition: opacity .15s ease
}

.hunt-like-stamp {
    right: 25px;
    color: #9ad6a9;
    transform: rotate(8deg)
}

.hunt-nope-stamp {
    left: 25px;
    color: #f0d2a7;
    transform: rotate(-8deg)
}

.hunt-choice-card.card-main.drag-right .hunt-like-stamp {
    opacity: 1
}

.hunt-choice-card.card-main.drag-left .hunt-nope-stamp {
    opacity: 1
}

.hunt-drag-hint {
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.6);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .13em;
    writing-mode: vertical-rl;
    transition: opacity .25s
}

.hunt-drag-hint span {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,.4)
}

.hunt-choice-card.card-main.is-chosen {
    pointer-events: none
}

.hunt-choice-card.card-main.exit-right {
    transform: translate3d(120%, -8%, 70px) rotate(18deg);
    opacity: 0
}

.hunt-choice-card.card-main.exit-left {
    transform: translate3d(-120%, -3%, 70px) rotate(-18deg);
    opacity: 0
}

.hunt-next-peek {
    position: absolute;
    z-index: 12;
    left: calc(50% + min(200px,21vw));
    top: calc(50% + 245px);
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 9px 11px;
    background: rgba(17,17,15,.68);
    backdrop-filter: blur(8px);
    color: #d8cfc2;
    opacity: .85;
    pointer-events: none;
    transition: transform .35s ease,opacity .35s ease
}

.hunt-next-peek span {
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #9e958a
}

.hunt-next-peek strong {
    font-family: var(--display);
    font-size: 14px;
    line-height: 1
}

.hunt-choice-counter {
    position: absolute;
    z-index: 14;
    left: calc(50% - min(290px,29vw));
    top: calc(50% - 278px);
    display: flex;
    align-items: center;
    gap: 9px;
    color: #bbb1a5;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .13em
}

.hunt-choice-counter i {
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,.2)
}

.hunt-actions {
    position: absolute;
    z-index: 18;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 14px
}

.hunt-actions button {
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(243,238,230,.94);
    color: #171513;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(0,0,0,.34);
    transition: transform .2s ease,box-shadow .2s ease
}

.hunt-actions button:last-child {
    background: var(--gold)
}

.hunt-actions button:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(0,0,0,.44)
}

.hunt-route-pill {
    right: 3%;
    bottom: 15%;
    z-index: 20
}

.hunt-open-map {
    right: 3%;
    bottom: 6%;
    z-index: 20
}

.hunt-dest-badge {
    position: absolute;
    z-index: 20;
    right: 4%;
    top: 9%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(243,238,230,.93);
    color: #171513;
    box-shadow: 0 20px 48px rgba(0,0,0,.3);
    opacity: .78;
    transform: translateY(-4px);
    transition: .35s
}

.hunt-dest-badge .dest-pin {
    width: 11px;
    height: 11px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(241,170,50,.12)
}

.hunt-dest-badge small {
    display: block;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #777066
}

.hunt-dest-badge strong {
    display: block;
    margin-top: 3px;
    font-family: var(--display);
    font-size: 14px;
    line-height: 1
}

.hunt-stage-v8.route-open .hunt-card-stack.card-mid {
    transform: translate3d(120px,22px,-85px) rotateZ(8deg) scale(.94);
    opacity: .26
}

.hunt-stage-v8.route-open .hunt-card-stack.card-far {
    opacity: .12
}

.hunt-stage-v8.route-open .hunt-choice-card.card-main {
    transform: translate3d(-72px,0,70px) rotateY(-14deg) rotateZ(-4deg);
    box-shadow: 0 60px 130px rgba(0,0,0,.62)
}

.hunt-stage-v8.route-open .hunt-map-route {
    opacity: 1;
    transform: rotate(-4deg) translate3d(75px,0,0) scale(1.08)
}

.hunt-stage-v8.route-open .hunt-dest-badge {
    opacity: 1;
    transform: none
}

.hunt-stage-v8.route-open .hunt-drag-hint {
    opacity: 0
}

@media(max-width: 950px) {
    .hunt-deck {
        width:min(430px,64vw)
    }

    .hunt-next-peek {
        left: auto;
        right: 7%;
        top: auto;
        bottom: 170px
    }

    .hunt-choice-counter {
        left: 7%;
        top: 10%
    }
}

@media(max-width: 650px) {
    .hunt-stage-v8 {
        min-height:620px
    }

    .hunt-deck {
        width: min(360px,80vw);
        height: 475px
    }

    .hunt-choice-card.card-main {
        transform: translate3d(0,0,25px) rotateY(-5deg) rotateZ(-1.5deg)
    }

    .hunt-card-info h4 {
        font-size: 36px
    }

    .hunt-card-info {
        left: 20px;
        right: 20px;
        bottom: 20px
    }

    .hunt-next-peek {
        right: 5%;
        bottom: 145px
    }

    .hunt-route-pill {
        right: 4%;
        bottom: 105px
    }

    .hunt-open-map {
        right: 4%;
        bottom: 55px
    }

    .hunt-dest-badge {
        right: 4%;
        top: 12%
    }

    .hunt-driver-copy {
        left: 5%;
        bottom: 6%
    }

    .hunt-actions {
        bottom: 10px
    }

    .hunt-actions button {
        width: 54px;
        height: 54px
    }
}

/* V9 — mapa real do Leaflet + rota cinematográfica */
.hunt-map-route {
    z-index: 3!important;
    inset: 8% 3%!important;
    opacity: .68!important;
    transform: none!important;
    overflow: hidden!important;
    background: #111!important;
    box-shadow: 0 30px 80px rgba(0,0,0,.32);
    border: 1px solid rgba(245,240,231,.12);
    transition: opacity .45s ease,transform .6s cubic-bezier(.2,.8,.2,1),filter .45s ease!important;
}

.hunt-stage-v8:not(.route-open) .hunt-map-route {
    opacity: .18!important;
    filter: saturate(.65) brightness(.68);
}

.hunt-stage-v8.route-open .hunt-map-route {
    opacity: 1!important;
    transform: translate3d(80px,0,0) scale(1.04)!important;
    filter: none;
}

.role-leaflet-map {
    position: absolute;
    inset: 0;
    background: #e8e4dc;
}

.role-leaflet-map .leaflet-control-attribution {
    font-size: 7px!important;
    background: rgba(255,255,255,.72)!important;
    color: #666!important;
}

.role-leaflet-map .leaflet-control-attribution a {
    color: #444!important;
}

.role-leaflet-map .leaflet-tile {
    filter: none;
}

.role-leaflet-map .leaflet-control-zoom {
    display: none;
}

.leaflet-route-base {
    stroke: #e8ddce!important;
    stroke-opacity: .16!important;
    stroke-width: 5!important;
}

.leaflet-route-progress {
    stroke: #f1aa32!important;
    stroke-opacity: 1!important;
    stroke-width: 5!important;
    filter: drop-shadow(0 0 9px rgba(241,170,50,.55));
}

.route-map-vignette {
    position: absolute;
    inset: 0;
    z-index: 410;
    pointer-events: none;
    background: radial-gradient(circle at 55% 47%,transparent 25%,rgba(8,8,8,.18) 64%,rgba(8,8,8,.55) 100%),linear-gradient(to top,rgba(7,7,7,.42),transparent 32%);
}

.route-map-ui {
    position: absolute;
    inset: 0;
    z-index: 420;
    pointer-events: none;
}

.route-map-head,
.route-map-controls,
.route-map-mode,
.route-map-start-label,
.route-map-dest-label,
.route-map-kicker,
.route-map-title,
.route-map-meta,
.route-map-chip {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    font: inherit;
    letter-spacing: normal;
    text-transform: none;
    color: inherit;
    line-height: normal;
}

.route-map-head {
    position: absolute;
    left: 18px;
    top: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: min(220px,58%);
    padding: 10px 12px;
    background: rgba(13,13,12,.82);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 38px rgba(0,0,0,.26);
    color: #f4eee5;
}

.route-map-kicker {
    display: block;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #a59b8d;
}

.route-map-title {
    display: block;
    font-family: var(--display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.05;
    color: #f4eee5;
}

.route-map-meta {
    display: block;
    font-size: 9px;
    line-height: 1.4;
    color: #aaa095;
}

.route-map-controls {
    position: absolute;
    right: 15px;
    top: 16px;
    display: flex;
    gap: 7px;
}

.route-map-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 9px;
    background: rgba(243,238,230,.94);
    color: #191715;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    box-shadow: 0 12px 26px rgba(0,0,0,.2);
    white-space: nowrap;
}

.route-map-start-label,
.route-map-dest-label {
    position: absolute;
    padding: 5px 7px;
    background: rgba(10,10,9,.72);
    backdrop-filter: blur(8px);
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #f2eadf;
}

.route-map-start-label {
    left: 24%;
    bottom: 25%;
}

.route-map-dest-label {
    right: 18%;
    top: 26%;
    color: #f1aa32;
}

.route-map-mode {
    position: absolute;
    left: 18px;
    bottom: 16px;
    padding: 6px 9px;
    background: rgba(13,13,12,.78);
    backdrop-filter: blur(10px);
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #c7b897;
}

.route-node {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f3eee7;
    border: 4px solid #111;
    box-shadow: 0 0 0 1px rgba(255,255,255,.25),0 8px 20px rgba(0,0,0,.35);
}

.route-node.user {
    width: 16px;
    height: 16px;
    background: #9cd4a8;
    border-color: #101312;
    box-shadow: 0 0 0 6px rgba(156,212,168,.12),0 10px 26px rgba(0,0,0,.35);
}

.route-node.destination {
    background: #f1aa32;
    box-shadow: 0 0 0 7px rgba(241,170,50,.15),0 0 28px rgba(241,170,50,.5),0 12px 28px rgba(0,0,0,.4);
}

.route-node.ping:after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(241,170,50,.45);
    border-radius: 50%;
    animation: routePing 1.7s ease-out infinite;
}

@keyframes routePing {
    0% {
        transform: scale(.7);
        opacity: .8
    }

    100% {
        transform: scale(1.45);
        opacity: 0
    }
}

@media(max-width: 650px) {
    .hunt-stage-v8.route-open .hunt-map-route {
        transform:translate3d(20px,0,0) scale(1.02)!important
    }

    .hunt-map-route {
        inset: 7% 1%!important
    }

    .route-map-head {
        max-width: 175px
    }

    .route-map-controls {
        top: auto;
        bottom: 12px;
        right: 12px
    }

    .route-map-start-label {
        left: 14%;
        bottom: 22%
    }

    .route-map-dest-label {
        right: 10%;
        top: 22%
    }
}

/* V10 fallback de mapa quando Leaflet/CDN não estiver disponível */
.hunt-stage-v8 .hunt-map-route.map-fallback {
    background: #151716;
}

.hunt-map-fallback {
    position: absolute;
    inset: 0;
    display: none;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%,rgba(241,170,50,.06),transparent 34%), linear-gradient(120deg,transparent 47%,rgba(255,255,255,.055) 47.5%,transparent 48.5%), linear-gradient(35deg,transparent 56%,rgba(255,255,255,.04) 56.5%,transparent 57.5%),#151716;
}

.hunt-map-route.map-fallback .hunt-map-fallback {
    display: block;
}

.hunt-map-route.map-fallback .role-leaflet-map {
    display: none;
}

.hunt-map-fallback::before,.hunt-map-fallback::after {
    content: "";
    position: absolute;
    inset: -20%;
    background-image: linear-gradient(0deg,transparent 49%,rgba(255,255,255,.035) 49.4%,transparent 50.2%),linear-gradient(90deg,transparent 49%,rgba(255,255,255,.035) 49.4%,transparent 50.2%);
    background-size: 90px 90px;
    transform: rotate(-10deg);
}

.hunt-map-fallback svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hunt-map-fallback .fallback-road {
    fill: none;
    stroke: rgba(239,236,227,.09);
    stroke-width: 20;
    stroke-linecap: round;
}

.hunt-map-fallback .fallback-road.thin {
    stroke-width: 10;
    stroke: rgba(239,236,227,.06);
}

.hunt-map-fallback .fallback-route {
    fill: none;
    stroke: #f1aa32;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(241,170,50,.5));
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
}

.hunt-stage-v8.route-open .hunt-map-fallback .fallback-route {
    animation: fallbackRoute 1.25s cubic-bezier(.2,.75,.2,1) forwards;
}

@keyframes fallbackRoute {
    to {
        stroke-dashoffset: 0;
    }
}

.fallback-node {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%,-50%);
    border: 3px solid #111;
    background: #f4eee5;
    box-shadow: 0 0 0 5px rgba(255,255,255,.08);
}

.fallback-node.user {
    left: 23%;
    top: 73%;
    background: #9cd4a8;
    box-shadow: 0 0 0 7px rgba(156,212,168,.11),0 0 20px rgba(156,212,168,.25);
}

.fallback-node.dest {
    left: 78%;
    top: 25%;
    background: #f1aa32;
    box-shadow: 0 0 0 7px rgba(241,170,50,.15),0 0 25px rgba(241,170,50,.38);
}

.fallback-city-label {
    position: absolute;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(244,238,229,.4);
}

.fallback-city-1 {
    left: 15%;
    top: 38%
}

.fallback-city-2 {
    left: 47%;
    top: 64%
}

.fallback-city-3 {
    right: 11%;
    top: 47%
}

/* V11 — mapa robusto: fallback sempre disponível + Leaflet como enhancement */
.hunt-map-route {
    z-index: 6!important;
    background: #151716!important;
}

.hunt-map-fallback {
    display: block!important;
    z-index: 1;
    transition: opacity .35s ease,filter .35s ease;
}

.role-leaflet-map {
    z-index: 2;
    opacity: 0;
    transition: opacity .35s ease;
}

.hunt-map-route.leaflet-ready .hunt-map-fallback {
    opacity: 0;
    pointer-events: none;
}

.hunt-map-route.leaflet-ready .role-leaflet-map {
    opacity: 1;
}

.hunt-stage-v8.route-open .hunt-map-route {
    opacity: 1!important;
    inset: 7% 2% 7% 27%!important;
    transform: none!important;
    filter: none!important;
    box-shadow: 0 34px 90px rgba(0,0,0,.46);
}

.hunt-stage-v8.route-open .hunt-deck {
    z-index: 8;
    transform: translate(calc(-50% - 255px),-50%) scale(.84);
    transform-origin: center;
}

.hunt-stage-v8.route-open .hunt-card-stack.card-mid {
    opacity: .18;
}

.hunt-stage-v8.route-open .hunt-card-stack.card-far {
    opacity: .08;
}

.hunt-stage-v8.route-open .hunt-route-pill {
    right: 4%;
    bottom: 5%;
}

@media(max-width: 950px) {
    .hunt-stage-v8.route-open .hunt-map-route {
        inset:8% 2% 8% 18%!important;
    }

    .hunt-stage-v8.route-open .hunt-deck {
        transform: translate(calc(-50% - 125px),-50%) scale(.72);
    }
}

@media(max-width: 650px) {
    .hunt-stage-v8.route-open .hunt-map-route {
        inset:10% 3% 25% 3%!important;
    }

    .hunt-stage-v8.route-open .hunt-deck {
        transform: translate(-50%,-50%) scale(.67);
        opacity: .98;
    }
}

/* V12 — correção definitiva de composição do mapa */
.hunt-stage-v8 {
    isolation: isolate;
    overflow: hidden;
}

.hunt-stage-v8 .hunt-map-route {
    z-index: 30!important;
    isolation: isolate!important;
    visibility: visible!important;
    display: block!important;
    pointer-events: none!important;
}

.hunt-stage-v8:not(.route-open) .hunt-map-route {
    z-index: 4!important;
    opacity: .16!important;
}

.hunt-stage-v8.route-open .hunt-map-route {
    z-index: 55!important;
    opacity: 1!important;
    visibility: visible!important;
    display: block!important;
    inset: 7% 2% 7% 27%!important;
    transform: none!important;
    background: #e8e4dc!important;
}

.hunt-stage-v8.route-open .hunt-deck {
    z-index: 20!important;
}

.hunt-stage-v8.route-open .hunt-map-route .hunt-map-fallback {
    display: block!important;
    visibility: visible!important;
    opacity: 1!important;
    z-index: 1!important;
}

.hunt-stage-v8.route-open .hunt-map-route .role-leaflet-map {
    display: block!important;
    visibility: visible!important;
    opacity: 1!important;
    z-index: 2!important;
}

.hunt-stage-v8.route-open .hunt-map-route.leaflet-ready .hunt-map-fallback {
    opacity: 0!important;
    visibility: hidden!important;
    pointer-events: none!important;
}

.hunt-stage-v8.route-open .hunt-map-route.leaflet-ready .role-leaflet-map {
    opacity: 1!important;
    visibility: visible!important;
}

.hunt-map-fallback {
    z-index: 1!important;
}

.hunt-map-fallback svg {
    z-index: 3;
}

.hunt-map-fallback::before,.hunt-map-fallback::after {
    z-index: 0;
    pointer-events: none;
}

.hunt-map-route .route-map-vignette {
    z-index: 410!important;
}

.hunt-map-route .route-map-ui {
    z-index: 420!important;
}

/* V17 — refinement layer */
.discover {
    position: relative
}

.discover-head {
    position: relative;
    z-index: 2
}

.city-scene {
    cursor: grab
}

.city-scene:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--mx,50%) var(--my,40%),rgba(241,170,50,.08),transparent 26%);
    mix-blend-mode: screen;
    z-index: 4
}

.search-orb {
    width: min(560px,78vw);
    padding: 22px 22px 18px
}

.search-orb-text {
    font-size: clamp(20px,2.4vw,32px);
    max-width: 520px
}

.search-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px
}

.search-prompt {
    appearance: none;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.035);
    color: #d7d0c5;
    padding: 9px 12px;
    font: inherit;
    font-size: 10px;
    letter-spacing: .06em;
    cursor: pointer;
    transition: transform .25s ease,background .25s ease,border-color .25s ease,color .25s ease
}

.search-prompt:hover,.search-prompt.active {
    transform: translateY(-2px);
    background: rgba(241,170,50,.12);
    border-color: rgba(241,170,50,.45);
    color: #fff
}

.search-orb-meta span {
    transition: color .2s ease
}

.vibe-float {
    opacity: .55
}

.vibe-float.is-active,
.vibe-float:hover {
    opacity: 1
}

.vibe-float.is-active {
    border-left-color: var(--gold);
    color: #fff;
    background: rgba(20,20,18,.78)
}

.city-scene.vibe-switch .city-back {
    animation: vibeCityBack .65s cubic-bezier(.2,.8,.2,1)
}

.city-scene.vibe-switch .map-pin.active {
    animation: vibePin .55s cubic-bezier(.2,.8,.2,1)
}

@keyframes vibeCityBack {
    0% {
        filter: saturate(.62) contrast(1.04);
        transform: scale(1.1) translateX(0)
    }

    45% {
        filter: saturate(.95) contrast(1.08);
        transform: scale(1.14) translateX(12px)
    }

    100% {
        filter: saturate(.62) contrast(1.04);
        transform: scale(1.1) translateX(0)
    }
}

@keyframes vibePin {
    0% {
        opacity: .55;
        transform: translate3d(var(--pin-x),calc(var(--pin-y) + 10px),0) scale(.88)
    }

    70% {
        transform: translate3d(var(--pin-x),calc(var(--pin-y) - 8px),0) scale(1.08)
    }

    100% {
        opacity: 1;
        transform: translate3d(var(--pin-x),var(--pin-y),0) scale(1)
    }
}

.manifesto .stateline span {
    transition: transform .25s ease,color .25s ease
}

.manifesto .stateline span:hover {
    transform: translateY(-3px);
    color: var(--gold)
}

.flow-step {
    position: relative;
    transition: transform .3s ease,background .3s ease
}

.flow-step:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .35s ease
}

.flow-step:hover {
    transform: translateX(6px);
    background: rgba(255,255,255,.025)
}

.flow-step:hover:after {
    width: 100%
}

.bill-order-row {
    transition: background .22s ease,transform .22s ease
}

.smart-bill .bill-order-row:hover {
    background: rgba(21,20,18,.03);
    transform: translateX(4px)
}

.member-total {
    transition: transform .22s ease,background .22s ease
}

.member-total:hover {
    transform: translateX(4px);
    background: #e3dccf
}

.smart-bill-footer label {
    position: relative
}

.smart-bill-footer input[type=range] {
    accent-color: var(--gold)
}

.stream > * {
    transition: transform .35s ease
}

.stream > *:hover {
    transform: translateY(-4px)
}

.stream-main:hover {
    background-position: center 46%
}

.final .button {
    position: relative;
    overflow: hidden
}

.final .button:after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(110deg,transparent,rgba(255,255,255,.22),transparent);
    transition: transform .7s ease
}

.final .button:hover:after {
    transform: translateX(120%)
}

@media (max-width: 800px) {
    .search-orb {
        width:88vw
    }

    .search-prompts {
        max-width: 85vw
    }

    .search-prompt {
        font-size: 9px
    }

    .city-scene {
        min-height: 640px
    }

    .pin-avatar {
        width: 50px;
        height: 50px
    }

    .pin-icon {
        width: 22px;
        height: 22px
    }

    .mp1,.mp2,.mp4 {
        top: 24%
    }

    .mp3 {
        top: 48%
    }

    .vf2 {
        display: none
    }

    .hunt-wrap {
        grid-template-columns: 1fr
    }

    .social-head {
        grid-template-columns: 1fr
    }

    .stream {
        grid-template-columns: 1fr
    }

    .stream-main {
        grid-row: auto
    }
}

/* Footer SSOT: public/css/site/site-chrome.css (mesmo de /local) */

/* V18 — Caça-Rolê: mapa em destaque no SIM + transição do NÃO */
.hunt-choice-card.card-main.exit-left {
    transform: translate3d(-135%,10%,40px) rotate(-24deg) scale(.9)!important;
    opacity: 0!important;
    pointer-events: none;
}

.hunt-choice-card.card-main.enter-from-stack {
    animation: huntCardEnter .45s cubic-bezier(.2,.8,.2,1);
}

@keyframes huntCardEnter {
    0% {
        opacity: 0;
        transform: translate3d(48px,28px,10px) rotate(8deg) scale(.88)
    }

    100% {
        opacity: 1;
        transform: translate3d(0,0,40px) rotateY(-7deg) rotateX(1deg) rotateZ(-2.5deg)
    }
}

.hunt-card-stack.is-promoting.card-mid {
    transform: translate3d(8px,4px,-20px) rotateZ(1deg) scale(1)!important;
    opacity: .72!important;
    transition: transform .4s cubic-bezier(.2,.8,.2,1),opacity .4s ease;
}

.hunt-card-stack.is-promoting.card-far {
    transform: translate3d(28px,12px,-90px) rotateZ(4deg) scale(.94)!important;
    opacity: .4!important;
    transition: transform .4s cubic-bezier(.2,.8,.2,1),opacity .4s ease;
}

/* V18 — composição do SIM alinhada ao protótipo (mapa à direita + UI do mapa no lugar) */
.hunt-stage-v8.route-open .hunt-map-route {
    z-index: 55!important;
    inset: 7% 2% 7% 27%!important;
    opacity: 1!important;
    transform: none!important;
    filter: none!important;
    pointer-events: auto!important;
    box-shadow: 0 34px 90px rgba(0,0,0,.46)!important;
    border: 1px solid rgba(245,240,231,.12)!important;
}

.hunt-stage-v8.route-open .hunt-map-route .role-leaflet-map {
    opacity: 1!important;
    visibility: visible!important;
    z-index: 2!important;
}

.hunt-stage-v8.route-open .hunt-map-route.leaflet-ready .hunt-map-fallback {
    opacity: 0!important;
    pointer-events: none!important;
}

.hunt-stage-v8.route-open .hunt-map-route:not(.leaflet-ready) .hunt-map-fallback {
    opacity: 1!important;
}

.hunt-stage-v8.route-open .hunt-deck {
    z-index: 20!important;
    left: 50%;
    top: 50%!important;
    bottom: auto!important;
    width: min(430px,52vw)!important;
    height: 540px!important;
    transform: translate(calc(-50% - 255px),-50%) scale(.84)!important;
    transform-origin: center;
    opacity: 1!important;
    pointer-events: none;
}

.hunt-stage-v8.route-open .hunt-choice-card.card-main {
    transform: translate3d(-72px,0,70px) rotateY(-14deg) rotateZ(-4deg)!important;
    box-shadow: 0 60px 130px rgba(0,0,0,.62)!important;
}

.hunt-stage-v8.route-open .hunt-card-stack.card-mid {
    display: block;
    opacity: .18!important;
}

.hunt-stage-v8.route-open .hunt-card-stack.card-far {
    display: block;
    opacity: .08!important;
}

.hunt-stage-v8.route-open .hunt-actions,
.hunt-stage-v8.route-open .hunt-next-peek,
.hunt-stage-v8.route-open .hunt-choice-counter,
.hunt-stage-v8.route-open .hunt-driver-copy,
.hunt-stage-v8.route-open .hunt-status,
.hunt-stage-v8.route-open .hunt-dest-badge,
.hunt-stage-v8.route-open .hunt-drag-hint {
    opacity: 0!important;
    pointer-events: none!important;
}

/* UI do mapa: acima do Leaflet, dentro do container */
.hunt-map-route .route-map-vignette {
    z-index: 410!important;
}

.hunt-map-route .route-map-ui {
    z-index: 420!important;
}

.hunt-stage-v8:not(.route-open) .route-map-ui {
    opacity: 0;
    pointer-events: none;
}

.hunt-stage-v8.route-open .route-map-ui {
    opacity: 1;
}

.hunt-open-map {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.hunt-route-pill {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease,transform .3s ease;
}

.hunt-stage-v8.route-open .hunt-route-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    z-index: 60;
    right: 4%;
    bottom: 5%;
    left: auto;
    padding: 10px 12px;
    background: rgba(243,238,230,.95);
    color: #171513;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    opacity: 1;
    pointer-events: auto;
    cursor: default;
}

.hunt-stage-v8.route-open .hunt-open-map {
    z-index: 60;
    right: 3%;
    bottom: 6%;
    opacity: 1;
    pointer-events: auto;
    background: rgba(17,17,15,.88);
    border-color: rgba(241,170,50,.4);
}

.leaflet-route-base {
    stroke: #e8ddce!important;
    stroke-opacity: .22!important;
    stroke-width: 6!important;
}

.leaflet-route-progress {
    stroke: #f1aa32!important;
    stroke-opacity: 1!important;
    stroke-width: 5.5!important;
    filter: drop-shadow(0 0 10px rgba(241,170,50,.6));
}

@media(max-width: 950px) {
    .hunt-stage-v8.route-open .hunt-map-route {
        inset: 8% 2% 8% 18%!important;
    }

    .hunt-stage-v8.route-open .hunt-deck {
        width: min(380px,48vw)!important;
        height: 500px!important;
        transform: translate(calc(-50% - 125px),-50%) scale(.72)!important;
    }
}

@media(max-width: 650px) {
    .hunt-stage-v8.route-open .hunt-map-route {
        inset: 10% 3% 28% 3%!important;
    }

    .hunt-stage-v8.route-open .hunt-deck {
        width: min(280px,70vw)!important;
        height: 200px!important;
        top: auto!important;
        bottom: 2%!important;
        transform: translateX(-50%) scale(.9)!important;
    }

    .route-map-head {
        left: 12px;
        top: 12px;
        max-width: 160px;
        padding: 8px 10px;
    }

    .route-map-title {
        font-size: 14px;
    }

    .route-map-controls {
        top: auto;
        bottom: 12px;
        right: 12px;
    }

    .route-map-mode {
        display: none;
    }

    .route-map-start-label {
        left: 14%;
        bottom: 22%;
    }

    .route-map-dest-label {
        right: 10%;
        top: 22%;
    }

    .hunt-stage-v8.route-open .hunt-route-pill {
        right: 4%;
        bottom: 105px;
        left: auto;
        max-width: 58%;
    }

    .hunt-stage-v8.route-open .hunt-open-map {
        right: 4%;
        bottom: 55px;
    }
}
