* {
  box-sizing: border-box;
}

:root {
  --bg: #0f1115;
  --bg-soft: #141922;
  --surface: #171c24;
  --surface-2: #1d2430;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f4f4;
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-muted: rgba(255, 255, 255, 0.65);
  --primary: #ff4fa3;
  --primary-soft: rgba(255, 79, 163, 0.12);
  --primary-glow: rgba(255, 79, 163, 0.18);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(17, 21, 27, 0.92);
  border-bottom: 1px solid var(--border);
}

.topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  opacity: 0.85;
  transition: 0.2s ease;
  font-weight: 600;
}

.main-nav a.is-active,
.main-nav a:hover {
  opacity: 1;
  color: var(--primary);
}

.site-main {
  min-height: calc(100vh - 140px);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.01);
}

/* General */

.section {
  padding: 40px 0 60px;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 20px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

p {
  margin-top: 0;
}

.lead-text,
.hero-text {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.card,
.search-card,
.claim-box,
.price-card,
.city-card,
.category-card,
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card {
  padding: 20px;
}

.card h1,
.card h2,
.card h3,
.city-card h3,
.category-card h3,
.price-card h3 {
  margin-top: 0;
}

.category-card p,
.city-card p,
.price-card p,
.claim-box p,
.card p {
  color: var(--text-soft);
}

/* Hero */

.hero-home {
  padding: 76px 0 48px;
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.18), transparent 26%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.05), transparent 18%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.search-card {
  width: 100%;
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.feature-list li + li {
  margin-top: 10px;
}

/* Stats */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-card {
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* Buttons */

.hero-actions,
.claim-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 79, 163, 0.22);
}

.btn-primary:hover {
  filter: brightness(1.04);
}

.btn-secondary {
  background: #232833;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  background: #2a3140;
}

/* Grids */

.card-grid,
.city-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.city-grid,
.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Cards */

.category-card,
.city-card,
.price-card {
  padding: 22px;
}

.mini-pill,
.badge {
  display: inline-block;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.mini-pill {
  margin-top: 12px;
  padding: 6px 10px;
  background: var(--primary-soft);
  color: #ff7ebb;
}

.badge {
  margin-bottom: 14px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
}

.price-card {
  position: relative;
}

.price-card--gold,
.price-card--platin {
  box-shadow: 0 0 0 1px var(--primary-glow), var(--shadow);
}

.price-range {
  margin-bottom: 10px;
  font-weight: 700;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 12px 0 18px;
}

.price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-features {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.price-features li + li {
  margin-top: 8px;
}

/* Claim section */

.claim-box {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

/* Utility */

.empty-state {
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .section-head,
  .claim-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .section {
    padding: 30px 0 42px;
  }

  .hero-home {
    padding: 52px 0 30px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions,
  .claim-actions {
    width: 100%;
  }
  .claim-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 22px;
  align-items: start;
}

.form-card,
.side-card {
  padding: 24px;
}

.claim-form {
  margin-top: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 79, 163, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 79, 163, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.field-hint {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.alert {
  margin-bottom: 18px;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
}

.alert strong {
  display: block;
  margin-bottom: 8px;
}

.alert ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.alert-success {
  background: rgba(58, 181, 74, 0.12);
  border-color: rgba(58, 181, 74, 0.32);
  color: #d8f6dc;
}

.alert-error {
  background: rgba(255, 79, 163, 0.12);
  border-color: rgba(255, 79, 163, 0.32);
  color: #ffe1ef;
}

.side-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.side-list li + li {
  margin-top: 10px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 960px) {
  .claim-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.studio-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  align-items: start;
}

.studio-hero-main,
.studio-hero-side {
  min-width: 0;
}

.studio-badges,
.studio-category-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .studio-hero {
    grid-template-columns: 1fr;
  }
}
}