:root {
    /* ink / text */
    --ink: #191410;
    --ink-soft: #4b4138;
    --muted: #7d7168;
    --line: rgba(25, 20, 16, .10);

    /* sky gradient stops */
    --cream: #fdf6ed;
    --peach: #f9e4d2;
    --rose: #f4dbe6;
    --lilac: #e6ddf5;
    --sky: #d8e4f8;

    /* accents */
    --coral: #ee5b3f;
    /* voice energy — used on fills / glow */
    --coral-ink: #b73c22;
    /* coral that is safe as text on light bg */
    --plum: #5d3f7e;
    /* night accent for waveform */
    --gold: #e9a23b;

    /* surfaces */
    --glass: rgba(255, 255, 255, .62);
    --glass-strong: rgba(255, 255, 255, .82);
    --glass-border: rgba(255, 255, 255, .85);

    --shadow-sm: 0 2px 8px rgba(60, 40, 30, .06);
    --shadow-md: 0 14px 40px -16px rgba(70, 45, 30, .28);
    --shadow-lg: 0 40px 90px -30px rgba(70, 45, 30, .40);

    --radius-s: 14px;
    --radius: 22px;
    --radius-l: 32px;

    --wrap: 1180px;
    --gutter: clamp(20px, 5vw, 40px);
    --section-y: clamp(72px, 11vw, 128px);

    --font-display: "Bricolage Grotesque", system-ui, sans-serif;
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

/* ============================================================
   Base
   ============================================================ */
* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink-soft);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
    overflow-x: hidden;
}

/* dreamy sky backdrop, fixed so it persists while scrolling */
.sky {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(120% 80% at 12% 6%, var(--sky) 0%, transparent 46%),
        radial-gradient(120% 90% at 88% 0%, var(--peach) 0%, transparent 50%),
        radial-gradient(140% 120% at 70% 30%, var(--rose) 0%, transparent 55%),
        radial-gradient(120% 120% at 20% 80%, var(--lilac) 0%, transparent 55%),
        linear-gradient(180deg, var(--cream) 0%, #fbf2ea 60%, var(--cream) 100%);
}

.sky::after {
    /* soft cloud bloom */
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(40% 30% at 30% 18%, rgba(255, 255, 255, .75), transparent 70%),
        radial-gradient(45% 32% at 78% 22%, rgba(255, 255, 255, .6), transparent 70%),
        radial-gradient(50% 36% at 60% 70%, rgba(255, 255, 255, .5), transparent 72%);
    mix-blend-mode: screen;
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
    border-radius: 6px;
}

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter)
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.02;
    margin: 0
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--coral-ink);
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 1.5px;
    background: var(--coral);
    border-radius: 2px
}

.lead {
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    color: var(--ink-soft);
    max-width: 56ch
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 26px;
    border-radius: 100px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.btn svg {
    width: 19px;
    height: 19px
}

.btn-primary {
    background: var(--ink);
    color: #fdf6ed;
    box-shadow: var(--shadow-md)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

.btn-ghost {
    background: rgba(255, 255, 255, .5);
    border-color: rgba(25, 20, 16, .18);
    color: var(--ink)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .85);
    transform: translateY(-2px)
}

.btn-coral {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 14px 34px -12px rgba(238, 91, 63, .7)
}

.btn-coral:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px -14px rgba(238, 91, 63, .8)
}

.btn-block {
    width: 100%
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s;
}

.site-header.scrolled {
    background: rgba(253, 246, 237, .72);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-block: 18px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.18rem;
    color: var(--ink);
    letter-spacing: -.02em
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 30px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--ink-soft)
}

.nav-links a {
    position: relative;
    padding: 4px 0;
    transition: color .2s
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
    transition: width .25s ease
}

.nav-links a:hover {
    color: var(--ink)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    display: none
}

.nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid var(--line);
    color: var(--ink);
    cursor: pointer;
}

.nav-toggle svg {
    width: 22px;
    height: 22px
}

@media(min-width:900px) {
    .nav-links {
        display: flex
    }

    .nav-cta {
        display: inline-flex
    }

    .nav-toggle {
        display: none
    }
}

/* mobile drawer */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    background: rgba(25, 20, 16, .32);
    backdrop-filter: blur(4px);
}

.drawer.open {
    display: block
}

.drawer-panel {
    position: absolute;
    top: 14px;
    right: 14px;
    left: 14px;
    background: rgba(253, 246, 237, .96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-lg);
    padding: 22px;
}

.drawer-panel .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px
}

.drawer-panel a.link {
    display: block;
    padding: 14px 6px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--line)
}

.drawer-panel .btn {
    margin-top: 18px
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    padding-top: clamp(28px, 5vw, 48px);
    padding-bottom: var(--section-y)
}

.hero-grid {
    display: grid;
    gap: clamp(40px, 6vw, 64px);
    align-items: center
}

@media(min-width:1000px) {
    .hero-grid {
        grid-template-columns: 1.05fr .95fr
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    padding: 8px 15px 8px 11px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink);
}

.badge .live {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--coral);
    flex: none
}

.badge .live::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid var(--coral);
    animation: ping 1.8s ease-out infinite
}

@keyframes ping {
    0% {
        transform: scale(.6);
        opacity: .9
    }

    100% {
        transform: scale(1.9);
        opacity: 0
    }
}

.hero h1 {
    font-size: clamp(2.9rem, 7.2vw, 5.2rem);
    line-height: .97;
    letter-spacing: -.035em;
    margin: 22px 0 0;
}

.hero h1 .grad {
    background: linear-gradient(115deg, var(--coral) 0%, var(--gold) 48%, var(--plum) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero .lead {
    margin: 22px 0 0
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-top: 26px;
    font-size: .9rem;
    color: var(--muted);
    font-weight: 500
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.hero-trust svg {
    width: 17px;
    height: 17px;
    color: var(--coral)
}

/* ---- phone mockup + floating cards ---- */
.stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px
}

.phone {
    position: relative;
    z-index: 2;
    width: clamp(248px, 72vw, 300px);
    aspect-ratio: 300/620;
    background: #15110d;
    border-radius: 46px;
    padding: 11px;
    box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255, 255, 255, .06);
}

.phone .notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 108px;
    height: 26px;
    background: #15110d;
    border-radius: 14px;
    z-index: 3
}

.screen {
    position: relative;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    background:
        radial-gradient(120% 70% at 50% 0%, #fff0e9 0%, transparent 60%),
        linear-gradient(180deg, #fdf6ef, #f6e8de);
    display: flex;
    flex-direction: column;
}

.screen-top {
    padding: 34px 18px 14px;
    text-align: center
}

.screen-top .dot-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--coral-ink)
}

.screen-top .dot-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
    display: inline-block
}

.screen-top h4 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--ink);
    font-size: 1.18rem;
    margin: 8px 0 2px
}

.screen-top p {
    margin: 0;
    font-size: .78rem;
    color: var(--muted)
}

.now-card {
    margin: 14px 16px;
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 24px -14px rgba(70, 45, 30, .4)
}

.now-card .who {
    display: flex;
    align-items: center;
    gap: 11px
}

.now-card .av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex: none;
    background: linear-gradient(150deg, var(--coral), var(--gold))
}

.now-card .who b {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: .92rem;
    display: block;
    line-height: 1.1
}

.now-card .who span {
    font-size: .72rem;
    color: var(--muted)
}

/* waveform */
.wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 34px;
    margin-top: 13px
}

.wave i {
    flex: 1;
    background: linear-gradient(180deg, var(--coral), var(--gold));
    border-radius: 3px;
    height: 30%;
    transform-origin: bottom;
    animation: bar 1.1s ease-in-out infinite
}

.wave i:nth-child(2n) {
    animation-duration: .9s
}

.wave i:nth-child(3n) {
    animation-duration: 1.35s;
    background: linear-gradient(180deg, var(--plum), var(--coral))
}

.wave i:nth-child(4n) {
    animation-duration: 1s
}

.wave i:nth-child(5n) {
    animation-duration: 1.5s
}

@keyframes bar {

    0%,
    100% {
        transform: scaleY(.28)
    }

    50% {
        transform: scaleY(1)
    }
}

.screen-cta {
    margin: auto 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.mini-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .86rem;
    border-radius: 13px;
    padding: 13px;
    border: none
}

.mini-btn.fill {
    background: var(--ink);
    color: #fdf6ef
}

.mini-btn.out {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line)
}

.mini-btn svg {
    width: 16px;
    height: 16px
}

/* floating glass cards */
.float {
    position: absolute;
    z-index: 3;
    background: var(--glass);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    animation: bob 6s ease-in-out infinite;
}

.float .ic {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    flex: none;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--coral);
    box-shadow: var(--shadow-sm)
}

.float .ic svg {
    width: 20px;
    height: 20px
}

.float b {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: .86rem;
    display: block;
    line-height: 1.15
}

.float span {
    font-size: .72rem;
    color: var(--muted)
}

.float.f1 {
    top: 6%;
    left: -4%;
    animation-delay: 0s
}

.float.f2 {
    top: 40%;
    right: -8%;
    animation-delay: -2s
}

.float.f3 {
    bottom: 6%;
    left: -6%;
    animation-delay: -4s
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.stage .glow {
    position: absolute;
    width: 74%;
    height: 74%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 91, 63, .32), transparent 65%);
    filter: blur(30px);
    z-index: 1
}

@media(max-width:560px) {
    .float.f1 {
        left: 0;
        top: 2%
    }

    .float.f2 {
        right: -2%
    }

    .float.f3 {
        left: -2%
    }

    .float span {
        display: none
    }
}

/* ============================================================
   Generic section heading
   ============================================================ */
.section {
    padding-block: var(--section-y)
}

.section-head {
    max-width: 62ch
}

.section-head h2 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    margin: 16px 0 0
}

.section-head p {
    margin: 18px 0 0;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    color: var(--ink-soft)
}

.center {
    margin-inline: auto;
    text-align: center
}

/* ============================================================
   "Tonight's line" — areas intro + 3 perks
   ============================================================ */
.tonight {
    background: var(--glass-strong);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-md);
    padding: clamp(28px, 5vw, 52px);
}

.tonight .areas-line {
    margin: 18px 0 4px;
    font-size: 1.02rem;
    color: var(--ink-soft)
}

.tonight .areas-line b {
    color: var(--ink);
    font-weight: 700
}

.tonight img{
    display: block;
    width: 100%;
    aspect-ratio: 5/2;
    object-fit: cover;
    border-radius: 1.5rem;
    margin: 1rem 0;
}

.perks {
    display: grid;
    gap: 18px;
    margin-top: 34px
}

@media(min-width:760px) {
    .perks {
        grid-template-columns: repeat(3, 1fr)
    }
}

.perk {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.perk .ic {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    flex: none;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--coral);
    box-shadow: var(--shadow-sm)
}

.perk .ic svg {
    width: 22px;
    height: 22px
}

.perk h3 {
    font-size: 1.06rem;
    margin: 2px 0 4px
}

.perk p {
    margin: 0;
    font-size: .94rem
}

.tonight .btn {
    margin-top: 34px
}

/* ============================================================
   Human / narrative split
   ============================================================ */
.human {
    display: grid;
    gap: clamp(36px, 6vw, 72px);
    align-items: center
}

@media(min-width:960px) {
    .human {
        grid-template-columns: 1fr 1fr
    }
}

.human .copy p {
    margin: 18px 0 0
}

.human .copy p strong {
    color: var(--ink);
    font-weight: 700
}

.human-panel {
    position: relative;
    border-radius: var(--radius-l);
    overflow: hidden;
    background: linear-gradient(160deg, #fff5ef, #f3e0ef 55%, #e2e6f7);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.human-panel img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 960px) {
    .human-panel {
        aspect-ratio: 1/1;
    }
}
/* ============================================================
   How it works — numbered steps
   ============================================================ */
.steps {
    display: grid;
    gap: 20px;
    margin-top: 46px
}

@media(min-width:680px) {
    .steps {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1040px) {
    .steps {
        grid-template-columns: repeat(4, 1fr)
    }
}

.step {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md)
}

.step .n {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--coral-ink);
    letter-spacing: .04em
}

.step .ic {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    margin: 14px 0 16px
}

.step .ic svg {
    width: 23px;
    height: 23px
}

.step h3 {
    font-size: 1.14rem;
    margin: 0 0 7px
}

.step p {
    margin: 0;
    font-size: .93rem
}

/* ============================================================
   Built for the way Nashville talks — feature cards
   ============================================================ */
.features {
    display: grid;
    gap: 20px;
    margin-top: 46px
}

@media(min-width:640px) {
    .features {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1040px) {
    .features {
        grid-template-columns: repeat(4, 1fr)
    }
}

.feature {
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}

.feature .ic {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, #fff, #ffe7dc);
    color: var(--coral);
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px
}

.feature .ic svg {
    width: 24px;
    height: 24px
}

.feature h3 {
    font-size: 1.12rem;
    margin: 0 0 8px
}

.feature p {
    margin: 0;
    font-size: .93rem
}

/* ============================================================
   Stats band
   ============================================================ */
.stats {
    background: linear-gradient(150deg, #1c1611, #2a1f17);
    border-radius: var(--radius-l);
    padding: clamp(34px, 5vw, 56px);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(238, 91, 63, .4), transparent 60%);
    filter: blur(20px)
}

.stats .inner {
    position: relative;
    z-index: 1
}

.stats h2 {
    color: #fdf6ed
}

.stats>.inner>p {
    color: rgba(253, 246, 237, .72);
    max-width: 54ch;
    margin: 16px 0 0
}

.stat-grid {
    display: grid;
    gap: 24px;
    margin-top: 38px
}

@media(min-width:640px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1000px) {
    .stat-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.stat {
    padding: 6px 0
}

.stat .num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    line-height: 1;
    background: linear-gradient(120deg, #ffd9a8, #ee5b3f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.stat .lab {
    color: rgba(253, 246, 237, .78);
    font-size: .92rem;
    margin-top: 9px;
    font-weight: 500
}

.stats .note {
    color: rgba(253, 246, 237, .45);
    font-size: .76rem;
    margin-top: 28px
}

/* ============================================================
   Why singles use it — two-column list
   ============================================================ */
.why {
    display: grid;
    gap: 18px;
    margin-top: 46px
}

@media(min-width:760px) {
    .why {
        grid-template-columns: repeat(2, 1fr)
    }
}

.why-item {
    display: flex;
    gap: 14px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 22px 22px;
    box-shadow: var(--shadow-sm)
}

.why-item .ic {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex: none;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--coral);
    box-shadow: var(--shadow-sm)
}

.why-item .ic svg {
    width: 21px;
    height: 21px
}

.why-item h3 {
    font-size: 1.05rem;
    margin: 0 0 5px
}

.why-item p {
    margin: 0;
    font-size: .92rem
}

/* ============================================================
   Areas grid
   ============================================================ */
.areas {
    display: grid;
    gap: 18px;
    margin-top: 46px
}

@media(min-width:640px) {
    .areas {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1000px) {
    .areas {
        grid-template-columns: repeat(3, 1fr)
    }
}

.area {
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

.area:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.area .pin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral-ink);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase
}

.area .pin svg {
    width: 16px;
    height: 16px
}

.area h3 {
    font-size: 1.16rem;
    margin: 12px 0 7px
}

.area p {
    margin: 0;
    font-size: .92rem
}

/* ============================================================
   Vibes / what conversation
   ============================================================ */
.vibes {
    display: grid;
    gap: 18px;
    margin-top: 46px
}

@media(min-width:640px) {
    .vibes {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1100px) {
    .vibes {
        grid-template-columns: repeat(4, 1fr)
    }
}

.vibe {
    position: relative;
    border-radius: var(--radius);
    padding: 28px 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    color: var(--ink);
}

.vibe.v1 {
    background: linear-gradient(160deg, #fff4ee, #ffe2d6)
}

.vibe.v2 {
    background: linear-gradient(160deg, #fdeef4, #f6d9e6)
}

.vibe.v3 {
    background: linear-gradient(160deg, #efeafa, #ddd2f3)
}

.vibe.v4 {
    background: linear-gradient(160deg, #eaf0fb, #d7e3f7)
}

.vibe .ic {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .8);
    color: var(--coral);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px
}

.vibe .ic svg {
    width: 22px;
    height: 22px
}

.vibe h3 {
    font-size: 1.1rem;
    margin: 0 0 7px
}

.vibe p {
    margin: 0;
    font-size: .92rem;
    color: var(--ink-soft)
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    max-width: 840px;
    margin-inline: auto;
    margin-top: 42px;
    display: grid;
    gap: 14px
}

.faq details {
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    font-size: 1.06rem;
}

.faq summary::-webkit-details-marker {
    display: none
}

.faq summary .chev {
    flex: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--coral);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease
}

.faq summary .chev svg {
    width: 16px;
    height: 16px
}

.faq details[open] summary .chev {
    transform: rotate(180deg)
}

.faq .ans {
    padding: 0 24px 24px;
    font-size: .96rem;
    color: var(--ink-soft)
}

/* ============================================================
   Final CTA
   ============================================================ */
.final {
    background: linear-gradient(155deg, #fff, #ffeee6 45%, #f0e3f6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-lg);
    padding: clamp(40px, 6vw, 76px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final::before {
    content: "";
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120%;
    background: radial-gradient(circle, rgba(238, 91, 63, .22), transparent 60%);
    filter: blur(20px)
}

.final .inner {
    position: relative;
    z-index: 1
}

.final h2 {
    font-size: clamp(2.1rem, 4.6vw, 3.4rem)
}

.final p {
    margin: 18px auto 0;
    max-width: 52ch;
    font-size: 1.06rem;
    color: var(--ink-soft)
}

.final .phone-num {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--ink);
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
    letter-spacing: -.02em;
}

.final .phone-num svg {
    width: 30px;
    height: 30px;
    color: var(--coral)
}

.final .btn {
    margin-top: 24px
}

.final .sub {
    margin-top: 18px;
    font-size: .86rem;
    color: var(--muted)
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    padding: 30px 0;
}

.foot-bottom {
    font-size: .82rem;
    color: var(--muted)
}

.foot-bottom .disc {
    max-width: 62ch;
    line-height: 1.5
}

/* ============================================================
   Sticky mobile call bar
   ============================================================ */
.callbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(253, 246, 237, .86);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    transform: translateY(120%);
    transition: transform .35s ease;
}

.callbar.show {
    transform: translateY(0)
}

@media(min-width:900px) {
    .callbar {
        display: none
    }
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .wave i,
    .mini-wave i,
    .float,
    .badge .live::after {
        animation: none !important
    }

    .btn,
    .step,
    .area {
        transition: none
    }
}