:root {
  --skin: #e8b88a;
  --skin-light: #f5e6c8;
  --skin-pale: #fffef8;
  --skin-shadow: #c4956a;
  --paper: #fffef8;
  --ink: #0a0a0a;
  --outline: #000000;
  --tear: #7ec8f0;
  --blush: #f0a8a0;
  --burst: #ffe566;
  --feels-gray: #6a6560;
  --gutter: 6px;
  --stroke: 3px;
  --shadow: 4px 4px 0 var(--outline);
  --shadow-lg: 6px 6px 0 var(--outline);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-bubble: 24px;
  --font-impact: "Bangers", Impact, "Arial Black", sans-serif;
  --font-comic: "Comic Neue", "Comic Sans MS", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body.comic-site {
  margin: 0;
  font-family: var(--font-comic);
  font-weight: 700;
  color: var(--ink);
  background: var(--skin-light);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  width: min(1100px, calc(100% - 1.5rem));
  margin-inline: auto;
}

/* ─── Background effects ─── */
.bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: blob-drift 18s ease-in-out infinite;
}

.bg-blob--1 {
  width: 320px;
  height: 320px;
  background: var(--tear);
  top: 10%;
  left: -8%;
  animation-delay: 0s;
}

.bg-blob--2 {
  width: 280px;
  height: 280px;
  background: var(--blush);
  top: 55%;
  right: -6%;
  animation-delay: -6s;
}

.bg-blob--3 {
  width: 240px;
  height: 240px;
  background: var(--burst);
  bottom: 15%;
  left: 30%;
  animation-delay: -12s;
}

.bg-speedlines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: repeating-conic-gradient(
    from 0deg at 50% 120%,
    transparent 0deg 8deg,
    var(--outline) 8deg 9deg
  );
  animation: speedlines-spin 120s linear infinite;
}

.halftone {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--ink) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.05;
  animation: halftone-pulse 8s ease-in-out infinite;
}

.bg-tears {
  position: absolute;
  inset: 0;
}

.tear {
  position: absolute;
  width: 8px;
  height: 14px;
  background: var(--tear);
  border: 2px solid var(--outline);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  opacity: 0.5;
  animation: tear-fall linear infinite;
}

.tear:nth-child(1) { left: 8%; animation-duration: 9s; animation-delay: 0s; }
.tear:nth-child(2) { left: 22%; animation-duration: 11s; animation-delay: -3s; width: 6px; height: 11px; }
.tear:nth-child(3) { left: 55%; animation-duration: 8s; animation-delay: -1s; }
.tear:nth-child(4) { left: 78%; animation-duration: 12s; animation-delay: -5s; width: 7px; height: 12px; }
.tear:nth-child(5) { left: 91%; animation-duration: 10s; animation-delay: -7s; }

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

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

@keyframes halftone-pulse {
  0%, 100% { opacity: 0.04; }
  50% { opacity: 0.07; }
}

@keyframes tear-fall {
  0% { transform: translateY(-20px); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.35; }
  100% { transform: translateY(100vh); opacity: 0; }
}

.comic-book {
  position: relative;
  z-index: 1;
}

/* ─── Comic panels (fixed borders — no extreme radius) ─── */
.comic-panel {
  position: relative;
  background: var(--paper);
  border: var(--stroke) solid var(--outline);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  overflow: hidden;
}

.comic-panel-flat {
  background: var(--paper);
  border-bottom: var(--stroke) solid var(--outline);
  box-shadow: 0 4px 0 var(--outline);
}

.comic-page {
  position: relative;
  padding: 5.5rem 0 3rem;
  border-bottom: calc(var(--gutter) * 2) solid var(--outline);
  background: var(--skin);
  overflow: hidden;
}

.comic-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 23px,
    rgba(0, 0, 0, 0.03) 23px,
    rgba(0, 0, 0, 0.03) 24px
  );
  pointer-events: none;
}

.comic-page:nth-child(even) {
  background-color: var(--skin-light);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy > .reveal:nth-child(1) { transition-delay: 0s; }
.hero-copy > .reveal:nth-child(2) { transition-delay: 0.08s; }
.hero-copy > .reveal:nth-child(3) { transition-delay: 0.16s; }
.hero-copy > .reveal:nth-child(4) { transition-delay: 0.24s; }
.hero-copy > .reveal:nth-child(5) { transition-delay: 0.32s; }
.hero-copy > .reveal:nth-child(6) { transition-delay: 0.4s; }
.hero-copy > .reveal:nth-child(7) { transition-delay: 0.48s; }

.comic-label {
  font-family: var(--font-impact);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.5rem;
  color: var(--feels-gray);
  text-transform: uppercase;
}

.comic-section-head {
  margin-bottom: 1.5rem;
}

.comic-section-head--center {
  text-align: center;
}

.comic-section-head h2 {
  font-family: var(--font-impact);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin: 0;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 3px 3px 0 var(--skin-shadow);
}

/* Speech bubbles — contained, no overflow */
.speech-bubble {
  position: relative;
  background: var(--paper);
  border: var(--stroke) solid var(--outline);
  border-radius: var(--radius-bubble);
  padding: 1rem 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
  max-width: 42ch;
  overflow: visible;
}

.speech-bubble--hero {
  max-width: 38ch;
  margin-bottom: 1.5rem;
}

.speech-bubble--hero::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 32px;
  width: 20px;
  height: 20px;
  background: var(--paper);
  border: var(--stroke) solid var(--outline);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  box-shadow: 3px 3px 0 var(--outline);
}

.speech-bubble--hero .hero-bio {
  margin: 0;
  font-size: 1.1rem;
}

.speech-bubble--small {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 0;
  border-radius: var(--radius-md);
}

.speech-bubble--small::after {
  display: none;
}

.speech-bubble--quote {
  max-width: none;
  margin-top: 1.25rem;
  background: var(--tear);
  border-radius: var(--radius-bubble);
  padding-bottom: 1.25rem;
}

.speech-bubble--quote::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: 40px;
  width: 18px;
  height: 18px;
  background: var(--tear);
  border: var(--stroke) solid var(--outline);
  border-top: none;
  border-right: none;
  transform: rotate(45deg);
}

.speech-bubble--quote p {
  margin: 0;
  font-size: 1.05rem;
}

.speech-bubble--quote strong {
  font-family: var(--font-impact);
  font-size: 1.15em;
}

/* Burst title */
.burst-title {
  display: inline-block;
  position: relative;
  margin-bottom: 0.5rem;
  padding: 0.6rem 1.35rem 0.8rem;
  background: var(--burst);
  border: var(--stroke) solid var(--outline);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  transform: rotate(-2deg);
  animation: burst-pop 2.5s ease-in-out infinite;
}

.burst-title::before {
  content: "POW!";
  position: absolute;
  top: -12px;
  right: -6px;
  font-family: var(--font-impact);
  font-size: 0.95rem;
  color: var(--blush);
  text-shadow: 1px 1px 0 var(--outline);
  transform: rotate(12deg);
  animation: sfx-shake 0.6s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-impact);
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  line-height: 0.92;
  margin: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero h1 span {
  display: block;
}

.sfx-tag {
  font-family: var(--font-impact);
  font-size: 1.85rem;
  margin: 0.35rem 0 0.75rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--tear);
  display: inline-block;
  padding: 0.15rem 0.7rem;
  border: var(--stroke) solid var(--outline);
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  animation: tag-bounce 2s ease-in-out infinite;
}

.sfx {
  font-family: var(--font-impact);
  font-size: 1rem;
  letter-spacing: 0.06em;
  font-style: italic;
}

.sfx--big {
  font-size: 1.35rem;
  color: var(--blush);
}

.sfx--inline {
  display: block;
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
  font-style: normal;
}

.sfx-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.sfx-row .sfx:nth-child(odd) {
  animation: sfx-shake 3s ease-in-out infinite;
}

.sfx-row .sfx:nth-child(even) {
  animation: sfx-shake 3s ease-in-out infinite reverse;
  animation-delay: -1.5s;
}

@keyframes burst-pop {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50% { transform: rotate(-1deg) scale(1.02); }
}

@keyframes tag-bounce {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-4px) rotate(1deg); }
}

@keyframes sfx-shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-impact);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--stroke) solid var(--outline);
  box-shadow: var(--shadow);
  background: var(--skin);
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 0.85rem;
  list-style: none;
  margin: 0 auto 0 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-impact);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.nav-links a:hover {
  background: var(--burst);
  border-color: var(--outline);
  box-shadow: 2px 2px 0 var(--outline);
}

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--burst);
  border: var(--stroke) solid var(--outline);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--outline);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-impact);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: var(--stroke) solid var(--outline);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--outline);
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--outline);
}

.btn-comic {
  background: var(--burst);
  color: var(--ink);
}

.btn-comic-alt {
  background: var(--paper);
  color: var(--ink);
}

.btn-lg {
  padding: 0.75rem 1.4rem;
  font-size: 1.25rem;
}

.btn-copy {
  padding: 0.35rem 0.7rem;
  border: var(--stroke) solid var(--outline);
  border-radius: var(--radius-sm);
  background: var(--blush);
  font-family: var(--font-impact);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--outline);
  transition: background 0.15s, transform 0.12s;
}

.btn-copy:hover {
  background: var(--tear);
  transform: scale(1.05);
}

.hero-contract .label {
  font-family: var(--font-impact);
  font-size: 1rem;
}

.hero-contract code {
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  font-weight: 400;
  word-break: break-all;
  flex: 1;
  min-width: 0;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .container {
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  padding-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.hero-visual.comic-panel {
  text-align: center;
  padding: 1.25rem 1rem 1rem;
  background: var(--skin-pale);
}

.panel-num {
  position: absolute;
  top: 10px;
  left: 12px;
  font-family: var(--font-impact);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  background: var(--outline);
  color: var(--paper);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.logo-frame {
  border: var(--stroke) solid var(--outline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--skin);
  box-shadow: var(--shadow);
  animation: logo-float 4s ease-in-out infinite;
  max-width: 340px;
  margin: 0 auto;
}

.logo-frame img {
  width: 100%;
  display: block;
}

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

/* Comic strip */
.comic-strip {
  display: grid;
  gap: var(--gutter);
  background: var(--outline);
  border: var(--stroke) solid var(--outline);
  border-radius: var(--radius-lg);
  padding: var(--gutter);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-grid {
  grid-template-columns: repeat(2, 1fr);
}

.comic-strip .comic-panel {
  box-shadow: none;
  border-radius: var(--radius-md);
}

.about-card.lead {
  grid-column: 1 / -1;
  background: var(--skin);
}

.about-card h3 {
  font-family: var(--font-impact);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.about-card p {
  margin: 0;
  font-weight: 400;
}

.about-card.lead p {
  margin-bottom: 0.7rem;
}

.about-card.lead p:last-child {
  margin-bottom: 0;
}

/* Gallery */
.gallery {
  background: var(--skin-pale);
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  margin: 0;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translate(-2px, -2px) rotate(-0.5deg);
  box-shadow: 6px 6px 0 var(--outline);
  z-index: 2;
}

.gallery-num {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-family: var(--font-impact);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  background: var(--burst);
  color: var(--ink);
  padding: 0.15rem 0.45rem;
  border: 2px solid var(--outline);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0 var(--outline);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: var(--stroke) solid var(--outline);
  border-radius: var(--radius-md);
  display: block;
  background: var(--skin);
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Steps */
.comic-strip-vertical {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
  background: var(--outline);
  border: var(--stroke) solid var(--outline);
  border-radius: var(--radius-lg);
  padding: var(--gutter);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.comic-strip-vertical .step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-md);
  min-width: 0;
}

.step-num {
  font-family: var(--font-impact);
  font-size: 2rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--burst);
  border: var(--stroke) solid var(--outline);
  border-radius: 50%;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.step-body {
  min-width: 0;
}

.step h3 {
  font-family: var(--font-impact);
  font-size: 1.3rem;
  margin: 0 0 0.35rem;
  word-wrap: break-word;
}

.step p {
  margin: 0 0 0.7rem;
  font-weight: 400;
}

.section-sub {
  margin: 0.5rem auto 0;
  max-width: 48ch;
  font-weight: 400;
}

.disclaimer {
  margin-top: 1.25rem;
  text-align: center;
  font-family: var(--font-impact);
  font-size: 0.95rem;
  color: var(--feels-gray);
}

/* Chart */
.chart-frame {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 420px;
}

.chart-frame iframe {
  width: 100%;
  height: min(70vh, 520px);
  min-height: 420px;
  border: none;
  display: block;
}

.chart-external {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--font-impact);
  font-size: 1.25rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, box-shadow 0.15s;
}

.chart-external:hover {
  background: var(--burst);
  padding: 0.15rem 0.45rem;
  text-decoration: none;
  border: var(--stroke) solid var(--outline);
  box-shadow: var(--shadow);
}

/* Join us */
.joinus-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.joinus-copy {
  min-width: 0;
}

.joinus-banner {
  padding: var(--gutter);
  overflow: hidden;
}

.joinus-banner img {
  width: 100%;
  border: var(--stroke) solid var(--outline);
  border-radius: var(--radius-md);
  object-fit: cover;
}

.joinus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Ticker */
.comic-ticker {
  margin-top: 2rem;
  overflow: hidden;
  border-top: var(--stroke) solid var(--outline);
  border-bottom: var(--stroke) solid var(--outline);
  background: var(--outline);
  padding: 0.5rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 25s linear infinite;
  font-family: var(--font-impact);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--burst);
}

.ticker-track span {
  padding-right: 3rem;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
  background: var(--outline);
  color: var(--skin-light);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-impact);
  font-size: 1.1rem;
  color: var(--burst);
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--burst);
  object-fit: cover;
}

.footer-links a {
  font-family: var(--font-impact);
  font-size: 1.05rem;
  color: var(--skin-light);
  text-decoration: underline;
}

.footer-links a:hover {
  color: var(--tear);
}

.footer-note {
  margin: 0 0 0 auto;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

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

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .joinus-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .burst-title::before {
    font-size: 0.8rem;
    top: -10px;
    right: 4px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 58px;
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    background: var(--paper);
    border: var(--stroke) solid var(--outline);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: none;
    margin: 0;
    box-shadow: var(--shadow-lg);
    z-index: 101;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .footer-note {
    margin-left: 0;
    width: 100%;
  }

  .speech-bubble,
  .speech-bubble--hero {
    max-width: 100%;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .bg-blob {
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
