:root {
  --purple: #5848e5;
  --purple-dark: #3327a7;
  --purple-soft: #efedff;
  --lavender: #aaa3ff;
  --ink: #17152b;
  --muted: #69667d;
  --white: #fff;
  --surface: #f8f7fc;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  color: var(--white);
}

.site-nav {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 1.65rem;
  font-weight: 750;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand-mark { display: inline-flex; width: 26px; }
.brand-mark svg { width: 100%; overflow: visible; }
.brand-mark path { fill: #fff; }
.brand-mark circle:first-of-type { fill: var(--purple); }
.brand-mark circle:last-of-type { fill: #fff; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: #fff !important; font-size: .94rem; font-weight: 600; text-decoration: none; opacity: .86; }
.nav-links a:hover { opacity: 1; }
.nav-auth-form { margin: 0; }
.nav-auth-form button {
  border: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: .94rem;
  font-weight: 600;
  opacity: .86;
  cursor: pointer;
}
.nav-auth-form button:hover { opacity: 1; }
.nav-pill {
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: .82rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: var(--white);
  background: var(--purple);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 740px;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 76px;
  padding-top: 88px;
}

.hero-glow { position: absolute; border-radius: 50%; background: rgba(255,255,255,.07); filter: blur(2px); }
.hero-glow-one { width: 580px; height: 580px; top: -320px; right: -120px; }
.hero-glow-two { width: 330px; height: 330px; bottom: 20px; left: -190px; }

.eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.4rem, 6.2vw, 6.3rem);
  font-weight: 780;
  letter-spacing: -.07em;
  line-height: .94;
}

.hero h1 span { color: #d4d0ff; }

.hero-lead {
  max-width: 610px;
  margin: 30px 0 34px;
  color: rgba(255,255,255,.78);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 28px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 26px;
  font-size: .95rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--purple-dark); background: var(--white); box-shadow: 0 12px 28px rgba(25,17,91,.2); }
.text-link { border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 3px; font-weight: 650; text-decoration: none; }

.hero-visual { position: relative; min-height: 500px; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.orbit-large { width: 460px; height: 460px; top: 15px; left: 10px; }
.orbit-small { width: 320px; height: 320px; top: 85px; left: 80px; }

.brand-pin { display: grid; place-items: center; }
.brand-pin svg { overflow: visible; filter: drop-shadow(0 16px 15px rgba(31,23,116,.25)); }
.brand-pin path { fill: white; stroke: rgba(51,39,167,.3); stroke-width: 2; }
.brand-pin .pin-ring { fill: var(--purple); }
.brand-pin .pin-dot { fill: #d8d4ff; }
.brand-pin-large { position: absolute; top: 122px; left: 162px; }
.brand-pin-large svg { width: 158px; }

.place-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 16px;
  padding: 12px 15px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 35px rgba(32,23,114,.2);
}
.place-card-one { top: 56px; right: -20px; }
.place-card-two { bottom: 38px; left: -20px; }
.place-card-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; color: var(--purple); background: var(--purple-soft); font-size: 1.15rem; }
.place-card strong, .place-card small { display: block; }
.place-card strong { font-size: .86rem; }
.place-card small { margin-top: 3px; color: var(--muted); font-size: .72rem; }

.hero-wave { position: absolute; right: -2px; bottom: -2px; left: -2px; height: 115px; }
.hero-wave svg { width: 100%; height: 100%; }
.hero-wave path { fill: var(--white); }

.section { padding: 110px 0; }
.section-heading { max-width: 720px; margin: 0 auto 58px; text-align: center; }
.eyebrow-purple { margin-bottom: 16px; color: var(--purple); }
.section-heading h2, .how-copy h2, .closing-cta h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: 1.05;
}
.section-heading p, .how-copy > p { margin: 22px auto 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card { border: 1px solid #e9e7f3; border-radius: 24px; padding: 34px; background: var(--white); box-shadow: 0 18px 50px rgba(36,29,81,.06); }
.benefit-card-featured { background: var(--purple-soft); border-color: #dedaff; }
.benefit-icon { display: grid; width: 50px; height: 50px; margin-bottom: 26px; place-items: center; border-radius: 15px; color: var(--purple); background: var(--purple-soft); }
.benefit-card-featured .benefit-icon { background: var(--white); }
.benefit-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.benefit-card h3 { margin: 0 0 12px; font-size: 1.25rem; font-weight: 750; }
.benefit-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.how-it-works { background: var(--surface); }
.how-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 100px; }
.how-copy { position: sticky; top: 60px; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 72px 1fr; gap: 22px; border-top: 1px solid #ddd9eb; padding: 30px 0; }
.steps li:last-child { border-bottom: 1px solid #ddd9eb; }
.step-number { color: var(--purple); font-size: .8rem; font-weight: 800; letter-spacing: .08em; }
.steps h3 { margin: -5px 0 9px; font-size: 1.2rem; font-weight: 750; }
.steps p { margin: 0; color: var(--muted); line-height: 1.6; }

.closing-cta { overflow: hidden; padding: 110px 0; color: var(--white); background: var(--purple); text-align: center; }
.closing-inner { display: flex; flex-direction: column; align-items: center; }
.brand-pin-small { margin-bottom: 30px; }
.brand-pin-small svg { width: 66px; }
.closing-cta h2 { max-width: 690px; }
.closing-cta p { margin: 18px 0 28px; color: rgba(255,255,255,.75); font-size: 1.15rem; }
.coming-soon { border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: 11px 18px; font-size: .82rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }

.site-footer { color: #cbc7e7; background: #17142d; }
.footer-inner { display: flex; min-height: 100px; align-items: center; justify-content: space-between; gap: 24px; }
.brand-footer { color: var(--white); font-size: 1.35rem; }
.footer-inner p { margin: 0; font-size: .86rem; }
.footer-inner > a:last-child { color: #cbc7e7; font-size: .86rem; text-decoration: none; }

.form-page-heading { padding: 145px 0 78px; color: var(--white); background: var(--purple); }
.form-heading-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.form-heading-inner .eyebrow { margin-bottom: 15px; color: #d7d3ff; }
.form-heading-inner h1 { margin: 0; font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 780; letter-spacing: -.065em; }
.form-heading-inner p { max-width: 620px; margin: 20px 0 0; color: rgba(255,255,255,.76); font-size: 1.1rem; line-height: 1.65; }
.form-heading-pin svg { width: 96px; }

.form-page-content { padding: 80px 0 110px; background: var(--surface); }
.create-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); align-items: start; gap: 64px; }
.form-intro { position: sticky; top: 40px; }
.form-intro h2 { margin: 0; font-size: 2.1rem; font-weight: 760; letter-spacing: -.045em; line-height: 1.1; }
.form-intro > p { margin: 18px 0 28px; color: var(--muted); line-height: 1.65; }
.form-tip { display: flex; gap: 14px; border-top: 1px solid #ddd9eb; padding-top: 24px; }
.form-tip svg { width: 25px; min-width: 25px; height: 25px; fill: none; stroke: var(--purple); stroke-width: 1.8; }
.form-tip p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.form-tip strong { color: var(--ink); }

.form-card { border: 1px solid #e6e3f0; border-radius: 26px; padding: 42px; background: var(--white); box-shadow: 0 22px 60px rgba(33,25,81,.08); }
.form-card fieldset { margin: 0; border: 0; padding: 0 0 38px; }
.form-card fieldset + fieldset { border-top: 1px solid #ece9f3; padding-top: 36px; }
.form-card legend { width: auto; margin: 0 0 24px; float: none; color: var(--ink); font-size: 1.15rem; font-weight: 760; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.field-full { grid-column: 1 / -1; }
.form-field { min-width: 0; }
.form-field label { display: block; margin-bottom: 8px; color: #302d43; font-size: .88rem; font-weight: 700; }
.form-field label > span { color: var(--purple); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid #d8d4e3;
  border-radius: 11px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input, .form-field select { min-height: 48px; }
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(88,72,229,.11); }
.form-field input:disabled { color: #9995a7; background: #f2f0f6; }
.form-field small { display: block; margin-top: 7px; color: #858194; font-size: .75rem; }
.fieldset-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.location-button { display: inline-flex; align-items: center; gap: 7px; border: 0; padding: 0; color: var(--purple); background: none; font-size: .84rem; font-weight: 750; }
.location-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.location-button:disabled { opacity: .55; }
.map-picker { margin-bottom: 24px; }
.map-search-label { display: block; margin-bottom: 8px; color: #302d43; font-size: .88rem; font-weight: 700; }
.map-search-label span { color: var(--purple); }
.map-search-container { position: relative; z-index: 3; margin-bottom: 12px; }
.map-search-container mapbox-geocoder { width: 100%; }
.poi-map { width: 100%; height: 390px; overflow: hidden; border: 1px solid #d8d4e3; border-radius: 16px; background: #ebe9f2; }
.map-instructions { margin: 10px 2px 0; color: #777386; font-size: .78rem; }
.selected-location { display: flex; align-items: center; gap: 13px; margin-top: 16px; border: 1px solid #e0ddea; border-radius: 13px; padding: 13px 15px; background: #f8f7fb; }
.selected-location-icon { display: grid; width: 38px; height: 38px; min-width: 38px; place-items: center; border-radius: 11px; color: #8b8798; background: #eceaf1; }
.selected-location-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.selected-location strong, .selected-location small { display: block; }
.selected-location strong { font-size: .87rem; }
.selected-location small { margin-top: 3px; color: var(--muted); font-size: .76rem; }
.selected-location.has-location { border-color: #cdc8ff; background: var(--purple-soft); }
.selected-location.has-location .selected-location-icon { color: var(--purple); background: #fff; }
.address-fields { margin-top: 24px; }
.neerby-map-marker { position: relative; width: 42px; height: 50px; border: 3px solid var(--purple); border-radius: 50% 50% 50% 7px; background: #fff; box-shadow: 0 8px 18px rgba(42,32,135,.28); transform: rotate(-45deg); cursor: grab; }
.neerby-map-marker:active { cursor: grabbing; }
.neerby-map-marker span { position: absolute; top: 50%; left: 50%; width: 15px; height: 15px; border: 4px solid #d8d4ff; border-radius: 50%; background: var(--purple); transform: translate(-50%, -50%); }
.mapboxgl-ctrl-logo { opacity: .72; }
.input-prefix { position: relative; }
.input-prefix span { position: absolute; z-index: 1; top: 50%; left: 15px; color: var(--muted); transform: translateY(-50%); }
.input-prefix input { padding-left: 30px; }
.checkbox-field { display: flex; min-height: 48px; align-items: center; gap: 12px; padding-top: 23px; }
.checkbox-field input { width: 20px; min-height: 20px; accent-color: var(--purple); }
.checkbox-field label { margin: 0; }
.checkbox-field label span, .checkbox-field label small { display: block; }
.checkbox-field label span { color: var(--ink); }
.checkbox-field label small { margin-top: 2px; font-weight: 400; }
.form-actions { display: flex; align-items: center; justify-content: flex-end; gap: 24px; border-top: 1px solid #ece9f3; padding-top: 30px; }
.form-actions > a { color: var(--muted); font-size: .9rem; font-weight: 650; text-decoration: none; }
.submit-button { min-height: 50px; border: 0; border-radius: 999px; padding: 0 25px; color: #fff; background: var(--purple); font-size: .92rem; font-weight: 750; box-shadow: 0 12px 25px rgba(88,72,229,.2); }
.submit-button:hover { background: var(--purple-dark); }
.submit-button:disabled { cursor: wait; opacity: .65; }
.form-message { margin-bottom: 30px; border-radius: 13px; padding: 16px 18px; font-size: .9rem; line-height: 1.5; }
.form-message strong, .form-message span { display: block; }
.form-message ul { margin: 8px 0 0; padding-left: 20px; }
.form-message-error { border: 1px solid #f2c5c5; color: #792525; background: #fff3f3; }
.form-message-success { border: 1px solid #b9e2d0; color: #185c43; background: #eefbf5; }

.listing-hero { position: relative; overflow: hidden; padding: 150px 0 92px; color: #fff; background: var(--purple); }
.listing-hero-glow { position: absolute; width: 520px; height: 520px; top: -330px; right: -100px; border-radius: 50%; background: rgba(255,255,255,.07); }
.listing-hero-inner { position: relative; z-index: 1; text-align: center; }
.listing-hero .eyebrow { margin-bottom: 15px; color: #d7d3ff; }
.listing-hero h1 { margin: 0; font-size: clamp(3.2rem, 6vw, 5.8rem); font-weight: 780; letter-spacing: -.07em; line-height: .96; }
.listing-hero h1 span { color: #d5d1ff; }
.listing-hero-inner > p { margin: 22px auto 36px; color: rgba(255,255,255,.76); font-size: 1.08rem; }
.poi-search-panel { max-width: 980px; margin: 0 auto; border-radius: 22px; padding: 18px; color: var(--ink); background: #fff; box-shadow: 0 22px 55px rgba(31,23,116,.28); text-align: left; }
.poi-search-primary { display: grid; grid-template-columns: minmax(300px, 1fr) 160px auto; align-items: end; gap: 14px; }
.poi-search-panel label { display: block; margin: 0 0 7px 2px; color: #444052; font-size: .76rem; font-weight: 750; }
.listing-geocoder { position: relative; z-index: 3; }
.listing-geocoder mapbox-geocoder { width: 100%; }
.search-radius-field select, .search-sort-field select, .search-date-field select { width: 100%; min-height: 48px; border: 1px solid #d8d4e3; border-radius: 11px; padding: 0 12px; background: #fff; font: inherit; }
.search-sort-field { position: relative; }
.search-free-toggle { display: flex !important; align-items: center; gap: 10px; min-height: 48px; margin: 0 !important; border: 1px solid #e0dce8; border-radius: 11px; padding: 8px 12px; background: #fff; cursor: pointer; }
.search-free-toggle input { width: 16px; height: 16px; margin: 0; accent-color: var(--purple); }
.search-free-toggle span, .search-free-toggle strong, .search-free-toggle small { display: block; }
.search-free-toggle strong { color: #4b4658; font-size: .72rem; }
.search-free-toggle small { margin-top: 2px; color: #8a8497; font-size: .61rem; font-weight: 500; }
.poi-search-primary > button { min-height: 48px; border: 0; border-radius: 11px; padding: 0 25px; color: #fff; background: var(--purple); font-size: .88rem; font-weight: 750; white-space: nowrap; }
.poi-search-primary > button:hover { background: var(--purple-dark); }
.poi-search-primary > button:disabled { opacity: .6; }
.poi-search-options { margin-top: 13px; border-top: 1px solid #ece9f3; }
.poi-search-options summary { display: flex; align-items: center; gap: 8px; width: max-content; padding: 13px 2px 0; color: #5e5872; cursor: pointer; font-size: .76rem; font-weight: 750; list-style: none; }
.poi-search-options summary::-webkit-details-marker { display: none; }
.poi-search-options summary::after { content: '+'; color: var(--purple); font-size: 1rem; }
.poi-search-options[open] summary::after { content: '−'; }
.filter-icon { color: var(--purple); font-size: .95rem; transform: rotate(90deg); }
.filter-summary-hint { border-radius: 999px; padding: 3px 7px; color: #817b91; background: #f1eff6; font-size: .61rem; text-transform: uppercase; letter-spacing: .05em; }
.poi-search-options-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; align-items: end; gap: 14px; margin-top: 13px; border-radius: 14px; padding: 15px; background: #f7f6fa; }
.search-selection { margin: 17px auto 0 !important; color: rgba(255,255,255,.64) !important; font-size: .82rem !important; }
.search-selection.has-selection { color: #fff !important; }
.search-selection-error { color: #ffd8d8 !important; }

.listing-content { min-height: 520px; padding: 78px 0 110px; background: var(--surface); }
.listing-summary { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.listing-summary .eyebrow { margin-bottom: 10px; }
.listing-summary h2 { margin: 0; font-size: 2.2rem; font-weight: 760; letter-spacing: -.045em; }
.listing-summary > p { margin: 0 0 4px; color: var(--muted); font-size: .88rem; }
.listing-state { max-width: 560px; margin: 35px auto; padding: 52px 30px; text-align: center; }
.listing-state-icon { display: grid; width: 62px; height: 62px; margin: 0 auto 22px; place-items: center; border-radius: 19px; color: var(--purple); background: var(--purple-soft); }
.listing-state-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.listing-state h2 { margin: 0; font-size: 1.55rem; font-weight: 750; }
.listing-state p { margin: 12px 0 0; color: var(--muted); line-height: 1.65; }
.listing-state-loading .listing-state-icon { animation: location-pulse 1.3s ease-in-out infinite; }
.listing-state-error .listing-state-icon { color: #9b3333; background: #fff0f0; }
.poi-results { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.poi-card { overflow: hidden; border: 1px solid #e5e2ee; border-radius: 22px; background: #fff; box-shadow: 0 16px 42px rgba(32,25,73,.07); }
.poi-card-clickable { cursor: pointer; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.poi-card-clickable:hover { border-color: #cbc6ef; box-shadow: 0 22px 52px rgba(32,25,73,.12); transform: translateY(-3px); }
.poi-card-clickable:focus-visible { outline: 3px solid rgba(88,72,229,.3); outline-offset: 3px; }
.poi-card-image { height: 190px; background-position: center; background-size: cover; }
.poi-card-placeholder { position: relative; display: grid; place-items: center; background: linear-gradient(145deg, #efedff, #dcd8ff); }
.poi-card-placeholder::before { content: ''; width: 58px; height: 68px; border-radius: 50% 50% 50% 8px; background: #fff; box-shadow: 0 12px 25px rgba(60,48,170,.15); transform: rotate(-45deg); }
.poi-card-placeholder span { position: absolute; width: 18px; height: 18px; border: 5px solid #d7d2ff; border-radius: 50%; background: var(--purple); }
.poi-card-body { padding: 25px; }
.poi-card-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--purple); font-size: .72rem; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; }
.poi-card-organisation { margin: 22px 0 5px; color: var(--muted); font-size: .78rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.poi-card h3 { margin: 0; font-size: 1.28rem; font-weight: 760; line-height: 1.2; }
.poi-card-description { display: -webkit-box; overflow: hidden; margin: 12px 0 0; color: var(--muted); line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.poi-card-details { margin: 21px 0 0; border-top: 1px solid #ece9f3; padding-top: 17px; }
.poi-card-details > div { display: grid; grid-template-columns: 48px 1fr; gap: 10px; margin-top: 8px; }
.poi-card-details dt { color: #918d9d; font-size: .73rem; text-transform: uppercase; }
.poi-card-details dd { margin: 0; color: #4a4658; font-size: .82rem; line-height: 1.45; }
.poi-price { display: inline-flex; margin-top: 18px; border-radius: 999px; padding: 7px 11px; color: #237454; background: #eaf8f2; font-size: .76rem; font-weight: 800; }
.poi-card-actions { display: flex; align-items: center; gap: 10px; margin-top: 22px; border-top: 1px solid #ece9f3; padding-top: 18px; }
.poi-edit-button, .poi-delete-button { display: inline-flex; min-height: 38px; align-items: center; justify-content: center; border-radius: 999px; padding: 0 16px; font: inherit; font-size: .8rem; font-weight: 750; text-decoration: none; cursor: pointer; }
.poi-edit-button { color: #fff; background: var(--purple); }
.poi-edit-button:hover { color: #fff; background: var(--purple-dark); }
.poi-delete-button { border: 1px solid #e3bcbc; color: #8b2f2f; background: #fff7f7; }
.poi-delete-button:hover { border-color: #ce9696; background: #ffeded; }
.poi-delete-button:disabled { cursor: wait; opacity: .6; }
.poi-edit-button:focus-visible, .poi-delete-button:focus-visible { outline: 3px solid rgba(88,72,229,.25); outline-offset: 2px; }

.poi-details-hero { padding: 135px 0 72px; color: #fff; background: var(--purple); }
.details-back-link { display: inline-block; margin-bottom: 38px; color: rgba(255,255,255,.78); font-size: .88rem; font-weight: 700; text-decoration: none; }
.details-back-link:hover { color: #fff; }
.poi-details-hero .eyebrow { color: #d7d3ff; }
.details-organisation { margin: 17px 0 5px; color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.poi-details-hero h1 { max-width: 900px; margin: 0; font-size: clamp(2.8rem, 6vw, 5.4rem); font-weight: 780; letter-spacing: -.065em; line-height: 1; }
.details-admin-actions { display: flex; gap: 10px; margin-top: 28px; }
.details-admin-actions .poi-edit-button { background: #fff; color: var(--purple-dark); }
.details-admin-actions .poi-edit-button:hover { background: #f4f2ff; color: var(--purple-dark); }
.details-admin-actions .poi-delete-button { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.14); color: #fff; }
.details-admin-actions .poi-delete-button:hover { border-color: #fff; background: rgba(255,255,255,.22); }
.poi-details-content { min-height: 560px; padding: 70px 0 110px; background: var(--surface); }
.details-card { overflow: hidden; border: 1px solid #e4e1ed; border-radius: 26px; background: #fff; box-shadow: 0 22px 60px rgba(33,25,81,.08); }
.details-image { height: min(430px, 48vw); min-height: 280px; background-position: center; background-size: cover; }
.details-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 58px; padding: 48px; }
.details-main { min-width: 0; }
.details-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.details-badges span { display: inline-flex; border-radius: 999px; padding: 8px 13px; color: var(--purple); background: var(--purple-soft); font-size: .76rem; font-weight: 800; }
.details-badges #details-price { color: #237454; background: #eaf8f2; }
.details-description { margin: 28px 0 0; color: #514d5f; font-size: 1.08rem; line-height: 1.75; white-space: pre-line; }
.details-section { margin-top: 38px; border-top: 1px solid #ece9f3; padding-top: 30px; }
.details-section h2, .details-address h2 { margin: 0 0 19px; font-size: 1.3rem; font-weight: 760; }
.details-list { margin: 0; }
.details-list > div { display: grid; grid-template-columns: 105px minmax(0, 1fr); gap: 18px; padding: 10px 0; }
.details-list dt { color: #8b8797; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.details-list dd { margin: 0; color: #3d394a; line-height: 1.5; overflow-wrap: anywhere; }
.details-list a { color: var(--purple); font-weight: 650; }
.details-location-card { overflow: hidden; align-self: start; border: 1px solid #e4e1ed; border-radius: 19px; background: #faf9fd; }
.details-map { height: 330px; background: #ebe9f2; }
.details-address { padding: 25px; }
.details-address .eyebrow { display: block; margin-bottom: 9px; }
.details-address address { color: #5d5969; font-style: normal; line-height: 1.7; white-space: pre-line; }
.details-marker { cursor: default; }

.crawler-hero { padding: 145px 0 78px; color: #fff; background: var(--purple); }
.crawler-hero .eyebrow { color: #d7d3ff; }
.crawler-hero h1 { max-width: 850px; margin: 17px 0 0; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 780; letter-spacing: -.065em; line-height: .98; }
.crawler-hero p { max-width: 690px; margin: 22px 0 0; color: rgba(255,255,255,.75); font-size: 1.08rem; line-height: 1.7; }
.crawler-content { min-height: 600px; padding: 70px 0 110px; background: var(--surface); }
.crawler-layout { display: grid; gap: 24px; }
.crawler-control-card, .crawler-sites-card, .crawler-log-card { border: 1px solid #e4e1ed; border-radius: 24px; padding: 34px; background: #fff; box-shadow: 0 16px 45px rgba(33,25,81,.06); }
.crawler-control-heading, .crawler-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.crawler-control-heading h2, .crawler-section-heading h2 { margin: 10px 0 0; font-size: 1.65rem; font-weight: 760; }
.crawler-control-heading p { margin: 9px 0 0; color: var(--muted); }
.crawler-state-badge { display: inline-flex; border-radius: 999px; padding: 6px 11px; color: #625d70; background: #efedf3; font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.crawler-state-crawling, .crawler-state-starting, .crawler-state-checking\ robots\.txt { color: var(--purple); background: var(--purple-soft); }
.crawler-state-completed { color: #237454; background: #eaf8f2; }
.crawler-state-failed, .crawler-state-stopped { color: #8b2f2f; background: #fff0f0; }
.crawler-actions { display: flex; gap: 10px; }
.crawler-actions button { min-width: 100px; min-height: 46px; border-radius: 999px; padding: 0 20px; font: inherit; font-size: .86rem; font-weight: 780; }
.crawler-start { border: 0; color: #fff; background: var(--purple); }
.crawler-stop { border: 1px solid #dfb5b5; color: #8b2f2f; background: #fff7f7; }
.crawler-actions button:disabled { cursor: not-allowed; opacity: .45; }
.crawler-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 32px; }
.crawler-metrics > div { border-radius: 15px; padding: 18px; background: #f7f6fa; }
.crawler-metrics strong, .crawler-metrics span { display: block; }
.crawler-metrics strong { font-size: 1.55rem; }
.crawler-metrics span { margin-top: 4px; color: var(--muted); font-size: .76rem; }
.crawler-skip-reasons { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 16px; }
.crawler-skip-reasons > span { margin-right: 3px; color: var(--muted); font-size: .75rem; font-weight: 700; }
.crawler-skip-reasons strong { display: inline-flex; gap: 7px; border: 1px solid #e4e1ed; border-radius: 999px; padding: 6px 10px; color: #625d70; background: #faf9fc; font-size: .72rem; font-weight: 700; }
.crawler-skip-reasons b { color: var(--purple); }
.crawler-progress { height: 7px; overflow: hidden; margin-top: 25px; border-radius: 999px; background: #eceaf2; }
.crawler-progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--purple); transition: width .3s ease; }
.crawler-note { margin: 14px 0 0; color: #888493; font-size: .78rem; }
.crawler-section-heading { margin-bottom: 24px; }
.crawler-section-heading .eyebrow { display: block; margin-bottom: 8px; }
.crawler-section-heading h2 { margin: 0; }
.crawler-section-heading > span { color: var(--muted); font-size: .8rem; }
.crawler-sites { display: grid; gap: 9px; }
.crawler-site { display: grid; grid-template-columns: 12px minmax(0, 1fr) auto; align-items: center; gap: 14px; border: 1px solid #ebe8f1; border-radius: 14px; padding: 15px 17px; }
.crawler-site-dot { width: 9px; height: 9px; border-radius: 50%; background: #c7c3cf; }
.crawler-site-crawling .crawler-site-dot, .crawler-site-checking .crawler-site-dot { background: var(--purple); box-shadow: 0 0 0 5px rgba(88,72,229,.1); }
.crawler-site-completed .crawler-site-dot { background: #39a579; }
.crawler-site-blocked .crawler-site-dot, .crawler-site-skipped .crawler-site-dot { background: #c86a6a; }
.crawler-site h3 { margin: 0; font-size: .91rem; font-weight: 750; }
.crawler-site p { overflow: hidden; margin: 3px 0 0; color: var(--muted); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.crawler-site-result { text-align: right; }
.crawler-site-result strong, .crawler-site-result span { display: block; }
.crawler-site-result strong { font-size: .76rem; }
.crawler-site-result span { margin-top: 3px; color: var(--muted); font-size: .68rem; }
.crawler-log { max-height: 300px; overflow: auto; margin: 0; padding: 0; list-style: none; }
.crawler-log li { border-top: 1px solid #ece9f3; padding: 12px 2px; color: #5d5968; font-size: .82rem; }
.crawler-skipped-actions { display: grid; gap: 9px; max-height: 420px; overflow: auto; margin-bottom: 25px; }
.crawler-skipped-actions h3 { margin: 0 0 4px; color: #625d70; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.crawler-skipped-action { display: grid; grid-template-columns: auto minmax(0, 1fr) minmax(130px, .75fr); align-items: center; gap: 13px; border: 1px solid #f0dada; border-radius: 13px; padding: 13px 15px; background: #fffafa; }
.crawler-skipped-action div strong, .crawler-skipped-action div span { display: block; }
.crawler-skipped-action div strong { overflow: hidden; font-size: .82rem; text-overflow: ellipsis; white-space: nowrap; }
.crawler-skipped-action div strong a { color: #352d67; text-decoration: none; }
.crawler-skipped-action div strong a:hover { color: var(--purple); text-decoration: underline; }
.crawler-skipped-action div span { margin-top: 3px; color: var(--muted); font-size: .68rem; }
.crawler-skipped-action p { margin: 0; color: #813e3e; font-size: .75rem; text-align: right; }
.crawler-action-badge { border-radius: 999px; padding: 5px 8px; color: #8b2f2f; background: #f9e5e5; font-size: .63rem; font-weight: 800; text-transform: uppercase; }

.auth-page { display: grid; min-height: 720px; place-items: center; padding: 140px 24px 90px; color: var(--ink); background: var(--purple); }
.auth-panel { width: min(100%, 460px); border-radius: 26px; padding: 38px; background: #fff; box-shadow: 0 28px 70px rgba(25,17,91,.26); }
.auth-mark { width: 48px; height: 58px; margin-bottom: 20px; }
.auth-mark path { fill: var(--purple); }
.auth-mark circle:first-of-type { fill: #fff; opacity: .28; }
.auth-mark circle:last-of-type { fill: #fff; }
.auth-panel h1 { margin: 0; font-size: 2.15rem; font-weight: 780; letter-spacing: -.055em; }
.auth-intro { margin: 12px 0 26px; color: var(--muted); line-height: 1.6; }
.auth-form { display: grid; gap: 10px; }
.auth-form label { margin-top: 10px; color: #4b465c; font-size: .82rem; font-weight: 800; }
.auth-form input { width: 100%; min-height: 48px; border: 1px solid #d8d4e5; border-radius: 13px; padding: 0 14px; color: var(--ink); font: inherit; }
.auth-form input:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(88,72,229,.13); outline: none; }
.auth-form span, .auth-validation { color: #9b2f2f; font-size: .78rem; }
.auth-validation ul { margin: 0 0 6px; padding-left: 18px; }
.auth-form button { min-height: 50px; margin-top: 14px; border: 0; border-radius: 999px; color: #fff; background: var(--purple); font: inherit; font-weight: 780; cursor: pointer; }
.auth-form button:hover { background: var(--purple-dark); }
@keyframes location-pulse { 50% { transform: scale(.88); opacity: .65; } }

main > h1, main > p { width: min(960px, calc(100% - 48px)); margin-inline: auto; }
main > h1 { margin-top: 140px; }

@media (max-width: 900px) {
  .hero-content { grid-template-columns: minmax(0, 1fr); gap: 10px; padding-top: 150px; padding-bottom: 140px; text-align: center; }
  .hero-copy { display: flex; min-width: 0; flex-direction: column; align-items: center; }
  .hero-visual { width: 480px; max-width: 100%; min-height: 470px; margin: 10px auto 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .how-layout { grid-template-columns: 1fr; gap: 60px; }
  .how-copy { position: static; max-width: 650px; }
  .create-layout { grid-template-columns: 1fr; gap: 36px; }
  .form-intro { position: static; max-width: 620px; }
  .poi-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .details-layout { grid-template-columns: 1fr; }
  .crawler-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-container { width: min(100% - 32px, 1160px); }
  .site-nav { min-height: 74px; }
  .nav-links a:not(.nav-pill) { display: none; }
  .nav-auth-form { display: none; }
  .nav-pill { padding: 8px 13px; }
  .brand { font-size: 1.45rem; }
  .hero-content { min-height: auto; padding-top: 125px; padding-bottom: 125px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.5rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions { flex-direction: column; gap: 20px; }
  .hero-visual { width: 100%; max-width: none; min-height: 390px; transform: scale(.86); transform-origin: top center; margin-bottom: -50px; }
  .orbit-large { width: 390px; height: 390px; left: calc(50% - 195px); }
  .orbit-small { width: 270px; height: 270px; left: calc(50% - 135px); }
  .brand-pin-large { top: 110px; left: calc(50% - 70px); }
  .brand-pin-large svg { width: 140px; }
  .place-card-one { right: -8px; }
  .place-card-two { left: -8px; bottom: 25px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 40px; }
  .benefit-card { padding: 28px; }
  .steps li { grid-template-columns: 45px 1fr; gap: 12px; }
  .closing-cta { padding: 85px 0; }
  .footer-inner { min-height: 150px; flex-direction: column; justify-content: center; }
  .form-page-heading { padding: 115px 0 60px; }
  .form-heading-pin { display: none; }
  .form-page-content { padding: 55px 0 75px; }
  .form-card { border-radius: 20px; padding: 25px 20px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .fieldset-heading { display: block; }
  .location-button { margin: -10px 0 24px; }
  .poi-map { height: 330px; }
  .checkbox-field { padding-top: 5px; }
  .form-actions { align-items: stretch; flex-direction: column-reverse; text-align: center; }
  .listing-hero { padding: 120px 0 65px; }
  .poi-search-panel { padding: 15px; }
  .poi-search-primary, .poi-search-options-grid { grid-template-columns: 1fr; }
  .poi-search-primary > button { width: 100%; }
  .listing-content { padding: 55px 0 75px; }
  .listing-summary { align-items: start; flex-direction: column; gap: 12px; }
  .poi-results { grid-template-columns: 1fr; }
  .poi-details-hero { padding: 105px 0 55px; }
  .details-back-link { margin-bottom: 28px; }
  .poi-details-content { padding: 45px 0 75px; }
  .details-layout { gap: 38px; padding: 26px 20px; }
  .details-image { height: 260px; min-height: 0; }
  .details-map { height: 280px; }
  .details-list > div { grid-template-columns: 82px minmax(0, 1fr); }
  .crawler-hero { padding: 115px 0 60px; }
  .crawler-content { padding: 45px 0 75px; }
  .crawler-control-card, .crawler-sites-card, .crawler-log-card { padding: 24px 20px; }
  .crawler-control-heading { align-items: stretch; flex-direction: column; }
  .crawler-actions button { flex: 1; }
  .crawler-site { grid-template-columns: 10px minmax(0, 1fr); }
  .crawler-site-result { grid-column: 2; text-align: left; }
  .crawler-skipped-action { grid-template-columns: auto minmax(0, 1fr); }
  .crawler-skipped-action p { grid-column: 2; text-align: left; }
  .auth-page { min-height: 640px; padding: 110px 16px 70px; }
  .auth-panel { border-radius: 20px; padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
