:root {
    --night: #0C0810;
    --night-2: #120C1B;
    --panel: #18101F;
    --panel-2: #1F1429;
    --line: rgba(255, 232, 210, .10);
    --line-2: rgba(255, 232, 210, .06);

    --cream: #FBF1E9;
    --muted: #C9B7D6;
    --muted-2: #9583A6;

    --amber: #FFB36B;
    --rose: #FF6F90;
    --magenta: #C36BFF;
    --gold: #FFD49A;
    --mint: #7FE0B6;

    --grad-warm: linear-gradient(100deg, #FFC57E 0%, #FF7E9A 58%, #C97BFF 120%);
    --grad-cta: linear-gradient(100deg, #FFC57E, #FF7E9A);

    --radius: 20px;
    --radius-sm: 13px;
    --radius-lg: 30px;
    --maxw: 1160px;
    --shadow: 0 24px 60px -28px rgba(0, 0, 0, .8);
    --glow-amber: 0 0 0 1px rgba(255, 179, 107, .18), 0 18px 50px -16px rgba(255, 123, 154, .45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--night);
    color: var(--cream);
    font-family: 'Hanken Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(40% 30% at 78% -4%, rgba(255, 123, 154, .18), transparent 60%),
        radial-gradient(34% 26% at 8% 6%, rgba(201, 123, 255, .16), transparent 60%),
        radial-gradient(50% 30% at 50% 108%, rgba(255, 179, 107, .10), transparent 60%);
}

h1,
h2,
h3,
.display {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    letter-spacing: -.012em;
    line-height: 1.07;
    margin: 0;
    color: var(--cream);
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

main,
.nav-wrap,
footer {
    position: relative;
    z-index: 1;
}

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 26px;
}

.sec {
    padding: 96px 0;
    position: relative;
}

.eyebrow {
    font-family: 'Hanken Grotesk';
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, var(--amber), transparent);
}

.sec-head {
    max-width: 640px;
    margin: 0 auto 54px;
    text-align: center;
}

.sec-head h2 {
    font-size: clamp(2rem, 4.4vw, 3rem);
    margin-top: 16px;
}

.sec-head h2 em {
    font-style: italic;
    color: var(--rose);
    font-weight: 500;
}

.sec-head p {
    color: var(--muted);
    margin-top: 18px;
    font-size: 1.08rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Hanken Grotesk';
    font-weight: 700;
    font-size: 1rem;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 15px 28px;
    min-height: 50px;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn--glow {
    background: var(--grad-cta);
    color: #2A0E16;
    box-shadow: var(--glow-amber);
}

.btn--glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255, 179, 107, .3), 0 22px 56px -16px rgba(255, 123, 154, .6);
}

.btn--ghost {
    background: rgba(255, 241, 233, .04);
    color: var(--cream);
    border-color: var(--line);
}

.btn--ghost:hover {
    background: rgba(255, 241, 233, .08);
    border-color: rgba(255, 232, 210, .22);
    transform: translateY(-2px);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
    border-radius: 14px;
}

.live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 241, 233, .05);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 16px 8px 13px;
    font-size: .86rem;
    font-weight: 600;
    color: var(--muted);
}

.live .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 0 rgba(127, 224, 182, .6);
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(127, 224, 182, .5)
    }

    70% {
        box-shadow: 0 0 0 9px rgba(127, 224, 182, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(127, 224, 182, 0)
    }
}

.live b {
    color: var(--cream);
    font-weight: 700;
}

.wave {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    height: 26px;
}

.wave i {
    width: 3px;
    height: 30%;
    border-radius: 3px;
    background: var(--grad-warm);
    animation: wv 1.2s ease-in-out infinite;
}

.wave i:nth-child(2n) {
    animation-duration: .9s;
}

.wave i:nth-child(3n) {
    animation-duration: 1.5s;
    background: linear-gradient(180deg, var(--rose), var(--magenta));
}

.wave i:nth-child(1) {
    animation-delay: -.2s
}

.wave i:nth-child(2) {
    animation-delay: -.5s
}

.wave i:nth-child(3) {
    animation-delay: -.1s
}

.wave i:nth-child(4) {
    animation-delay: -.7s
}

.wave i:nth-child(5) {
    animation-delay: -.3s
}

.wave i:nth-child(6) {
    animation-delay: -.6s
}

.wave i:nth-child(7) {
    animation-delay: -.15s
}

.wave i:nth-child(8) {
    animation-delay: -.45s
}

.wave i:nth-child(9) {
    animation-delay: -.8s
}

.wave i:nth-child(10) {
    animation-delay: -.25s
}

.wave i:nth-child(11) {
    animation-delay: -.55s
}

.wave i:nth-child(12) {
    animation-delay: -.35s
}

@keyframes wv {

    0%,
    100% {
        height: 18%
    }

    50% {
        height: 100%
    }
}

.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 60;
    padding-top: 14px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(16, 11, 22, .66);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 11px 12px 11px 20px;
    box-shadow: var(--shadow);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand .mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: var(--grad-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-amber);
}

.brand  img {
    width: 48px;
    height: auto;
    display: block;
}

.brand b {
    font-family: 'Fraunces';
    font-weight: 600;
    font-size: 1.18rem;
    letter-spacing: -.01em;
}

.brand b span {
    color: var(--rose);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__links a {
    font-size: .92rem;
    color: var(--muted);
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 600;
    transition: color .15s, background .15s;
}

.nav__links a:hover {
    color: var(--cream);
    background: rgba(255, 241, 233, .05);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    border: 1px solid var(--line);
    background: rgba(255, 241, 233, .04);
    color: var(--cream);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.hero {
    padding: 54px 0 64px;
    position: relative;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.7rem, 6vw, 4.6rem);
    font-weight: 500;
    letter-spacing: -.02em;
}

.hero h1 em {
    font-style: italic;
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__sub {
    color: var(--muted);
    font-size: 1.14rem;
    max-width: 480px;
    margin: 24px 0 0;
}

.phone-num {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 30px 0 6px;
}

.phone-num .n {
    font-family: 'Fraunces';
    font-size: clamp(1.7rem, 3.6vw, 2.3rem);
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--gold);
}

.phone-num .tag {
    font-size: .8rem;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
}

.hero__cta {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.trust {
    margin-top: 20px;
    color: var(--muted-2);
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 9px;
}

.trust .b18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 24px;
    padding: 0 7px;
    border-radius: 7px;
    border: 1px solid var(--line);
    font-weight: 800;
    font-size: .72rem;
    color: var(--amber);
}

.phone {
    position: relative;
    width: 330px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 42px;
    padding: 13px;
    background: linear-gradient(160deg, #241733, #140C1E);
    border: 1px solid var(--line);
    box-shadow: 0 50px 90px -36px rgba(201, 123, 255, .5), 0 0 0 1px rgba(255, 232, 210, .05);
}

.phone::after {
    content: "";
    position: absolute;
    inset: -30px;
    border-radius: 60px;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(60% 50% at 50% 30%, rgba(255, 123, 154, .35), transparent 70%);
    filter: blur(8px);
}

.phone__screen {
    background: var(--night);
    border-radius: 31px;
    overflow: hidden;
    border: 1px solid var(--line-2);
}

.phone__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 12px;
}

.phone__bar .lbl {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--cream);
}

.phone__bar .lbl .pin {
    color: var(--rose);
}

.phone__bar .net {
    font-size: .7rem;
    color: var(--mint);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.phone__bar .net i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    animation: pulse 2.4s infinite;
}

.now {
    margin: 6px 14px 12px;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(150deg, rgba(255, 123, 154, .16), rgba(201, 123, 255, .12));
    border: 1px solid rgba(255, 123, 154, .22);
}

.now__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.av {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces';
    font-weight: 600;
    font-size: 1.05rem;
    color: #2A0E16;
    flex: none;
}

.av-1 {
    background: linear-gradient(135deg, #FFC57E, #FF7E9A);
}

.av-2 {
    background: linear-gradient(135deg, #C97BFF, #7E9CFF);
}

.av-3 {
    background: linear-gradient(135deg, #7FE0B6, #FFC57E);
}

.now__nm {
    font-weight: 700;
    font-size: .96rem;
}

.now__nm span {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 500;
}

.now__wave {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    gap: 12px;
}

.now__wave .wave {
    height: 34px;
    flex: 1;
}

.now__wave .wave i {
    width: 3.5px;
}

.play {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    box-shadow: 0 8px 20px -8px rgba(255, 123, 154, .7);
}

.play svg {
    width: 16px;
    height: 16px;
    color: #2A0E16;
}

.greet {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 14px;
    padding: 11px 6px;
    border-top: 1px solid var(--line-2);
}

.greet .av {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: .85rem;
}

.greet .g-nm {
    flex: 1;
    font-size: .86rem;
    font-weight: 600;
}

.greet .g-nm span {
    display: block;
    color: var(--muted-2);
    font-size: .74rem;
    font-weight: 500;
}

.greet .mini {
    height: 18px;
}

.greet .skip {
    font-size: .72rem;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 11px;
    font-weight: 600;
}

.phone__foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px 0 20px;
}

.phone__foot .ctl {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 241, 233, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

.phone__foot .ctl svg {
    width: 20px;
    height: 20px;
}

.phone__foot .ctl--call {
    width: 64px;
    height: 64px;
    background: var(--grad-cta);
    border: none;
    box-shadow: 0 12px 30px -10px rgba(255, 123, 154, .7);
}

.phone__foot .ctl--call svg {
    width: 26px;
    height: 26px;
    color: #2A0E16;
}

.skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    z-index: 0;
    pointer-events: none;
    opacity: .55;
}

.card {
    background: linear-gradient(170deg, var(--panel), var(--night-2));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 232, 210, .2);
    box-shadow: var(--shadow);
}

.ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 179, 107, .1);
    border: 1px solid rgba(255, 179, 107, .18);
}

.ico svg {
    width: 23px;
    height: 23px;
    color: var(--amber);
}

.ico.r {
    background: rgba(255, 111, 144, .1);
    border-color: rgba(255, 111, 144, .2);
}

.ico.r svg {
    color: var(--rose);
}

.ico.m {
    background: rgba(195, 107, 255, .1);
    border-color: rgba(195, 107, 255, .2);
}

.ico.m svg {
    color: var(--magenta);
}

.ico.g {
    background: rgba(127, 224, 182, .1);
    border-color: rgba(127, 224, 182, .2);
}

.ico.g svg {
    color: var(--mint);
}

.card h3 {
    font-size: 1.22rem;
    margin-top: 18px;
}

.card p {
    color: var(--muted);
    font-size: .95rem;
    margin-top: 9px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.board__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 14px;
}

.vc {
    background: linear-gradient(170deg, var(--panel), var(--night-2));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.vc__top {
    display: flex;
    align-items: center;
    gap: 11px;
}

.vc__top .nm {
    font-weight: 700;
    font-size: .92rem;
}

.vc__top .nm span {
    display: block;
    color: var(--muted-2);
    font-size: .74rem;
    font-weight: 500;
}

.vc .wave {
    height: 30px;
}

.vc__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vc__row .dur {
    font-size: .74rem;
    color: var(--muted-2);
    font-weight: 600;
}

.vc__row .hear {
    font-size: .78rem;
    font-weight: 700;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 880px;
    margin: 0 auto;
}

.compare__col {
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--line);
}

.compare__col.bad {
    background: rgba(255, 241, 233, .02);
}

.compare__col.good {
    background: linear-gradient(165deg, rgba(255, 123, 154, .1), rgba(201, 123, 255, .08));
    border-color: rgba(255, 123, 154, .28);
    box-shadow: var(--shadow);
}

.compare__col h3 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare__col.bad h3 {
    color: var(--muted);
}

.compare ul {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.compare li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: .96rem;
}

.compare li svg {
    width: 19px;
    height: 19px;
    flex: none;
    margin-top: 2px;
}

.compare .bad li {
    color: var(--muted-2);
}

.compare .bad li svg {
    color: var(--muted-2);
}

.compare .good li {
    color: var(--cream);
}

.compare .good li svg {
    color: var(--mint);
}

.mood {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.mood .card {
    padding: 22px 20px;
}

.mood .card h3 {
    font-size: 1.06rem;
    margin-top: 16px;
}

.mood .card p {
    font-size: .88rem;
}

@media(max-width:980px) {
    .mood {
        grid-template-columns: repeat(2, 1fr);
    }

    .mood .card:last-child {
        grid-column: 1/-1;
    }
}

.aud {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.aud__panel {
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.aud__panel.w {
    background: linear-gradient(165deg, rgba(255, 111, 144, .12), rgba(255, 179, 107, .05));
    border-color: rgba(255, 111, 144, .24);
}

.aud__panel.m {
    background: linear-gradient(165deg, rgba(195, 107, 255, .12), rgba(126, 156, 255, .05));
    border-color: rgba(195, 107, 255, .24);
}

.aud__panel img{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 1.5rem;
}

.aud__panel h3 {
    font-size: 1.6rem;
    margin-top: 16px;
}

.aud__panel>p {
    color: var(--muted);
    margin-top: 14px;
    font-size: .98rem;
}

.checks {
    list-style: none;
    margin: 22px 0 26px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.checks li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .9rem;
    color: var(--cream);
}

.checks li svg {
    width: 17px;
    height: 17px;
    flex: none;
    margin-top: 3px;
    color: var(--mint);
}

@media(max-width:560px) {
    .checks {
        grid-template-columns: 1fr;
    }
}

.map__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.area h3 {
    font-size: 1.12rem;
    display: flex;
    align-items: center;
    gap: 9px;
}

.area h3 svg {
    width: 18px;
    height: 18px;
    color: var(--rose);
}

.area .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.area .chips span {
    font-size: .78rem;
    color: var(--muted);
    background: rgba(255, 241, 233, .04);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 11px;
    font-weight: 500;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    position: relative;
}

.step {
    position: relative;
    padding-top: 8px;
}

.step .num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--grad-cta);
    color: #2A0E16;
    font-family: 'Fraunces';
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px -10px rgba(255, 123, 154, .6);
}

.step h3 {
    font-size: 1.04rem;
    margin-top: 18px;
}

.step p {
    color: var(--muted);
    font-size: .88rem;
    margin-top: 8px;
}

@media(max-width:980px) {
    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .steps .step:last-child {
        grid-column: 1/-1;
    }
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.safety {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 30px;
    align-items: center;
    background: linear-gradient(165deg, var(--panel), var(--night-2));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.safety__rules {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.safety__rules li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .92rem;
    color: var(--cream);
}

.safety__rules li svg {
    width: 18px;
    height: 18px;
    flex: none;
    margin-top: 3px;
    color: var(--amber);
}

.safety__note {
    margin-top: 24px;
    color: var(--muted);
    font-size: .95rem;
    border-left: 2px solid var(--rose);
    padding-left: 16px;
}

@media(max-width:820px) {
    .safety {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .safety__rules {
        grid-template-columns: 1fr;
    }
}

.cities {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.city {
    display: block;
    background: linear-gradient(170deg, var(--panel), var(--night-2));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}

.city:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 179, 107, .35);
    box-shadow: var(--shadow);
}

.city h3 {
    font-size: 1.18rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.city h3 svg {
    width: 18px;
    height: 18px;
    color: var(--amber);
    opacity: .7;
    transition: transform .2s;
}

.city:hover h3 svg {
    transform: translate(3px, -3px);
}

.city p {
    color: var(--muted);
    font-size: .86rem;
    margin-top: 8px;
}

@media(max-width:980px) {
    .cities {
        grid-template-columns: repeat(2, 1fr);
    }

    .cities .city:last-child {
        grid-column: 1/-1;
    }
}

.faq {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

details {
    background: linear-gradient(170deg, var(--panel), var(--night-2));
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
    font-size: 1.04rem;
    color: var(--cream);
}

summary::-webkit-details-marker {
    display: none;
}

summary .pm {
    width: 26px;
    height: 26px;
    flex: none;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s, background .25s;
}

summary .pm svg {
    width: 14px;
    height: 14px;
    color: var(--amber);
}

details[open] summary .pm {
    transform: rotate(45deg);
    background: rgba(255, 179, 107, .12);
}

details>p {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: .96rem;
}

.closing {
    text-align: center;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(165deg, rgba(255, 123, 154, .16), rgba(201, 123, 255, .12));
    border: 1px solid rgba(255, 123, 154, .26);
    padding: 72px 30px;
    box-shadow: var(--shadow);
}

.closing h2 {
    font-size: clamp(2.1rem, 4.6vw, 3.2rem);
    max-width: 680px;
    margin: 0 auto;
}

.closing h2 em {
    font-style: italic;
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.closing p {
    color: var(--muted);
    font-size: 1.1rem;
    margin: 18px auto 0;
    max-width: 520px;
}

.closing .phone-num {
    justify-content: center;
    margin: 30px 0 4px;
}

.closing .hero__cta {
    justify-content: center;
}

.closing .smallprint {
    margin-top: 20px;
    color: var(--muted-2);
    font-size: .84rem;
}

footer {
    border-top: 1px solid var(--line);
    margin-top: 30px;
}

.foot {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
    padding: 54px 0 28px;
}

.foot__brand p {
    color: var(--muted);
    font-size: .92rem;
    margin-top: 16px;
    max-width: 300px;
}

.foot h4 {
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--muted-2);
    font-weight: 700;
    margin-bottom: 14px;
    font-family: 'Hanken Grotesk';
}

.foot ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.foot ul a {
    color: var(--muted);
    font-size: .92rem;
}

.foot ul a:hover {
    color: var(--cream);
}

.disclaimer {
    border-top: 1px solid var(--line-2);
    padding: 22px 0 50px;
    color: var(--muted-2);
    font-size: .82rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.disclaimer .b18 {
    flex: none;
    margin-top: 2px;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

@media(max-width:980px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 44px;
        text-align: center;
    }

    .hero__sub,
    .phone-num {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta,
    .trust,
    .phone-num {
        justify-content: center;
    }

    .hero__sub {
        max-width: 560px;
    }

    .board__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4,
    .map__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3,
    .promise-grid {
        grid-template-columns: 1fr 1fr;
    }

    .aud {
        grid-template-columns: 1fr;
    }
}

@media(max-width:680px) {
    .sec {
        padding: 68px 0;
    }

    .nav__links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav__cta .btn--ghost {
        display: none;
    }

    .compare,
    .grid-2,
    .grid-3,
    .grid-4,
    .promise-grid,
    .map__grid,
    .board__cards,
    .cities {
        grid-template-columns: 1fr;
    }

    .cities .city:last-child,
    .map__grid .area:last-child,
    .grid-3 .card:last-child {
        grid-column: auto;
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}