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

body {
  background: #faf9f6;
  color: #1c1917;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

.legacy-home {
  min-height: 100vh;
  background: #faf9f6;
}

.legacy-home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.legacy-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legacy-brand-logo {
  display: block;
  width: 24px;
  height: 24px;
}

.legacy-brand-name,
.legacy-hero-title,
.legacy-feature-title {
  font-family: "EB Garamond", Garamond, Georgia, "Times New Roman", serif;
}

.legacy-brand-name {
  color: #1c1917;
  font-size: 15px;
  font-weight: 600;
}

.legacy-nav-button,
.legacy-primary,
.legacy-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.legacy-nav-button {
  padding: 8px 16px;
}

.legacy-primary,
.legacy-nav-button {
  border: 1px solid #6b1d32;
  background: #6b1d32;
  color: #ffffff;
}

.legacy-secondary {
  border: 1px solid #e7e2da;
  background: #ffffff;
  color: #1c1917;
  padding: 10px 24px;
}

.legacy-tertiary {
  color: #78716c;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.legacy-hero {
  max-width: 672px;
  margin: 0 auto;
  padding: 64px 20px 80px;
  text-align: center;
}

.legacy-hero-logo {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.legacy-hero-title {
  margin: 0;
  color: #1c1917;
  font-size: 36px;
  font-weight: 500;
  line-height: 0.95;
}

.legacy-hero-copy {
  max-width: 448px;
  margin: 20px auto 0;
  color: #78716c;
  font-size: 15px;
  line-height: 1.65;
}

.legacy-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.legacy-primary {
  padding: 10px 24px;
}

.legacy-note {
  margin: 40px 0 0;
  color: #78716c;
  font-size: 12px;
  font-style: italic;
}

.legacy-feature-section {
  border-top: 1px solid #e7e2da;
  background: #ffffff;
}

.legacy-feature-inner {
  max-width: 896px;
  margin: 0 auto;
  padding: 64px 20px;
}

.legacy-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.legacy-feature-card {
  border: 1px solid #e7e2da;
  border-radius: 8px;
  background: #faf9f6;
  padding: 20px;
}

.legacy-feature-icon {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #f4e8ec;
  color: #6b1d32;
}

.legacy-feature-svg {
  display: block;
  width: 18px;
  height: 18px;
}

.legacy-feature-title {
  margin: 0;
  color: #1c1917;
  font-size: 15px;
  font-weight: 500;
}

.legacy-feature-copy {
  margin: 4px 0 0;
  color: #78716c;
  font-size: 13px;
  line-height: 1.6;
}

.legacy-footer {
  border-top: 1px solid #e7e2da;
  padding: 32px 20px;
  text-align: center;
}

.legacy-footer p {
  margin: 4px 0 0;
  color: #78716c;
  font-size: 12px;
}

.legacy-footer a {
  color: #6b1d32;
}

@media (max-width: 639px) {
  .legacy-hero {
    max-width: 512px;
    padding-top: 64px;
  }

  .legacy-hero-title {
    font-size: 32px;
  }

  .legacy-actions {
    flex-direction: column;
  }

  .legacy-feature-grid {
    grid-template-columns: 1fr;
  }
}
