:root {
  --paper: #f3f3f3;
  --ink: #1f1f1f;
  --plum: #574b55;
  --plum-text: #b9adb8;
  --olive: #514f44;
  --sage: #b3b48d;
  --sage-deep: #9fa07a;
  --cream: #efe7d8;
  --muted: #6b6b6b;
  --error: #b3261e;
  --radius-card: 28px;
  --gutter: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Inter Tight", "Inter", -apple-system, "Segoe UI", sans-serif;
  --body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure { margin: 0; }

.mono {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 400;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 10px;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 50;
  height: 44px;
  padding: 0 8px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  animation: navIn 0.9s var(--ease) 0.2s both;
}

@keyframes navIn {
  from { transform: translateY(-70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.nav-logo {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 26px;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav-links a:hover::after { transform: scaleX(1); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: transform 0.35s var(--ease), background 0.25s ease;
}

.pill-light { background: var(--paper); color: var(--ink); }

.pill-cta {
  height: 32px;
  padding: 0 18px 0 14px;
  background: var(--sage);
  color: var(--ink);
  font-weight: 500;
  animation: ctaPulse 2.6s ease-in-out infinite;
}

.pill-cta:hover { transform: scale(1.06); background: #c4c59f; }

.cta-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9412c;
  flex-shrink: 0;
}

.cta-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: ping 1.6s ease-out infinite;
}

@keyframes ping {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(3.2); opacity: 0; }
}

.pill-cta span { animation: nudge 1.6s ease-in-out infinite; }

@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.pill-light:hover { transform: scale(1.05); }
.pill span { transition: transform 0.35s var(--ease); }
.pill:hover span { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 90px var(--gutter) 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  text-transform: lowercase;
  font-size: clamp(48px, min(25.5vw, 32svh), 420px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin-bottom: 26px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -4%;
  background: url("topo.svg") center / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
  animation: topoDrift 40s ease-in-out infinite alternate;
}

@keyframes topoDrift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
  to { transform: translate3d(1.5%, 1.2%, 0) scale(1.07); }
}

.hero > * { position: relative; }

.hero-title .who {
  display: inline-block;
  text-transform: none;
  color: var(--plum);
  padding: 0 0.04em;
  margin-left: -0.02em;
  background: linear-gradient(transparent 66%, var(--sage) 66% 90%, transparent 90%) left / 0% 100% no-repeat;
}

.js .hero-title.ready .who { animation: mark 0.9s var(--ease) 1.3s forwards; }

@keyframes mark { to { background-size: 100% 100%; } }

.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; white-space: nowrap; }
.hero-title .char { display: inline-block; }

.js .hero-title { visibility: hidden; }
.js .hero-title.ready { visibility: visible; }
.js .hero-title.ready .char {
  transform: translateY(105%);
  animation: rise 1.1s var(--ease) forwards;
  animation-delay: calc(var(--i) * 40ms + 200ms);
}

@keyframes rise { to { transform: translateY(0); } }

.hero { --badge: clamp(190px, min(22vw, 34svh), 340px); }

.hero > .hero-badge-wrap {
  position: absolute;
  z-index: 2;
  top: clamp(104px, 15svh, 190px);
  right: calc(var(--gutter) + 1.5vw);
  width: var(--badge);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--badge);
  height: var(--badge);
  border-radius: 50%;
  background: var(--sage);
  color: var(--ink);
  transition: transform 0.6s var(--ease);
  animation: badgeIn 1.2s var(--ease) 1.5s both;
}

@keyframes badgeIn {
  from { opacity: 0; transform: scale(0.55) rotate(-25deg); }
  to { opacity: 1; transform: none; }
}

.hero-badge::before,
.hero-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--sage);
  animation: halo 2.8s ease-out infinite;
  pointer-events: none;
}

.hero-badge::after { animation-delay: 1.4s; }

@keyframes halo {
  from { transform: scale(1); opacity: 0.85; }
  to { transform: scale(1.45); opacity: 0; }
}

.hero-badge:hover { transform: scale(1.06); }

.badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 22s linear infinite;
}

.hero-badge:hover .badge-ring { animation-duration: 6s; }

.badge-ring text {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 500;
  fill: var(--ink);
}

@keyframes spin { to { transform: rotate(360deg); } }

.badge-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 56%;
  height: 56%;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  transition: transform 0.6s var(--ease);
}

.badge-core svg { width: 72%; height: 72%; overflow: visible; }
.badge-core .steam { stroke: var(--paper); stroke-width: 3.4; }
.hero-badge:hover .badge-core { transform: rotate(-8deg) scale(1.06); }

.hero-point {
  position: absolute;
  z-index: 3;
  left: calc(-1 * var(--badge) * 0.5);
  top: calc(var(--badge) * -0.08);
  width: calc(var(--badge) * 0.55);
  pointer-events: none;
}

.hero-point svg { display: block; width: 100%; height: auto; overflow: visible; }

.hero-point .mono {
  display: block;
  margin: 0 0 -4px 4px;
  transform: rotate(-5deg);
  transform-origin: left bottom;
  animation: fadeIn 0.6s ease 2.2s both;
}

.hero-point path {
  stroke: var(--ink);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 220;
}

.hero-point .pt-line { animation: draw 1s var(--ease) 2.3s both; }
.hero-point .pt-head { animation: draw 0.5s var(--ease) 3.15s both; }

@keyframes draw { from { stroke-dashoffset: 220; } to { stroke-dashoffset: 0; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-chips {
  display: flex;
  gap: 8px;
  animation: fadeIn 0.8s ease 2.4s both;
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 13px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.35s var(--ease);
}

.chip:hover { background: var(--ink); color: var(--paper); transform: translateY(-3px); }

.hero-from { color: var(--muted); font-size: 11px; animation: fadeIn 0.8s ease 2.5s both; }

.hero-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
}

/* ---------- Reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}

.js .reveal.in { opacity: 1; transform: none; }

/* ---------- About ---------- */
.about {
  background: var(--plum);
  color: var(--plum-text);
  padding: 22px var(--gutter) var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--gutter);
  min-height: 82vh;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}

.statement {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 520px;
}

.scribble { position: relative; display: inline-block; white-space: nowrap; color: #d8cfd6; }

.scribble svg {
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 12px;
  overflow: visible;
}

.scribble path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  transition: stroke-dashoffset 1.4s var(--ease) 0.5s;
}

.reveal.in .scribble path, .no-js .scribble path { stroke-dashoffset: 0; }

.list-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.about-list ul {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 60px;
  row-gap: 6px;
}

.about-list li::before { content: "- "; }

.arch {
  background: var(--cream);
  border-radius: var(--radius-card) 260px var(--radius-card) var(--radius-card);
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 460px;
  position: relative;
}

.arch::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(31,31,31,0.05) 34px 35px);
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 90%);
  mask-image: linear-gradient(180deg, #000 30%, transparent 90%);
}

.cup { position: relative; width: min(78%, 420px); height: auto; animation: bob 6s ease-in-out infinite; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.steam {
  fill: none;
  stroke: #1f1f1f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  opacity: 0;
  animation: steam 4.2s ease-in-out infinite;
}

.steam.s2 { animation-delay: 1.2s; }
.steam.s3 { animation-delay: 2.4s; }

@keyframes steam {
  0% { stroke-dashoffset: 90; opacity: 0; transform: translateY(8px); }
  25% { opacity: 0.9; }
  70% { stroke-dashoffset: 0; opacity: 0.6; }
  100% { stroke-dashoffset: -90; opacity: 0; transform: translateY(-14px); }
}

/* ---------- Section heads ---------- */
.support, .how { padding: 120px var(--gutter) 40px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.big {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(64px, 9vw, 140px);
  letter-spacing: -0.045em;
  line-height: 0.85;
  text-transform: lowercase;
}

.section-note {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.15;
  max-width: 300px;
  padding-bottom: 8px;
}

/* ---------- Amount cards ---------- */
.amounts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
}

.amount-btn {
  --bg: var(--plum);
  --fg: #efe9ee;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 420px;
  padding: 18px;
  border: 0;
  border-radius: var(--radius-card);
  background: var(--bg);
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.6s var(--ease), box-shadow 0.4s ease;
}

.card-plum { --bg: var(--plum); --fg: #efe9ee; }
.card-olive { --bg: var(--olive); --fg: #efeee6; }
.card-sage { --bg: var(--sage); --fg: var(--ink); }

.amount-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 130%;
  aspect-ratio: 1;
  right: -40%;
  top: -35%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.16), transparent 60%);
  transition: transform 0.9s var(--ease);
}

.amount-btn:hover { transform: translateY(-6px); }
.amount-btn:hover::before { transform: translate(-6%, 8%) scale(1.08); }
.amount-btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 4px; }

.amount-btn.selected { box-shadow: 0 0 0 3px var(--paper), 0 0 0 5px var(--ink); }

.tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
}

.amount-btn.selected .tag::after {
  content: "  \2713";
  white-space: pre;
}

.amount-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(90px, 11vw, 170px);
  letter-spacing: -0.06em;
  line-height: 0.8;
  align-self: center;
  margin: auto 0;
}

.amount-info { display: block; }

.amount-title {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.amount-cat { display: block; margin: 4px 0 12px; opacity: 0.75; }

.amount-desc {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  max-width: 250px;
  white-space: normal;
}

/* ---------- Steps (sticky stack) ---------- */
.how { padding-bottom: 120px; }

.steps { display: grid; gap: 20px; }

.step {
  position: sticky;
  top: calc(70px + var(--n) * 14px);
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: var(--radius-card);
  padding: 8px;
  overflow: hidden;
}

.step-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 20px;
}

.step-num { font-size: 12px; }

.step h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.step p {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
}

.step-art {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 300px;
  display: grid;
  place-items: center;
}

.art-plum { background: var(--plum); color: #efe9ee; }
.art-olive { background: var(--olive); color: #efeee6; }
.art-sage { background: var(--sage); color: var(--ink); }

.step-art b {
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(110px, 16vw, 230px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.step-art i {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0.35;
  animation: drift 9s ease-in-out infinite;
}

.step-art i:nth-child(1) { width: 240px; height: 240px; left: -60px; top: -70px; }
.step-art i:nth-child(2) { width: 150px; height: 150px; right: 40px; bottom: -40px; animation-delay: -3s; }
.step-art i:nth-child(3) { width: 70px; height: 70px; right: 26%; top: 18%; animation-delay: -6s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -16px) scale(1.08); }
}

/* ---------- Ribbon ---------- */
.ribbon {
  display: block;
  overflow: hidden;
  background: var(--sage);
  color: var(--ink);
  padding: 22px 0 26px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}

.ribbon-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.ribbon-track span {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 84px);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-right: 0.5em;
}

.ribbon:hover .ribbon-track { animation-play-state: paused; }
.ribbon:hover { background: #bfc09b; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Floating buy button ---------- */
.float-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 8px 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.5);
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s var(--ease), opacity 0.4s ease;
}

.float-cta.show {
  transform: none;
  opacity: 1;
  pointer-events: auto;
  animation: ctaPulse 2.6s ease-in-out 0.6s infinite;
}

.float-cta em {
  font-style: normal;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(243, 243, 243, 0.14);
}

.float-cta b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--ink);
  font-weight: 500;
  transition: transform 0.4s var(--ease);
}

.float-cta:hover b { transform: rotate(-45deg); }

/* ---------- Checkout ---------- */
.checkout {
  background: var(--olive);
  color: #efeee6;
  padding: 120px var(--gutter) 60px;
}

.checkout-inner { max-width: 1100px; margin: 0 auto; }

.checkout-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 140px);
  letter-spacing: -0.045em;
  line-height: 0.88;
  margin-bottom: 28px;
}

.checkout-note {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  max-width: 420px;
  margin-bottom: 40px;
}

.summary {
  display: inline-block;
  margin-left: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--ink);
  vertical-align: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.4fr;
  gap: 8px;
  margin-bottom: 8px;
}

.pill-input {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(179, 180, 141, 0.7);
  border-radius: 999px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.pill-input:focus-within { border-color: var(--sage); background: rgba(179, 180, 141, 0.1); }

.pill-input .mono { color: var(--sage); white-space: nowrap; flex-shrink: 0; }

.pill-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #efeee6;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pill-input input::placeholder { color: rgba(179, 180, 141, 0.9); }

.pay {
  background: var(--paper);
  border-radius: 34px;
  padding: 14px;
  margin-top: 8px;
}

#paypal-button-container { min-height: 48px; }

.disabled-note {
  text-align: center;
  color: var(--muted);
  padding: 14px;
}

.disabled-note code { font-family: var(--mono); }

.status {
  min-height: 18px;
  margin-top: 18px;
  color: var(--sage);
}

.status.error { color: #ffb4a8; }

.secure { margin-top: 26px; opacity: 0.6; font-size: 11px; max-width: 460px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px var(--gutter) 22px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 90px;
}

.footer-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 10vw, 150px);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.footer-links { display: grid; gap: 8px; text-align: right; }
.footer-links a:hover { opacity: 0.6; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  opacity: 0.6;
  font-size: 11px;
}

/* ---------- Success page ---------- */
.thanks {
  min-height: 100svh;
  padding: 90px var(--gutter) 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--sage);
}

.thanks .hero-title { font-size: clamp(64px, 16vw, 280px); }
.thanks-note { font-family: var(--display); font-weight: 500; font-size: 20px; max-width: 420px; margin-bottom: 30px; }
.thanks .pill { background: var(--ink); color: var(--paper); height: 44px; padding: 0 22px; align-self: flex-start; margin-bottom: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .float-cta { left: 16px; right: 16px; bottom: 14px; justify-content: space-between; }
  .hero { --badge: clamp(170px, 46vw, 250px); }
  .hero > .hero-badge-wrap { top: 92px; right: 18px; }
  .hero-chips { display: none; }
  .hero-point .mono { font-size: 11px; }
  .about { grid-template-columns: 1fr; min-height: 0; }
  .arch { min-height: 380px; border-radius: var(--radius-card) 160px var(--radius-card) var(--radius-card); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .amounts { grid-template-columns: 1fr; }
  .amount-btn { aspect-ratio: auto; min-height: 400px; }
  .form-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; min-height: 0; }
  .step-copy { padding: 26px 10px; }
  .step-art { min-height: 200px; }
  .support, .how { padding-top: 80px; }
  .checkout { padding-top: 80px; }
  .footer-top { flex-direction: column; margin-bottom: 50px; }
  .footer-links { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .hero-title.ready .char { transform: none; }
  .js .hero-title .who { background-size: 100% 100%; }
  .float-cta { transition: none; }
  .js .reveal { opacity: 1; transform: none; }
  .scribble path { stroke-dashoffset: 0; }
  .steam { opacity: 0.6; stroke-dashoffset: 0; }
}
