/* ============================================
   121212.community — Own Your City
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&family=Cormorant+Garamond:wght@400;600;700&display=swap');

:root {
  --bg:           #0A0A0D;
  --surface:      #131318;
  --surface-2:    #1C1C24;
  --surface-3:    #24242F;
  --border:       #28283A;
  --border-light: #3A3A50;

  --purple:       #7B2FBE;
  --purple-light: #A855F7;
  --purple-dim:   #4C1D95;
  --purple-glow:  rgba(123, 47, 190, 0.25);

  --gold:         #E8A020;
  --gold-light:   #FBC843;
  --gold-dim:     #92640F;

  --red:          #C41E3A;
  --red-dark:     #8B1528;

  --text:         #F4EEE8;
  --text-dim:     #8A84A0;
  --text-muted:   #5A5470;

  --white:        #ffffff;
  --success:      #22C55E;
  --warning:      #F59E0B;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed;
  top: 60px;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--purple) 0%, var(--gold) 100%);
  z-index: 999;
  transition: width 0.1s linear;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(123, 47, 190, 0.15);
}

.nav-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--gold);
}

.logo-dot {
  color: var(--purple-light);
  font-style: italic;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--purple);
  color: var(--text) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--purple-light) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--purple-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.btn-secondary:hover {
  background: rgba(232, 160, 32, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 160, 32, 0.3);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(123, 47, 190, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero h1 .accent-purple { color: var(--purple-light); }
.hero h1 .accent-gold   { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-domain {
  margin-top: 4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.hero-domain span {
  color: var(--purple-light);
}

/* ── Stats ── */
.stats-wrapper {
  padding: 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* ── Section Base ── */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ── What Is .community ── */
.what-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.what-visual {
  position: relative;
}

.hub-preview {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hub-preview-bar {
  background: var(--surface-3);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hub-preview-dots {
  display: flex;
  gap: 5px;
}

.hub-preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red   { background: #ff5f57; }
.dot-yellow{ background: #ffbd2e; }
.dot-green { background: #27c93f; }

.hub-preview-url {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--purple-light);
  font-family: monospace;
  flex: 1;
  text-align: center;
}

.hub-preview-body {
  padding: 1.5rem;
}

.hub-city-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hub-city-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.hub-city-badge {
  background: var(--purple);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.hub-section-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hub-tab {
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  text-transform: uppercase;
}

.hub-tab.active {
  background: var(--purple-dim);
  border-color: var(--purple);
  color: var(--purple-light);
}

.hub-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hub-card {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
}

.hub-card-icon {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.hub-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.hub-card-meta {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.what-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.what-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.what-point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--purple-dim);
  border: 1px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.what-point h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.what-point p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── Cities Grid ── */
.cities-section {}

.cities-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.city-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-glow), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.city-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.city-card:hover::before { opacity: 1; }

.city-card.available {
  border-color: var(--border);
}

.city-card.claimed {
  border-color: var(--gold-dim);
}

.city-card.claimed::before {
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.08), transparent);
  opacity: 1;
}

.city-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.city-status.available {
  background: rgba(123, 47, 190, 0.15);
  color: var(--purple-light);
  border: 1px solid var(--purple-dim);
}

.city-status.claimed {
  background: rgba(232, 160, 32, 0.12);
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.city-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.city-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.city-subdomain {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
  margin-bottom: 1rem;
}

.city-bid-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.city-bid-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.city-bid-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.city-bid-time {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
  text-align: right;
}

.cities-cta {
  text-align: center;
}

/* ── How It Works ── */
.how-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.how-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}

.how-card:hover { border-color: var(--border-light); }

.how-step {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.how-card-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.how-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.how-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.how-connector {
  display: none;
}

/* ── Hub Model ── */
.model-section {}

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.model-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.model-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: border-color 0.2s, transform 0.2s;
}

.model-item:hover {
  border-color: var(--purple);
  transform: translateX(4px);
}

.model-item-icon {
  font-size: 1.5rem;
  min-width: 2rem;
  text-align: center;
}

.model-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.model-item p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.model-domain-map {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
}

.model-domain-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-align: center;
}

.model-domain-center {
  text-align: center;
  margin-bottom: 1.5rem;
}

.model-domain-hub {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
}

.model-domain-spokes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.model-spoke {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s;
}

.model-spoke:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}

.model-spoke-tld {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.model-domain-line {
  text-align: center;
  color: var(--border-light);
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

/* ── Testimonials / Quote ── */
.quote-section {
  padding: 4rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.quote-inner {
  max-width: 760px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--purple-dim);
  margin-bottom: 1rem;
  display: block;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.quote-attr {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── CTA Section ── */
.cta-section {
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(123, 47, 190, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.cta-inner p {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Footer ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-brand .logo {
  font-size: 1.2rem;
}

.footer-contact {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact a {
  font-size: 0.8rem;
  color: var(--purple-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--gold); }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-ecosystem {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-ecosystem a {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.25rem 0.65rem;
  transition: color 0.2s, border-color 0.2s;
  font-family: monospace;
}

.footer-ecosystem a:hover {
  color: var(--purple-light);
  border-color: var(--purple-dim);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(123, 47, 190, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ── Marketplace Page ── */
.marketplace-filters {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
  position: sticky;
  top: 60px;
  z-index: 100;
}

.filter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-btn {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--purple-dim);
  border-color: var(--purple);
  color: var(--purple-light);
}

.marketplace-grid-section {
  padding: 3rem 2rem 6rem;
}

.marketplace-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.marketplace-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.marketplace-count {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.marketplace-count span {
  color: var(--text);
  font-weight: 700;
}

.marketplace-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.listing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  cursor: pointer;
}

.listing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.listing-card-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.listing-region {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.listing-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.listing-url {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--purple-light);
}

.listing-card-body {
  padding: 1.25rem 1.5rem;
}

.listing-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.listing-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}

.listing-bid-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.listing-bid-col {}

.listing-bid-label {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.listing-bid-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.listing-bid-period {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.listing-time {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: right;
}

.listing-time-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.listing-time-val {
  font-weight: 700;
  color: var(--red);
}

.listing-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}

.listing-card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ── How It Works Page ── */
.hiw-section {
  padding: 5rem 2rem;
}

.hiw-inner {
  max-width: 960px;
  margin: 0 auto;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.hiw-step:last-child { border-bottom: none; }

.hiw-step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--purple-dim);
  line-height: 1;
  text-align: center;
}

.hiw-step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.hiw-step-content p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 600px;
}

.hiw-step-content ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hiw-step-content ul li {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.hiw-step-content ul li strong {
  color: var(--text);
}

/* ── Legal Pages ── */
.legal-section {
  padding: 5rem 2rem 7rem;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
}

.legal-inner h2:first-child { margin-top: 0; }

.legal-inner p,
.legal-inner li {
  font-size: 0.925rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-inner ul,
.legal-inner ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-inner a {
  color: var(--purple-light);
  text-decoration: none;
}

.legal-inner a:hover { text-decoration: underline; }

.legal-date {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  margin-bottom: 2rem;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 5rem 2rem 7rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.925rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-channel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}

.contact-channel-icon {
  font-size: 1.25rem;
  min-width: 1.5rem;
  text-align: center;
  margin-top: 0.1rem;
}

.contact-channel h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.contact-channel a,
.contact-channel p {
  font-size: 0.82rem;
  color: var(--purple-light);
  text-decoration: none;
}

.contact-channel a:hover { color: var(--gold); }

.contact-form-wrap {}

.contact-form-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}

.form-group select option { background: var(--surface-2); }

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ── About Page ── */
.about-section {
  padding: 5rem 2rem 7rem;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--purple);
  padding-left: 1.5rem;
}

.about-body p {
  font-size: 0.975rem;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.eco-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.2s;
}

.eco-card:hover { border-color: var(--gold-dim); }

.eco-card-domain {
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.eco-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .what-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .marketplace-full-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ecosystem-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
  .nav-hamburger { display: flex; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .marketplace-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .hub-cards { grid-template-columns: 1fr; }
  .model-domain-spokes { grid-template-columns: 1fr 1fr; }
  .hiw-step { grid-template-columns: 50px 1fr; gap: 1.5rem; }
  .hiw-step-number { font-size: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
