


@font-face {
  font-family: 'Comfortaa';
  src: url('../fonts/comfortaa-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('../fonts/comfortaa-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('../fonts/comfortaa-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Rethink Sans';
  src: url('../fonts/rethink-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Rethink Sans';
  src: url('../fonts/rethink-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Rethink Sans';
  src: url('../fonts/rethink-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}


:root {
  --surface: #e9ebf1;
  --surface-2: #eef0f5;
  --ink: #393652;
  --ink-soft: #6d6987;
  --ink-faint: #918da6;
  --accent: #7a6bc4;
  --accent-deep: #5f51a8;
  --accent-wash: #ddd7f4;
  --mint: #6fae97;
  --mint-wash: #d6eadf;

  --hi: rgba(255, 255, 255, 0.92);
  --lo: rgba(166, 170, 192, 0.62);
  --lo-soft: rgba(166, 170, 192, 0.45);

  --r-xl: 2.6rem;
  --r-lg: 1.9rem;
  --r-md: 1.25rem;
  --r-sm: 0.85rem;
  --r-pill: 999px;

  --sh-out: 9px 9px 20px var(--lo), -9px -9px 20px var(--hi);
  --sh-out-sm: 5px 5px 13px var(--lo), -5px -5px 13px var(--hi);
  --sh-in: inset 5px 5px 12px var(--lo), inset -5px -5px 12px var(--hi);
  --sh-in-deep: inset 7px 7px 16px var(--lo), inset -6px -6px 14px var(--hi);
  --sh-press: inset 4px 4px 10px var(--lo), inset -4px -4px 10px var(--hi);

  --col: 62rem;
  --pad: clamp(1.1rem, 4vw, 2.6rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: 'Rethink Sans', system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.72;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(151, 138, 209, 0.10), transparent 42%),
    radial-gradient(circle at 88% 22%, rgba(111, 174, 151, 0.09), transparent 40%);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--accent-deep);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.shell {
  width: min(100% - 2rem, var(--col));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: var(--r-pill);
  z-index: 200;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
}


.ay-soft {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-out);
}

.ay-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.05rem;
  border-radius: var(--r-pill);
  background: var(--surface);
  box-shadow: var(--sh-out-sm);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.ay-pill::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  border-radius: var(--r-pill);
  background: var(--mint);
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.ay-num {
  flex: none;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: var(--r-pill);
  background: var(--surface);
  box-shadow: var(--sh-in-deep);
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border: 0;
  border-radius: var(--r-pill);
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  background: var(--surface);
  color: var(--accent-deep);
  box-shadow: var(--sh-out);
  transition: box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.btn:hover {
  color: var(--accent);
}
.btn:active {
  box-shadow: var(--sh-press);
  transform: translateY(1px);
}
.btn-primary {
  background: linear-gradient(135deg, #8474cf, #6353a6);
  color: #fff;
  box-shadow: 7px 7px 18px var(--lo), -6px -6px 16px var(--hi);
}
.btn-primary:hover {
  color: #fff;
  filter: saturate(1.1) brightness(1.03);
}
.btn-primary:active {
  box-shadow: inset 4px 4px 10px rgba(60, 48, 110, 0.5), inset -3px -3px 8px rgba(255, 255, 255, 0.25);
}


.ay-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(233, 235, 241, 0.86);
  backdrop-filter: blur(10px);
}
.ay-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--ink);
}
.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  box-shadow: var(--sh-out-sm);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.16s ease, box-shadow 0.16s ease;
}
.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--accent-deep);
  box-shadow: var(--sh-press);
}
.nav-cta {
  margin-left: 0.4rem;
}

.burger {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--surface);
  box-shadow: var(--sh-out-sm);
  color: var(--accent-deep);
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}
.burger-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.burger-bars span {
  width: 20px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--accent-deep);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.burger[aria-expanded='true'] .burger-bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger[aria-expanded='true'] .burger-bars span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded='true'] .burger-bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


.drawer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.34s ease;
}
.drawer.open {
  max-height: 30rem;
}
.drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.4rem 0 1.1rem;
}
.drawer-inner a {
  padding: 0.85rem 1.2rem;
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--sh-out-sm);
  color: var(--ink);
  font-weight: 600;
}
.drawer-inner a[aria-current='page'] {
  box-shadow: var(--sh-press);
  color: var(--accent-deep);
}


main {
  display: block;
}
.sec {
  padding-block: clamp(2.6rem, 7vw, 5rem);
}
.sec-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(1.6rem, 4vw, 2.6rem);
}
.sec-head h2 {
  font-size: clamp(1.7rem, 4.6vw, 2.7rem);
}
.sec-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
}


.ay-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2rem, 6vw, 3.6rem) clamp(2.4rem, 7vw, 4.4rem);
  text-align: center;
}
.ay-hero .shell {
  position: relative;
}
.ay-hero-card {
  position: relative;
  padding: clamp(1.6rem, 5vw, 3.4rem);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-out);
}
.ay-hero h1 {
  font-size: clamp(2.1rem, 7vw, 4rem);
  margin-bottom: 1rem;
}
.ay-hero h1 .soft-em {
  color: var(--accent);
}
.ay-hero-lead {
  max-width: 34rem;
  margin: 0 auto 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.6vw, 1.18rem);
}
.ay-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: clamp(1.6rem, 4vw, 2.4rem);
}
.ay-hero-frame {
  position: relative;
  border-radius: var(--r-lg);
  padding: 0.9rem;
  background: var(--surface);
  box-shadow: var(--sh-in-deep);
}
.ay-hero-frame img {
  width: 100%;
  height: clamp(180px, 38vw, 340px);
  object-fit: cover;
  border-radius: var(--r-md);
}
.ay-hero-frame::after {
  content: '';
  position: absolute;
  inset: 0.9rem;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(57, 54, 82, 0) 45%, rgba(57, 54, 82, 0.32));
  pointer-events: none;
}
.ay-hero-tag {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
  color: #fff;
  font-family: 'Comfortaa', cursive;
  font-weight: 600;
  font-size: 0.92rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.ay-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}
.ay-hero-stats div {
  min-width: 8.5rem;
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  box-shadow: var(--sh-press);
}
.ay-hero-stats b {
  display: block;
  font-family: 'Comfortaa', cursive;
  font-size: 1.5rem;
  color: var(--accent-deep);
}
.ay-hero-stats span {
  font-size: 0.84rem;
  color: var(--ink-soft);
}


.steps {
  display: grid;
  gap: 1.1rem;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--sh-out);
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.step p {
  margin: 0;
  color: var(--ink-soft);
}


.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1.2rem;
}
.ay-card {
  display: flex;
  flex-direction: column;
  padding: 1.3rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--sh-out);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ay-card:hover {
  transform: translateY(-3px);
  box-shadow: 12px 12px 26px var(--lo), -10px -10px 24px var(--hi);
}
.tile-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.tile-icon {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 1.25rem;
  box-shadow: var(--sh-out-sm);
}
.tile-name {
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1.08rem;
  margin: 0;
}
.tile-meta {
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.tile-desc {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0 0 1.1rem;
  flex: 1;
}
.tile-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-press);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-deep);
}
.rating .star {
  color: #e0b341;
}
.tile-link {
  font-weight: 700;
  font-family: 'Comfortaa', cursive;
  font-size: 0.9rem;
}
.tile-link:hover {
  color: var(--accent);
}


.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.2rem;
}
.benefit {
  padding: 1.6rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--sh-out);
}
.benefit .glyph {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.9rem;
  background: var(--surface);
  box-shadow: var(--sh-press);
  font-size: 1.5rem;
}
.benefit h3 {
  font-size: 1.12rem;
}
.benefit p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}


.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: stretch;
  margin-top: 1.4rem;
}
.feature-split .ay-soft {
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
}
.feature-media {
  position: relative;
  border-radius: var(--r-lg);
  padding: 0.9rem;
  background: var(--surface);
  box-shadow: var(--sh-in-deep);
}
.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  border-radius: var(--r-md);
}


.reviews {
  columns: 3 17rem;
  column-gap: 1.2rem;
}
.review {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  padding: 1.4rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--sh-out);
}
.review p {
  margin: 0 0 0.9rem;
  color: var(--ink);
  font-size: 0.97rem;
}
.review .who {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.review .av {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--accent-wash), #cfe7dc);
  box-shadow: var(--sh-out-sm);
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  color: var(--accent-deep);
}
.review .who b {
  display: block;
  font-size: 0.92rem;
}
.review .who span {
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.review .stars {
  color: #e0b341;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}


.board {
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--sh-out);
  padding: 0.7rem;
}
.board-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
}
.board-row + .board-row {
  margin-top: 0.4rem;
}
.board-row.head {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.board-row.lb {
  box-shadow: var(--sh-press);
}
.board-rank {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: var(--r-pill);
  background: var(--surface);
  box-shadow: var(--sh-out-sm);
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  color: var(--accent-deep);
  font-size: 0.92rem;
}
.board-game {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}
.board-game img {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.7rem;
  box-shadow: var(--sh-out-sm);
  flex: none;
}
.board-game b {
  font-family: 'Comfortaa', cursive;
  font-size: 0.96rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board-calm {
  font-size: 0.86rem;
  color: var(--mint);
  font-weight: 700;
  white-space: nowrap;
}
.board-score {
  font-weight: 700;
  color: var(--accent-deep);
  white-space: nowrap;
}


.mood {
  display: grid;
  gap: clamp(1.2rem, 3vw, 1.8rem);
}
.mood-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}
.mood-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--surface);
  box-shadow: var(--sh-out-sm);
  color: var(--ink);
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.mood-chip span {
  font-size: 1.05rem;
}
.mood-chip:hover {
  color: var(--accent-deep);
  transform: translateY(-2px);
}
.mood-chip[aria-pressed='true'] {
  box-shadow: var(--sh-press);
  color: var(--accent-deep);
  transform: none;
}
.mood-result {
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-out);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}
.mood-empty {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
}
.mood-empty p {
  margin: 0;
  font-size: 1rem;
}
.mood-empty-emoji {
  font-size: 1.8rem;
}
.mood-card {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 1.6rem);
}
.mood-card-emoji {
  flex: none;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--r-pill);
  background: var(--surface);
  box-shadow: var(--sh-in-deep);
  font-size: 1.9rem;
}
.mood-card-body {
  min-width: 0;
}
.mood-card-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
}
.mood-card-body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}
.mood-card-desc {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.mood-card-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.mood-card-cta .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.92rem;
}


.care {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.2rem;
}
.care-card {
  padding: 1.6rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--sh-out);
}
.care-icon {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.9rem;
  background: var(--surface);
  box-shadow: var(--sh-press);
  color: var(--accent-deep);
}
.care-card h3 {
  font-size: 1.12rem;
}
.care-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}


.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: center;
}
.about-media {
  border-radius: var(--r-lg);
  padding: 0.9rem;
  background: var(--surface);
  box-shadow: var(--sh-in-deep);
}
.about-media img {
  width: 100%;
  border-radius: var(--r-md);
}
.about-copy .ay-pill {
  margin-bottom: 1rem;
}


.recado {
  text-align: center;
  padding: clamp(2rem, 6vw, 3.6rem);
  border-radius: var(--r-xl);
  background:
    linear-gradient(135deg, rgba(122, 107, 196, 0.14), rgba(111, 174, 151, 0.12)),
    var(--surface);
  box-shadow: var(--sh-out);
}
.recado h2 {
  font-size: clamp(1.7rem, 4.6vw, 2.6rem);
}
.recado p {
  max-width: 34rem;
  margin: 0 auto 1.6rem;
  color: var(--ink-soft);
}
.recado-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}


.form-card {
  max-width: 38rem;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-out);
}
.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  color: var(--ink);
  padding: 0.85rem 1.1rem;
  border: 0;
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--sh-in);
}
.field textarea {
  min-height: 8rem;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
}
.contact-info {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}
.contact-info .ci {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--sh-out-sm);
}
.contact-info .ci .glyph {
  font-size: 1.3rem;
}
.contact-info .ci b {
  font-family: 'Comfortaa', cursive;
}
.contact-info .ci span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.95rem;
}


.prose {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-out);
}
.prose h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
}
.prose h2:first-of-type {
  margin-top: 0.5rem;
}
.prose ul {
  padding-left: 1.2rem;
  color: var(--ink-soft);
}
.prose li {
  margin-bottom: 0.5rem;
}
.prose .updated {
  color: var(--ink-faint);
  font-size: 0.9rem;
}
.page-hero {
  text-align: center;
  padding-block: clamp(2.2rem, 6vw, 3.4rem) clamp(1rem, 3vw, 1.8rem);
}
.page-hero h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
}
.page-hero p {
  max-width: 36rem;
  margin: 0.4rem auto 0;
  color: var(--ink-soft);
}


.nf {
  text-align: center;
  padding-block: clamp(3rem, 10vw, 6rem);
}
.nf .big {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(4.5rem, 22vw, 11rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  text-shadow: 6px 6px 14px var(--lo), -6px -6px 14px var(--hi);
}


.ay-foot {
  margin-top: clamp(2rem, 6vw, 4rem);
  padding-block: clamp(2.4rem, 6vw, 3.6rem) 2rem;
  background: var(--surface-2);
  box-shadow: inset 0 12px 24px -16px var(--lo);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 1.8rem;
}
.foot-grid h4 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.9rem;
}
.foot-brand .brand {
  margin-bottom: 0.8rem;
}
.foot-brand p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 22rem;
}
.foot-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.foot-links a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.foot-links a:hover {
  color: var(--accent-deep);
}
.foot-contact {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-style: normal;
}
.foot-contact a {
  color: var(--ink-soft);
}
.foot-bot {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(146, 141, 166, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  color: var(--ink-faint);
  font-size: 0.85rem;
}


.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 150;
  max-width: 40rem;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: 10px 10px 30px var(--lo), -8px -8px 22px var(--hi);
  transform: translateY(160%);
  transition: transform 0.4s ease;
}
.cookie.show {
  transform: translateY(0);
}
.cookie p {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.cookie p a {
  text-decoration: underline;
}
.cookie .cookie-btns {
  display: flex;
  gap: 0.6rem;
}
.cookie .btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
}


.blob {
  position: absolute;
  border-radius: 45% 55% 52% 48%;
  filter: blur(2px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
  animation: drift 14s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}


@media (max-width: 920px) {
  .feature-split,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .reviews {
    columns: 2 16rem;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 0.98rem;
  }
  .reviews {
    columns: 1;
  }
  .board-row {
    grid-template-columns: 2.4rem 1fr auto;
  }
  .board-row .board-calm {
    display: none;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .ay-hero-stats div {
    min-width: 7rem;
    flex: 1 1 7rem;
  }
  .mood-card {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
