@font-face {
    font-family: 'trebuc';
    src:
        url('fonts/trebuc.woff2') format('woff2'),
        url('fonts/trebuc.woff') format('woff'),
        url('fonts/trebuc.ttf') format('truetype');
}
:root {
    --navy: #14243b;
    --blue: #28527a;
    --blue-soft: #eaf1f7;
    --accent: #e6a43a;
    --accent-soft: #fff4df;
    --bg: #f5f7fa;
    --surface: #ffffff;
    --text: #182333;
    --muted: #6f7c8c;
    --border: #e2e7ed;
    --radius: 18px;
    --shadow:
        0 12px 40px rgba(20,35,55,.07);
    --shadow-hover:
        0 22px 55px rgba(20,35,55,.13);
    --max-width: 1240px;
}
/* =========================================================
   BASE
========================================================= */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(230,164,58,.09),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 8%,
            rgba(40,82,122,.08),
            transparent 30%
        ),
        var(--bg);
    color: var(--text);
    font-family:
        'trebuc',
        'Segoe UI',
        sans-serif;
    line-height: 1.55;
}
button,
input,
select {
    font: inherit;
}
button {
    cursor: pointer;
}
a {
    color: inherit;
    text-decoration: none;
}
/* =========================================================
   HEADER
========================================================= */
.site-header {
    position: sticky;
    top: 0;
    height: 76px;
    background:
        rgba(255,255,255,.88);
    backdrop-filter:
        blur(18px);
    -webkit-backdrop-filter:
        blur(18px);
    border-bottom:
        1px solid rgba(20,35,55,.08);
    z-index: 1000;
}
.header-inner {
    width:
        min(
            calc(100% - 40px),
            var(--max-width)
        );
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--blue)
        );
    color: #fff;
    font-weight: 800;
    box-shadow:
        0 7px 20px rgba(20,35,55,.18);
}
.brand-info {
    display: flex;
    flex-direction: column;
}
.brand-info strong {
    font-size: 15px;
    line-height: 1.1;
}
.brand-info small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}
/* NAV */
.desktop-nav {
    display: flex;
    gap: 34px;
    margin-left: auto;
    margin-right: 45px;
}
.desktop-nav a {
    color: #536171;
    font-size: 13px;
    transition:
        color .2s ease;
}
.desktop-nav a:hover {
    color: var(--navy);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.login-button {
    padding:
        10px 18px;
    border:
        1px solid var(--border);
    border-radius:
        999px;
    background: #fff;
    color: var(--navy);
    font-weight: 600;
    transition:
        all .2s ease;
}
.login-button:hover {
    background:
        var(--navy);
    color: #fff;
    border-color:
        var(--navy);
}
.menu-button {
    display: none;
}
/* =========================================================
   MOBILE MENU
========================================================= */
.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(255,255,255,.97);
    border-bottom:
        1px solid var(--border);
    box-shadow:
        var(--shadow);
    z-index: 999;
}
.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mobile-menu a {
    padding: 10px;
    font-weight: 600;
}
.mobile-menu button {
    border: 0;
    padding: 13px;
    border-radius: 12px;
    background: var(--navy);
    color: white;
}
/* =========================================================
   HERO
========================================================= */
.hero {
    position: relative;
    min-height:
        590px;
    max-width:
        1440px;
    margin: auto;
    padding:
        105px 7vw 85px;
    display: grid;
    grid-template-columns:
        1.05fr .95fr;
    align-items: center;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}
.eyebrow {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing:
        .14em;
}
.hero h1 {
    margin: 0;
    max-width: 680px;
    font-size:
        clamp(41px, 5.4vw, 70px);
    line-height:
        .98;
    letter-spacing:
        -.045em;
}
.hero h1 span {
    display: block;
    color: var(--blue);
}
.hero p {
    max-width: 580px;
    margin:
        28px 0 30px;
    color: var(--muted);
    font-size:
        clamp(14px, 1.4vw, 17px);
    line-height:
        1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding:
        0 21px;
    border-radius:
        12px;
    font-weight:
        700;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}
.primary-button {
    border: 0;
    background:
        var(--navy);
    color: white;
    box-shadow:
        0 9px 24px rgba(20,35,55,.18);
}
.primary-button:hover {
    transform:
        translateY(-2px);
    box-shadow:
        0 14px 30px rgba(20,35,55,.25);
}
.secondary-button {
    border:
        1px solid var(--border);
    background:
        rgba(255,255,255,.75);
    color:
        var(--navy);
}
.hero-note {
    margin-top: 20px;
    color: var(--muted);
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #45ad78;
    box-shadow:
        0 0 0 5px rgba(69,173,120,.12);
}
/* HERO VISUAL */
.hero-card {
    position: relative;
    height: 420px;
}
.hero-orb {
    position: absolute;
    inset:
        50px 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--navy),
            #426e99
        );
    box-shadow:
        0 35px 80px rgba(20,35,55,.25);
    animation:
        float 6s ease-in-out infinite;
}
.hero-orb::before {
    content: '';
    position: absolute;
    inset: 25px;
    border:
        1px solid rgba(255,255,255,.18);
    border-radius: 50%;
}
.hero-orb span {
    color: white;
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -.08em;
}
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 13px;
    padding:
        15px 18px;
    background:
        rgba(255,255,255,.9);
    backdrop-filter:
        blur(15px);
    border:
        1px solid rgba(255,255,255,.8);
    border-radius:
        14px;
    box-shadow:
        0 18px 45px rgba(20,35,55,.13);
    z-index: 4;
    animation:
        float 5s ease-in-out infinite;
}
.floating-card span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background:
        var(--blue-soft);
    border-radius:
        10px;
    font-size: 18px;
}
.floating-card div {
    display: flex;
    flex-direction: column;
}
.floating-card strong {
    font-size: 12px;
}
.floating-card small {
    color: var(--muted);
    font-size: 9px;
}
.card-one {
    top: 35px;
    left: 0;
    animation-delay:
        -.8s;
}
.card-two {
    right: 0;
    bottom: 55px;
    animation-delay:
        -2.2s;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.glow-one {
    width: 240px;
    height: 240px;
    background:
        rgba(230,164,58,.13);
    top: 40px;
    right: 18%;
}
.glow-two {
    width: 280px;
    height: 280px;
    background:
        rgba(40,82,122,.1);
    bottom: -80px;
    left: 10%;
}
/* =========================================================
   SECTIONS
========================================================= */
.section-container {
    width:
        min(
            calc(100% - 40px),
            var(--max-width)
        );
    margin: auto;
}
.search-section {
    padding:
        55px 0 25px;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 22px;
}
.section-heading h2 {
    margin: 0;
    font-size:
        clamp(24px, 2.7vw, 35px);
    letter-spacing:
        -.035em;
}
.result-count {
    color: var(--muted);
    font-size: 12px;
}
/* =========================================================
   SEARCH
========================================================= */
.search-box {
    display: grid;
    grid-template-columns:
        1fr 240px 110px;
    gap: 10px;
    padding: 10px;
    background: #fff;
    border:
        1px solid var(--border);
    border-radius:
        15px;
    box-shadow:
        var(--shadow);
}
.search-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding:
        0 15px;
}
.search-input span {
    font-size: 24px;
    color: var(--muted);
}
.search-input input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-size: 14px;
}
.search-box select {
    min-height: 48px;
    padding:
        0 13px;
    border:
        1px solid var(--border);
    border-radius:
        10px;
    background:
        #fafbfc;
    color:
        var(--text);
    outline: 0;
}
.search-button {
    border: 0;
    border-radius:
        10px;
    background:
        var(--navy);
    color: white;
    font-weight: 700;
}
/* =========================================================
   CATEGORIES
========================================================= */
.categories-section {
    padding:
        70px 0;
}
.category-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 14px;
}
.category-card {
    display: flex;
    gap: 15px;
    padding: 21px;
    background: #fff;
    border:
        1px solid var(--border);
    border-radius:
        var(--radius);
    box-shadow:
        var(--shadow);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}
.category-card:hover {
    transform:
        translateY(-4px);
    box-shadow:
        var(--shadow-hover);
}
.category-icon {
    flex:
        0 0 auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background:
        var(--blue-soft);
    font-size: 20px;
}
.category-content h3 {
    margin:
        0 0 5px;
    font-size: 15px;
}
.category-content p {
    margin:
        0 0 12px;
    color:
        var(--muted);
    font-size:
        11px;
    line-height:
        1.5;
}
.category-count {
    color:
        var(--blue);
    font-size:
        10px;
    font-weight:
        700;
}
/* =========================================================
   ADDS
========================================================= */
.adds-section {
    padding:
        30px 0 90px;
}
.text-button {
    border: 0;
    background: transparent;
    color:
        var(--blue);
    font-weight:
        700;
}
.adds-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 16px;
}
.add-card {
    overflow: hidden;
    background:
        #fff;
    border:
        1px solid var(--border);
    border-radius:
        var(--radius);
    box-shadow:
        var(--shadow);
    transition:
        transform .22s ease,
        box-shadow .22s ease;
}
.add-card:hover {
    transform:
        translateY(-4px);
    box-shadow:
        var(--shadow-hover);
}
.add-icon {
    height: 145px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            135deg,
            #edf3f8,
            #f8f4ea
        );
    font-size:
        45px;
}
.add-body {
    padding:
        20px;
}
.add-category {
    color:
        var(--blue);
    font-size:
        9px;
    font-weight:
        800;
    letter-spacing:
        .1em;
}
.add-body h3 {
    margin:
        7px 0;
    font-size:
        18px;
    letter-spacing:
        -.02em;
}
.add-body p {
    min-height:
        48px;
    margin:
        0 0 18px;
    color:
        var(--muted);
    font-size:
        12px;
}
.add-footer {
    display:
        flex;
    justify-content:
        space-between;
    align-items:
        center;
    padding-top:
        13px;
    border-top:
        1px solid var(--border);
    color:
        var(--muted);
    font-size:
        10px;
}
.add-footer strong {
    color:
        var(--text);
    font-size:
        12px;
}
/* =========================================================
   COMMUNITY
========================================================= */
.community-section {
    padding:
        90px 20px;
    background:
        var(--navy);
    color:
        white;
}
.community-inner {
    width:
        min(
            100%,
            var(--max-width)
        );
    margin:
        auto;
    display:
        grid;
    grid-template-columns:
        1.3fr .7fr;
    gap:
        80px;
    align-items:
        center;
}
.community-copy .eyebrow {
    color:
        #a8c5df;
}
.community-copy h2 {
    max-width:
        650px;
    margin:
        0;
    font-size:
        clamp(34px, 4.5vw, 56px);
    line-height:
        1;
    letter-spacing:
        -.045em;
}
.community-copy p {
    max-width:
        600px;
    margin:
        25px 0;
    color:
        rgba(255,255,255,.65);
    font-size:
        14px;
}
.light-button {
    background:
        white;
    color:
        var(--navy);
    box-shadow:
        none;
}
.community-stats {
    display:
        grid;
    gap:
        1px;
    background:
        rgba(255,255,255,.1);
    border:
        1px solid rgba(255,255,255,.1);
    border-radius:
        var(--radius);
    overflow:
        hidden;
}
.community-stats div {
    padding:
        25px;
    background:
        rgba(255,255,255,.04);
}
.community-stats strong {
    display:
        block;
    font-size:
        32px;
}
.community-stats span {
    color:
        rgba(255,255,255,.55);
    font-size:
        11px;
}
/* =========================================================
   MAP
========================================================= */
.map-section {
    padding:
        90px 0;
}
.map-card {
    min-height:
        470px;
    position:
        relative;
    overflow:
        hidden;
    display:
        flex;
    align-items:
        center;
    border-radius:
        25px;
    background:
        #dfe7ee;
    box-shadow:
        var(--shadow);
}
.map-background {
    position:
        absolute;
    inset:
        0;
    background:
        linear-gradient(
            135deg,
            #dfe8ee,
            #f6f4ed
        );
}
.map-grid {
    position:
        absolute;
    inset:
        -20%;
    background:
        repeating-linear-gradient(
            25deg,
            transparent 0 40px,
            rgba(40,82,122,.08) 41px 43px
        );
    transform:
        rotate(-7deg);
}
.map-content {
    position:
        relative;
    z-index:
        2;
    width:
        min(520px, 90%);
    margin-left:
        7%;
    padding:
        38px;
    background:
        rgba(255,255,255,.91);
    backdrop-filter:
        blur(15px);
    border:
        1px solid rgba(255,255,255,.8);
    border-radius:
        20px;
    box-shadow:
        0 20px 55px rgba(20,35,55,.12);
}
.map-content h2 {
    margin:
        0;
    font-size:
        34px;
    line-height:
        1.05;
    letter-spacing:
        -.04em;
}
.map-content p {
    color:
        var(--muted);
    font-size:
        13px;
}
.map-pin {
    position:
        absolute;
    width:
        26px;
    height:
        26px;
    display:
        grid;
    place-items:
        center;
    border-radius:
        50%;
    background:
        var(--accent);
    color:
        white;
    box-shadow:
        0 0 0 7px rgba(230,164,58,.16);
}
.pin-one {
    top: 25%;
    left: 65%;
}
.pin-two {
    top: 58%;
    left: 80%;
}
.pin-three {
    top: 72%;
    left: 55%;
}
/* =========================================================
   FINAL CTA
========================================================= */
.final-cta {
    padding:
        90px 20px;
    text-align:
        center;
}
.final-cta h2 {
    margin:
        0;
    font-size:
        clamp(32px, 4.5vw, 54px);
    letter-spacing:
        -.045em;
}
.final-cta p {
    color:
        var(--muted);
    margin:
        14px auto 25px;
    max-width:
        500px;
}
/* =========================================================
   FOOTER
========================================================= */
.site-footer {
    background:
        #0f1b2d;
    color:
        white;
}
.footer-inner {
    width:
        min(
            calc(100% - 40px),
            var(--max-width)
        );
    min-height:
        120px;
    margin:
        auto;
    display:
        flex;
    align-items:
        center;
    justify-content:
        space-between;
    gap:
        25px;
}
.footer-inner strong {
    display:
        block;
}
.footer-inner span {
    color:
        rgba(255,255,255,.45);
    font-size:
        10px;
}
.powered {
    color:
        rgba(255,255,255,.45);
    font-size:
        11px;
}
.powered strong {
    display:
        inline;
    color:
        white;
}
.footer-links {
    display:
        flex;
    gap:
        18px;
    font-size:
        11px;
    color:
        rgba(255,255,255,.55);
}
/* =========================================================
   MODAL
========================================================= */
.modal-backdrop {
    position:
        fixed;
    inset:
        0;
    display:
        none;
    align-items:
        center;
    justify-content:
        center;
    padding:
        20px;
    background:
        rgba(10,20,35,.55);
    backdrop-filter:
        blur(7px);
    z-index:
        2000;
}
.modal-backdrop.active {
    display:
        flex;
    animation:
        fadeIn .2s ease;
}
.publish-modal {
    position:
        relative;
    width:
        min(100%, 500px);
    padding:
        35px;
    background:
        white;
    border-radius:
        22px;
    box-shadow:
        0 30px 90px rgba(0,0,0,.25);
    animation:
        modalIn .25s ease;
}
.publish-modal h2 {
    margin:
        0 0 10px;
    font-size:
        29px;
    line-height:
        1;
    letter-spacing:
        -.04em;
}
.publish-modal p {
    color:
        var(--muted);
    font-size:
        12px;
}
.publish-modal label {
    display:
        block;
    margin-top:
        18px;
    font-size:
        11px;
    font-weight:
        700;
}
.publish-modal input,
.publish-modal select {
    display:
        block;
    width:
        100%;
    height:
        46px;
    margin-top:
        7px;
    padding:
        0 12px;
    border:
        1px solid var(--border);
    border-radius:
        10px;
    outline:
        none;
}
.publish-modal .primary-button {
    width:
        100%;
    margin-top:
        23px;
}
.modal-close {
    position:
        absolute;
    top:
        15px;
    right:
        17px;
    width:
        35px;
    height:
        35px;
    border:
        0;
    border-radius:
        50%;
    background:
        #f1f3f5;
    font-size:
        22px;
    color:
        var(--muted);
}
.demo-note {
    display:
        block;
    margin-top:
        14px;
    text-align:
        center;
    color:
        var(--muted);
    font-size:
        9px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes modalIn {
    from {
        opacity: 0;
        transform:
            translateY(15px)
            scale(.98);
    }
    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}
/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 950px) {
    .desktop-nav {
        display:
            none;
    }
    .menu-button {
        display:
            block;
        width:
            42px;
        height:
            42px;
        border:
            1px solid var(--border);
        border-radius:
            11px;
        background:
            white;
        color:
            var(--navy);
        font-size:
            17px;
    }
    .hero {
        grid-template-columns:
            1fr;
        padding-top:
            75px;
    }
    .hero-card {
        height:
            330px;
        margin-top:
            20px;
    }
    .category-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
    .community-inner {
        grid-template-columns:
            1fr;
    }
}
@media (max-width: 700px) {
    .header-inner,
    .section-container,
    .footer-inner {
        width:
            min(
                calc(100% - 28px),
                var(--max-width)
            );
    }
    .hero {
        min-height:
            auto;
        padding:
            65px 20px 55px;
    }
    .hero-card {
        height:
            260px;
    }
    .hero-orb {
        inset:
            30px 60px;
    }
    .hero-orb span {
        font-size:
            50px;
    }
    .card-one {
        left:
            -5px;
    }
    .card-two {
        right:
            -5px;
    }
    .search-box {
        grid-template-columns:
            1fr;
    }
    .category-grid,
    .adds-grid {
        grid-template-columns:
            1fr;
    }
    .map-content {
        margin:
            20px;
        padding:
            25px;
    }
    .map-content h2 {
        font-size:
            27px;
    }
    .footer-inner {
        padding:
            30px 0;
        flex-direction:
            column;
        align-items:
            flex-start;
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration:
            .01ms !important;
        animation-iteration-count:
            1 !important;
        transition-duration:
            .01ms !important;
        scroll-behavior:
            auto !important;
    }
}