@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

:root {
  --bg: #f4f4f5;
  --surface: #ffffff;
  --text: #1b1b1b;
  --text-muted: #4a4a4a;
  --text-subtle: #6e6e6e;
  --border: rgba(0, 0, 0, 0.06);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
  --brand: #43a047;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --max: 720px;
  --max-wide: 960px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(67, 160, 71, 0.08), transparent),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--max-wide));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 32px, var(--max));
}

.site-header {
  padding: 20px 0 12px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.brand img {
  height: 32px;
  width: auto;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--text-subtle);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-switch button[aria-pressed='true'] {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.hero {
  padding: 32px 0 48px;
}

.hero__card {
  background: linear-gradient(135deg, #fff 0%, rgba(67, 160, 71, 0.06) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 48px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
  max-width: 14ch;
}

.hero__lead {
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 36ch;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-subtle);
  font-size: 14px;
  font-weight: 600;
}

.store-badge svg {
  flex-shrink: 0;
  opacity: 0.55;
}

.features {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.features__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(67, 160, 71, 0.12);
  color: var(--brand);
  font-size: 18px;
}

.features h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
}

.features p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

.section {
  padding: 8px 0 56px;
}

.section__title {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.link-grid {
  display: grid;
  gap: 12px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.link-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.link-card__label {
  font-weight: 700;
  font-size: 16px;
}

.link-card__hint {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.link-card__arrow {
  color: var(--text-subtle);
  font-size: 20px;
}

.legal-page {
  padding: 12px 0 64px;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 40px);
}

.legal-card h1 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 4vw, 2rem);
  letter-spacing: -0.03em;
}

.legal-card__updated {
  margin: 0 0 28px;
  color: var(--text-subtle);
  font-size: 14px;
  font-weight: 500;
}

.legal-card h2 {
  margin: 28px 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.legal-card p,
.legal-card li {
  margin: 0 0 12px;
  color: var(--text-muted);
}

.legal-card ul {
  margin: 0 0 12px;
  padding-left: 1.2rem;
}

.legal-card a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.back-link:hover {
  color: var(--text);
}

.site-footer {
  padding: 24px 0 40px;
  border-top: 1px solid var(--border);
  color: var(--text-subtle);
  font-size: 14px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a:hover {
  color: var(--text);
}

[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  .hero h1 {
    max-width: none;
  }

  .store-row {
    flex-direction: column;
  }

  .store-badge {
    justify-content: center;
  }
}
