:root {
  --ink: #17152b;
  --muted: #67627b;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --line: rgba(58, 46, 98, 0.12);
  --primary: #5b3fd6;
  --primary-dark: #4026ad;
  --primary-soft: #eeeaff;
  --coral: #ff806b;
  --mint: #5dc8ae;
  --page-background: linear-gradient(145deg, #fbfaff 0%, #f4f6ff 50%, #fff8f4 100%);
  --shadow-sm: 0 12px 34px rgba(50, 37, 96, 0.08);
  --shadow-lg: 0 28px 80px rgba(50, 37, 96, 0.14);
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page-background);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(91, 63, 214, 0.34);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff;
  background: var(--primary-dark);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  opacity: 0.55;
}

.ambient-one {
  top: -18rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(122, 101, 232, 0.28), transparent 68%);
}

.ambient-two {
  bottom: -22rem;
  left: -13rem;
  background: radial-gradient(circle, rgba(255, 146, 120, 0.24), transparent 68%);
}

.site-header,
.page-shell,
.footer-top,
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  aspect-ratio: 1;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #755be6, #4a2fc3);
  box-shadow: 0 8px 22px rgba(91, 63, 214, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(14px);
}

.nav-link {
  padding: 8px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-link.active {
  color: var(--primary-dark);
  background: #fff;
  box-shadow: 0 4px 15px rgba(45, 35, 85, 0.08);
}

.page-shell {
  padding: 58px 0 92px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.hero-copy {
  animation: intro-up 700ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.eyebrow,
.section-kicker,
.paper-kicker {
  margin: 0;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid rgba(91, 63, 214, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.eyebrow span {
  color: var(--coral);
  font-size: 0.62rem;
}

.hero h1 {
  max-width: 15ch;
  margin: 22px 0 20px;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.hero-points {
  display: grid;
  gap: 11px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #49445c;
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.check {
  display: inline-grid;
  width: 24px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 0.76rem;
}

.experience-card {
  position: relative;
  padding: clamp(20px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px);
  animation: intro-up 700ms 100ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.experience-card::before {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 250px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 91, 230, 0.15), transparent 68%);
  content: '';
  pointer-events: none;
}

.experience-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.experience-head h2 {
  margin: 3px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.stage-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(93, 200, 174, 0.24);
  border-radius: 999px;
  color: #347c6b;
  background: rgba(226, 250, 243, 0.7);
  font-size: 0.74rem;
  font-weight: 750;
}

.status-dot {
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(93, 200, 174, 0.13);
}

.stage[data-state='shuffle'] .status-dot {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 128, 107, 0.13);
  animation: status-pulse 900ms ease-in-out infinite;
}

.stage {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 13px;
  padding-top: 8px;
}

.fanus-container {
  position: relative;
  width: clamp(242px, 30vw, 315px);
  aspect-ratio: 1 / 1.08;
  animation: scene-float 5.8s ease-in-out infinite;
}

.fanus {
  position: absolute;
  inset: 0;
  transform-origin: 50% 76%;
  transition: opacity 300ms ease, transform 450ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.fanus.is-shuffling {
  animation: jar-wobble 620ms ease-in-out infinite;
}

.lid {
  position: absolute;
  top: 5%;
  left: 31%;
  z-index: 8;
  width: 38%;
  height: 12%;
  border: 1px solid rgba(82, 64, 126, 0.2);
  border-radius: 12px 12px 18px 18px;
  background: linear-gradient(180deg, #4b3c72, #2f254d);
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.16), 0 9px 18px rgba(38, 29, 65, 0.18);
}

.lid::before,
.lid::after,
.lid span {
  position: absolute;
  left: 8%;
  width: 84%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: '';
}

.lid::before { top: 35%; }
.lid::after { top: 65%; }
.lid span { top: 50%; }

.jar-neck {
  position: absolute;
  top: 13%;
  left: 35%;
  z-index: 2;
  width: 30%;
  height: 16%;
  border: 2px solid rgba(112, 91, 160, 0.22);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(90deg, rgba(231, 226, 255, 0.5), rgba(255, 255, 255, 0.72), rgba(221, 214, 250, 0.42));
}

.glass-back,
.glass-front {
  position: absolute;
  top: 21%;
  left: 5%;
  width: 90%;
  height: 75%;
  border-radius: 45% 45% 46% 46% / 27% 27% 55% 55%;
}

.glass-back {
  z-index: 1;
  border: 2px solid rgba(119, 97, 166, 0.18);
  background:
    radial-gradient(circle at 50% 100%, rgba(129, 106, 207, 0.16), transparent 58%),
    linear-gradient(135deg, rgba(232, 228, 255, 0.58), rgba(255, 255, 255, 0.25));
  box-shadow: inset 0 -18px 42px rgba(93, 70, 165, 0.1), 0 22px 42px rgba(47, 37, 86, 0.12);
}

.glass-front {
  z-index: 5;
  border: 2px solid rgba(255, 255, 255, 0.76);
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.35), transparent 34% 68%, rgba(255, 255, 255, 0.18));
  box-shadow: inset 12px 0 25px rgba(255, 255, 255, 0.22), inset -10px -8px 24px rgba(94, 74, 158, 0.05);
  pointer-events: none;
}

.reflection {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 12%;
  height: 48%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.05));
  filter: blur(1px);
  opacity: 0.7;
  transform: rotate(15deg);
}

.slips-container {
  position: absolute;
  top: 33%;
  left: 14%;
  z-index: 3;
  width: 72%;
  height: 53%;
  overflow: hidden;
  border-radius: 34% 34% 45% 45% / 18% 18% 48% 48%;
}

.slip {
  position: absolute;
  top: var(--top);
  left: var(--left);
  width: var(--size);
  aspect-ratio: 1.62;
  border: 1px solid rgba(202, 157, 87, 0.24);
  border-radius: 4px;
  background: linear-gradient(165deg, #fffdf5, #fff1d6);
  box-shadow: 0 3px 8px rgba(67, 49, 85, 0.12);
  transform: translate(-50%, -50%) rotate(var(--rotation));
  transform-origin: center;
}

.slip::after {
  position: absolute;
  top: 32%;
  left: 18%;
  width: 54%;
  height: 1px;
  background: rgba(133, 99, 65, 0.18);
  box-shadow: 0 4px 0 rgba(133, 99, 65, 0.12);
  content: '';
}

.fanus.is-shuffling .slip {
  animation: shuffle-slip 680ms ease-in-out infinite alternate;
  animation-delay: var(--delay);
  will-change: transform;
}

.slip.is-picked {
  z-index: 4;
  animation: picked-slip 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.jar-label {
  position: absolute;
  top: 53%;
  left: 50%;
  z-index: 6;
  display: grid;
  width: 40%;
  min-height: 23%;
  place-content: center;
  border: 1px solid rgba(100, 70, 157, 0.1);
  border-radius: 50%;
  color: #5b477d;
  background: rgba(255, 251, 238, 0.84);
  box-shadow: 0 7px 20px rgba(79, 55, 115, 0.1);
  text-align: center;
  transform: translateX(-50%) rotate(-3deg);
}

.jar-label span {
  font-size: clamp(0.55rem, 1vw, 0.7rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jar-label strong {
  font-family: Georgia, serif;
  font-size: clamp(0.9rem, 1.7vw, 1.15rem);
  line-height: 1.15;
}

.fanus-shadow {
  position: absolute;
  right: 11%;
  bottom: 0;
  left: 11%;
  height: 8%;
  border-radius: 50%;
  background: rgba(44, 31, 77, 0.18);
  filter: blur(12px);
  transform: scaleX(0.9);
}

.prompt {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.prompt p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.btn.primary {
  position: relative;
  min-width: 190px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #684cde, #4b30bd);
  box-shadow: 0 12px 28px rgba(74, 47, 190, 0.28);
}

.btn.fun::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(110px 50px at var(--pointer-x, -25%) 0%, rgba(255, 255, 255, 0.3), transparent 72%);
  content: '';
  pointer-events: none;
}

.btn.fun > span {
  position: relative;
  z-index: 1;
}

.btn.secondary {
  color: #fff;
  background: var(--primary-dark);
  box-shadow: 0 10px 22px rgba(64, 38, 173, 0.2);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.button-arrow {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.result {
  position: relative;
  z-index: 8;
  display: grid;
  width: min(100%, 500px);
  justify-items: center;
  gap: 15px;
  margin-top: -12px;
}

.paper {
  position: relative;
  width: 100%;
  padding: clamp(22px, 4vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(91, 63, 214, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 4%, var(--paper-accent, rgba(255, 128, 107, 0.16)), transparent 34%),
    linear-gradient(145deg, #fff, #fbfaff);
  box-shadow: 0 18px 45px rgba(49, 35, 91, 0.13);
}

.paper.is-visible {
  animation: card-reveal 560ms both cubic-bezier(0.18, 0.78, 0.2, 1);
}

.paper::before {
  position: absolute;
  top: 17px;
  right: 18px;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid rgba(91, 63, 214, 0.12);
  border-radius: 50%;
  content: '✦';
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(238, 234, 255, 0.72);
}

.paper-kicker {
  margin-bottom: 13px;
}

.quote {
  max-width: 28ch;
  margin: 0;
  color: #242039;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.hashtag {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  animation: intro-up 420ms 160ms both ease-out;
}

.confetti {
  position: absolute;
  inset: -60px -25px 0;
  z-index: 10;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  top: 0;
  left: var(--left);
  width: 7px;
  height: 11px;
  border-radius: 2px;
  background: var(--color);
  opacity: 0;
  animation: confetti-fall var(--duration) var(--delay) cubic-bezier(0.2, 0.65, 0.4, 1) forwards;
}

.state-result .fanus {
  opacity: 0.62;
  transform: translateY(-8px) scale(0.88);
}

.ritual {
  padding-top: 120px;
}

.section-heading {
  max-width: 680px;
}

.section-heading h2 {
  margin: 8px 0 13px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.ritual-card {
  min-height: 220px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-sm);
}

.ritual-card.featured {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #5a3ed1, #35207d);
  transform: translateY(-10px);
}

.step-number {
  display: inline-grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.featured .step-number {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.ritual-card h3 {
  margin: 28px 0 9px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.ritual-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 12px;
}

.brand-note p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.contact,
.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact .link {
  color: var(--primary-dark);
  font-weight: 700;
}

.social-icon {
  display: inline-grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  max-width: min(380px, calc(100vw - 40px));
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: #fff;
  background: #27213d;
  box-shadow: 0 14px 35px rgba(25, 19, 46, 0.24);
  font-size: 0.86rem;
  font-weight: 700;
  animation: toast-in 260ms both ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.7);
  }

  .btn:not(:disabled):hover {
    transform: translateY(-2px);
  }

  .btn.primary:hover,
  .btn.secondary:hover {
    box-shadow: 0 16px 34px rgba(74, 47, 190, 0.3);
  }

  .btn:hover .button-arrow {
    transform: translateX(4px);
  }

  .social-icon:hover {
    border-color: rgba(91, 63, 214, 0.3);
    transform: translateY(-2px);
  }

  .footer-nav a:hover,
  .contact a:hover {
    color: var(--primary);
  }
}

@keyframes intro-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scene-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes jar-wobble {
  0%, 100% { transform: rotate(-1.6deg) translateX(-2px); }
  50% { transform: rotate(1.6deg) translateX(2px); }
}

@keyframes shuffle-slip {
  from {
    transform: translate(-50%, -50%) rotate(var(--rotation));
  }
  to {
    transform: translate(calc(-50% + var(--move-x)), calc(-50% + var(--move-y))) rotate(var(--end-rotation));
  }
}

@keyframes picked-slip {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--rotation)) scale(1);
  }
  55% {
    opacity: 1;
    transform: translate(-50%, calc(-50% - 22px)) rotate(2deg) scale(1.45);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 42px)) rotate(-2deg) scale(1.72);
  }
}

@keyframes card-reveal {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes status-pulse {
  50% { transform: scale(1.25); }
}

@keyframes confetti-fall {
  0% { opacity: 1; transform: translate3d(0, -6px, 0) rotate(0); }
  100% { opacity: 0; transform: translate3d(var(--drift), 240px, 0) rotate(var(--spin)); }
}

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

@media (max-width: 960px) {
  .page-shell {
    padding-top: 30px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .experience-card {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .fanus-container {
    width: clamp(250px, 50vw, 310px);
  }
}

@media (max-width: 720px) {
  .site-header,
  .page-shell,
  .footer-top,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    align-items: flex-start;
    padding-block: 17px;
  }

  .site-nav {
    gap: 2px;
    padding: 4px;
  }

  .nav-link {
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .brand > span:last-child {
    max-width: 110px;
    line-height: 1.15;
  }

  .page-shell {
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.65rem);
  }

  .experience-card {
    border-radius: 28px;
  }

  .experience-head {
    align-items: center;
  }

  .fanus-container {
    width: clamp(236px, 76vw, 295px);
  }

  .ritual {
    padding-top: 80px;
  }

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

  .ritual-card {
    min-height: 0;
  }

  .ritual-card.featured {
    transform: none;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-bottom {
    justify-items: start;
  }
}

@media (max-width: 480px) {
  .experience-head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .stage-status {
    max-width: none;
    justify-self: start;
    text-align: left;
  }

  .site-header > .brand > span:last-child {
    display: none;
  }

  .actions {
    width: 100%;
  }

  .actions .btn {
    width: 100%;
  }

  .paper {
    padding: 24px 20px;
  }

  .quote {
    padding-right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
