@font-face {
  font-family: "Playpen Sans";
  src: url("/assets/fonts/PlaypenSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --font: "Playpen Sans", ui-rounded, "SF Pro Rounded", ui-sans-serif, system-ui, sans-serif;
  --bg: #fff6f0;
  --paper: #fffdf9;
  --ink: #2d1a1f;
  --muted: #7f6063;
  --soft: #fff0e8;
  --line: rgba(116, 74, 76, 0.16);
  --cherry: #f1416c;
  --cherry-deep: #d93558;
  --cream: #fff8ec;
  --leaf: #5a9f62;
  --shadow: 0 28px 80px rgba(119, 54, 62, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
}

body:not(.home-body) {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 198, 152, 0.32), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(232, 77, 118, 0.16), transparent 30%),
    linear-gradient(180deg, #fff8f2 0%, #fffdf9 48%, #fff5ef 100%);
}

.home-body {
  min-height: 100dvh;
  overflow-x: hidden;
  background: transparent;
  isolation: isolate;
}

.home-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #fff8f2;
  background-image:
    linear-gradient(180deg, rgba(255, 248, 241, 0.18), rgba(255, 248, 241, 0.06) 45%, rgba(255, 248, 241, 0.22)),
    url("/assets/hero-bg.jpg?v=20260527c");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--cherry);
}

.page {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.home-page {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  width: min(1200px, calc(100% - 48px));
}

.home-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-inline: calc(50% - 50vw);
  padding: 14px calc(50vw - 50% + 0px) 12px;
  background: rgba(255, 251, 247, 0.68);
  border-bottom: 1px solid rgba(116, 74, 76, 0.1);
  box-shadow: 0 10px 28px rgba(119, 54, 62, 0.06);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 251, 247, 0.94);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 720;
  font-size: 17px;
  color: var(--ink);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(232, 77, 118, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 620;
}

.nav a {
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav a:hover {
  opacity: 1;
}

.home-hero {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.hero-headline {
  margin: 0;
  font-size: clamp(36px, 6.8vw, 64px);
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cherry);
  text-wrap: balance;
}

.hero-subline {
  margin: 18px auto 0;
  max-width: 36ch;
  color: var(--ink);
  font-size: clamp(15px, 1.9vw, 19px);
  font-weight: 600;
  line-height: 1.5;
  text-wrap: balance;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 680;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button:active {
  transform: translateY(1px) scale(0.985);
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 18px 34px rgba(45, 26, 31, 0.16);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 14px 28px rgba(119, 54, 62, 0.07);
}

.button.primary:hover:not(.is-disabled) {
  color: var(--paper);
  background: #442932;
}

.button.is-disabled {
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.button.is-disabled:active {
  transform: none;
}

.button.secondary:hover {
  color: var(--cherry-deep);
  border-color: rgba(232, 77, 118, 0.24);
}

.site-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0 34px;
  color: var(--muted);
  border-top: 1px solid rgba(116, 74, 76, 0.12);
  font-size: 13px;
  font-weight: 560;
}

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

.legal-main {
  flex: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0 32px;
}

.legal-hero {
  padding: 58px 0 30px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.98;
}

.updated {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.policy {
  display: grid;
  gap: 30px;
  margin-top: 24px;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(234, 219, 214, 0.86);
}

.policy section {
  display: grid;
  gap: 10px;
}

.policy h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.policy h3 {
  margin: 14px 0 0;
  font-size: 17px;
}

.policy p,
.policy li {
  color: var(--muted);
  line-height: 1.68;
}

.policy p,
.policy ul {
  margin: 0;
}

.policy ul {
  padding-left: 20px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .home-page {
    width: min(100% - 36px, 100%);
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 28px, 680px);
  }

  .site-header {
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    font-size: 12px;
  }

  .brand {
    gap: 9px;
    font-size: 15px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .home-page {
    width: min(100% - 24px, 680px);
  }

  .hero-headline {
    font-size: clamp(32px, 9.5vw, 44px);
  }

  .hero-subline {
    max-width: 32ch;
    font-size: clamp(14px, 4vw, 17px);
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    font-size: 13px;
  }

  .legal-main {
    padding-bottom: 24px;
  }

  .legal-hero {
    padding: 46px 0 24px;
  }

  .policy {
    padding: 24px;
    border-radius: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

