:root {
  --peach: #f7af9d;
  --blue: #b0d0d3;
  --pink: #c08497;
  --lightpink: #ffcad4;
  --text: #111827;
  --muted: rgba(17, 24, 39, 0.7);
  --white: #ffffff;
  --border: rgba(192, 132, 151, 0.42);
  --shadow: 0 14px 34px rgba(17, 24, 39, 0.12);
  --shadow2: 0 8px 20px rgba(17, 24, 39, 0.10);
  --max: 1020px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background:
    radial-gradient(1100px 650px at 20% -10%, rgba(176, 208, 211, 0.55), transparent 60%),
    radial-gradient(1100px 650px at 80% 0%, rgba(255, 202, 212, 0.62), transparent 55%),
    radial-gradient(900px 650px at 50% 100%, rgba(247, 175, 157, 0.40), transparent 65%),
    linear-gradient(180deg, rgba(247, 175, 157, 0.55), rgba(247, 175, 157, 0.25));
  min-height: 100vh;
}

a {
  color: inherit;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(192, 132, 151, 0.28);
  border-radius: 10px;
  padding: 2px 8px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(176, 208, 211, 1);
  border-bottom: 1px solid rgba(192, 132, 151, 0.25);
}

.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand__logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
  font-weight: 1000;
  color: var(--pink);
  font-size: 20px;
}

.brand__text {
  font-weight: 1000;
  letter-spacing: 0.2px;
  font-size: 25px;
  color: var(--pink)
}

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

.nav__link {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: rgba(17, 24, 39, 0.86);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
  line-height: 1;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(192, 132, 151, 0.28);
  transform: translateY(-1px);
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 16px 40px;
}

.hero {
  padding-top: 12px;
}

.hero__card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(192, 132, 151, 0.35);
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero__titleWrap {
  position: relative;
  display: inline-block;
  margin-bottom: 6px;
}

.hero__shadow {
  position: absolute;
  inset: 0;
  font-weight: 1000;
  font-size: clamp(44px, 6vw, 70px);
  letter-spacing: -0.8px;
  color: var(--pink);
  user-select: none;
  pointer-events: none;
}

.hero__shadow--1 { transform: translate(-3px, 0); }
.hero__shadow--2 { transform: translate(3px, 0); }
.hero__shadow--3 { transform: translate(0, -3px); }
.hero__shadow--4 { transform: translate(0, 3px); }

.hero__title {
  position: relative;
  margin: 0;
  font-weight: 1000;
  font-size: clamp(44px, 6vw, 70px);
  letter-spacing: -0.8px;
  color: var(--lightpink);
  text-shadow: 0 10px 30px rgba(17, 24, 39, 0.12);
}

.hero__subtitle {
  margin: 8px 0 8px;
  font-size: 16px;
  font-weight: 950;
  color: rgba(17, 24, 39, 0.72);
}

.hero__desc {
  margin: 0 0 14px;
  color: rgba(17, 24, 39, 0.86);
  font-weight: 650;
  line-height: 1.55;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(192, 132, 151, 0.35);
  background: rgba(247, 175, 157, 0.22);
}

.pill__label {
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(17, 24, 39, 0.65);
}

.pill__value {
  font-weight: 800;
  color: rgba(17, 24, 39, 0.9);
}

.section {
  padding: 32px 0 0;
}

.section__head {
  margin: 0 0 14px;
}

.section__title {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 1000;
  letter-spacing: -0.3px;
}

.section__lead {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
  max-width: 80ch;
}

.card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(192, 132, 151, 0.35);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow2);
}

.card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 1000;
}

.card__text {
  margin: 0 0 10px;
  color: rgba(17, 24, 39, 0.86);
  line-height: 1.55;
}

.card__text:last-child {
  margin-bottom: 0;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(17, 24, 39, 0.86);
  line-height: 1.65;
}

.divider {
  height: 1px;
  background: rgba(192, 132, 151, 0.22);
  margin: 16px 0;
}

.link {
  font-weight: 950;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 14px;
  border: 1px solid rgba(192, 132, 151, 0.28);
  background: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.muted {
  color: rgba(17, 24, 39, 0.62);
  font-weight: 650;
}

.footer {
  margin-top: 34px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(192, 132, 151, 0.22);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0 22px;
}

.footer__text {
  margin: 0;
  font-weight: 850;
  color: rgba(17, 24, 39, 0.72);
}

.footer__link {
  text-decoration: none;
  font-weight: 950;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(192, 132, 151, 0.28);
  background: rgba(255, 255, 255, 0.55);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.footer__link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 96px;
  }
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .nav {
    justify-content: flex-start;
  }
}
