:root {
  --navy: #102a43;
  --navy-dark: #081d31;
  --teal: #00a896;
  --teal-soft: #e8f8f5;
  --saffron: #f59e0b;
  --cream: #f7faf9;
  --ink: #18344d;
  --muted: #627588;
  --line: #dce8e5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Manrope", system-ui, sans-serif; color: var(--ink); background: var(--cream); }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }

.site-header { max-width: 1180px; margin: auto; padding: 25px 28px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 38px; height: 43px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.wordmark { font-size: 25px; font-weight: 800; letter-spacing: -1px; color: var(--navy); }
.wordmark strong { color: var(--teal); }
.launch-badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--navy); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.launch-badge span { width: 8px; height: 8px; background: var(--saffron); border-radius: 50%; box-shadow: 0 0 0 4px #fff3d7; }

main { overflow: hidden; }
.hero { max-width: 1180px; min-height: 610px; margin: auto; padding: 75px 28px 90px; display: grid; grid-template-columns: 1.07fr .83fr; align-items: center; gap: 90px; position: relative; }
.hero::before { content: ""; width: 480px; height: 480px; position: absolute; right: -140px; top: -20px; border: 1px solid #d8efea; border-radius: 50%; box-shadow: 0 0 0 85px rgba(0,168,150,.035), 0 0 0 170px rgba(0,168,150,.025); z-index: -1; }
.eyebrow { margin: 0 0 15px; color: var(--teal); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
h1 { max-width: 690px; margin: 0; color: var(--navy-dark); font-size: clamp(46px, 5vw, 70px); line-height: 1.03; letter-spacing: -.055em; }
h1 em { color: var(--teal); font-style: normal; }
.hero-text { max-width: 625px; margin: 26px 0 30px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.search-preview { max-width: 590px; min-height: 65px; padding: 7px 8px 7px 20px; display: flex; align-items: center; gap: 13px; background: white; border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 18px 50px rgba(16,42,67,.09); }
.search-preview svg { width: 21px; fill: none; stroke: var(--teal); stroke-width: 2; }
.search-preview span { flex: 1; color: #7b8d9a; font-size: 14px; }
.search-preview button, .outline-button { border: 0; cursor: pointer; font-weight: 800; }
.search-preview button { align-self: stretch; padding: 0 22px; color: white; background: var(--navy); border-radius: 10px; transition: .2s; }
.search-preview button:hover { background: var(--teal); }
.microcopy { margin: 11px 0 0 4px; color: #83919d; font-size: 12px; }

.discovery-card { background: #fff; padding: 17px; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 30px 70px rgba(16,42,67,.14); transform: rotate(1.5deg); }
.card-top { padding: 4px 3px 14px; display: flex; justify-content: space-between; align-items: center; color: var(--navy); font-size: 13px; font-weight: 800; }
.pin-label { padding: 6px 9px; color: var(--teal); background: var(--teal-soft); border-radius: 8px; font-size: 10px; }
.map-panel { height: 240px; position: relative; overflow: hidden; border-radius: 15px; background: #eaf5f2; }
.map-panel::before, .map-panel::after { content: ""; position: absolute; background: #d0e9e4; }
.map-panel::before { width: 150px; height: 130px; top: 16px; left: 24px; border-radius: 18px 50px 15px 45px; }
.map-panel::after { width: 170px; height: 120px; bottom: -25px; right: 13px; border-radius: 70px 18px 30px 20px; }
.road { position: absolute; z-index: 1; background: #fff; border: 1px solid #d7e8e5; }
.road-a { width: 450px; height: 30px; left: -35px; top: 104px; transform: rotate(-12deg); }
.road-b { width: 30px; height: 320px; left: 180px; top: -35px; transform: rotate(17deg); }
.road-c { width: 300px; height: 20px; left: 90px; top: 176px; transform: rotate(18deg); }
.map-pin { position: absolute; z-index: 3; display: grid; place-items: center; width: 24px; height: 30px; color: white; background: var(--teal); clip-path: polygon(50% 100%, 9% 51%, 8% 30%, 18% 12%, 36% 1%, 63% 1%, 83% 13%, 93% 31%, 90% 54%); font-size: 8px; }
.p1 { left: 65px; top: 75px; } .p2 { right: 55px; top: 70px; background: var(--saffron); } .p3 { right: 100px; bottom: 28px; }
.map-focus { width: 82px; height: 82px; position: absolute; z-index: 4; left: calc(50% - 41px); top: calc(50% - 41px); display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; background: var(--navy); border: 6px solid white; border-radius: 50%; box-shadow: 0 8px 25px rgba(16,42,67,.2); }
.map-focus span { font-size: 22px; font-weight: 800; }.map-focus small { font-size: 9px; opacity: .8; }
.mini-list { padding: 5px 3px 0; }
.mini-list > div { padding: 13px 5px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #edf2f1; }
.mini-list > div:last-child { border-bottom: 0; }
.mini-icon { width: 36px; height: 36px; display: grid; place-items: center; color: #a06500; background: #fff3d7; border-radius: 10px; }.mini-icon.teal { color: var(--teal); background: var(--teal-soft); }
.mini-list p { flex: 1; margin: 0; display: flex; flex-direction: column; }.mini-list strong { color: var(--navy); font-size: 12px; }.mini-list small { margin-top: 3px; color: #83919d; font-size: 9px; }.mini-list b { color: var(--teal); }

.categories { padding: 95px max(28px, calc((100vw - 1124px)/2)); background: white; }
.section-heading { margin-bottom: 40px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading h2, .owner-callout h2 { margin: 0; color: var(--navy); font-size: clamp(30px, 3vw, 43px); letter-spacing: -.04em; }
.section-heading > p { max-width: 430px; margin: 0; color: var(--muted); line-height: 1.65; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-grid article { padding: 25px; border: 1px solid var(--line); border-radius: 16px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.category-grid article:hover { transform: translateY(-4px); border-color: #a9dcd4; box-shadow: 0 16px 35px rgba(16,42,67,.07); }
.category-grid span { width: 43px; height: 43px; display: grid; place-items: center; background: var(--teal-soft); border-radius: 12px; font-size: 21px; }
.category-grid h3 { margin: 18px 0 6px; color: var(--navy); font-size: 16px; }.category-grid p { margin: 0; color: var(--muted); font-size: 12px; }

.owner-callout { max-width: 1124px; margin: 85px auto; padding: 47px 50px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; color: white; background: var(--navy); border-radius: 24px; position: relative; overflow: hidden; }
.owner-callout::after { content: ""; width: 240px; height: 240px; position: absolute; right: -80px; bottom: -160px; border: 38px solid rgba(0,168,150,.2); border-radius: 50%; }
.owner-icon { width: 62px; height: 62px; display: grid; place-items: center; color: var(--saffron); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 17px; font-size: 30px; }
.owner-callout h2 { color: white; font-size: 32px; }.owner-callout p:not(.eyebrow) { max-width: 650px; margin: 10px 0 0; color: #bdcbd6; line-height: 1.6; font-size: 14px; }
.outline-button { z-index: 1; padding: 14px 18px; color: var(--navy); background: white; border-radius: 10px; white-space: nowrap; }.outline-button span { margin-left: 7px; color: var(--teal); }

footer { padding: 45px 28px; text-align: center; color: #a8b6c2; background: var(--navy-dark); }
.footer-brand { color: white; font-size: 24px; font-weight: 800; letter-spacing: -.05em; }.footer-brand strong { color: var(--teal); }
footer > p { margin: 8px 0 20px; font-size: 12px; }
.footer-links { margin-bottom: 22px; display: flex; justify-content: center; gap: 24px; font-size: 12px; font-weight: 700; }.footer-links a:hover { color: var(--teal); }
footer small { font-size: 10px; }

dialog { max-width: 420px; padding: 38px; text-align: center; border: 0; border-radius: 20px; color: var(--ink); box-shadow: 0 35px 100px rgba(0,0,0,.28); }
dialog::backdrop { background: rgba(4,19,31,.72); backdrop-filter: blur(3px); }
.dialog-close { position: absolute; right: 15px; top: 10px; border: 0; background: none; color: var(--muted); font-size: 25px; cursor: pointer; }
.dialog-mark { width: 52px; height: 52px; margin: 0 auto 18px; display: grid; place-items: center; color: white; background: var(--teal); border-radius: 50%; font-size: 24px; }
dialog h2 { margin: 0; color: var(--navy); } dialog p { color: var(--muted); line-height: 1.6; } dialog a { color: var(--teal); font-weight: 800; }

@media (max-width: 900px) {
  .hero { padding-top: 45px; grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { text-align: center; }.hero-text, .search-preview { margin-left: auto; margin-right: auto; }.microcopy { text-align: center; }
  .discovery-card { max-width: 520px; width: 100%; margin: auto; transform: none; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .owner-callout { margin-left: 28px; margin-right: 28px; grid-template-columns: auto 1fr; }.outline-button { grid-column: 2; justify-self: start; }
}

@media (max-width: 600px) {
  .site-header { padding: 20px; }.launch-badge { padding: 8px 10px; font-size: 9px; }.brand-mark { width: 31px; }.wordmark { font-size: 21px; }
  .hero { padding: 45px 20px 70px; }.hero::before { display: none; } h1 { font-size: 44px; }.hero-text { font-size: 15px; }
  .search-preview { min-height: 58px; padding-left: 15px; }.search-preview span { font-size: 11px; }.search-preview button { padding: 0 14px; font-size: 12px; }
  .categories { padding: 70px 20px; }.section-heading { align-items: start; flex-direction: column; }.category-grid { grid-template-columns: 1fr; }
  .owner-callout { margin: 55px 20px; padding: 32px 25px; grid-template-columns: 1fr; text-align: center; }.owner-icon { margin: auto; }.outline-button { grid-column: 1; justify-self: center; }
  .footer-links { flex-wrap: wrap; gap: 14px 22px; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
