/* Arrow Puzzle Master — clay + glass, warm ochre field (reference art) */
:root {
  --bg: #f5d76e;
  --bg-deep: #e8c85a;
  --ink: #1a1a2e;
  --sky: #55a8fb;
  --sky-dark: #2f6fbe;
  --warm: #ffc145;
  --warm-dark: #c56a12;
  --red: #e63946;
  --white: #ffffff;
  --lavender: #e8e0ff;
  --rail-blue: #b8dcff;
  --shadow-ink: rgba(26, 26, 46, 0.22);
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --radius-clay: 22px;
  --header-h: 88px;
  /* Homepage main block vertical offset */
  --home-content-offset: 100px;
}

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

html {
  scroll-behavior: smooth;
}

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

  .parallax,
  .hero-device__arrow,
  .orb {
    transform: none !important;
    animation: none !important;
  }

  .ambient__banner {
    background-attachment: scroll !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  /* Fallback under fixed banner layer */
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* --- Floating glass orbs --- */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Full-viewport key art — same asset as former hero strip, now page backdrop */
.ambient__banner {
  position: absolute;
  inset: 0;
  background-image: url("images/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 12%;
  transform: scale(1.04);
  filter: saturate(1.05);
}

@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .ambient__banner {
    background-attachment: fixed;
  }
}

.ambient__wash {
  position: absolute;
  inset: 0;
  /* Warm scrim so body text stays ≥ readable contrast (see ui-ux overlay guidance) */
  background: linear-gradient(
      180deg,
      rgba(255, 252, 240, 0.82) 0%,
      rgba(245, 215, 110, 0.76) 38%,
      rgba(245, 215, 110, 0.72) 70%,
      rgba(232, 200, 90, 0.88) 100%
    ),
    radial-gradient(ellipse 85% 60% at 50% -5%, rgba(255, 255, 255, 0.42), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 85%, rgba(85, 168, 251, 0.12), transparent 52%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.08) 42%, rgba(85, 168, 251, 0.15) 100%);
  box-shadow: inset -6px -10px 18px rgba(26, 26, 46, 0.08), 0 12px 28px var(--shadow-ink);
  border: 2px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.orb--1 {
  width: 120px;
  height: 120px;
  top: 18%;
  left: 4%;
}

.orb--2 {
  width: 72px;
  height: 72px;
  top: 42%;
  left: 12%;
  opacity: 0.85;
}

.orb--3 {
  width: 160px;
  height: 160px;
  bottom: 8%;
  right: 3%;
}

.orb--4 {
  width: 90px;
  height: 90px;
  top: 12%;
  right: 18%;
  opacity: 0.75;
}

main {
  position: relative;
  z-index: 1;
  /* Offset homepage block downward (requested 200px) */
  padding-top: var(--home-content-offset);
}

/* --- Level-rail header --- */
.rail-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr) auto;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.65rem clamp(0.75rem, 2vw, 1.5rem);
  min-height: var(--header-h);
  background: linear-gradient(180deg, #d6ecff 0%, var(--rail-blue) 55%, #9cc8f5 100%);
  border-bottom: 4px solid var(--ink);
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.35) inset, 0 6px 18px var(--shadow-ink);
}

.rail-header.is-scrolled {
  box-shadow: 0 10px 24px var(--shadow-ink);
}

.rail-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease-out, filter 0.2s ease-out;
}

.rail-brand:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.rail-brand__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.01em;
}

.rail-brand__img {
  display: block;
  border-radius: 12px;
  border: 2px solid var(--ink);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

.rail-track {
  justify-self: center;
  width: 100%;
  max-width: 560px;
}

.rail-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.rail-steps__wire {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 99px;
  border: 2px solid var(--ink);
  margin: 0 0.15rem;
  max-width: 64px;
}

.rail-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease-out;
}

.rail-node:hover {
  transform: scale(1.04);
}

.rail-node__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(180deg, #fff 0%, #e6f2ff 100%);
  border: 3px solid var(--ink);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), inset 0 -3px 0 rgba(0, 0, 0, 0.06);
}

.rail-node:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
  border-radius: 12px;
}

.rail-node--done .rail-node__num {
  background: linear-gradient(180deg, #7ddf9a 0%, #3cb878 100%);
  color: #fff;
}

.rail-node--active .rail-node__num {
  background: linear-gradient(180deg, #ff8a7a 0%, var(--red) 100%);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 215, 80, 0.85), 0 4px 0 rgba(0, 0, 0, 0.15);
}

.rail-node__cap {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 900px) and (max-width: 1180px) {
  .rail-node__num {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .rail-steps__wire {
    max-width: 36px;
    margin: 0 0.08rem;
  }
}

.btn-clay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: linear-gradient(180deg, #fff 0%, #f0f4ff 100%);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.12), inset 0 -4px 0 rgba(0, 0, 0, 0.05);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background 0.18s ease-out;
}

.btn-clay:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.12), inset 0 -4px 0 rgba(0, 0, 0, 0.05);
}

.btn-clay:focus-visible {
  outline: 3px solid var(--sky-dark);
  outline-offset: 3px;
}

.btn-clay:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

.btn-clay--accent {
  background: linear-gradient(180deg, #ffe566 0%, #ffc145 100%);
}

.btn-clay--outline {
  background: linear-gradient(180deg, #eef6ff 0%, #d4e8ff 100%);
}

.btn-clay__ico {
  width: 1.1rem;
  height: 1.1rem;
}

.rail-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 3px solid var(--ink);
  background: #fff;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

.rail-burger span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
}

.rail-mobile {
  display: none;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.75rem 1rem 1rem;
  background: #fff;
  border-bottom: 3px solid var(--ink);
}

.rail-mobile a {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 0.5rem 0;
  border-radius: 10px;
  cursor: pointer;
}

.rail-mobile a:hover {
  color: var(--sky-dark);
}

@media (max-width: 899px) {
  .rail-header {
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
  }

  .rail-header__brand {
    grid-column: 1;
  }

  .rail-track {
    display: none;
  }

  .rail-header__cta {
    grid-column: 2;
  }

  .rail-burger {
    display: flex;
    grid-column: 3;
  }

  .rail-mobile {
    grid-column: 1 / -1;
  }

  .rail-header.is-open .rail-mobile {
    display: flex;
  }
}

@media (min-width: 900px) {
  .rail-mobile {
    display: none !important;
  }
}

/* --- Hero --- */
.hero-bubble {
  padding: clamp(1.5rem, 4vw, 4rem) clamp(1rem, 3vw, 2rem) clamp(2rem, 5vw, 4rem);
}

.hero-bubble__layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-bubble__layout {
    grid-template-columns: 1fr;
  }
}

.cloud-title {
  margin: 0 0 0.75rem;
  padding: clamp(1rem, 3vw, 1.6rem) clamp(1.2rem, 3vw, 2rem);
  position: relative;
  background: radial-gradient(120% 90% at 50% 100%, rgba(180, 210, 255, 0.35), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-radius: 38% 42% 48% 40% / 48% 45% 42% 52%;
  border: 4px solid var(--ink);
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.06), 0 18px 40px var(--shadow-ink), inset 0 -8px 16px rgba(85, 168, 251, 0.12);
  text-align: center;
}

.cloud-title__stars {
  position: absolute;
  top: 10%;
  right: 8%;
  display: flex;
  gap: 0.35rem;
  opacity: 0.95;
}

.cloud-title__line {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.cloud-title__line--warm {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  color: var(--warm);
  text-shadow: 0 3px 0 var(--warm-dark), 0 6px 0 rgba(197, 106, 18, 0.35);
  -webkit-text-stroke: 2px var(--warm-dark);
  paint-order: stroke fill;
}

.cloud-title__line--sky {
  font-size: clamp(2.4rem, 7vw, 3.9rem);
  color: var(--sky);
  text-shadow: 0 3px 0 var(--sky-dark), 0 6px 0 rgba(47, 111, 190, 0.3);
  -webkit-text-stroke: 2px var(--sky-dark);
  paint-order: stroke fill;
}

.cloud-title__tag {
  margin: 0.85rem 0 0;
  font-weight: 700;
  color: var(--sky-dark);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
}

.hero-lead {
  margin: 0 0 1.25rem;
  max-width: 36rem;
  color: var(--ink);
  font-weight: 600;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-device {
  position: relative;
  justify-self: end;
}

@media (max-width: 900px) {
  .hero-device {
    justify-self: center;
  }
}

.device-glass {
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.device-glass__bezel {
  padding: 12px;
  border-radius: 36px;
  background: linear-gradient(145deg, #ffffff, #dbeafe);
  border: 4px solid var(--ink);
  box-shadow: 0 14px 0 rgba(0, 0, 0, 0.08), 0 24px 50px var(--shadow-ink);
}

.device-glass__screen {
  border-radius: 26px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--lavender);
}

.device-glass__screen img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.device-glass__cap {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: rgba(26, 26, 46, 0.75);
  text-align: center;
}

.hero-device__arrow {
  position: absolute;
  filter: drop-shadow(0 6px 0 rgba(0, 0, 0, 0.12));
  animation: bob 4.5s ease-in-out infinite;
}

.hero-device__arrow--red {
  top: -4%;
  left: -6%;
}

.hero-device__arrow--blue {
  bottom: 8%;
  right: -4%;
  animation-delay: 0.8s;
}

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

/* --- Features: drifting bento --- */
.feature-path {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem) clamp(3rem, 7vw, 5rem);
  max-width: 1120px;
  margin: 0 auto;
}

.section-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  margin: 0 0 0.35rem;
  text-align: center;
}

.section-lead {
  margin: 0 auto 2rem;
  max-width: 34rem;
  text-align: center;
  font-weight: 600;
  color: rgba(26, 26, 46, 0.88);
}

.bento-drift {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.clay-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-clay);
  background: linear-gradient(180deg, #fff 0%, #f3f6ff 100%);
  border: 3px solid var(--ink);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.08), 0 16px 32px var(--shadow-ink), inset 0 -6px 12px rgba(85, 168, 251, 0.08);
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
  cursor: default;
}

.clay-card:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  box-shadow: 0 11px 0 rgba(0, 0, 0, 0.08), 0 22px 40px var(--shadow-ink);
}

.clay-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  background: var(--lavender);
  border: 2px solid var(--ink);
  color: var(--sky-dark);
}

.clay-card__icon svg {
  width: 26px;
  height: 26px;
}

.clay-card__h {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
}

.clay-card__p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(26, 26, 46, 0.9);
}

.clay-card--tilt-a {
  grid-column: span 7;
  transform: rotate(-1.2deg);
}

.clay-card--tilt-b {
  grid-column: span 5;
  transform: rotate(1.4deg);
}

.clay-card--tilt-c {
  grid-column: span 5;
  transform: rotate(0.8deg);
}

.clay-card--tilt-d {
  grid-column: span 7;
  transform: rotate(-0.9deg);
}

@media (max-width: 768px) {
  .clay-card--tilt-a,
  .clay-card--tilt-b,
  .clay-card--tilt-c,
  .clay-card--tilt-d {
    grid-column: 1 / -1;
    transform: rotate(0deg);
  }
}

/* --- Screenshot strip --- */
.shots-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  max-width: 1180px;
  margin: 0 auto;
}

.shots-panel__head .section-kicker {
  margin-bottom: 0.35rem;
}

.shots-strip-hint {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(26, 26, 46, 0.78);
}

.shots-strip {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 1rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--sky-dark) rgba(255, 255, 255, 0.5);
}

@media (prefers-reduced-motion: no-preference) {
  .shots-strip {
    cursor: grab;
  }

  .shots-strip:active {
    cursor: grabbing;
  }
}

.shots-strip__item {
  flex: 0 0 min(78vw, 300px);
  scroll-snap-align: start;
}

.shot-frame {
  margin: 0;
  padding: 10px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #eef4ff 100%);
  border: 3px solid var(--ink);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.08);
}

.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 2px solid var(--ink);
  vertical-align: middle;
}

@media (min-width: 900px) {
  .shots-strip__item {
    flex: 0 0 clamp(200px, 22vw, 280px);
  }
}

/* --- Download wave --- */
.dl-wave {
  position: relative;
  margin-top: 2rem;
  padding-bottom: 3rem;
}

.dl-wave__curve {
  height: clamp(36px, 6vw, 52px);
  background: #ffd400;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border: 4px solid var(--ink);
  border-bottom: none;
  max-width: min(1100px, 94vw);
  margin: 0 auto -3px;
  box-shadow: 0 -6px 0 rgba(255, 255, 255, 0.35) inset;
}

.dl-wave__inner {
  max-width: min(1100px, 94vw);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1rem, 3vw, 2rem) clamp(2rem, 5vw, 3rem);
  background: linear-gradient(180deg, #ffe566 0%, #ffc145 55%, #ffb020 100%);
  border: 4px solid var(--ink);
  border-top: none;
  text-align: center;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.08);
}

.dl-wave__title {
  margin: 0 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.dl-wave__title-text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #fff;
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.12);
}

.dl-wave__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dl-wave__sub {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  font-weight: 700;
  color: rgba(26, 26, 46, 0.9);
}

.dl-wave__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn-sticker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

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

.btn-sticker:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

.btn-sticker:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

.btn-sticker--dark {
  background: var(--ink);
  color: #fff;
}

/* --- Footer --- */
.site-footer {
  padding: 2rem clamp(1rem, 3vw, 2rem) 2.5rem;
  background: var(--bg-deep);
  border-top: 3px dashed rgba(26, 26, 46, 0.15);
}

.site-footer__grid {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.site-footer__links a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.site-footer__links a:hover {
  color: var(--sky-dark);
}

.site-footer__links a:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Modal --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.45);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-clay);
  background: #fff;
  border: 4px solid var(--ink);
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.1), 0 24px 48px var(--shadow-ink);
  text-align: center;
}

.modal__x {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  background: #f8fafc;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease-out;
}

.modal__x:hover {
  background: #e2e8f0;
}

.modal__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  border-radius: 16px;
  background: var(--lavender);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  color: var(--sky-dark);
}

.modal__icon svg {
  width: 28px;
  height: 28px;
}

.modal__title {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.modal__body {
  margin: 0 0 1.25rem;
  color: rgba(26, 26, 46, 0.9);
}

code {
  font-size: 0.88em;
  background: rgba(26, 26, 46, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 6px;
}
