@media (max-width: 1023px) {
  .home-desktop { display: none; }
}

.hd-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 3rem;
}

.hd-hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hd-logo {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  letter-spacing: 0.15em;
  line-height: 1.1;
  text-align: center;
  user-select: none;
}

.hd-hero-right {
  max-width: 480px;
}

.hd-tagline {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.hd-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.hd-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.hd-cta {
  display: inline-block;
  background: var(--button);
  color: var(--button-text);
  text-decoration: none;
  padding: 0.9rem 3rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  border: 2px solid var(--button);
  letter-spacing: 0.05em;
  transition: all 0.15s;
}

.hd-cta:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--text);
}

.stars-divider-large {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  margin: 2rem 0 2.5rem;
  user-select: none;
}

.hd-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0.5rem 0 2rem;
}

.hd-feature {
  border: 2px solid var(--border);
  padding: 1.5rem;
  background: var(--surface);
  transition: border-color 0.15s;
}

.hd-feature:hover {
  border-color: var(--pink);
}

.hd-star {
  color: var(--pink);
  font-size: 1.3rem;
  user-select: none;
}

.hd-feature h3 {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

.hd-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.hd-features-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 0 0 2.5rem;
}

.hd-feature-wide {
  border: 2px solid var(--border);
  padding: 1.5rem;
  background: var(--surface);
  transition: border-color 0.15s;
}

.hd-feature-wide:hover {
  border-color: var(--pink);
}

.hd-feature-wide h3 {
  margin-top: 0.25rem;
  font-size: 1.2rem;
}

.hd-feature-wide p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.hd-coming {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  padding: 1.5rem 0;
}

.hd-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}

.hd-panel {
  border: 2px solid var(--border);
  padding: 1.5rem;
  background: var(--surface);
}

.hd-panel h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.hd-preview-card {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.hd-preview-card:last-child {
  border-bottom: none;
}

.hd-preview-card a {
  text-decoration: none;
  font-size: 0.95rem;
  font-family: var(--font-heading);
}

.hd-preview-card time {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.hd-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.hd-cities {
  padding-bottom: 2rem;
}

.hd-cities h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hd-city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.hd-city-card {
  border: 2px solid var(--border);
  padding: 1rem;
  text-align: center;
  background: var(--surface);
  transition: border-color 0.15s;
}

.hd-city-card:hover {
  border-color: var(--pink);
}

.hd-city-card a {
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--font-heading);
}
