:root {
  color-scheme: light;
  --ice: #f8fbff;
  --frost: #eef7ff;
  --cream: #fff5e8;
  --vanilla: #ffe9bc;
  --berry: #ef4d82;
  --berry-soft: #ffedf4;
  --blueberry: #6678ff;
  --mint: #86e6c4;
  --ink: #1e2430;
  --slate: #6c7180;
  --muted: #9aa4b2;
  --line: #dceaf7;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 70px rgba(82, 120, 160, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ice);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 233, 188, 0.58), transparent 30rem),
    radial-gradient(circle at 88% 0%, rgba(255, 111, 159, 0.22), transparent 24rem),
    linear-gradient(180deg, #eaf7ff 0%, #f8fbff 42%, #fff8ee 100%);
}

a {
  color: #c93468;
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #ffe8f1 54%, #dff9ff 100%);
  box-shadow: 0 12px 30px rgba(239, 77, 130, 0.14);
}

.brand-mark::before {
  width: 16px;
  height: 22px;
  border-radius: 8px 8px 10px 10px;
  background: linear-gradient(180deg, var(--berry), var(--blueberry));
  content: "";
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
  padding: 9px 13px;
  border: 1px solid rgba(220, 234, 247, 0.9);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(220, 234, 247, 0.9);
  border-radius: 999px;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 750;
}

.language-picker select {
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 36px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(134, 230, 196, 0.62), transparent 68%);
  content: "";
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #355268;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  max-width: 780px;
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 890;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 720px;
  margin-top: 22px;
  color: var(--slate);
  font-size: clamp(18px, 2.2vw, 22px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 18px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--berry), #ff7aa9);
  box-shadow: 0 14px 30px rgba(239, 77, 130, 0.28);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.card,
.content-card {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(82, 120, 160, 0.12);
  backdrop-filter: blur(18px);
}

.card {
  padding: 24px;
}

.card p,
.content-card p,
.content-card li {
  color: var(--slate);
}

.section {
  margin-top: 22px;
}

.content-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
}

.content-card + .content-card {
  margin-top: 18px;
}

.page-title {
  margin-bottom: 12px;
  font-size: clamp(38px, 6vw, 62px);
}

.meta {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.list {
  padding-left: 22px;
  margin: 12px 0 0;
}

.list li {
  margin: 8px 0;
}

.notice {
  padding: 18px;
  border: 1px solid rgba(239, 77, 130, 0.18);
  border-radius: 22px;
  background: var(--berry-soft);
  color: #74304c;
  font-weight: 700;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 24px, 1080px);
    padding-top: 16px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    border-radius: 30px;
    padding: 28px 22px;
  }

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

  .content-card {
    border-radius: 26px;
  }
}
