/*
  ThoughtWell — web
  Colour tokens mirror ThoughtWell/Design/DesignSystem.swift. Light mode is the
  app's cream + sage; the always-dark bands use the app's dark-mode periwinkle.
  Nothing decorative lives outside this file.
*/

:root {
  --bg: #f6f5f1;
  --band: #edebe4;
  --surface: #fbfaf7;
  --ink: #1e2a22;
  --soft: #57645b;
  --line: rgba(30, 42, 34, 0.13);
  --accent: #66746a;
  --on-accent: #f6f5f1;
  --accent-ink: #4c584f;
  --dark: #17181d;
  --on-dark: #f6f5f1;
  --on-dark-soft: rgba(246, 245, 241, 0.62);
  --dark-line: rgba(246, 245, 241, 0.15);
  --peri: #8ca5c6;
  --shadow: rgba(20, 30, 20, 0.10);

  --serif: "Instrument Serif", Didot, "Times New Roman", serif;
  --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17181d;
    --band: #1c1e24;
    --surface: #21242b;
    --ink: #f1efea;
    --soft: rgba(241, 239, 234, 0.64);
    --line: rgba(241, 239, 234, 0.13);
    --accent: #8ca5c6;
    --on-accent: #17181d;
    --accent-ink: #a9bedb;
    --dark: #101215;
    --shadow: rgba(0, 0, 0, 0.5);
  }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p, ul, ol { margin: 0; }
a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
a:hover { color: var(--ink); }
::selection { background: var(--accent); color: var(--on-accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 3px; }
summary::-webkit-details-marker { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Layout ---------- */

.wrap {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: clamp(28px, 5vw, 64px);
}

section { padding-block: clamp(64px, 7vw, 108px); }
.band { background: var(--band); }
.dark { background: var(--dark); color: var(--on-dark); }
.dark a:not(.btn) { color: var(--peri); }
.dark a:not(.btn):hover { color: var(--on-dark); }
.dark .sub, .dark .caption { color: var(--on-dark-soft); }

.split {
  display: grid;
  gap: clamp(40px, 6vw, 88px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.measure { max-width: 40rem; }
.center { text-align: center; margin-inline: auto; }

/* ---------- Typography ---------- */

.display {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.2vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.008em;
  text-wrap: balance;
}

.display em { font-style: italic; color: var(--accent); }
.dark .display em { color: var(--peri); }

.title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.title-s {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
}

.dark .eyebrow, .eyebrow-peri { color: var(--peri); }

.lede {
  max-width: 33rem;
  font-size: 20px;
  line-height: 1.62;
  color: var(--soft);
  text-wrap: pretty;
}

.sub { color: var(--soft); text-wrap: pretty; }
.caption { font-size: 14.5px; line-height: 1.6; color: var(--soft); }

.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.26;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.stack > * + * { margin-top: 20px; }
.stack-s > * + * { margin-top: 14px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 58px;
  padding-inline: 34px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 16.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.3s ease, box-shadow 0.3s ease, background 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 14px 34px -10px color-mix(in srgb, var(--accent) 60%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.95; color: var(--on-accent); }

.btn-peri { background: var(--peri); color: #17181d; }
.btn-peri:hover { transform: translateY(-2px); opacity: 0.94; color: #17181d; }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}
.btn-ghost:hover { background: var(--surface); color: var(--ink); }

.btn-sm { min-height: 40px; padding-inline: 20px; font-size: 14.5px; }
.btn-block { width: 100%; min-height: 54px; font-size: 16px; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* ---------- Header ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 60;
  padding: 10px 18px;
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  padding-block: 18px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  text-decoration: none;
}
.wordmark:hover { color: var(--ink); }
.wordmark img { display: block; width: 26px; height: 26px; border-radius: 50%; }

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 30px;
}
.nav a { font-size: 14.5px; font-weight: 500; color: var(--soft); text-decoration: none; }
.nav a:hover { color: var(--ink); }

/* In light mode the shared --on-accent (a warm cream) reads a little muted
   against the sage button here; pure white is crisper at this small size. */
.site-header .btn-primary,
.site-header .btn-primary:hover {
  color: #ffffff;
}

/* Dark mode is left as it was — there the button is light periwinkle with
   deliberately dark text for contrast, and that logic still holds. */
@media (prefers-color-scheme: dark) {
  .site-header .btn-primary,
  .site-header .btn-primary:hover {
    color: var(--on-accent);
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 104px) clamp(72px, 9vw, 128px);
}

.hero-grid { position: relative; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  font-size: 14.5px;
  color: var(--soft);
}
.hero-meta p { display: inline-flex; align-items: center; gap: 0.5em; }
.hero-meta svg { flex: none; width: 0.95em; height: 0.95em; fill: var(--accent); }

/* ---------- Device ---------- */

.device {
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
  padding: 11px;
  border-radius: 58px;
  background: linear-gradient(160deg, #3a4139 0%, #22271f 46%, #14170f 100%);
  box-shadow: 0 60px 110px -34px rgba(20, 30, 20, 0.45),
              0 22px 44px -18px rgba(20, 30, 20, 0.32),
              inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}
.device img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
  border-radius: 47px;
  background: var(--surface);
}
.device-s { max-width: 286px; padding: 10px; border-radius: 50px; }
.device-s img { border-radius: 41px; background: #17181d; }

/* ---------- The idea ---------- */

.idea-quote {
  max-width: 46rem;
  margin: clamp(56px, 7vw, 88px) auto 0;
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
  text-align: center;
}

/* ---------- Stages ---------- */

.stages-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 24px 32px;
  padding-bottom: clamp(40px, 5vw, 64px);
}
.stages-head .note { max-width: 22rem; font-size: 16px; line-height: 1.65; color: var(--on-dark-soft); }

.part {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: clamp(28px, 3.5vw, 44px);
  padding-bottom: 10px;
}
.part:first-child { padding-top: 0; }
.part span:first-child {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.part .rule { flex: 1; height: 1px; background: var(--dark-line); }

.step-group {
  --step-pad: clamp(18px, 2.2vw, 28px);
  position: relative;
}
.step-group::before {
  content: "";
  position: absolute;
  top: var(--step-pad);
  bottom: var(--step-pad);
  left: 19px;
  width: 1px;
  background: var(--dark-line);
}

.step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding-block: var(--step-pad, clamp(18px, 2.2vw, 28px));
  border-top: 1px solid var(--dark-line);
  position: relative;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  width: 40px;
  height: 40px;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  background: var(--dark);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--peri);
  position: relative;
  z-index: 1;
}
.step-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peri);
}
.step-q {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--on-dark);
}
.step-sub {
  margin-top: 12px;
  max-width: 40rem;
  font-size: 16px;
  line-height: 1.62;
  color: var(--on-dark-soft);
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid var(--dark-line);
  color: var(--on-dark-soft);
}

.checkpoint {
  margin-top: clamp(36px, 4.5vw, 56px);
  padding: clamp(28px, 3.6vw, 44px);
  border: 1px solid var(--peri);
  border-radius: 28px;
  background: color-mix(in srgb, var(--peri) 9%, transparent);
}
.checkpoint .q {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--on-dark);
}

.recap {
  margin-top: clamp(28px, 3.5vw, 40px);
  padding: clamp(28px, 3.6vw, 40px);
  border: 1px solid var(--dark-line);
  border-radius: 28px;
}
.recap .q {
  margin-top: 18px;
  max-width: 34rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--on-dark);
}

.screen-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
  max-width: 760px;
  margin: clamp(48px, 6vw, 72px) auto 0;
}
.screen-card {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--dark-line);
  border-radius: 32px;
  background: color-mix(in srgb, var(--on-dark) 4%, transparent);
}
.screen-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}
.screen-card figcaption {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--on-dark-soft);
}

.closing-card {
  max-width: 40rem;
  margin: clamp(48px, 6vw, 72px) auto 0;
  padding: clamp(30px, 4vw, 44px);
  background: var(--peri);
  color: #17181d;
  border-radius: 28px;
}
.closing-card .q {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.closing-card p + p { margin-top: 16px; font-size: 16.5px; line-height: 1.65; color: rgba(23, 24, 29, 0.72); }

/* ---------- Principles ---------- */

.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.principle { padding-top: 26px; border-top: 1px solid var(--line); }
.principle .ring-glyph { display: block; width: 26px; height: 26px; color: var(--accent); }
.principle h3 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.principle p { margin-top: 14px; font-size: 16.5px; line-height: 1.68; color: var(--soft); }

/* ---------- Lists ---------- */

.check-list, .plain-list { margin: 0; padding: 0; list-style: none; }

.check-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding-block: 15px;
  border-top: 1px solid var(--line);
  font-size: 16.5px;
}
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list svg { flex: none; width: 0.85em; height: 0.85em; margin-top: 0.45em; fill: var(--accent); }

.plan-list { margin: 30px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.plan-list li { display: flex; gap: 12px; align-items: baseline; font-size: 16.5px; }
.plan-list svg { flex: none; width: 0.85em; height: 0.85em; margin-top: 0.45em; fill: var(--accent); }
.plan--plus .plan-list svg { fill: var(--peri); }
.plan--plus .plan-list li { color: var(--on-dark-soft); }
.plan--plus .plan-list strong { color: var(--on-dark); font-weight: 600; }

/* ---------- Plans ---------- */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(44px, 5vw, 64px);
}
.plan {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
}
.plan .btn-block { margin-top: auto; }
.plan--plus {
  background: var(--dark);
  color: var(--on-dark);
  border-color: transparent;
  box-shadow: 0 40px 80px -32px rgba(20, 30, 20, 0.4);
}
.plan h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}
.plan--plus h3 { color: var(--peri); }
.plan-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.badge {
  flex: none;
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #17181d;
  background: var(--peri);
  border-radius: 999px;
}
.price {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.6vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.008em;
}
.price span { font-family: var(--sans); font-size: 15px; font-weight: 400; letter-spacing: 0; color: var(--soft); }
.plan--plus .price span { color: var(--on-dark-soft); }
.plan-note {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--dark-line);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--on-dark-soft);
}

/* ---------- FAQ ---------- */

.faq-head p { max-width: 20rem; font-size: 16px; line-height: 1.65; color: var(--soft); }

/* Sticky only makes sense once .split is a real two-column layout (its
   grid switches at 769px, from minmax(min(100%,320px),1fr)) — below that
   the heading and the questions share one column, and a sticky heading
   just parks itself on top of whatever question has scrolled underneath. */
@media (min-width: 769px) {
  .faq-head { position: sticky; top: 120px; }
}

.faq details { padding-block: 24px; border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--ink);
}
.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
}
.faq details[open] summary::after { content: "\2013"; }
.faq details > p {
  margin-top: 16px;
  max-width: 38rem;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--soft);
}

/* ---------- Closing / safety ---------- */

.closing { padding-block: clamp(72px, 8vw, 120px) 0; }
.closing .mark { display: block; width: 60px; height: 60px; margin-inline: auto; border-radius: 50%; }

.safety {
  max-width: 44rem;
  margin: clamp(64px, 8vw, 104px) auto 0;
  padding: 28px 32px;
  border: 1px solid var(--dark-line);
  border-radius: 22px;
}
.safety p + p { margin-top: 14px; font-size: 16px; line-height: 1.68; color: var(--on-dark-soft); }
.safety strong { color: var(--on-dark); font-weight: 600; }

/* ---------- Footer ---------- */

.site-footer {
  margin-top: clamp(56px, 6vw, 80px);
  padding-block: 40px;
  border-top: 1px solid var(--dark-line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 28px;
}
.site-footer .wordmark { color: var(--on-dark); font-size: 19px; }
.site-footer .wordmark img { width: 24px; height: 24px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14.5px;
}
.footer-links a { color: var(--on-dark-soft); text-decoration: none; }
.footer-links a:hover { color: var(--on-dark); }
.footer-note { padding-bottom: 48px; font-size: 14px; color: var(--on-dark-soft); }

/* ---------- Prose pages ---------- */

.page-head { padding-block: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 56px); }
.page-head .display { max-width: 32rem; font-size: clamp(2.4rem, 5.4vw, 4.2rem); }

.crisis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(32px, 4vw, 52px);
  background: var(--dark);
  color: var(--on-dark);
  border-radius: 28px;
}
.crisis-rows > div { padding-block: 20px; border-top: 1px solid var(--dark-line); }
.crisis-rows p { font-size: 16.5px; line-height: 1.65; color: var(--on-dark-soft); }
.crisis-rows .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 10px;
}
.crisis-rows a { color: var(--on-dark); font-weight: 600; }

.qa > div { padding-block: clamp(24px, 3vw, 34px); border-top: 1px solid var(--line); }
.qa > div:last-child { border-bottom: 1px solid var(--line); }
.qa h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.qa p { margin-top: 14px; max-width: 38rem; font-size: 16.5px; line-height: 1.72; color: var(--soft); }
.qa strong { color: var(--ink); font-weight: 600; }

.prose { max-width: 40rem; }
.prose > div { padding-block: clamp(32px, 4vw, 44px); border-top: 1px solid var(--line); }
.prose > div:first-child { padding-top: 0; border-top: 0; }
.prose p { margin-top: 20px; color: var(--soft); }
.prose h2 + p { margin-top: 20px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul { margin-top: 24px; padding-left: 1.35rem; list-style: disc; }
.prose ul li { padding-block: 6px; color: var(--soft); font-size: 16.5px; }
.prose ul li::marker { color: var(--accent); }

.toc { display: grid; }

/* Same rule as .faq-head: sticky only while .split is actually two columns
   (breaks to one below 769px) — otherwise it pins over the prose below it. */
@media (min-width: 769px) {
  .toc { position: sticky; top: 120px; }
}
.toc .label {
  margin-bottom: 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}
.toc a {
  padding-block: 9px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--soft);
  text-decoration: none;
}
.toc a:last-child { border-bottom: 1px solid var(--line); }
.toc a:hover { color: var(--ink); }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 768px) {
  .toc { margin-bottom: 36px; }
}

@media (max-width: 640px) {
  .screen-pair { grid-template-columns: 1fr; max-width: 320px; }
}

/* Entrance for the hero, which is above the fold. */
@media (prefers-reduced-motion: no-preference) {
  .rise { animation: tw-rise 0.95s cubic-bezier(0.2, 0.75, 0.2, 1) both; }
  .rise-1 { animation-delay: 0.08s; }
  .rise-2 { animation-delay: 0.16s; }
  .rise-3 { animation-delay: 0.24s; }
  .rise-4 { animation-delay: 0.32s; }
}

@keyframes tw-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
