/* ── RESET & BASE ── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a2e;
  background: #f8f9fa;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #1a5276;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HERO — DOMAIN FOR SALE ── */

.hero {
  background: linear-gradient(160deg, #0d2137 0%, #1a3a5c 50%, #2c5f8a 100%);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  background: rgba(232, 184, 75, 0.15);
  border: 1px solid rgba(232, 184, 75, 0.4);
  color: #e8b84b;
  padding: 8px 24px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.hero__domain {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #e8b84b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__question {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.hero__pitch {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  cursor: pointer;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: #e8b84b;
  color: #1a1a2e;
}
.btn--primary:hover {
  background: #d4a43a;
  box-shadow: 0 4px 16px rgba(232, 184, 75, 0.3);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ── VALUE PROPOSITION ── */

.value-section {
  padding: 64px 0;
  background: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 28px 20px;
}

.value-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.value-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 8px;
}

.value-card__desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* ── POTENTIAL SECTION ── */

.potential-section {
  padding: 64px 0 24px;
  background: #f8f9fa;
}

.potential-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.potential-header__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.potential-header__desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* ── DEMO SECTIONS ── */

.demo-section {
  padding: 40px 0;
}

.demo-section--map {
  background: #f8f9fa;
  padding-top: 32px;
}

.demo-section--condos {
  background: #f8f9fa;
  padding-bottom: 60px;
}

.demo-section--data {
  background: #fff;
  padding: 60px 0;
}

.demo-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.demo-label__tag {
  display: inline-block;
  background: linear-gradient(135deg, #1a3a5c, #2c5f8a);
  color: #fff;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.demo-label__text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3a5c;
}

/* ── SECTION TITLES ── */

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.section-desc {
  color: #555;
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 700px;
}

.subsection-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 8px;
}

.subsection-desc {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ── MAP ── */

#map {
  height: 450px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.map-legend {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #555;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
.legend-dot--existing { background: #2d8a4e; }
.legend-dot--construction { background: #e67e22; }
.legend-dot--proposed { background: #c0392b; }

.map-popup {
  font-size: 13px;
  line-height: 1.5;
}
.popup-address {
  color: #666;
  font-size: 12px;
}
.popup-details {
  font-size: 12px;
  color: #444;
}
.popup-status {
  font-weight: 600;
  font-size: 12px;
}

/* ── CONDOS ── */

.condos-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid #1a3a5c;
  background: transparent;
  color: #1a3a5c;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover {
  background: rgba(26, 58, 92, 0.08);
}
.filter-btn.active {
  background: #1a3a5c;
  color: #fff;
}

.condos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.condo-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.condo-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.condo-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.condo-card__section {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  font-weight: 600;
}

.condo-card__status {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.condo-status--existing {
  background: #e8f5e9;
  color: #2d8a4e;
}
.condo-status--under-construction {
  background: #fff3e0;
  color: #e67e22;
}
.condo-status--proposed {
  background: #fce4ec;
  color: #c0392b;
}

.condo-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.condo-card__address {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 12px;
}

.condo-card__stats {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.condo-card__stats .stat {
  font-size: 0.8rem;
  color: #555;
}
.condo-card__stats .stat strong {
  color: #1a3a5c;
}

.condo-card__desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
}

/* ── DATA TABLES ── */

.dev-subsection {
  margin-bottom: 48px;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.data-table thead {
  background: #f0f4f8;
}

.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: #1a3a5c;
  border-bottom: 2px solid #d0d8e0;
  white-space: nowrap;
}

.data-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.data-table tbody tr:hover {
  background: #f8f9fa;
}

.data-table .col-address {
  white-space: nowrap;
  font-weight: 500;
}

.data-table .col-desc {
  max-width: 400px;
  line-height: 1.5;
}

.data-table .col-desc a {
  color: #1a5276;
}

.data-table .col-status { white-space: nowrap; }
.data-table .col-date { white-space: nowrap; color: #666; }
.data-table .col-units { text-align: center; }
.data-table .col-cost { white-space: nowrap; text-align: right; }

.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-badge--under-review { background: #fff3e0; color: #e67e22; }
.status-badge--active { background: #e8f5e9; color: #2d8a4e; }
.status-badge--closed { background: #f5f5f5; color: #888; }
.status-badge--approved { background: #e3f2fd; color: #1565c0; }
.status-badge--refused { background: #fce4ec; color: #c0392b; }

.no-data {
  text-align: center;
  color: #888;
  padding: 24px !important;
}

.data-source {
  margin-top: 16px;
  font-size: 0.8rem;
  color: #888;
}

/* ── OTHER DOMAINS ── */

.other-domains-section {
  padding: 60px 0;
  background: #f0f4f8;
  text-align: center;
}

.other-domains__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.other-domains__desc {
  color: #555;
  font-size: 1rem;
  margin-bottom: 32px;
}

.other-domains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 24px;
}

.domain-card {
  background: #fff;
  border: 1px solid #dce3ea;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a3a5c;
  transition: box-shadow 0.2s, transform 0.2s;
}

.domain-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.other-domains__cta {
  font-size: 0.95rem;
  color: #555;
}

.other-domains__cta a {
  color: #1a5276;
  font-weight: 600;
}

/* ── CONTACT SECTION ── */

.contact-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #0d2137 0%, #1a3a5c 50%, #2c5f8a 100%);
  color: #fff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-pitch__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-pitch__lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-pitch__who h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #e8b84b;
  margin-bottom: 12px;
}

.contact-pitch__who ul {
  list-style: none;
}

.contact-pitch__who li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.contact-pitch__who li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #e8b84b;
  font-weight: 700;
}

/* ── CONTACT FORM ── */

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.form-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e8b84b;
  background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: #e8b84b;
  color: #1a1a2e;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.1s;
}

.submit-btn:hover {
  background: #d4a43a;
}
.submit-btn:active {
  transform: scale(0.98);
}

/* ── FOOTER ── */

.site-footer {
  padding: 32px 0;
  background: #0a1929;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.footer-attribution {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-attribution a {
  color: rgba(255, 255, 255, 0.5);
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .condos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .other-domains-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 60px 0 50px;
  }
  .hero__domain {
    font-size: 2.6rem;
  }
  .hero__question {
    font-size: 1.25rem;
  }
  .hero__pitch {
    font-size: 0.95rem;
  }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .value-card {
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
  }
  .value-card__icon {
    font-size: 1.6rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .potential-header__title {
    font-size: 1.5rem;
  }
  .condos-grid {
    grid-template-columns: 1fr;
  }
  #map {
    height: 320px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .data-table {
    font-size: 0.8rem;
  }
  .data-table th,
  .data-table td {
    padding: 8px 10px;
  }
  .demo-label {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero__domain {
    font-size: 2rem;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    text-align: center;
  }
}
