/* 122s.vip — field workshop */

:root {
  --bg: #0c0b09;
  --surface: #16130f;
  --raised: #1f1a15;
  --fg: #f3eee6;
  --muted: #9c9183;
  --faint: #6e655a;
  --line: #2c261e;
  --accent: #eadcc8;
  --accent-fg: #1a140e;
  --ember: #c45c32;

  --font-sans: "Figtree", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, Consolas, monospace;

  --text-display: clamp(2.75rem, 1rem + 8vw, 6.4rem);
  --text-section: clamp(1.85rem, 1.15rem + 2.2vw, 3.1rem);
  --text-lead: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 0.9rem;
  --radius-xl: 1.35rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

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

html {
  color-scheme: dark;
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.55;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
[role="button"] {
  cursor: pointer;
  font: inherit;
}

h1,
h2,
h3 {
  text-wrap: balance;
  font-weight: 500;
}

p {
  text-wrap: pretty;
}

::selection {
  background: color-mix(in oklab, var(--ember) 38%, transparent);
  color: var(--fg);
}

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

/* Grain */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 30;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 3.5rem;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-inner {
    height: 4rem;
    padding: 0 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: -0.02em;
}

.logo-tag {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (min-width: 640px) {
  .logo-tag {
    display: inline;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  height: 2.75rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--fg);
}

.nav a.nav-cta {
  margin-left: 0.25rem;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--accent-fg);
  font-weight: 500;
  padding: 0 1rem;
}

.nav a.nav-cta:hover {
  color: var(--accent-fg);
  opacity: 0.92;
}

.nav-link-hide {
  display: none;
}

@media (min-width: 640px) {
  .nav-link-hide {
    display: inline-flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
}

.btn-lg {
  height: 3rem;
  padding: 0 1.5rem;
  border-radius: var(--radius-lg);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--fg);
}

.btn-outline:hover {
  background: var(--raised);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--raised);
}

.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.hero-media video.is-active {
  opacity: 1;
}

.scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      var(--bg) 4%,
      color-mix(in oklab, var(--bg) 70%, transparent) 36%,
      transparent 68%
    ),
    linear-gradient(
      90deg,
      color-mix(in oklab, var(--bg) 78%, transparent) 0%,
      color-mix(in oklab, var(--bg) 32%, transparent) 38%,
      transparent 64%
    );
}

.hero-content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 100svh;
  padding: 7rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 7rem 2rem 5rem;
  }
}

.hero-copy {
  max-width: 42rem;
}

.hero-copy > * {
  animation: rise 0.5s var(--ease) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 40ms; }
.hero-copy > *:nth-child(2) { animation-delay: 120ms; }
.hero-copy > *:nth-child(3) { animation-delay: 200ms; }
.hero-copy > *:nth-child(4) { animation-delay: 280ms; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > * {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

.status-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.ember-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: var(--ember);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .ember-dot {
    animation: ember 2.8s ease-in-out infinite;
  }
}

@keyframes ember {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: var(--text-display);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 1.5rem 0 0;
  max-width: 36rem;
  font-size: var(--text-lead);
  color: var(--muted);
}

.hero-lead .mono {
  font-family: var(--font-mono);
  color: var(--fg);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-controls {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-controls {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.reel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.reel-btn {
  display: inline-flex;
  align-items: center;
  height: 2.75rem;
  padding: 0 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.reel-btn span {
  margin-right: 0.5rem;
  color: var(--faint);
}

.reel-btn.is-active {
  border-color: color-mix(in oklab, var(--accent) 40%, transparent);
  background: var(--raised);
  color: var(--fg);
}

.reel-btn:hover {
  color: var(--fg);
}

.reel-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
}

.icon-btn:hover {
  background: var(--raised);
}

/* Sections */
.section {
  border-top: 1px solid var(--line);
  scroll-margin-top: 5rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

@media (min-width: 768px) {
  .section-inner {
    padding: 7rem 2rem;
  }
}

.kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: var(--text-section);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  color: var(--muted);
}

/* Offer cards */
.offer-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .card {
    padding: 1.75rem;
  }
}

.card-index {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--faint);
}

.card h3 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.who-block {
  margin-top: 5rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .who-block {
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
  }
}

.who-grid {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.who-grid li {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: 1.25rem;
}

.who-grid h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.who-grid p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Studio log */
.log-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .log-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.log-aside {
  max-width: 20rem;
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.log-aside .mono {
  font-family: var(--font-mono);
  color: var(--fg);
}

.log-cta {
  margin: 2rem 0 0;
}

.log-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 0.95rem;
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 0.28rem;
}

.bay-door {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  transition: border-color 0.25s var(--ease);
}

.bay-door:hover {
  border-color: color-mix(in oklab, var(--accent) 28%, var(--line));
}

.bay-door:hover .bay-door-img img {
  transform: scale(1.04);
}

.bay-door-img {
  aspect-ratio: 1;
  width: 5.5rem;
  overflow: hidden;
  background: var(--raised);
}

.bay-door-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.bay-door-copy {
  padding: 1rem 1.15rem 1.15rem;
}

.bay-door-copy .section-title {
  margin-top: 0.4rem;
  font-size: 1.65rem;
}

.bay-door-copy p {
  margin: 0.6rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 800px) {
  .bay-door {
    grid-template-columns: 8.5rem 1fr;
    align-items: stretch;
  }
  .bay-door-img {
    width: 8.5rem;
    aspect-ratio: 1;
    min-height: unset;
  }
  .bay-door-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.25rem 1.75rem;
  }
}

.project-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  color: inherit;
  transition: border-color 0.25s;
}

.project-card:hover {
  border-color: color-mix(in oklab, var(--accent) 28%, var(--line));
}

.project-card:hover .project-img img {
  transform: scale(1.04);
}

.project-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--raised);
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

.project-status.is-open {
  color: var(--faint);
}

.project-body h3 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.project-slug {
  margin: 0.25rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

.project-blurb {
  margin: 0.75rem 0 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.project-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--fg);
}

/* Method */
.steps {
  margin: 3rem 0 0;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--line);
  list-style: none;
  padding: 0;
}

@media (min-width: 640px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.steps li {
  background: var(--surface);
  padding: 1.5rem 1.75rem;
}

.steps .num {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-style: italic;
  color: var(--faint);
}

.steps h3 {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  font-weight: 500;
}

.steps p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Request */
.request-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .request-grid {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
  }
}

.bay-preview {
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: 1.25rem;
}

.bay-preview .host {
  margin: 0.75rem 0 0;
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 0.9rem + 1vw, 1.25rem);
}

.bay-preview .host .faint {
  color: var(--faint);
}

.bay-preview .hint {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.bay-preview .hint.is-taken {
  color: var(--ember);
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .form-panel {
    padding: 2rem;
  }
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label,
.field legend {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--fg);
  font: inherit;
  padding: 0 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input {
  height: 2.75rem;
}

.field textarea {
  min-height: 8rem;
  padding: 0.75rem 0.875rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: color-mix(in oklab, var(--accent) 50%, transparent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 18%, transparent);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--faint);
}

.field .mono-input {
  font-family: var(--font-mono);
}

.slug-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .slug-row {
    flex-direction: row;
    align-items: center;
  }
  .slug-row input {
    flex: 1;
  }
}

.slug-host {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--muted);
  white-space: nowrap;
}

.field-help {
  margin: 0;
  font-size: 0.75rem;
  color: var(--faint);
}

.need-grid {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .need-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.need-btn {
  height: 2.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.need-btn.is-active {
  border-color: color-mix(in oklab, var(--accent) 50%, transparent);
  background: var(--raised);
  color: var(--fg);
}

.form-footer {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .form-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.form-note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--faint);
}

.success-panel h3 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.875rem;
  letter-spacing: -0.02em;
}

.success-panel p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.success-panel pre {
  margin: 1.5rem 0 0;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  background: var(--bg);
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted);
}

.success-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hidden {
  display: none !important;
}

/* Donate */
.donate-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .donate-panel {
    padding: 4rem 3.5rem;
  }
}

.donate-panel .section-title {
  max-width: 28rem;
}

.donate-panel .section-lead {
  max-width: 40rem;
}

.donate-panel a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.donate-panel .btn {
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2.5rem 2rem;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: -0.02em;
  margin: 0;
}

.footer-copy {
  margin: 0.5rem 0 0;
  max-width: 22rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--faint);
}

@media (min-width: 640px) {
  .footer-meta {
    align-items: flex-end;
  }
}

.footer-meta a:hover {
  color: var(--fg);
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 50;
  transform: translateX(-50%) translateY(120%);
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--raised);
  color: var(--fg);
  font-size: 0.875rem;
  box-shadow: 0 18px 40px -24px rgb(0 0 0 / 0.55);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  pointer-events: none;
}

.toast.is-on {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
