:root {
  --peachcolor_01: #fb999e;
  --peachcolor_02: #ffc6b9;
  --peachcolor_03: #fffaec;
  --peach-50: #fff7f3;
  --peach-100: #ffeae1;
  --peach-200: #ffd8c8; /* main background */
  --peach-600: #ff7f66; /* accents */
  --ink-800: #2b2b2b; /* text */
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Fredoka", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--ink-800);
  background: var(--peach-50);
}

.wrap {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto; /* content + footer */
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

main {
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: clamp(24px, 5vw, 48px);
  text-align: center;
  max-width: 720px;
  width: min(92vw, 720px);
}

.logo {
  width: clamp(140px, 30vw, 300px);
  height: auto;
  display: block;
  margin: 0 auto 70px;
}

h1 {
  font-size: clamp(28px, 6vw, 40px);
  line-height: 1.1;
  margin: 8px 0 12px;
  letter-spacing: 0.5px;
}

p.lead {
  font-size: clamp(16px, 3.4vw, 18px);
  margin: 0 auto 16px;
  opacity: 0.9;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid var(--peach-200);
  background: var(--peach-100);
  text-decoration: none;
  color: var(--ink-800);
  font-weight: 600;
  transition: transform 0.08s ease, box-shadow 0.2s ease;
}
.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.langs {
  margin-top: 14px;
  font-size: 14px;
  opacity: 0.8;
}
.langs a {
  color: inherit;
  text-decoration: underline;
}

footer {
  margin-top: 24px;
  background: white;
  border-top: 1px solid var(--peachcolor_01);
  padding: 16px clamp(16px, 4vw, 32px);
}

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

.sign {
  display: flex;
  flex-direction: column;
}

.brand {
  font-weight: 600;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.links a {
  color: var(--ink-800);
  text-decoration: none;
  opacity: 0.85;
}
.links a:hover {
  text-decoration: underline;
}

.small {
  font-size: 12px;
  opacity: 0.7;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr auto;
  }
}
