:root {
  --color-black: 0 0 0;
  --color-white: 255 255 255;
  --color-off-white: 249 248 248;
  --color-black-dark: 30 30 36;
  --color-black-light: 71 68 72;
  --color-brand-gold: 251 189 49;
  --color-blue-light: 37 187 219;
  --color-blue-dark: 4 75 127;
  --color-green-light: 1 121 94;
  --color-green-dark: 0 89 64;
  --color-red: 230 41 40;
  --color-blue: 34 101 153;
  --color-orange: 231 111 81;
  --color-yellow: 255 203 105;

  --ground: 252 251 248;
  --ink: 24 36 32;
  --ink-soft: 88 100 95;
  --line: 223 230 226;

  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-family-h: 'Fraunces', Georgia, 'Times New Roman', serif;

  --focus-ring: 2px solid rgb(var(--color-green-light));
  --focus-shadow: 0 0 0 3px rgb(var(--color-white));

  --radius-card: 22px;
  --radius-soft: 16px;
  --radius-pill: 999px;
  --radius-brand: 12px 6px 12px 6px;

  --shell: 780px;
  --header-h: 70px;

  --shadow-sm: 0 1px 2px rgb(20 40 32 / 0.04), 0 6px 16px -8px rgb(20 40 32 / 0.14);
  --shadow-md: 0 2px 6px rgb(20 40 32 / 0.05), 0 18px 40px -18px rgb(20 40 32 / 0.24);
  --shadow-lg: 0 4px 12px rgb(20 40 32 / 0.06), 0 34px 70px -30px rgb(20 40 32 / 0.34);
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: rgb(var(--ground));
  color: rgb(var(--ink));
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

button, input, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

:where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-family-h);
  font-optical-sizing: auto;
  font-variation-settings: 'SOFT' 40, 'WONK' 0;
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
}

:focus-visible {
  box-shadow: var(--focus-shadow);
  outline: var(--focus-ring);
  outline-offset: 2px;
}

.u-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.Backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.Backdrop__sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(255 253 249) 0%, rgb(var(--ground)) 40%, rgb(246 248 245) 100%);
}

.Backdrop__aurora { position: absolute; inset: -25%; }

.Backdrop__aurora span {
  position: absolute;
  display: block;
  border-radius: 50%;
  will-change: transform;
}

.Backdrop__aurora span:nth-child(1) {
  inline-size: 62vmax; block-size: 62vmax;
  inset-block-start: -18%; inset-inline-start: -14%;
  background: radial-gradient(circle at 46% 46%,
    rgb(var(--color-green-light) / 0.17) 0%,
    rgb(var(--color-green-light) / 0.06) 42%,
    rgb(var(--color-green-light) / 0) 70%);
  animation: float-a 54s ease-in-out infinite;
}

.Backdrop__aurora span:nth-child(2) {
  inline-size: 54vmax; block-size: 54vmax;
  inset-block-start: -12%; inset-inline-end: -12%;
  background: radial-gradient(circle at 52% 48%,
    rgb(var(--color-brand-gold) / 0.28) 0%,
    rgb(var(--color-brand-gold) / 0.1) 40%,
    rgb(var(--color-brand-gold) / 0) 70%);
  animation: float-b 66s ease-in-out infinite;
}

.Backdrop__aurora span:nth-child(3) {
  inline-size: 58vmax; block-size: 58vmax;
  inset-block-end: -22%; inset-inline-start: 12%;
  background: radial-gradient(circle at 50% 50%,
    rgb(var(--color-blue-light) / 0.17) 0%,
    rgb(var(--color-blue-light) / 0.06) 44%,
    rgb(var(--color-blue-light) / 0) 72%);
  animation: float-c 78s ease-in-out infinite;
}

.Backdrop__aurora span:nth-child(4) {
  inline-size: 40vmax; block-size: 40vmax;
  inset-block-end: -8%; inset-inline-end: -6%;
  background: radial-gradient(circle at 50% 50%,
    rgb(var(--color-orange) / 0.14) 0%,
    rgb(var(--color-orange) / 0.05) 44%,
    rgb(var(--color-orange) / 0) 72%);
  animation: float-a 60s ease-in-out infinite reverse;
}

@keyframes float-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33%      { transform: translate3d(6%, 4%, 0) scale(1.12); }
  66%      { transform: translate3d(-3%, 7%, 0) scale(0.96); }
}
@keyframes float-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.06); }
  40%      { transform: translate3d(-8%, 6%, 0) scale(0.94); }
  70%      { transform: translate3d(4%, -3%, 0) scale(1.1); }
}
@keyframes float-c {
  0%, 100% { transform: translate3d(0, 0, 0) scale(0.98); }
  50%      { transform: translate3d(7%, -6%, 0) scale(1.14); }
}

.Backdrop__beams {
  position: absolute;
  inset: -30% -50%;
  background: repeating-linear-gradient(
    102deg,
    rgb(255 255 255 / 0) 0 78px,
    rgb(255 255 255 / 0.55) 78px 132px,
    rgb(255 255 255 / 0) 132px 210px
  );
  mask-image: radial-gradient(72% 58% at 50% 0%, black 0%, transparent 74%);
  opacity: 0.55;
  animation: beams 34s ease-in-out infinite;
  will-change: transform;
}

@keyframes beams {
  0%, 100% { transform: translate3d(-4%, 0, 0); opacity: 0.35; }
  50%      { transform: translate3d(4%, 0, 0); opacity: 0.65; }
}

.Backdrop__arches {
  position: absolute;
  inset-inline: -20%;
  inset-block-end: 0;
  block-size: 62%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='168' height='210' viewBox='0 0 168 210'><g fill='none' stroke='%23017964' stroke-width='1.4'><path d='M18 210V78C18 40 46 14 84 14s66 26 66 64v132'/><path d='M46 210V88c0-24 17-42 38-42s38 18 38 42v122'/></g></svg>");
  background-size: 168px 210px;
  background-repeat: repeat-x;
  background-position: bottom;
  opacity: 0.05;
  mask-image: linear-gradient(to top, black 0%, transparent 88%);
  animation: colonnade 190s linear infinite;
  will-change: transform;
}

@keyframes colonnade {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-168px, 0, 0); }
}

.Backdrop__bloom {
  position: absolute;
  inset-inline: -10%;
  inset-block-start: -18%;
  block-size: 70%;
  background: radial-gradient(50% 60% at 50% 40%,
    rgb(var(--color-brand-gold) / 0.16) 0%,
    rgb(var(--color-brand-gold) / 0) 72%);
  animation: bloom 22s ease-in-out infinite;
}

@keyframes bloom {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); }
}

.Shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  grid-template-columns: minmax(0, 1fr);
  block-size: 100dvh;
}

.Header {
  display: flex;
  min-inline-size: 0;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(16px, 4vw, 34px);
  block-size: var(--header-h);
  background: rgb(255 255 255 / 0.58);
  box-shadow: 0 1px 0 rgb(var(--line) / 0.9), 0 8px 24px -20px rgb(20 40 32 / 0.5);
  backdrop-filter: blur(14px);
}

.Logo {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-inline-size: 0;
  gap: 13px;
  color: rgb(var(--color-green-light));
  text-decoration: none;
}

.Logo__mark {
  inline-size: 40px;
  block-size: 40px;
  flex: 0 0 auto;
}

.Logo__mark svg { inline-size: 100%; block-size: 100%; display: block; }

.Logo__text { display: grid; min-inline-size: 0; }

.Logo__name {
  font-family: var(--font-family-h);
  font-size: calc((16.5 / 16) * 1rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: rgb(var(--ink));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.Header__spacer { flex: 1 1 auto; }

.Account {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  padding: 3px 7px 3px 3px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: none;
  transition: background 240ms, border-color 240ms;
}

.Account:hover {
  background: rgb(var(--color-white) / 0.8);
  border-color: rgb(var(--line));
}

.Account__avatar {
  inline-size: 34px;
  block-size: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, rgb(var(--color-green-light) / 0.16), rgb(var(--color-brand-gold) / 0.2));
  color: rgb(var(--color-green-dark));
}

.Account__avatar svg { inline-size: 19px; block-size: 19px; }

.Account__caret {
  inline-size: 14px; block-size: 14px;
  fill: rgb(var(--ink-soft) / 0.5);
}

.Subbar { padding-block-start: 16px; }

.Subbar[hidden] { display: none; }

.Subbar__inner {
  inline-size: min(100% - clamp(24px, 6vw, 48px), var(--shell));
  margin-inline: auto;
}

.Back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 2px;
  border: 0;
  background: none;
  color: rgb(var(--ink-soft) / 0.82);
  font-size: calc((14 / 16) * 1rem);
  font-weight: 500;
  text-decoration-color: transparent;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 220ms, text-decoration 220ms;
  animation: back-in 420ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.Back[hidden] { display: none; }

.Back:hover {
  color: rgb(var(--color-green-dark));
  text-decoration-color: currentColor;
}

.Back:hover svg { transform: translateX(-3px); }

.Back svg {
  inline-size: 14px; block-size: 14px;
  fill: currentColor;
  transition: transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes back-in {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.Main {
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgb(var(--line)) transparent;
  mask-image: linear-gradient(to bottom, black calc(100% - 34px), transparent 100%);
}

.Main::-webkit-scrollbar { inline-size: 10px; }
.Main::-webkit-scrollbar-thumb {
  background: rgb(var(--line));
  border-radius: var(--radius-pill);
  border: 3px solid transparent;
  background-clip: content-box;
}

.Main__inner {
  display: flex;
  flex-direction: column;
  inline-size: min(100% - clamp(24px, 6vw, 48px), var(--shell));
  margin-inline: auto;
  min-block-size: 100%;
  padding-block: clamp(24px, 4vh, 44px) 34px;
  overflow-anchor: none;
}

.Intro {
  display: flex;
  flex-direction: column;
  transition: block-size 540ms cubic-bezier(0.4, 0, 0.2, 1);
}

.Intro[hidden] { display: none; }

.Intro.is-leaving {
  animation: hero-out 380ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes hero-out {
  to { opacity: 0; transform: scale(0.99); }
}

.Hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-block-size: calc(100dvh - var(--header-h) - 172px);
  text-align: center;
}

.Hero__eyebrow {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgb(var(--color-white) / 0.75);
  box-shadow: var(--shadow-sm);
  color: rgb(var(--color-green-dark));
  font-size: calc((12 / 16) * 1rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.Hero__eyebrow::before {
  content: '';
  inline-size: 7px; block-size: 7px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgb(var(--color-brand-gold)), rgb(var(--color-orange)));
}

.Hero__title {
  font-size: clamp(2.25rem, 1.6rem + 3vw, 3.5rem);
  font-weight: 600;
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
  letter-spacing: -0.022em;
  line-height: 1.06;
  margin-block: 24px 0;
  text-wrap: balance;
}

.Hero__title em {
  font-style: normal;
  background: linear-gradient(96deg,
    rgb(var(--color-green-dark)) 0%,
    rgb(var(--color-green-light)) 34%,
    rgb(var(--color-brand-gold)) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.Hero__lede {
  max-inline-size: 44ch;
  margin: 18px auto 0;
  color: rgb(var(--ink-soft));
  font-size: calc((17 / 16) * 1rem);
  text-wrap: pretty;
}

.Hero__composer { margin-block: clamp(26px, 3.8vh, 36px) 0; }

.Hero__composer:empty { display: none; }

.Hints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-block-start: clamp(20px, 3vh, 30px);
  text-align: start;
}

.Hint {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  row-gap: 2px;
  padding: 15px 18px;
  border: 1px solid rgb(var(--color-white) / 0.9);
  border-radius: var(--radius-soft);
  background: rgb(var(--color-white) / 0.78);
  box-shadow: var(--shadow-sm);
  text-align: start;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms,
    background 320ms;
  opacity: 0;
  animation: rise-in 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.Hint:nth-child(1) { animation-delay: 110ms; }
.Hint:nth-child(2) { animation-delay: 190ms; }
.Hint:nth-child(3) { animation-delay: 270ms; }
.Hint:nth-child(4) { animation-delay: 350ms; }

.Hint:hover,
.Hint:focus-visible {
  transform: translateY(-3px);
  background: rgb(var(--color-white) / 0.98);
  box-shadow: var(--shadow-md);
}

.Hint__icon {
  grid-row: 1 / 3;
  inline-size: 42px;
  block-size: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    rgb(var(--tone) / 0.2) 0%,
    rgb(var(--tone) / 0.09) 100%);
  color: rgb(var(--tone));
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), background 320ms;
}

.Hint:hover .Hint__icon {
  transform: scale(1.08);
  background: radial-gradient(closest-side,
    rgb(var(--tone) / 0.3) 0%,
    rgb(var(--tone) / 0.14) 100%);
}

.Hint__icon svg { inline-size: 21px; block-size: 21px; }

.Hint__title {
  grid-column: 2;
  font-family: var(--font-family-h);
  font-size: calc((16 / 16) * 1rem);
  font-weight: 600;
  letter-spacing: -0.008em;
}

.Hint__sub {
  grid-column: 2;
  font-size: calc((13 / 16) * 1rem);
  line-height: 1.4;
  color: rgb(var(--ink-soft) / 0.9);
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.Hero__cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  align-self: center;
  margin-block-start: clamp(18px, 3vh, 28px);
  padding: 6px 4px;
  border: 0;
  background: none;
  line-height: 1;
  color: rgb(var(--ink-soft) / 0.66);
  font-size: calc((12 / 16) * 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 400ms, color 240ms;
}

.Hero__cue:hover { color: rgb(var(--color-green-light)); }

.Hero__cue svg {
  inline-size: 16px; block-size: 16px;
  display: block;
  fill: currentColor;
  animation: nudge 2.4s ease-in-out infinite;
}

.Hero__cue.is-gone { opacity: 0; pointer-events: none; }

@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

.Curated { padding-block: clamp(26px, 5vh, 52px) 6px; }

.Curated__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 14px;
  padding-block-end: 16px;
}

.Curated__title {
  font-size: calc((22 / 16) * 1rem);
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
  letter-spacing: -0.015em;
}

.Curated__sub {
  margin: 0;
  color: rgb(var(--ink-soft) / 0.85);
  font-size: calc((14 / 16) * 1rem);
}

.Curated__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.Appeal {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  border: 0;
  border-radius: var(--radius-card);
  background: rgb(var(--color-white) / 0.92);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: start;
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 380ms;
}

.Appeal:hover,
.Appeal:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.Appeal__media {
  position: relative;
  aspect-ratio: 48 / 25;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
}

.Appeal__photo {
  position: absolute;
  inset: 0;
  background-image: url('appeals.jpg');
  background-repeat: no-repeat;
  background-size: 300% 300%;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.Appeal:hover .Appeal__photo { transform: scale(1.06); }

.Appeal__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(12 26 22 / 0.82) 0%,
    rgb(12 26 22 / 0.44) 34%,
    rgb(12 26 22 / 0.06) 66%,
    rgb(12 26 22 / 0) 100%
  );
  transition: opacity 380ms;
}

.Appeal:hover .Appeal__scrim { opacity: 0.88; }

.Appeal__tag {
  position: relative;
  align-self: flex-start;
  margin-block-end: 8px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 0.18);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.32);
  color: rgb(var(--color-white));
  font-size: calc((10.5 / 16) * 1rem);
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.Appeal__title {
  position: relative;
  font-family: var(--font-family-h);
  font-size: calc((20 / 16) * 1rem);
  font-weight: 600;
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: rgb(var(--color-white));
  text-shadow: 0 1px 12px rgb(12 26 22 / 0.4);
}

.Appeal__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px 17px;
  block-size: 100%;
}

.Appeal__desc {
  font-size: calc((13.5 / 16) * 1rem);
  line-height: 1.5;
  color: rgb(var(--ink-soft));
}

.Appeal__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-block-start: auto;
  font-size: calc((13 / 16) * 1rem);
}

.Appeal__from { color: rgb(var(--ink-soft) / 0.9); }
.Appeal__from strong { color: rgb(var(--ink)); font-weight: 600; }

.Appeal__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px 7px 15px;
  border-radius: var(--radius-pill);
  background: rgb(var(--tone) / 0.1);
  color: rgb(var(--tone));
  font-weight: 600;
  transition: background 300ms, gap 300ms;
}

.Appeal:hover .Appeal__go { background: rgb(var(--tone) / 0.18); gap: 10px; }

.Appeal__go svg {
  inline-size: 22px; block-size: 22px;
  padding: 5px;
  border-radius: 50%;
  background: rgb(var(--color-white) / 0.85);
  fill: currentColor;
}

.Thread {
  display: grid;
  gap: 28px;
  padding-block-start: 4px;
}

.Msg {
  display: flex;
  gap: 14px;
  animation: msg-in 760ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes msg-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.Msg--user { justify-content: flex-end; }

.Msg--user .Msg__body {
  max-inline-size: 34rem;
  padding: 13px 20px;
  border-radius: 22px 22px 6px 22px;
  background: linear-gradient(150deg,
    rgb(var(--color-green-light) / 0.14),
    rgb(var(--color-brand-gold) / 0.14));
  color: rgb(var(--ink));
  box-shadow: var(--shadow-sm);
}

.Msg__avatar {
  flex: 0 0 auto;
  inline-size: 36px;
  block-size: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    rgb(var(--color-white)) 0%,
    rgb(var(--color-brand-gold) / 0.16) 100%);
  box-shadow: var(--shadow-sm);
  margin-block-start: 1px;
}

.Msg__avatar svg { inline-size: 27px; block-size: 27px; overflow: visible; }

.Msg__body { min-inline-size: 0; flex: 1 1 auto; }

.Msg--bot .Msg__body { max-inline-size: 36rem; }

.Msg__name {
  font-size: calc((11.5 / 16) * 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--ink-soft) / 0.6);
  margin-block-end: 7px;
}

.Msg__text p { margin: 0 0 0.85em; text-wrap: pretty; }
.Msg__text p:last-child { margin-block-end: 0; }
.Msg__text strong { font-weight: 600; color: rgb(var(--color-green-dark)); }

.Msg__text ul {
  margin: 0 0 0.85em;
  padding-inline-start: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.Msg__text li {
  position: relative;
  padding-inline-start: 22px;
}

.Msg__text li::before {
  content: '';
  position: absolute;
  inset-inline-start: 3px;
  inset-block-start: 0.6em;
  inline-size: 7px; block-size: 7px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgb(var(--color-brand-gold)), rgb(var(--color-orange)));
}

.Word {
  display: inline-block;
  opacity: 0;
  animation: word-in 320ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes word-in {
  from { opacity: 0; transform: translateY(0.2em); }
  to   { opacity: 1; transform: translateY(0); }
}

.Typing {
  display: inline-flex;
  gap: 5px;
  padding-block: 8px;
}

.Typing span {
  inline-size: 7px; block-size: 7px;
  border-radius: 50%;
  background: rgb(var(--color-green-light) / 0.5);
  animation: typing 1.15s ease-in-out infinite;
}

.Typing span:nth-child(2) { animation-delay: 0.16s; }
.Typing span:nth-child(3) { animation-delay: 0.32s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30%           { transform: translateY(-5px); opacity: 1; }
}

.Blocks {
  display: grid;
  gap: 0;
  margin-block-start: 8px;
}

.Block {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 760ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.Block.is-in { grid-template-rows: 1fr; }
.Block.is-done { display: block; }

.Block__inner {
  overflow: hidden;
  padding-block-start: 13px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 620ms 160ms ease-out,
    transform 680ms 160ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.Block.is-in .Block__inner { opacity: 1; transform: translateY(0); }
.Block.is-done .Block__inner { overflow: visible; }

@keyframes block-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.Cause {
  display: grid;
  gap: 15px;
  padding: 22px 24px 24px;
  border-radius: var(--radius-card);
  background: rgb(var(--color-white) / 0.9);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 300ms;
}

.Cause:hover { box-shadow: var(--shadow-md); }

.Cause__top {
  display: flex;
  align-items: center;
  gap: 11px;
}

.Cause__icon {
  inline-size: 32px;
  block-size: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    rgb(var(--tone) / 0.2), rgb(var(--tone) / 0.08));
  color: rgb(var(--tone));
}

.Cause__icon svg { inline-size: 17px; block-size: 17px; }

.Cause__tag {
  font-size: calc((11 / 16) * 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--tone));
}

.Cause__title {
  font-family: var(--font-family-h);
  font-size: calc((22 / 16) * 1rem);
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
  line-height: 1.14;
  letter-spacing: -0.018em;
  margin-block-start: -5px;
}

.Cause__desc {
  margin: 0;
  color: rgb(var(--ink-soft));
  font-size: calc((15 / 16) * 1rem);
  max-inline-size: 62ch;
}

.Progress { display: grid; gap: 8px; }

.Progress__track {
  block-size: 8px;
  border-radius: var(--radius-pill);
  background: rgb(var(--ink) / 0.06);
  overflow: hidden;
}

.Progress__fill {
  block-size: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(to right, rgb(var(--tone)), rgb(var(--color-brand-gold)));
  inline-size: 0;
  transition: inline-size 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.Progress__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: calc((12.5 / 16) * 1rem);
  color: rgb(var(--ink-soft) / 0.9);
}

.Progress__meta strong { color: rgb(var(--ink)); font-weight: 600; }

.Amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.Amount {
  display: grid;
  gap: 1px;
  padding: 10px 16px;
  border: 1px solid rgb(var(--line));
  border-radius: var(--radius-brand);
  background: rgb(var(--color-white) / 0.9);
  text-align: start;
  transition: border-color 220ms, background 220ms, transform 220ms, box-shadow 220ms;
}

.Amount:hover {
  border-color: rgb(var(--tone) / 0.5);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.Amount[aria-pressed='true'] {
  border-color: rgb(var(--tone) / 0.55);
  background: rgb(var(--tone) / 0.08);
}

.Amount__value {
  font-family: var(--font-family-h);
  font-size: calc((16 / 16) * 1rem);
  font-weight: 600;
}

.Amount__note {
  font-size: calc((12 / 16) * 1rem);
  color: rgb(var(--ink-soft) / 0.85);
}

.Button {
  --button-background-1: rgb(var(--color-brand-gold));
  --button-background-2: color-mix(in srgb, rgb(var(--color-white)) 20%, rgb(var(--color-brand-gold)));
  --button-border: transparent;
  --button-color: rgb(var(--ink));
  align-items: center;
  background: linear-gradient(
    to right,
    var(--button-background-2) 0%,
    var(--button-background-2) 50%,
    var(--button-background-1) 50%,
    var(--button-background-1) 100%
  );
  background-position: calc(100% + 5px) 50%;
  background-size: calc(200% + 20px) 100%;
  border: 2px solid var(--button-border);
  border-radius: var(--radius-brand);
  color: var(--button-color);
  display: inline-flex;
  font-size: calc((16 / 16) * 1rem);
  font-weight: 500;
  gap: 10px;
  justify-content: center;
  min-block-size: 48px;
  max-inline-size: fit-content;
  padding: 0 22px;
  text-decoration: none;
  transition: background 300ms ease-in-out, border 300ms, color 300ms;
}

.Button:hover { background-position: -5px 50%; }

.Button svg { inline-size: 16px; block-size: 16px; fill: currentColor; flex: 0 0 auto; }

.Button--secondary {
  --button-background-1: rgb(var(--color-green-light));
  --button-background-2: color-mix(in srgb, rgb(var(--color-black)) 20%, rgb(var(--color-green-light)));
  --button-color: rgb(var(--color-white));
}

.Button--ghost {
  --button-background-1: rgb(var(--color-white));
  --button-background-2: rgb(var(--color-off-white));
  --button-border: rgb(var(--color-black) / 0.12);
}

.Cause__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-block-start: 2px;
}

.Private {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-card);
  background:
    radial-gradient(130% 120% at 8% 0%, rgb(6 96 76) 0%, rgb(var(--color-green-dark)) 44%, rgb(3 52 60) 100%);
  color: rgb(var(--color-white));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.Private::after {
  content: '';
  position: absolute;
  inset-block-start: -40%;
  inset-inline-end: -22%;
  inline-size: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgb(var(--color-brand-gold) / 0.24), transparent 72%);
  pointer-events: none;
}

.Private__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: calc((11 / 16) * 1rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgb(var(--color-brand-gold));
}

.Private__tag::before {
  content: '';
  inline-size: 20px;
  block-size: 2px;
  border-radius: 2px;
  background: rgb(var(--color-brand-gold));
}

.Private__title {
  position: relative;
  font-family: var(--font-family-h);
  font-size: calc((26 / 16) * 1rem);
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
  letter-spacing: -0.02em;
  margin-block: 12px 9px;
  text-wrap: balance;
}

.Private__desc {
  position: relative;
  margin: 0;
  color: rgb(255 255 255 / 0.84);
  font-size: calc((15 / 16) * 1rem);
  max-inline-size: 52ch;
}

.Private__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-block: 20px;
}

.Private__item {
  padding: 15px;
  border-radius: var(--radius-soft);
  background: rgb(255 255 255 / 0.09);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.14);
}

.Private__figure {
  font-family: var(--font-family-h);
  font-size: calc((23 / 16) * 1rem);
  font-weight: 600;
  color: rgb(var(--color-brand-gold));
  line-height: 1.1;
}

.Private__label {
  margin-block-start: 6px;
  font-size: calc((13 / 16) * 1rem);
  color: rgb(255 255 255 / 0.78);
}

.Private__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.Private .Button--ghost {
  --button-background-1: transparent;
  --button-background-2: rgb(255 255 255 / 0.14);
  --button-border: rgb(255 255 255 / 0.4);
  --button-color: rgb(var(--color-white));
}

.Calc {
  display: grid;
  gap: 15px;
  padding: 22px 24px;
  border-radius: var(--radius-card);
  background: rgb(var(--color-white) / 0.9);
  box-shadow: var(--shadow-sm);
}

.Calc__head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.Calc__head h3 {
  font-family: var(--font-family-h);
  font-size: calc((19 / 16) * 1rem);
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
  letter-spacing: -0.012em;
}

.Calc__head svg {
  inline-size: 20px; block-size: 20px;
  color: rgb(var(--color-green-light));
  flex: 0 0 auto;
}

.Calc__rows { display: grid; gap: 11px; }

.Calc__row {
  display: grid;
  grid-template-columns: 1fr 136px;
  align-items: center;
  gap: 12px;
}

.Calc__row label {
  font-size: calc((14 / 16) * 1rem);
  color: rgb(var(--ink-soft));
}

.Calc__field {
  position: relative;
  display: flex;
  align-items: center;
}

.Calc__field::before {
  content: '£';
  position: absolute;
  inset-inline-start: 14px;
  color: rgb(var(--ink-soft) / 0.7);
  font-size: calc((14 / 16) * 1rem);
  pointer-events: none;
}

.Calc__field input {
  inline-size: 100%;
  padding: 10px 14px 10px 28px;
  border: 1px solid rgb(var(--line));
  border-radius: var(--radius-pill);
  background: rgb(var(--color-white));
  font-variant-numeric: tabular-nums;
  transition: border-color 200ms, box-shadow 200ms;
}

.Calc__field input:focus {
  border-color: rgb(var(--color-green-light) / 0.6);
  outline: none;
  box-shadow: 0 0 0 4px rgb(var(--color-green-light) / 0.12);
}

.Calc__out {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-soft);
  background: linear-gradient(140deg,
    rgb(var(--color-green-light) / 0.1),
    rgb(var(--color-brand-gold) / 0.12));
}

.Calc__outLabel {
  font-size: calc((13 / 16) * 1rem);
  color: rgb(var(--color-green-dark));
  font-weight: 600;
}

.Calc__outValue {
  font-family: var(--font-family-h);
  font-size: calc((32 / 16) * 1rem);
  font-weight: 600;
  color: rgb(var(--color-green-dark));
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}

.Calc__nisab {
  font-size: calc((13 / 16) * 1rem);
  color: rgb(var(--ink-soft) / 0.9);
  margin: 0;
}

.Calc__nisab strong { color: rgb(var(--ink)); font-weight: 600; }

.Impact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 11px;
}

.Impact__item {
  padding: 16px;
  border-radius: var(--radius-soft);
  background: rgb(var(--color-white) / 0.82);
  box-shadow: var(--shadow-sm);
}

.Impact__value {
  font-family: var(--font-family-h);
  font-size: calc((21 / 16) * 1rem);
  font-weight: 600;
  color: rgb(var(--color-green-dark));
}

.Impact__label {
  margin-block-start: 5px;
  font-size: calc((13 / 16) * 1rem);
  color: rgb(var(--ink-soft));
}

.Note {
  display: flex;
  gap: 11px;
  padding: 15px 17px;
  border-radius: var(--radius-soft);
  background: linear-gradient(140deg,
    rgb(var(--color-brand-gold) / 0.14),
    rgb(var(--color-orange) / 0.09));
  font-size: calc((14 / 16) * 1rem);
  color: rgb(var(--ink) / 0.92);
}

.Note svg {
  inline-size: 17px; block-size: 17px;
  flex: 0 0 auto;
  margin-block-start: 3px;
  color: rgb(var(--color-orange));
}

.Follows {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-block-start: 18px;
  animation: block-in 820ms 100ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.Follow {
  padding: 9px 16px;
  border: 1px solid rgb(var(--line));
  border-radius: var(--radius-pill);
  background: rgb(var(--color-white) / 0.8);
  color: rgb(var(--color-green-dark));
  font-size: calc((14 / 16) * 1rem);
  font-weight: 500;
  transition: background 220ms, border-color 220ms, transform 220ms, box-shadow 220ms;
}

.Follow:hover {
  background: rgb(var(--color-white));
  border-color: rgb(var(--color-green-light) / 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.Composer {
  position: relative;
  padding: 0 clamp(16px, 4vw, 32px) clamp(14px, 2.4vh, 22px);
}

.Composer[hidden] { display: none; }

.Composer__inner {
  inline-size: min(100%, var(--shell));
  margin-inline: auto;
}

.Composer__box {
  display: flex;
  align-items: flex-end;
  gap: 11px;
  padding: 10px 11px 10px 12px;
  border: 1px solid rgb(var(--color-white) / 0.9);
  border-radius: 26px;
  background: rgb(var(--color-white) / 0.94);
  box-shadow: var(--shadow-md);
  transition: box-shadow 260ms, border-color 260ms;
}

.Composer__box:focus-within {
  border-color: rgb(var(--color-green-light) / 0.35);
  box-shadow: var(--shadow-lg), 0 0 0 5px rgb(var(--color-green-light) / 0.08);
}

.Composer__orb {
  position: relative;
  flex: 0 0 auto;
  inline-size: 42px;
  block-size: 42px;
  margin-block-end: 2px;
  display: grid;
  place-items: center;
}

.Composer__orb-halo {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    rgb(var(--color-brand-gold) / var(--halo-a, 0.22)) 0%,
    rgb(var(--color-green-light) / 0.06) 55%,
    rgb(var(--color-green-light) / 0) 78%);
  animation: halo 6.4s ease-in-out infinite;
  animation-delay: var(--halo-phase, 0ms);
  pointer-events: none;
}

@keyframes halo {
  0%, 100% { opacity: 0.6; scale: 0.9; }
  50%      { opacity: 1;   scale: 1.1; }
}

.Composer__orb-mark {
  position: relative;
  z-index: 1;
  inline-size: 36px;
  block-size: 36px;
  overflow: visible;
}

.shamsa-outer,
.shamsa-inner,
.shamsa-core {
  transform-box: view-box;
  transform-origin: 20px 20px;
}

.shamsa-outer {
  animation: turn 64s linear infinite, petal 7.2s ease-in-out infinite;
  animation-delay: var(--outer-phase, 0ms), var(--petal-phase, 0ms);
}

.shamsa-inner {
  animation: turn 46s linear infinite reverse, petal-in 7.2s ease-in-out infinite;
  animation-delay: var(--inner-phase, 0ms), var(--petal-phase, 0ms);
}

.shamsa-core {
  animation: core 7.2s ease-in-out infinite;
  animation-delay: var(--petal-phase, 0ms);
}

@keyframes turn {
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}

@keyframes petal {
  0%, 100% { scale: 0.94; opacity: 0.62; }
  50%      { scale: 1.06; opacity: 0.9; }
}

@keyframes petal-in {
  0%, 100% { scale: 1.05; opacity: 0.95; }
  50%      { scale: 0.9;  opacity: 0.7; }
}

@keyframes core {
  0%, 100% { scale: 0.82; opacity: 0.85; }
  50%      { scale: 1.16; opacity: 1; }
}

.Composer__box:focus-within .Composer__orb { --halo-a: 0.42; }

.Composer__input {
  flex: 1 1 auto;
  border: 0;
  background: none;
  resize: none;
  max-block-size: 168px;
  min-block-size: 26px;
  padding-block: 12px;
  line-height: 1.45;
  outline: none;
  font-size: calc((16 / 16) * 1rem);
}

.Composer__input::placeholder { color: rgb(var(--ink-soft) / 0.5); }

.Composer__send {
  flex: 0 0 auto;
  inline-size: 46px;
  block-size: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg,
    rgb(var(--color-green-light)),
    rgb(var(--color-green-dark)));
  color: rgb(var(--color-white));
  box-shadow: 0 6px 16px -8px rgb(1 121 94 / 0.9);
  transition: filter 240ms, transform 240ms, opacity 240ms;
}

.Composer__send:hover:not(:disabled) { filter: brightness(1.14); transform: translateY(-1px); }

.Composer__send:disabled { opacity: 0.3; cursor: not-allowed; box-shadow: none; }

.Composer__send svg { inline-size: 19px; block-size: 19px; fill: currentColor; }

.Composer__foot {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-block-start: 11px;
  font-size: calc((12 / 16) * 1rem);
  color: rgb(var(--ink-soft) / 0.7);
  text-align: center;
}

.Composer__foot svg {
  inline-size: 13px; block-size: 13px;
  fill: currentColor;
  flex: 0 0 auto;
  margin-block-start: 3px;
}

.Composer__foot span { text-wrap: balance; }

@media (max-width: 720px) {
  :root { --header-h: 62px; }
  .Header { gap: 10px; padding-inline: 14px; }
  .Calc__row { grid-template-columns: 1fr 112px; }
  .Cause { padding: 19px 20px 21px; }
}

@media (max-width: 560px) {
  .Logo__text { display: none; }
  .Back span { display: none; }
  .Hints { grid-template-columns: 1fr; }
  .Hero__lede { font-size: 1rem; }
  .Curated__grid { grid-template-columns: 1fr; }
}

@media (max-height: 820px) {
  .Hero__title {
    font-size: clamp(1.85rem, 1.35rem + 2.2vw, 2.65rem);
    margin-block-start: 13px;
  }

  .Hero__lede {
    margin-block-start: 12px;
    font-size: 1rem;
  }

  .Hero__composer { margin-block-start: 16px; }

  .Hints { margin-block-start: 12px; }

  .Hint { padding: 11px 15px; }

  .Hero__cue { margin-block-start: 10px; }

  .Curated { padding-block-start: 28px; }

  .Main__inner { padding-block-start: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
