:root {
  --page-bg: #f4f4f5;
  --text: #121212;
  --text-muted: #6b7280;
  --card-dark: #121212;
  --card-dark-muted: rgba(255, 255, 255, 0.65);
  --brand: #9b2f1f;
  --brand-hover: #b33827;
  --border: rgba(18, 18, 18, 0.08);
  --radius-lg: 22px;
  --radius-pill: 999px;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --shadow: 0 12px 40px rgba(18, 18, 18, 0.08);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  background: var(--page-bg);
  color: var(--text);
  line-height: 1.5;
}

.page {
  min-height: 100vh;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.header {
  display: flex;
  align-items: center;
}

.logo {
  display: block;
  height: auto;
  max-width: 140px;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
  gap: 1.25rem;
  align-items: stretch;
}

.heroCopy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem 0;
}

.kicker {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
}

.leadMuted {
  margin: 0;
  max-width: 36rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    filter 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.btnBrand {
  background: var(--brand);
  color: #ffffff;
}

.btnBrand:hover {
  filter: brightness(1.05);
  background: var(--brand-hover);
}

.btnOutline {
  background: #ffffff;
  color: var(--text);
  border-color: var(--border);
}

.btnOutline:hover {
  border-color: var(--text-muted);
}

.aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--card-dark);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.asideTitle {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.featureList {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}

.asideNote {
  margin: 0;
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--card-dark-muted);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
