:root {
  --bg: #fffaf7;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #b91c1c;
  --primary-soft: #fee2e2;
  --border: #f1d9d4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff6f3 0%, var(--bg) 60%);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.header-cta {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.15fr 0.85fr;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

h1,
h2 {
  margin-top: 0;
}

h1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.subtitle {
  color: var(--muted);
  max-width: 65ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 0.65rem;
  padding: 0.72rem 1.05rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: var(--primary-soft);
  color: #991b1b;
}

.hero-card,
.notify-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.hero-card {
  padding: 1.4rem;
}

.hero-card ul {
  padding-left: 1.2rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.notify {
  padding: 1.8rem 0 4rem;
}

.notify-box {
  padding: 1.6rem;
}

.notify-box p {
  color: var(--muted);
}

.notify-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
  max-width: 480px;
}

.notify-form input {
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  padding: 0.75rem;
  font: inherit;
}

.tiny-note {
  margin-top: 0.9rem;
  font-size: 0.88rem;
}

.site-footer {
  padding: 1rem 0 2.5rem;
  color: #9ca3af;
  text-align: center;
}

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