:root {
  --hs-bg: #07111F;
  --hs-surface: #0D1B2E;
  --hs-surface-2: #13243A;
  --hs-orange: #FF5A0A;
  --hs-orange-hi: #FF7A1A;
  --hs-paper: #F7F5F2;
  --hs-text: #F7F5F2;
  --hs-text-2: #AAB4C3;
  --hs-text-ink: #0F172A;
  --hs-border: rgba(255, 255, 255, 0.10);
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--hs-bg);
  color: var(--hs-text);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

a {
  color: inherit;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--hs-border);
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
}

.logo-pill img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hs-text-2);
  padding: 10px 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.nav-apply {
  background: linear-gradient(90deg, var(--hs-orange), var(--hs-orange-hi));
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  padding: 8px 18px !important;
}

.label {
  display: inline-flex;
  color: var(--hs-orange);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.hero {
  padding: 48px 0 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 18ch;
}

.hero .lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--hs-text-2);
  max-width: 40rem;
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(90deg, var(--hs-orange), var(--hs-orange-hi));
  color: #fff;
}

.btn-ghost {
  background: var(--hs-surface);
  color: var(--hs-text);
  border: 1px solid var(--hs-border);
}

.btn-ghost:hover {
  border-color: rgba(255, 90, 10, 0.45);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0 8px;
}

.step {
  border: 1px solid var(--hs-border);
  background: var(--hs-surface);
  border-radius: 20px;
  padding: 18px 16px;
}

.step .n {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  color: var(--hs-orange);
  margin: 0 0 8px;
}

.step h2 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 6px;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--hs-text-2);
  line-height: 1.45;
}

.section {
  padding: 40px 0;
}

.section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.section .hint {
  color: var(--hs-text-2);
  margin: 0 0 24px;
  max-width: 40rem;
  line-height: 1.55;
}

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

.card {
  display: block;
  text-decoration: none;
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: 24px;
  padding: 24px;
  min-height: 180px;
}

.card:hover {
  border-color: rgba(255, 90, 10, 0.45);
  background: var(--hs-surface-2);
}

.card .slug {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hs-orange);
  margin: 0 0 12px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--hs-text-2);
  font-size: 0.95rem;
  line-height: 1.5;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.chips a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--hs-text-2);
  border: 1px solid var(--hs-border);
  background: var(--hs-surface);
  border-radius: 999px;
  padding: 8px 14px;
}

.chips a:hover {
  color: var(--hs-text);
  border-color: rgba(255, 90, 10, 0.4);
}

.note {
  margin-top: 28px;
  border: 1px solid var(--hs-border);
  background: var(--hs-surface);
  border-radius: 24px;
  padding: 22px 24px;
  color: var(--hs-text-2);
  line-height: 1.55;
}

.note strong {
  color: var(--hs-text);
  font-weight: 600;
}

.faq {
  background: var(--hs-paper);
  color: var(--hs-text-ink);
  border-radius: 28px;
  padding: 32px 28px;
}

.faq h2 {
  color: var(--hs-text-ink);
  margin-bottom: 20px;
}

.faq-item + .faq-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.faq-item p {
  margin: 0;
  color: #475569;
  line-height: 1.55;
}

.apply-band {
  margin: 8px 0 48px;
  border: 1px solid var(--hs-border);
  background: var(--hs-surface);
  border-radius: 28px;
  padding: 32px 28px;
}

.apply-band h2 {
  font-size: 1.85rem;
  margin: 8px 0 12px;
}

.apply-band p {
  color: var(--hs-text-2);
  margin: 0 0 20px;
  max-width: 36rem;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--hs-border);
  padding: 32px 0 48px;
  color: var(--hs-text-2);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--hs-orange);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 16px 0;
}

.city-links a {
  color: var(--hs-text-2);
}

.city-links a[aria-current="page"] {
  color: var(--hs-orange);
  font-weight: 600;
}

@media (max-width: 800px) {
  .steps,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .nav-links a:not(.nav-apply) {
    display: none;
  }
}
