:root {
  /* Palette carried over from the previous Lautz.IT site */
  --bg: #f8f9fb;
  --card: #ffffff;
  --ink: #333a3f;
  --muted: #6b7075;
  --green: #109b1a;
  --green-dark: #006837;
  --accent: #98f5f9;
  --line: #e7eaee;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(20, 40, 30, 0.08);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(16, 155, 26, 0.10), transparent 60%),
    var(--bg);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  line-height: 1.6;
}

/* --- Card --- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 560px;
  width: 100%;
  padding: 48px 44px;
  text-align: center;
}

.logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 30px;
}

h1 {
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 20px;
  color: var(--ink);
}

.lead {
  font-size: 1.08rem;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.card p strong { color: var(--ink); }

/* --- Call to action --- */
.cta {
  display: inline-block;
  margin-top: 14px;
  padding: 13px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 18px rgba(16, 155, 26, 0.3);
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 155, 26, 0.38);
}

/* --- Footer --- */
.site-footer {
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-footer a:hover {
  color: var(--green-dark);
  border-color: var(--green);
}

.site-footer .sep { margin: 0 8px; opacity: 0.5; }
.site-footer .copy { white-space: nowrap; }

/* --- Legal pages --- */
.legal {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 720px;
  width: 100%;
  padding: 44px 44px 40px;
  text-align: left;
}

.legal .logo { margin: 0 0 22px; height: 36px; }
.legal h1 { text-align: left; margin-bottom: 24px; }
.legal h2 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--green-dark);
  margin: 28px 0 8px;
}
.legal p { color: var(--ink); }
.legal a { color: var(--green-dark); }

.back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}
.back:hover { color: var(--green-dark); }

@media (max-width: 520px) {
  .card, .legal { padding: 32px 24px; }
  h1 { font-size: 1.35rem; }
  .site-footer .sep { margin: 0 6px; }
}
