:root {
  --bg: #f3f5fb;
  --paper: #ffffff;
  --ink: #6f3fa0;
  --deep: #40226f;
  --muted: #6f6b7b;
  --line: rgba(111, 63, 160, .14);
  --red: #d83a96;
  --red-dark: #b72c7d;
  --yellow: #ffc84d;
  --yellow-deep: #f5ad26;
  --green: #54b313;
  --purple: #a95ddd;
  --purple-soft: #eadcf8;
  --cream: #fff3d2;
  --ease: cubic-bezier(.45, 0, .2, 1);
}

* {
  box-sizing: border-box;
}

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

[id] {
  scroll-margin-top: 110px;
}

[data-appear] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s cubic-bezier(.2, .8, .2, 1), transform .9s cubic-bezier(.2, .8, .2, 1);
}

[data-appear].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--deep);
  font-family: "Onest", system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 28px));
  padding: 12px 12px 12px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(111, 63, 160, .12);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(64, 34, 111, .08);
  backdrop-filter: blur(18px);
}

.site-mark {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-family: "Onest", system-ui, sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-mark small {
  color: var(--purple);
  font-size: .7em;
  font-weight: 400;
}

.top-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.top-menu a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 9px 13px;
  border-radius: 999px;
  transition: color .28s var(--ease), background .28s var(--ease), transform .28s var(--ease);
}

.top-menu a:hover {
  color: var(--deep);
  background: var(--cream);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: var(--yellow);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--deep);
  border-radius: 999px;
  transition: transform .24s var(--ease), opacity .24s var(--ease);
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-banner {
  position: relative;
  display: flex;
  min-height: min(760px, 78vh);
  padding: 88px 22px 62px;
  overflow: hidden;
  background: url("images/main-banner-care.png") center / cover no-repeat;
  color: #fff;
}

.main-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(64, 34, 111, .84) 0%, rgba(111, 63, 160, .62) 38%, rgba(216, 58, 150, .12) 78%),
    linear-gradient(0deg, rgba(64, 34, 111, .55), rgba(64, 34, 111, .06) 44%);
}

.main-banner-inner {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: min(980px, calc(100% - 22px));
  margin: 30px auto;
  padding-right: min(24vw, 320px);
}

.eyebrow,
.block-label {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.main-banner .eyebrow {
  color: rgba(255, 255, 255, .8);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Onest", system-ui, sans-serif;
  font-weight: 700;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 80px);
  line-height: .94;
  letter-spacing: -.025em;
}

h1 span {
  display: block;
  margin-bottom: .04em;
  color: var(--yellow);
  font-size: .62em;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.01em;
}

.lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 23px);
}

.main-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.ophelia-hello {
  position: absolute;
  right: max(28px, calc((100vw - 1160px) / 2));
  bottom: 82px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  width: min(360px, calc(100% - 44px));
  padding: 18px;
  color: var(--deep);
  background: rgba(255, 243, 210, .94);
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(64, 34, 111, .2);
  backdrop-filter: blur(16px);
}

.ophelia-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: #fff;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .36), transparent 28%),
    linear-gradient(145deg, var(--red), var(--ink));
  border-radius: 50% 50% 44% 56%;
  font-size: 21px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(111, 63, 160, .22);
}

.ophelia-kicker {
  margin: 0 0 4px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.ophelia-hello p:last-child {
  margin: 0;
  color: var(--deep);
  font-size: 14px;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .32s var(--ease), background .32s var(--ease), border-color .32s var(--ease);
  will-change: transform;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--deep);
  background: var(--yellow);
}

.button.primary:hover {
  background: var(--yellow-deep);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .34);
}

.main-banner-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

.ophelia-guide {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding-bottom: 26px;
}

.ophelia-guide-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  color: var(--deep);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 200, 77, .42), transparent 34%),
    radial-gradient(circle at 98% 24%, rgba(216, 58, 150, .14), transparent 34%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(64, 34, 111, .11);
}

.ophelia-guide-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -74px;
  width: 220px;
  height: 220px;
  background: rgba(111, 63, 160, .08);
  border-radius: 50%;
  pointer-events: none;
}

.ophelia-guide-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 860px;
  margin-bottom: 16px;
}

.ophelia-avatar-large {
  width: 64px;
  height: 64px;
  font-size: 30px;
}

.ophelia-guide h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.025em;
}

.ophelia-guide h2 span,
.block-intro h2 span,
.small-step-note h2 span,
.trust-notes h2 span {
  display: block;
  margin-bottom: .04em;
  color: var(--red-dark);
  font-size: .62em;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.01em;
}

.ophelia-guide-card > p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 0 22px 82px;
  color: var(--muted);
  font-size: 17px;
}

.ophelia-paths {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.ophelia-paths a {
  display: grid;
  gap: 7px;
  min-height: 116px;
  padding: 16px;
  color: var(--deep);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(111, 63, 160, .12);
  border-radius: 18px;
  text-decoration: none;
  transition: transform .36s var(--ease), background .36s var(--ease), box-shadow .36s var(--ease);
}

.ophelia-paths a:hover {
  transform: translateY(-4px);
  background: #fffaf0;
  box-shadow: 0 18px 44px rgba(111, 63, 160, .12);
}

.ophelia-paths span {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
}

.ophelia-paths small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.quick-ways {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr;
  gap: 0;
  margin-top: 18px;
  padding-bottom: 82px;
}

.quick-way-item {
  min-height: 220px;
  padding: 24px 24px 22px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: transform 2.4s var(--ease), background 2.4s var(--ease), box-shadow 2.4s var(--ease);
  will-change: transform;
  cursor: pointer;
}

.quick-way-item:first-child {
  border-left: 1px solid var(--line);
  border-radius: 8px 0 0 8px;
}

.quick-way-item:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 8px 8px 0;
}

.quick-way-item + .quick-way-item {
  border-left: 1px solid var(--line);
}

.quick-way-main {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 24px 70px rgba(111, 63, 160, .18);
}

.quick-way-item:hover {
  transform: translateY(-7px);
  background: #fbfff7;
  box-shadow: 0 22px 46px rgba(111, 63, 160, .12);
}

.quick-way-main:hover {
  background: var(--deep);
}

.quick-way-item span {
  color: var(--red);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.quick-way-main span {
  color: var(--yellow);
}

.quick-way-item strong {
  display: block;
  max-width: 12ch;
  margin: 42px 0 12px;
  font-family: "Onest", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1;
}

.quick-way-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.quick-way-main p {
  color: rgba(255, 255, 255, .76);
}

.content-block {
  padding: 84px 0;
}

.org-cards {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 54px;
  padding: 76px 34px 82px;
  background: rgba(255, 255, 255, .42);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(64, 34, 111, .07);
}

.org-cards::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 10% 18%, rgba(255, 200, 77, .2) 0 16%, transparent 48%),
    radial-gradient(ellipse at 92% 10%, rgba(216, 58, 150, .11) 0 14%, transparent 44%),
    radial-gradient(ellipse at 72% 86%, rgba(111, 63, 160, .08) 0 18%, transparent 50%);
  filter: blur(10px);
  opacity: .72;
}

.block-intro {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(300px, .55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.block-intro h2,
.trust-notes h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.025em;
}

.block-intro p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 17px;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.org-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 286px;
  overflow: hidden;
  padding: 26px 28px;
  color: #fff;
  background: var(--purple);
  border-radius: 18px;
  transform: translateZ(0);
  transition: transform 2.8s var(--ease), box-shadow 2.8s var(--ease), filter 2.8s var(--ease);
  will-change: transform;
  cursor: pointer;
}

.org-card::before,
.org-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  transition: transform 3.2s var(--ease), opacity 3.2s var(--ease);
}

.org-card::before {
  right: -56px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, .13);
  border-radius: 50%;
}

.org-card::after {
  right: 38px;
  bottom: 34px;
  width: 170px;
  height: 46px;
  background: rgba(255, 255, 255, .13);
  transform: rotate(-24deg);
}

.org-card:nth-child(1) {
  grid-column: span 3;
  min-height: 326px;
  background: var(--yellow);
  color: var(--deep);
}

.org-card:nth-child(2) {
  grid-column: span 3;
  min-height: 326px;
  background: var(--red);
}

.org-card:nth-child(3) {
  grid-column: span 3;
  background: var(--green);
}

.org-card:nth-child(4) {
  grid-column: span 3;
  background: var(--purple);
}

.org-card:nth-child(5) {
  grid-column: span 3;
  background: #ffbd3f;
  color: var(--deep);
}

.org-card:nth-child(6) {
  grid-column: span 3;
  background: #8f5bd5;
}

.org-card:hover {
  transform: translateY(-8px) rotate(-.4deg);
  box-shadow: 0 26px 70px rgba(111, 63, 160, .2);
  filter: saturate(1.08);
}

.org-card:hover::before {
  transform: translate(-16px, -12px) scale(1.08);
  opacity: .9;
}

.org-card:hover::after {
  transform: translate(-18px, -10px) rotate(-16deg);
  opacity: .92;
}

.org-card:nth-child(even):hover {
  transform: translateY(-8px) rotate(.4deg);
}

.org-card > * {
  position: relative;
  z-index: 1;
}

.org-card-feature {
  min-height: 326px;
}

.org-card-soft {
  position: relative;
}

.org-meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  min-height: 64px;
}

.org-meta span,
.hands-on-list span,
.small-step-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .015em;
}

.org-meta span + span {
  color: inherit;
  background: rgba(255, 255, 255, .26);
}

.org-card h3 {
  margin: auto 0 10px;
  padding-top: 20px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
}

.org-card p {
  max-width: 660px;
  margin: 0 0 24px;
  color: currentColor;
  opacity: .82;
}

.org-card a,
.hands-on-list a,
.small-step-actions a,
.page-bottom a {
  width: fit-content;
  color: currentColor;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  white-space: nowrap;
  transition: opacity .28s var(--ease), border-color .28s var(--ease), color .28s var(--ease);
}

.org-card a:hover,
.hands-on-list a:hover,
.small-step-actions a:hover,
.page-bottom a:hover {
  opacity: .76;
  border-color: currentColor;
}

.hands-on {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: 54px;
  background:
    linear-gradient(135deg, #fff8e2 0%, #fff2cf 52%, #fff8e8 100%);
}

.hands-on::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  background:
    radial-gradient(ellipse at 8% 20%, rgba(255, 200, 77, .22) 0 17%, transparent 46%),
    radial-gradient(ellipse at 86% 72%, rgba(111, 63, 160, .075) 0 18%, transparent 50%),
    radial-gradient(ellipse at 22% 82%, rgba(216, 58, 150, .07) 0 14%, transparent 44%);
  filter: blur(12px);
  opacity: .68;
  pointer-events: none;
}

.hands-on-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(480px, 1fr);
  gap: 60px;
}

.hands-on .block-intro {
  display: block;
  position: sticky;
  top: 120px;
  margin: 0;
  align-self: start;
}

.hands-on .block-intro h2 {
  margin-bottom: 20px;
}

.hands-on-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.hands-on-list article {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px 24px;
  padding: 28px 22px;
  border-bottom: 1px solid rgba(111, 63, 160, .16);
  cursor: pointer;
}

.hands-on-list article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, .36);
  box-shadow: inset 8px 0 0 rgba(111, 63, 160, .18);
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hands-on-list article > * {
  position: relative;
  z-index: 1;
}

.hands-on-list article:hover::before {
  opacity: 1;
}

.hands-on-list h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.hands-on-list p {
  grid-column: 2;
  max-width: 560px;
  margin: -8px 0 0;
  color: var(--muted);
}

.hands-on-list a {
  grid-column: 2;
}

.small-step {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(460px, 1fr);
  gap: 56px;
  align-items: start;
  margin-top: 54px;
  margin-bottom: 64px;
  padding: 76px 34px 82px;
  background: rgba(255, 255, 255, .38);
  border-radius: 32px;
  box-shadow: 0 22px 66px rgba(64, 34, 111, .06);
}

.small-step::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 13% 12%, rgba(111, 63, 160, .11) 0 18%, transparent 50%),
    radial-gradient(ellipse at 92% 18%, rgba(216, 58, 150, .11) 0 15%, transparent 44%),
    radial-gradient(ellipse at 58% 88%, rgba(255, 200, 77, .13) 0 16%, transparent 48%);
  filter: blur(12px);
  opacity: .7;
}

.small-step-note {
  padding-top: 20px;
}

.small-step-note h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1;
  letter-spacing: -.025em;
}

.small-step-actions {
  display: grid;
  gap: 14px;
}

.small-step-actions article {
  padding: 28px;
  color: #fff;
  background: var(--ink);
  border-radius: 18px;
  transition: transform 2.8s var(--ease), box-shadow 2.8s var(--ease), filter 2.8s var(--ease);
  will-change: transform;
  cursor: pointer;
}

.small-step-actions article:nth-child(2) {
  margin-left: 56px;
  background: var(--red);
}

.small-step-actions article:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 62px rgba(111, 63, 160, .2);
  filter: saturate(1.08);
}

.small-step-actions h3 {
  margin: 22px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.small-step-actions p {
  max-width: 560px;
  color: rgba(255, 255, 255, .76);
}

.small-step-actions a {
  color: #fff;
  border-color: rgba(255, 255, 255, .32);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.heart-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: grid;
  justify-items: center;
  width: 68px;
  gap: 0;
}

.heart-widget-tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 14px;
  width: max-content;
  max-width: 220px;
  padding: 10px 13px;
  color: var(--deep);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(111, 63, 160, .12);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(64, 34, 111, .16);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  animation: heart-tip-intro 5.2s var(--ease) 1.1s both;
}

.heart-widget-tip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  background: inherit;
  border-top: 1px solid rgba(111, 63, 160, .12);
  border-right: 1px solid rgba(111, 63, 160, .12);
  transform: translateY(-50%) rotate(45deg);
}

.heart-widget:hover .heart-widget-tip,
.heart-widget:focus-within .heart-widget-tip {
  animation: none;
  opacity: 1;
  transform: translateX(0);
}

.heart-widget-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, .38), transparent 26%),
    linear-gradient(145deg, var(--red), var(--ink));
  border: 0;
  border-radius: 50% 50% 44% 56%;
  box-shadow: 0 18px 46px rgba(64, 34, 111, .24);
  cursor: pointer;
  animation: heart-pulse 3.4s var(--ease) infinite;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), filter .32s var(--ease);
}

.heart-widget-button::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  background: rgba(216, 58, 150, .14);
  border-radius: inherit;
  animation: heart-halo 3.4s var(--ease) infinite;
}

.heart-widget-button:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.03);
  filter: saturate(1.08);
  box-shadow: 0 22px 56px rgba(64, 34, 111, .28);
}

.heart-widget-button:disabled {
  cursor: default;
  animation-play-state: paused;
}

.heart-widget-button span:not(.sr-only) {
  font-size: 40px;
  line-height: 1;
  transform: translateY(1px);
}

.heart-widget-count {
  justify-self: center;
  width: 68px;
  margin: 0;
  padding: 5px 0;
  color: var(--deep);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(111, 63, 160, .12);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(64, 34, 111, .14);
  font-size: 13px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  text-align: center;
  transform: translateY(10px);
}

.heart-widget-plus {
  position: absolute;
  top: -12px;
  right: -4px;
  color: var(--red-dark);
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.82);
}

.heart-widget-plus.is-visible {
  animation: heart-plus .9s var(--ease) forwards;
}

.heart-float {
  position: fixed;
  z-index: 60;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 8px 18px rgba(216, 58, 150, .24);
  animation: heart-float-wave 1.65s cubic-bezier(.2, .8, .18, 1) forwards;
}

@keyframes heart-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.075);
  }
}

@keyframes heart-halo {
  0%,
  100% {
    opacity: .42;
    transform: scale(.95);
  }

  50% {
    opacity: .16;
    transform: scale(1.22);
  }
}

@keyframes heart-plus {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(.82);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-22px) scale(1.05);
  }
}

@keyframes heart-tip-intro {
  0%,
  100% {
    opacity: 0;
    transform: translateX(8px);
  }

  14%,
  72% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heart-float-wave {
  0% {
    opacity: 0;
    transform: translate(-50%, 0) scale(.72) rotate(-8deg);
  }

  12% {
    opacity: 1;
  }

  32% {
    transform: translate(calc(-50% - 18px), -42px) scale(1) rotate(10deg);
  }

  62% {
    transform: translate(calc(-50% + 16px), -88px) scale(1.14) rotate(-8deg);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% - 10px), -138px) scale(1.28) rotate(8deg);
  }
}

.trust-notes {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(360px, .82fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 78px;
  padding: 76px 34px 82px;
  background: rgba(255, 255, 255, .42);
  border-radius: 32px;
  box-shadow: 0 22px 66px rgba(64, 34, 111, .06);
}

.trust-notes::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 12% 14%, rgba(84, 179, 19, .08) 0 17%, transparent 48%),
    radial-gradient(ellipse at 90% 20%, rgba(255, 200, 77, .18) 0 16%, transparent 46%),
    radial-gradient(ellipse at 66% 82%, rgba(111, 63, 160, .075) 0 18%, transparent 50%);
  filter: blur(12px);
  opacity: .72;
}

.trust-notes ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.trust-notes li {
  padding: 18px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.page-bottom {
  padding: 28px 0 34px;
  background: var(--deep);
  color: rgba(255, 255, 255, .76);
}

.page-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.page-bottom p {
  margin: 0;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

@media (min-width: 1200px) and (min-height: 900px) {
  .main-banner {
    min-height: 700px;
  }
}

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

.page {
  min-height: 72vh;
  padding: 150px 0 90px;
}

.page h1 {
  max-width: 920px;
  margin-bottom: 30px;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 86px);
  line-height: .96;
  letter-spacing: -.025em;
}

.page h2 {
  max-width: 760px;
  margin: 42px 0 12px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.page p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.about-page {
  display: grid;
  gap: 34px;
}

.about-hero,
.about-story,
.about-purpose {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(320px, .65fr);
  gap: 44px;
  align-items: end;
  padding: 42px 0 16px;
}

.about-kicker {
  margin: 0 0 14px;
  color: var(--red-dark) !important;
  font-size: 15px !important;
  font-weight: 900;
}

.about-hero h1 {
  margin: 0;
}

.about-hero h1 span {
  color: var(--red-dark);
}

.about-hero > p {
  margin: 0 0 10px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: stretch;
}

.about-story-card,
.about-links,
.about-purpose {
  background: rgba(255, 255, 255, .58);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(64, 34, 111, .07);
}

.about-story-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.about-story-card::before,
.about-purpose::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 12% 16%, rgba(255, 200, 77, .18) 0 18%, transparent 48%),
    radial-gradient(ellipse at 88% 16%, rgba(216, 58, 150, .12) 0 16%, transparent 46%),
    radial-gradient(ellipse at 62% 92%, rgba(111, 63, 160, .08) 0 18%, transparent 50%);
  filter: blur(12px);
  opacity: .74;
}

.about-story h2,
.about-purpose h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -.025em;
}

.about-story h2 span,
.about-purpose h2 span {
  display: block;
  margin-bottom: .04em;
  color: var(--red-dark);
  font-size: .62em;
  line-height: 1.02;
}

.about-text {
  display: grid;
  gap: 18px;
}

.about-text p {
  margin: 0;
}

.about-links {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  background:
    radial-gradient(ellipse at 20% 8%, rgba(255, 200, 77, .2), transparent 46%),
    rgba(255, 243, 210, .68);
}

.about-links h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.05;
}

.about-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 13px 15px;
  color: var(--deep);
  background: rgba(255, 255, 255, .68);
  border-radius: 16px;
  font-weight: 900;
  text-decoration: none;
}

.about-links a::after {
  content: "↗";
  color: var(--red-dark);
  font-weight: 900;
}

.about-links p {
  margin: 4px 0 0;
  font-size: 14px;
}

.about-purpose {
  margin-bottom: 70px;
  padding: 34px;
}

.about-purpose p {
  margin-bottom: 24px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(980px, calc(100% - 28px));
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(64, 34, 111, .18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner a {
  color: var(--ink);
  font-weight: 700;
}

.cookie-banner button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--deep);
  background: var(--yellow);
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin {
  min-height: 80vh;
  padding: 150px 0 90px;
}

.admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.admin h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.025em;
}

.admin h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 28px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 18px;
  align-items: start;
}

.admin-panel {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(64, 34, 111, .08);
}

.admin-panel code {
  display: block;
  padding: 14px;
  overflow-x: auto;
  color: var(--deep);
  background: var(--bg);
  border-radius: 10px;
}

.admin-alert {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.admin-alert.error {
  color: #fff;
  background: var(--red);
}

.admin-alert.success {
  color: var(--deep);
  background: var(--yellow);
}

.admin-form,
.admin-login {
  display: grid;
  gap: 14px;
}

.admin label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.admin input,
.admin select,
.admin textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--deep);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.admin textarea {
  resize: vertical;
}

.admin-check {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.admin-check input {
  width: auto;
}

.admin button,
.admin-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--deep);
  background: var(--yellow);
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.admin-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.admin-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.admin-list strong,
.admin-list span {
  display: block;
}

.admin-list strong {
  color: var(--deep);
}

.admin-list span {
  color: var(--muted);
  font-size: 13px;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-actions a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.admin-actions button {
  min-height: 36px;
  padding: 8px 12px;
  color: #fff;
  background: var(--red);
}

.finder-form,
.site-search,
.public-form {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 12px;
}

.finder-form {
  grid-template-columns: minmax(180px, 260px) minmax(180px, 240px) auto;
  align-items: end;
  max-width: 820px;
  padding: 16px;
  color: var(--deep);
  background: rgba(255, 255, 255, .94);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(64, 34, 111, .18);
}

.finder-form label,
.public-form label,
.site-search label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.finder-form select,
.site-search input,
.public-form input,
.public-form select,
.public-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--deep);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.finder-form button,
.site-search button,
.public-form button,
.soft-panel button {
  min-height: 48px;
  padding: 12px 18px;
  color: var(--deep);
  background: var(--yellow);
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-search {
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 680px;
  margin-top: 14px;
}

.page-hero {
  padding-top: 10px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 70px;
}

.catalog-card,
.soft-panel,
.place-card {
  background: rgba(255, 255, 255, .72);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(64, 34, 111, .08);
}

.catalog-card {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 20px;
  color: var(--deep);
  text-decoration: none;
  transition: transform .28s var(--ease), background .28s var(--ease);
}

.catalog-card:hover {
  transform: translateY(-4px);
  background: #fffaf0;
}

.catalog-card span {
  font-size: 24px;
}

.catalog-card strong {
  font-size: 21px;
  line-height: 1.1;
}

.catalog-card small,
.link-list span {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 20px;
  align-items: start;
  margin-bottom: 44px;
}

.soft-panel {
  padding: 24px;
}

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

.link-cloud a,
.pagination a {
  display: inline-flex;
  padding: 10px 14px;
  color: var(--deep);
  background: #fff;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.advice-block {
  margin-bottom: 72px;
  padding: 26px 0;
}

.advice-block details {
  max-width: 780px;
  margin: 10px 0;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
}

.place-list {
  display: grid;
  gap: 18px;
  margin-bottom: 44px;
}

.place-card {
  padding: 24px;
}

.place-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.place-card h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.verify-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  color: var(--deep);
  background: var(--cream);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.place-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.place-card-grid ul,
.soft-panel ul {
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
}

.place-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-list a {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  color: var(--deep);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.pagination {
  display: flex;
  gap: 8px;
}

.pagination .is-active {
  background: var(--yellow);
}

.inline-check {
  display: inline-flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

.admin-tabs a {
  padding: 9px 12px;
  color: var(--deep);
  background: #fff;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.admin-stat-grid strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
}

.admin-stat-grid span {
  color: var(--muted);
  font-weight: 800;
}

.category-admin-list {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
}

.category-admin-list fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table-wrap td {
  padding: 8px;
  border-bottom: 1px solid var(--line);
}

.site-header,
.ophelia-hello,
.ophelia-guide-card,
.ophelia-paths a,
.quick-way-item,
.quick-way-item:first-child,
.quick-way-item:last-child,
.cookie-banner,
.heart-widget-tip,
.heart-widget-count,
.admin-panel,
.admin input,
.admin select,
.admin textarea {
  border: 0;
}

@media (max-width: 1040px) {
  .site-header {
    position: absolute;
  }

  .main-banner {
    flex-direction: column;
    justify-content: flex-end;
  }

  .main-banner-inner {
    padding-right: 0;
  }

  .ophelia-hello {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: flex-end;
    width: min(640px, calc(100% - 28px));
    margin: 0 auto 70px;
  }

  .ophelia-paths {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-ways,
  .block-intro,
  .hands-on-grid,
  .small-step,
  .about-hero,
  .about-story,
  .trust-notes {
    grid-template-columns: 1fr;
  }

  .quick-ways {
    gap: 10px;
  }

  .quick-way-item,
  .quick-way-item:first-child,
  .quick-way-item:last-child {
    border-radius: 8px;
  }

  .quick-way-item + .quick-way-item {
    border-left: 0;
  }

  .org-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .org-card,
  .org-card:nth-child(1),
  .org-card:nth-child(2),
  .org-card:nth-child(3),
  .org-card:nth-child(4),
  .org-card:nth-child(5),
  .org-card:nth-child(6) {
    grid-column: auto;
    min-height: 286px;
  }

  .org-card a {
    white-space: normal;
  }

  .hands-on .block-intro {
    position: static;
  }

  .small-step-actions article:nth-child(2) {
    margin-left: 0;
  }
}

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

  .site-header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    align-items: center;
    flex-direction: row;
    width: calc(100% - 20px);
    margin: 0;
    border-radius: 8px;
  }

  .top-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    justify-content: flex-start;
    padding: 10px;
    background: rgba(255, 255, 255, .96);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(64, 34, 111, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .24s var(--ease), transform .24s var(--ease);
  }

  .site-header.is-open .top-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .top-menu a {
    padding: 7px 9px;
    font-size: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-banner {
    min-height: 640px;
    padding: 118px 14px 86px;
    background-position: 62% center;
    flex-direction: column;
    justify-content: flex-end;
  }

  .main-banner-shade {
    background:
      linear-gradient(90deg, rgba(64, 34, 111, .86), rgba(111, 63, 160, .35)),
      linear-gradient(0deg, rgba(64, 34, 111, .72), rgba(64, 34, 111, .14));
  }

  h1 {
    font-size: clamp(38px, 11.5vw, 56px);
    line-height: .98;
  }

  h1 span {
    font-size: .66em;
  }

  .lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .main-banner-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .ophelia-hello {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 70px;
    padding: 16px;
    border-radius: 18px;
  }

  .ophelia-guide {
    margin-top: -42px;
    padding-bottom: 16px;
  }

  .ophelia-guide-card {
    padding: 22px;
    border-radius: 22px;
  }

  .ophelia-guide-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ophelia-guide-card > p {
    margin-left: 0;
    font-size: 16px;
  }

  .ophelia-guide h2 span,
  .block-intro h2 span,
  .small-step-note h2 span,
  .trust-notes h2 span {
    font-size: .66em;
  }

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

  .ophelia-paths a {
    min-height: auto;
  }

  .quick-ways {
    margin-top: 10px;
    padding-bottom: 58px;
  }

  .quick-way-main {
    margin-top: 0;
  }

  .content-block,
  .hands-on,
  .small-step,
  .trust-notes {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .org-cards,
  .small-step,
  .trust-notes,
  .about-story-card,
  .about-links,
  .about-purpose {
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 22px;
  }

  .about-page {
    gap: 18px;
  }

  .about-hero {
    padding-top: 22px;
    gap: 18px;
  }

  .block-intro {
    gap: 18px;
  }

  .hands-on-list article {
    grid-template-columns: 1fr;
  }

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

  .org-card,
  .org-card:nth-child(1),
  .org-card:nth-child(2) {
    min-height: auto;
  }

  .hands-on-list p,
  .hands-on-list a {
    grid-column: auto;
  }

  .small-step-actions article {
    padding: 22px;
  }

  .page-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .heart-widget {
    right: 14px;
    bottom: 14px;
    width: 58px;
  }

  .heart-widget-tip {
    display: none;
  }

  .heart-widget-button {
    width: 58px;
    height: 58px;
  }

  .heart-widget-button span:not(.sr-only) {
    font-size: 34px;
  }

  .heart-widget-count {
    width: 58px;
    font-size: 12px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-grid,
  .admin-list article,
  .finder-form,
  .site-search,
  .split-section,
  .place-card-head,
  .place-card-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-appear] {
    opacity: 1 !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
