body {
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 8vw;
}

.hero-title {
  margin: 12px 0 16px 0;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero-title .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  margin: 0 0 32px 0;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.hero-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.hero-cta-arrow {
  transition: transform 0.15s ease;
}

.hero-cta:hover .hero-cta-arrow {
  transform: translateX(3px);
}

.hero-footer {
  border-top: 1px solid var(--rule);
  padding: 14px 8vw;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
