:root {
  --ink: #1c202b;
  --muted: #656975;
  --cream: #f8f2ea;
  --lavender: #b7aadd;
  --lavender-deep: #6b57a7;
  --coral: #eb8580;
  --surface: rgba(255, 255, 255, 0.84);
  --line: rgba(107, 87, 167, 0.16);
}

* { box-sizing: border-box; }
html { background: var(--cream); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(235, 133, 128, 0.19), transparent 34rem),
    radial-gradient(circle at 93% 12%, rgba(183, 170, 221, 0.44), transparent 38rem),
    linear-gradient(145deg, #fbf5ed 0%, #f5f1f8 58%, #eee9f8 100%);
}
a { color: inherit; }
.site-header, .site-footer, .hero, .trust-strip, .legal-shell {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}
.language-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}
.language-switcher a {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 750;
  text-decoration: none;
}
.language-switcher a.active {
  color: white;
  border-color: var(--lavender-deep);
  background: var(--lavender-deep);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand img {
  border-radius: 15px;
  box-shadow: 0 9px 24px rgba(50, 36, 84, 0.17);
}
.brand span { display: grid; gap: 2px; }
.brand strong { font-size: 1rem; letter-spacing: -0.02em; }
.brand small { color: var(--muted); font-size: 0.76rem; }
.hero { padding: 92px 0 62px; }
.eyebrow {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--lavender-deep);
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1 {
  max-width: 780px;
  margin: 24px 0 18px;
  font-size: clamp(3.25rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}
.hero-copy {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  line-height: 1.65;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.link-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(42, 30, 75, 0.08);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.link-card:hover, .link-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(42, 30, 75, 0.13);
  outline: none;
}
.link-card > span:nth-child(2) { display: grid; gap: 5px; }
.link-card strong { font-size: 1.03rem; }
.link-card small { color: var(--muted); line-height: 1.4; }
.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: var(--lavender-deep);
  background: rgba(183, 170, 221, 0.25);
  font-size: 1.35rem;
  font-weight: 750;
}
.link-card:nth-child(2) .card-icon {
  color: #9a4f4a;
  background: rgba(235, 133, 128, 0.22);
}
.arrow { color: var(--lavender-deep); font-size: 1.4rem; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 50px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}
.trust-strip div {
  display: grid;
  gap: 5px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.7);
}
.trust-strip span { color: var(--muted); font-size: 0.88rem; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}
.site-footer a { color: var(--lavender-deep); font-weight: 650; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.legal-shell { padding-bottom: 64px; }
.legal-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
}
.back-link {
  color: var(--lavender-deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.legal-nav-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}
.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.legal-hero { max-width: 820px; padding: 72px 0 36px; }
.legal-hero h1 { font-size: clamp(2.7rem, 7vw, 5.2rem); }
.updated { color: var(--muted); font-size: 0.9rem; }
.legal-card {
  max-width: 860px;
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 22px 64px rgba(42, 30, 75, 0.09);
}
.legal-card h2 {
  margin: 42px 0 13px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: #4f535e; line-height: 1.72; }
.legal-card ul { padding-left: 21px; }
.legal-card a { color: var(--lavender-deep); font-weight: 650; }
.notice {
  margin: 28px 0;
  padding: 19px 21px;
  border-left: 4px solid var(--coral);
  border-radius: 4px 16px 16px 4px;
  background: rgba(235, 133, 128, 0.1);
}
@media (max-width: 720px) {
  .site-header, .site-footer, .hero, .trust-strip, .legal-shell {
    width: min(100% - 28px, 1080px);
  }
  .hero { padding-top: 58px; }
  .link-grid, .trust-strip { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .site-header, .legal-topline { align-items: flex-start; }
  .language-switcher { max-width: 210px; }
  .legal-hero { padding-top: 45px; }
}
@media (min-width: 721px) and (max-width: 980px) {
  .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
