:root {
  color-scheme: light;
  --page-background: #f6efe6;
  --surface: rgba(255, 255, 255, 0.82);
  --border: rgba(27, 29, 33, 0.12);
  --foreground: #1b1d21;
  --muted: #5d626c;
  --primary: #f16115;
  --primary-foreground: #fff7f2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top, rgba(241, 97, 21, 0.14), transparent 30%),
    linear-gradient(180deg, #fbf4ec 0%, var(--page-background) 100%);
  color: var(--foreground);
}

a {
  color: inherit;
}

.page {
  width: min(100%, 68rem);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.language-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}

.language-nav a {
  text-decoration: none;
  color: var(--muted);
}

.language-nav a[aria-current="page"] {
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.hero {
  margin: 5rem auto 0;
  max-width: 48rem;
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--surface);
  backdrop-filter: blur(8px);
  box-shadow: 0 1.5rem 4rem rgba(27, 29, 33, 0.08);
}

.eyebrow {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 1rem 0 0;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.tagline {
  margin: 1.75rem auto 0;
  max-width: 34rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.35;
}

.subtitle,
.note {
  max-width: 36rem;
  margin: 1rem auto 0;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: var(--muted);
}

.note {
  font-size: 0.95rem;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.primary-action {
  background: var(--primary);
  color: var(--primary-foreground);
}

.support-link {
  margin-left: 0.35rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.feature-list {
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  list-style: none;
  text-align: left;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-list li {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.68);
  font-family: Arial, sans-serif;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .page {
    padding: 1.25rem 1rem 2.5rem;
  }

  .hero {
    margin-top: 3rem;
    padding: 2rem 1.25rem;
  }

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