:root {
    --bg: #fffdf9;
    --surface: #fff;
    --ink: #5b4a3f;
    --ink-soft: #8a7a6e;
    --brown: #a98467;
    --brown-soft: #c8a48a;
    --brown-pale: #e7d8c9;
    --blush: #e7a6b0;
    --accent: #a98467;            /* replaces teal #00c896 */
    --heading-font: 'Fraunces', Georgia, serif;
    --body-font: 'Quicksand', system-ui, sans-serif;
    --hand-font: 'Caveat', cursive;

    /* ── Override global vibe.debrakke.com/style.css dark-teal vars ── */
    --bg2: #f6ece2;
    --text-dark: #5b4a3f;
    --text-muted: #7a6a5e;
    --text-light: #b0a194;
    --accent-teal: #a98467;
    --accent-purple: #a98467;
    --accent2: #c8a48a;
    --border: rgba(169,132,103,0.18);
    --glow: rgba(231,166,176,0.20);
    --ring: rgba(169,132,103,0.30);
}
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body-font);
}
h1, h2, h3 { font-family: var(--heading-font); color: var(--ink); }

/* Section Setup */
        section {
            padding: 4rem 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        /* ── Section structure helpers ── */
        .section-eyebrow {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 1rem;
        }
        .section-rule {
            width: 48px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            margin: 0 auto 2rem;
        }

        /* ── Scroll reveal ── */
        .reveal {
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }


        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem 1.5rem;
            position: relative;
        }

        .hero-bg {
            display: block;
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, #fffdf9, #f6ece2);
            z-index: -1;
        }

        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.8rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.25rem;
            color: var(--ink);
            text-shadow: none;
        }

        .hero p {
            font-size: clamp(0.95rem, 2.5vw, 1.2rem);
            color: var(--text-muted);
            margin-bottom: 0;
            max-width: 560px;
            font-weight: 400;
        }

        /* Buttons */
        .btn-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Nav */
        nav:not(.hnav) {
            padding: 1.5rem;
            display: flex;
            justify-content: center;
            z-index: 10;
            position: relative;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(169, 132, 103, 0.08);
            padding: 0.5rem 1.5rem;
            border-radius: 99px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(169, 132, 103, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        .logo i {
            color: var(--accent);
        }

        /* Story Block */
        .story {
            padding: 3rem 1.5rem;
        }

        .story-text {
            font-size: clamp(1.1rem, 3vw, 1.75rem);
            font-weight: 500;
            line-height: 1.5;
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }

        .story-p {
            opacity: 0.2;
            transform: translateY(30px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 2rem;
            color: var(--text-dark);
            text-shadow: 0 8px 20px rgba(169, 132, 103, 0.25);
        }

        .story-p:last-child {
            margin-bottom: 0;
        }

        .story-p.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .story-p.highlight {
            color: var(--accent);
            font-weight: 800;
            font-size: clamp(1.3rem, 4vw, 2rem);
            text-shadow: 0 8px 24px rgba(169, 132, 103, 0.5);
        }

        /* How it works */
        .how-it-works {
            text-align: center;
            padding-top: 1.5rem;
        }

        .section-title {
            font-size: clamp(1.4rem, 3.5vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 2.5rem;
            text-align: center;
            color: var(--text-dark);
            text-shadow: 0 0 30px rgba(169, 132, 103, 0.25);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .step-card {
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(169, 132, 103, 0.12);
        }

        .step-icon {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 1.25rem;
        }

        .step-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: var(--accent);
        }

        /* Value Prop */
        .value-prop {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
            background: rgba(169, 132, 103, 0.03);
            border-radius: 16px;
            padding: 3rem 2rem;
            margin: 0 auto;
            max-width: 1000px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(169, 132, 103, 0.14);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
        }

        @media (min-width: 768px) {
            .value-prop {
                grid-template-columns: 1fr 1fr;
                padding: 3rem 2rem;
            }
        }

        .value-text h2 {
            font-size: clamp(1.4rem, 3.5vw, 2.2rem);
            margin-bottom: 1.25rem;
            line-height: 1.25;
            color: var(--text-dark);
        }

        .value-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .value-list li {
            margin-bottom: 1.5rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }

        .value-list li i {
            color: var(--brown);
            font-size: 1.4rem;
        }

        .price-card {
            background: rgba(169, 132, 103, 0.06);
            border: 1px solid rgba(169, 132, 103, 0.22);
            padding: 2.5rem 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 0 32px rgba(169, 132, 103, 0.08), 0 16px 40px rgba(0, 0, 0, 0.4);
            transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
            position: relative;
        }

        .price-card:hover {
            transform: translateY(-4px);
            border-color: rgba(169, 132, 103, 0.4);
            box-shadow: 0 0 40px rgba(169, 132, 103, 0.15), 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .price {
            font-size: 3.25rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 24px rgba(169, 132, 103, 0.4);
        }

        /* Final CTA */
        .final-cta {
            text-align: center;
            padding: 2.5rem 1.5rem 1.5rem;
        }

        /* Why Join */
        .reasons-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }

        .reason-pill {
            padding: 0.75rem 1.6rem;
            background: rgba(169, 132, 103, 0.07);
            backdrop-filter: blur(15px);
            border-radius: 99px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(169, 132, 103, 0.2);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .reason-pill:hover {
            background: rgba(169, 132, 103, 0.12);
            border-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(169, 132, 103, 0.18), 0 8px 24px rgba(0, 0, 0, 0.4);
        }

        .reason-pill i {
            color: var(--accent);
            font-size: 1.4rem;
        }

        .reason-pill img.pill-icon {
            width: 44px;
            height: 44px;
            margin: -6px 2px -6px -6px;
            object-fit: contain;
            mix-blend-mode: screen;
            filter: drop-shadow(0 3px 8px rgba(169, 132, 103, 0.6));
            border-radius: 10px;
        }

        .hero-icon-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--brown-pale);
            border-radius: 50%;
            margin-left: 10px;
            vertical-align: middle;
            box-shadow: 0 2px 6px rgba(169,132,103,.25);
            border: 1px solid rgba(169, 132, 103, 0.5);
            overflow: hidden;
        }

        .ai-hero-icon {
            width: 160%;
            height: 160%;
            object-fit: contain;
            mix-blend-mode: screen;
            margin: 0;
            display: block;
            border-radius: 0;
            filter: contrast(1.1);
        }

        .ai-value-icon {
            width: 40px;
            height: 40px;
            mix-blend-mode: screen;
            object-fit: contain;
            flex-shrink: 0;
            margin-right: 14px;
            border-radius: 10px;
        }

        .ai-step-icon {
            width: 100%;
            height: 100%;
            object-fit: contain;
            mix-blend-mode: screen;
            border-radius: 50%;
            display: block;
            margin: auto;
            filter: contrast(1.1);
        }

        .ai-logo-icon {
            width: 56px;
            height: 56px;
            mix-blend-mode: screen;
            vertical-align: middle;
            margin-right: 10px;
            border-radius: 12px;
        }

        /* ── SA RETRO TERMINAL MAP ── */
        #sa-map-section {
            width: min(100%, 740px);
            margin: 1.5rem auto 3.5rem;
            position: relative;
        }

        @media(max-width:600px) {
            #sa-map-section {
                margin-top: 1.5rem;
            }
        }

        .sa-section-label {
            text-align: center;
            color: #a98467;
            font-family: 'Caveat', cursive;
            font-size: clamp(1.05rem, 2.2vw, 1.3rem);
            letter-spacing: .5px;
            margin-bottom: .7rem;
            padding: 0 1rem;
        }

        .sa-crt-outer {
            width: 100%
        }

        .sa-crt-frame {
            background: #fffdf9;
            border: 1px solid #e7d8c9;
            border-radius: 18px;
            box-shadow: 0 10px 30px rgba(169, 132, 103, .15);
            overflow: hidden;
            position: relative;
        }

        .sa-titlebar {
            background: #f6ece2;
            color: #8a6d57;
            font-family: 'Caveat', cursive;
            font-size: 1.15rem;
            border-bottom: 1px dashed #e7d8c9;
            padding: .5rem .9rem;
            letter-spacing: .08em;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: .4rem;
            flex-wrap: wrap;
        }

        .sa-titlebar-right {
            opacity: .7;
            font-size: 1.05rem
        }

        .sa-body {
            display: flex;
            align-items: stretch
        }

        .sa-canvas-wrap {
            position: relative;
            flex-shrink: 0;
            background: #fffdf9;
            border-right: 1px dashed #e7d8c9;
            width: clamp(200px, 55%, 420px);
        }

        canvas#sa-canvas {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 480/390;
        }

        .sa-log {
            flex: 1;
            min-width: 0;
            padding: .7rem .85rem;
            background: #fffdf9;
            color: #8a7a6e;
            font-family: 'Caveat', cursive;
            font-size: 1.05rem;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .sa-log-title {
            color: #a98467;
            font-family: 'Caveat', cursive;
            font-size: 1.1rem;
            letter-spacing: .1em;
            border-bottom: 1px dashed #e7d8c9;
            padding-bottom: .45rem;
            margin-bottom: .45rem;
            flex-shrink: 0;
        }

        #sa-log-lines {
            flex: 1;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: .22rem
        }

        .sa-ll {
            font-family: 'Caveat', cursive;
            font-size: 1.05rem;
            line-height: 1.5;
            white-space: pre-wrap;
            word-break: break-word;
            color: #8a7a6e;
            animation: saLogIn .22s ease both;
        }

        @keyframes saLogIn {
            from {
                opacity: 0;
                transform: translateX(-5px)
            }

            to {
                opacity: 1;
                transform: translateX(0)
            }
        }

        .sa-log-cursor {
            color: #c8a48a;
            font-size: 1.1rem;
            animation: saBlink .7s step-end infinite;
            flex-shrink: 0;
            margin-top: .35rem;
            height: 1em;
        }

        .sa-statusbar {
            background: #f6ece2;
            color: #8a6d57;
            border-top: 1px dashed #e7d8c9;
            padding: .45rem .85rem;
            display: flex;
            align-items: center;
            gap: .7rem;
        }

        .sa-prog-wrap {
            flex: 1;
            height: 5px;
            background: #e7d8c9;
            border-radius: 2px;
            overflow: hidden;
            min-width: 0
        }

        .sa-prog-inner {
            height: 100%;
            width: 0%;
            background: #a98467;
            transition: width .5s ease
        }

        #sa-status-text {
            color: #8a6d57;
            letter-spacing: .05em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex-shrink: 0;
            max-width: min(45vw, 240px);
            opacity: .8;
        }

        @keyframes saBlink {
            50% {
                opacity: 0
            }
        }

        .sa-blink, .sa-log-cursor {
            color: #c8a48a;
        }

        .sa-blink {
            animation: saBlink .9s step-end infinite
        }

        @media(max-width:600px) {
            #sa-map-section {
                width: 100%;
                margin: 2rem 0 0
            }

            .sa-body {
                flex-direction: column
            }

            .sa-canvas-wrap {
                width: 100%;
                border-right: none;
                border-bottom: 1px dashed #e7d8c9
            }

            .sa-log {
                max-height: 180px
            }

            .sa-log-title,
            .sa-ll {
                font-size: 1rem
            }

            .sa-log-cursor {
                font-size: 1rem
            }

            .sa-titlebar {
                font-size: 1rem;
                padding: .4rem .6rem
            }

            .sa-titlebar-right {
                display: none
            }

            #sa-status-text {
                max-width: 52vw;
                font-size: .85rem
            }
        }

        /* Floating Character Elements (Fun Additions) */
        .avatar-hero {
            width: 250px;
            height: 250px;
            object-fit: contain;
            margin-top: 1rem;
            animation: float 6s infinite ease-in-out;
            filter: drop-shadow(0 15px 25px rgba(145, 108, 86, 0.3));
        }

        .avatar-peek {
            position: absolute;
            width: 140px;
            height: 140px;
            object-fit: contain;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
        }

        .peek-1 {
            top: -80px;
            right: -30px;
            animation: wobble 4s infinite linear;
        }

        .peek-2 {
            bottom: -60px;
            left: -30px;
            animation: float 5s infinite ease-in-out reverse;
            z-index: 10;
        }


        /* Animations */
        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes bounceVoice {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(3deg);
            }

            100% {
                transform: translateY(0px) rotate(0deg);
            }
        }

        @keyframes wobble {
            0% {
                transform: rotate(0deg);
            }

            25% {
                transform: rotate(-5deg);
            }

            50% {
                transform: rotate(0deg);
            }

            75% {
                transform: rotate(5deg);
            }

            100% {
                transform: rotate(0deg);
            }
        }

        /* Footprint Trail System */
        .trail-print {
            position: absolute;
            pointer-events: none;
            z-index: 9999;
            opacity: 0;
            animation: walkFadeInOut 2.5s forwards ease-in-out;
            transform-origin: center;
        }

        .trail-print svg {
            width: clamp(40px, 8vw, 70px);
            height: auto;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
        }

        @keyframes walkFadeInOut {
            0% {
                opacity: 0;
                transform: scale(0.7) rotate(var(--rot));
            }

            20% {
                opacity: 0.85;
                transform: scale(1) rotate(var(--rot));
            }

            70% {
                opacity: 0.85;
                transform: scale(1.05) rotate(var(--rot));
            }

            100% {
                opacity: 0;
                transform: scale(0.9) rotate(var(--rot));
            }
        }

        /* ── Language toggle ── */
        body.lang-en .af { display: none; }
        body.lang-af .en { display: none; }

        #lang-btn {
            background: transparent;
            border: 1px solid rgba(169, 132, 103, 0.3);
            color: rgba(255,255,255,0.7);
            border-radius: 6px;
            padding: 0.3rem 0.75rem;
            font-size: 0.75rem;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            transition: all 0.2s;
        }
        #lang-btn:hover { border-color: var(--brown); color: var(--brown); }

        /* ── Mobile spacing overrides ── */
        @media (max-width: 640px) {
            section {
                padding: 2.5rem 1.25rem;
            }
            .story {
                padding: 3rem 1.25rem;
            }
            .section-title {
                margin-bottom: 1.5rem;
            }
            .value-prop {
                padding: 2rem 1.25rem;
                margin: 0 auto;
            }
            .step-card {
                padding: 2rem 1.25rem;
            }
            .reasons-grid {
                gap: 0.75rem;
            }
        }

        /* ── Three-plan card grid ── */
        .price-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        /* ── Trust section ── */
        .trust-section {
            text-align: center;
            padding-top: 1.5rem;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.75rem;
            margin-top: 2rem;
            text-align: left;
        }

        .trust-block {
            padding: 2rem 1.75rem;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .trust-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(169, 132, 103, 0.08);
            border: 1px solid rgba(169, 132, 103, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .trust-block h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
        }

        .trust-block p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin: 0;
        }

        @media (max-width: 640px) {
            .trust-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            .trust-block {
                padding: 1.5rem 1.25rem;
            }
        }

        /* ── Hero CTA + value line ── */
        .hero-sub {
            font-size: clamp(1rem, 2.6vw, 1.25rem);
            color: var(--text-muted);
            max-width: 620px;
            line-height: 1.6;
            margin: 0 auto 1.75rem;
            font-weight: 400;
        }
        .hero-sub strong { color: var(--accent); font-weight: 700; }

        .hero-cta {
            display: flex;
            gap: 0.9rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 0.9rem;
        }
        .hero-cta .btn {
            border-radius: 12px;
            padding: 0.95rem 1.9rem;
            font-size: 1.02rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            cursor: pointer;
        }
        .hero-btn-ghost {
            background: rgba(169, 132, 103, 0.08);
            border: 1px solid rgba(169, 132, 103, 0.35);
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.2s;
        }
        .hero-btn-ghost:hover {
            background: rgba(169, 132, 103, 0.15);
            border-color: var(--accent);
        }
        .hero-demo-link {
            display: inline-block;
            color: var(--text-muted);
            font-size: 0.9rem;
            text-decoration: none;
            border-bottom: 1px dashed rgba(169, 132, 103, 0.4);
            padding-bottom: 1px;
            transition: color 0.2s;
        }
        .hero-demo-link:hover { color: var(--accent); }

        /* Shorter hero on mobile so a CTA is reachable without a long scroll */
        @media (max-width: 640px) {
            .hero { min-height: auto; padding-top: 1.5rem; padding-bottom: 2.5rem; }
            .hero-cta .btn { width: 100%; justify-content: center; }
        }

        /* ── Site + Map bundle / founding social proof ── */
        .bundle { text-align: center; padding-top: 1.5rem; }
        .bundle-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
            text-align: left;
        }
        @media (min-width: 820px) {
            .bundle-grid { grid-template-columns: 1.1fr 0.9fr; }
        }
        .bundle-lead {
            font-size: clamp(1.15rem, 2.8vw, 1.5rem);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            margin: 0 0 1rem;
        }
        .bundle-lead strong { color: var(--accent); }
        .bundle-body {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }
        .bundle-body strong { color: var(--text-dark); }

        .map-preview {
            display: block;
            text-decoration: none;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(169, 132, 103, 0.3);
            box-shadow: 0 0 30px rgba(169, 132, 103, 0.1), 0 16px 40px rgba(0, 0, 0, 0.4);
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
        }
        .map-preview:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
            box-shadow: 0 0 40px rgba(169, 132, 103, 0.18), 0 20px 50px rgba(0, 0, 0, 0.5);
        }
        .map-preview-frame {
            position: relative;
            aspect-ratio: 16 / 10;
            background:
                radial-gradient(ellipse at 50% 40%, rgba(169, 132, 103, 0.18), transparent 60%),
                repeating-linear-gradient(0deg, rgba(169, 132, 103, 0.06) 0 1px, transparent 1px 26px),
                repeating-linear-gradient(90deg, rgba(169, 132, 103, 0.06) 0 1px, transparent 1px 26px),
                #fffdf9;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .map-preview-pins {
            position: absolute;
            inset: 0;
        }
        .map-preview-pins i {
            position: absolute;
            color: var(--accent);
            font-size: 1.4rem;
            filter: drop-shadow(0 0 7px rgba(169, 132, 103, 0.85));
            animation: pinPulse 2.4s ease-in-out infinite;
        }
        .map-preview-pins i:nth-child(1) { top: 26%; left: 30%; animation-delay: 0s; }
        .map-preview-pins i:nth-child(2) { top: 54%; left: 22%; animation-delay: .4s; }
        .map-preview-pins i:nth-child(3) { top: 38%; left: 56%; animation-delay: .8s; }
        .map-preview-pins i:nth-child(4) { top: 66%; left: 64%; animation-delay: 1.2s; font-size: 1.7rem; }
        .map-preview-pins i:nth-child(5) { top: 20%; left: 72%; animation-delay: 1.6s; }
        @keyframes pinPulse {
            0%, 100% { transform: translateY(0); opacity: 0.85; }
            50% { transform: translateY(-5px); opacity: 1; }
        }
        .map-preview-count {
            position: relative;
            z-index: 2;
            text-align: center;
            font-weight: 800;
            font-size: clamp(1rem, 2.4vw, 1.2rem);
            color: #5b4a3f;
            padding: 0.6rem 1.4rem;
            background: rgba(255, 253, 249, 0.82);
            border: 1px solid rgba(169, 132, 103, 0.35);
            border-radius: 12px;
            backdrop-filter: blur(6px);
            line-height: 1.35;
            max-width: 80%;
        }
        .map-preview-count strong { color: var(--accent); }
        .map-preview-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 1rem;
            background: rgba(169, 132, 103, 0.1);
            color: var(--accent);
            font-weight: 700;
            font-size: 0.95rem;
        }
        .map-preview-cta i { font-size: 1.05rem; }

        @media (prefers-reduced-motion: reduce) {
            .map-preview-pins i { animation: none; }
        }

/* ── Override leaked dark-theme teal glows/components from global style.css ── */
body { background: var(--bg) !important; }
.btn-primary { box-shadow: 0 8px 20px rgba(169,132,103,0.22) !important; }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(169,132,103,0.32) !important; }

/* body::before ambient teal radial wash + grain -> pastel blush wash */
body::before {
    background:
        radial-gradient(ellipse 80% 55% at 50% -8%, rgba(231,166,176,0.16) 0%, transparent 68%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E") !important;
}

/* .glass — used on .step-card/.trust-block; global version is near-invisible white-on-white */
.glass {
    background: rgba(169,132,103,0.05) !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 8px 32px rgba(169,132,103,0.10) !important;
}

/* .btn-secondary — global teal bg/border/text unreadable on white card */
.btn-secondary {
    background: rgba(169,132,103,0.08) !important;
    color: var(--accent) !important;
    border: 1px solid rgba(169,132,103,0.28) !important;
    box-shadow: 0 4px 20px rgba(169,132,103,0.10) !important;
}
.btn-secondary:hover {
    background: rgba(169,132,103,0.14) !important;
    color: var(--accent) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 8px 24px rgba(169,132,103,0.18) !important;
}

/* footer — global footer text is white-on-transparent, invisible on the pastel bg */
footer { background: var(--bg2) !important; border-top: 1px solid var(--border) !important; }
.flogo { color: var(--ink) !important; }
.ftag { color: var(--text-muted) !important; }
.flinks a { color: var(--text-muted) !important; }
.flinks a:hover { color: var(--accent) !important; }
.fcopy { color: var(--text-light) !important; border-top: 1px solid var(--border) !important; }
