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

:root {
  --bg:       #f8edd9;
  --bg-2:     #f0e2c6;
  --card:     #fffaf3;
  --dark:     #3d2a1a;
  --coral:    #e07a5f;
  --coral-2:  #c85a42;
  --teal:     #69b4c8;
  --yellow:   #f0b840;
  --text:     #3d2a1a;
  --text-2:   #6b4e38;
  --muted:    #9a7a62;
  --muted-dim:#c4a88a;
  --white:    #fff;
  --surface-dark: #2a1f3d;
  --status-soon: #9a5820;
  --shadow:   rgba(61,42,26,0.07);
  --border:   rgba(61,42,26,0.1);
  --nav-bg:   rgba(248,237,217,0.92);
  --nav-bg-mobile: rgba(248,237,217,0.98);
  --coral-soft: rgba(224,122,95,0.12);
  --coral-line: rgba(224,122,95,0.3);
  --ink-soft: rgba(61,42,26,0.04);
  --ink-line: rgba(61,42,26,0.14);
  --white-muted: rgba(255,255,255,0.45);
  --white-faint: rgba(255,255,255,0.28);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1.5px dashed var(--coral-line);
}

.nav-brand {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 0.42rem 1.2rem;
  border-radius: 20px !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover { background: var(--coral-2) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
}

.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(224,122,95,0.2) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 14px 14px;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  color: var(--coral);
  pointer-events: none;
  user-select: none;
  font-style: normal;
}

.sparkle-1 { top: 21%; left: 10%; font-size: 1.3rem; opacity: 0.28; transform: rotate(12deg); }
.sparkle-2 { top: 60%; left: 9%; font-size: 0.8rem; opacity: 0.2; transform: rotate(-5deg); }
.sparkle-3 { top: 19%; right: 20%; font-size: 1rem; opacity: 0.24; transform: rotate(-15deg); }
.sparkle-4 { top: 34%; right: 24%; font-size: 1.4rem; opacity: 0.16; transform: rotate(20deg); }
.sparkle-5 { top: 14%; left: 39%; font-size: 0.65rem; opacity: 0.2; }
.sparkle-6 { top: 79%; left: 23%; font-size: 0.55rem; opacity: 0.15; }

.hero-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  color: var(--text);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.hero-title .pop { color: var(--coral); }

.hero-desc {
  max-width: 440px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-2);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-character {
  position: absolute;
  bottom: -4px;
  right: 3%;
  width: clamp(180px, 24vw, 340px);
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

@media (max-width: 820px) {
  .hero-character { width: clamp(140px, 22vw, 220px); right: 1%; }
}

@media (max-width: 640px) {
  .hero-character { display: none; }
}

/* ── WAVE DIVIDERS ── */
.wave-wrap { line-height: 0; display: block; }
.wave-wrap svg { display: block; width: 100%; }
.wave-bg-primary { background: var(--bg); }
.wave-bg-alt { background: var(--bg-2); }
.wave-fill-primary { fill: var(--bg); }
.wave-fill-alt { fill: var(--bg-2); }
.wave-fill-dark { fill: var(--dark); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 40px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  border: none;
}

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

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 16px var(--coral-line);
}

.btn-primary:hover {
  background: var(--coral-2);
  box-shadow: 0 8px 24px rgba(224,122,95,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(61,42,26,0.22);
}

.btn-outline:hover { border-color: var(--coral); color: var(--coral); }

.btn-sm { padding: 0.48rem 1.25rem; font-size: 0.84rem; }

/* ── SECTION COMMON ── */
.section { padding: clamp(4rem, 9vw, 6.5rem) 0; }
.section-alt { background: var(--bg-2); }

.section-header { text-align: center; margin-bottom: 3rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.section-label::before,
.section-label::after { content: '✦'; font-size: 0.55rem; color: var(--coral); opacity: 0.7; }

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.1rem, 5vw, 3rem);
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.section-title .pop { color: var(--coral); }

.section-blurb { max-width: 500px; margin: 0.8rem auto 0; color: var(--text-2); font-size: 1rem; }

/* ── GAMES ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.game-card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(61,42,26,0.13);
}

.game-card-ghost {
  opacity: 0.45;
  filter: blur(3px);
}

.game-card-ghost:hover {
  transform: none;
  box-shadow: 0 4px 20px var(--shadow);
}

.game-thumb {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--surface-dark);
}

.game-thumb-tba {
  background: repeating-linear-gradient(
    -45deg,
    var(--ink-soft) 0px,
    var(--ink-soft) 8px,
    var(--bg-2) 8px,
    var(--bg-2) 16px
  );
}

.tba-label {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  color: var(--muted-dim);
  letter-spacing: 0.1em;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-status {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(6px);
}

.s-soon { color: var(--status-soon); }
.s-tba { color: var(--muted); }

.game-body { padding: 1.4rem 1.5rem 1.7rem; }

.game-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.6rem; }

.tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(61,42,26,0.07);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.game-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.55rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.game-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1.25rem; }

/* ── RUNNER MINI GAME ── */
.runner-panel {
  margin-top: 2rem;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: end;
}

.runner-panel-lowkey {
  max-width: 820px;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  background: rgba(255,250,243,0.68);
  border-style: dashed;
  border-color: rgba(224,122,95,0.28);
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(61,42,26,0.05);
  padding: clamp(0.8rem, 2vw, 1rem);
  align-items: center;
}

.runner-scoreboard {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.runner-scoreboard span {
  min-width: 88px;
  border: 1.5px dashed var(--ink-line);
  border-radius: 10px;
  padding: 0.4rem 0.65rem;
  background: rgba(240,226,198,0.35);
  text-align: center;
}

.runner-scoreboard strong {
  display: block;
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: 0;
}

.runner-frame {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(61,42,26,0.13);
  border-radius: 12px;
  background: var(--bg);
  box-shadow: inset 0 -8px 0 rgba(61,42,26,0.04);
  touch-action: manipulation;
}

.runner-canvas {
  display: block;
  width: 100%;
  aspect-ratio: 900 / 260;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  outline: none;
}

.runner-canvas:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(224,122,95,0.55);
}

.runner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: var(--text);
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.6rem, 6vw, 3.2rem);
  text-shadow:
    2px 2px 0 rgba(255,250,243,0.9),
    -2px 2px 0 rgba(255,250,243,0.9),
    2px -2px 0 rgba(255,250,243,0.9),
    -2px -2px 0 rgba(255,250,243,0.9);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s, transform 0.15s;
}

.runner-overlay span {
  position: relative;
  z-index: 1;
}

.runner-overlay.show {
  opacity: 1;
  transform: translateY(0);
}

.runner-overlay.game-over {
  overflow: hidden;
}

.runner-overlay.game-over::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(61,42,26,0.28);
}

.runner-button {
  justify-self: end;
  min-width: 6.5rem;
  background: rgba(255,250,243,0.68);
  color: var(--text-2);
  border: 1.5px dashed rgba(61,42,26,0.18);
  border-radius: 12px;
  box-shadow: none;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.runner-button:hover {
  background: rgba(240,226,198,0.56);
  color: var(--text);
  border-color: rgba(224,122,95,0.35);
  box-shadow: none;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.about-text h2 .pop { color: var(--coral); }
.about-text p { color: var(--text-2); margin-bottom: 1rem; font-size: 1rem; }
.about-text p strong { color: var(--text); }
.about-label { margin-bottom: 1rem; }
.about-side { display: flex; flex-direction: column; gap: 1rem; }

.join-box {
  background: linear-gradient(135deg, rgba(224,122,95,0.1), rgba(105,180,200,0.08));
  border: 1.5px solid rgba(224,122,95,0.22);
  border-radius: 16px;
  padding: 1.3rem 1.4rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.join-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  color: var(--coral);
  background: var(--coral-soft);
  display: flex; align-items: center; justify-content: center;
}

.join-icon svg { width: 18px; height: 18px; }
.join-box strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 0.25rem; }
.join-box span { font-size: 0.84rem; color: var(--text-2); line-height: 1.5; }

/* ── DEVLOG ── */
.devlog-coming-soon {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border-radius: 20px;
  border: 2px dashed rgba(224,122,95,0.35);
  padding: 3.5rem 2.5rem;
  box-shadow: 0 4px 16px var(--shadow);
}

.devlog-coming-soon .cs-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
  margin: 0 auto 1rem;
}

.devlog-coming-soon h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.devlog-coming-soon p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── PIXEL STAGE ── */
.pixel-stage {
  position: relative;
  width: 180px;
  margin: 0 auto 1.5rem;
}

.pixel-stage .cs-icon {
  display: block;
  margin: 0 auto;
  image-rendering: pixelated;
  position: relative;
  z-index: 2;
  animation: px-walk 0.45s steps(2) infinite;
}

@keyframes px-walk {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-4px); }
}

.pixel-ground {
  position: relative;
  z-index: 2;
  height: 4px;
  background: var(--text);
}

.pixel-ground::before {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    var(--text-2) 0px, var(--text-2) 4px,
    transparent 4px, transparent 8px
  );
}

.px-puff {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  background: var(--muted);
  opacity: 0;
  z-index: 3;
  bottom: 8px;
}

.px-p1 { left: 20%; animation: px-puff-rise 0.9s steps(4) infinite 0s; }
.px-p2 { left: 40%; animation: px-puff-rise 0.9s steps(4) infinite 0.3s; }
.px-p3 { left: 12%; animation: px-puff-rise 0.9s steps(4) infinite 0.6s; }

@keyframes px-puff-rise {
  0%   { transform: translate(0, 0);         opacity: 0.75; }
  33%  { transform: translate(-4px, -8px);   opacity: 0.5;  }
  66%  { transform: translate(-8px, -16px);  opacity: 0.25; }
  100% { transform: translate(-10px, -22px); opacity: 0;    }
}

.px-line {
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 0;
  transform-origin: right center;
  background: linear-gradient(to left, var(--muted) 0%, transparent 100%);
  opacity: 0;
  z-index: 1;
}

.px-l1 { width: 32px; top: 42%; left: 6px;  animation: px-zip 0.75s ease-out infinite 0s; }   /* body — widest, right edge at 38px */
.px-l2 { width: 24px; top: 58%; left: 20px; animation: px-zip 0.75s ease-out infinite 0.25s; } /* legs — narrower, right edge at 44px */
.px-l3 { width: 22px; top: 24%; left: 28px; animation: px-zip 0.75s ease-out infinite 0.5s; }  /* head — most tucked in, right edge at 50px */

@keyframes px-zip {
  0%   { opacity: 0;    transform: scaleX(0); }
  12%  { opacity: 0.75; transform: scaleX(1); }
  100% { opacity: 0;    transform: scaleX(0.1); }
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .f-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.footer-brand p { font-size: 0.88rem; color: var(--white-muted); max-width: 260px; line-height: 1.6; margin-bottom: 0.75rem; }
.footer-signup-blurb { font-size: 0.82rem; color: var(--white-muted); margin-bottom: 0.8rem; line-height: 1.5; }
.signup-btn { background: var(--coral); color: var(--white); border: none; border-radius: 8px; padding: 0.55rem 1rem; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: background 0.2s; }
.signup-btn:hover { background: var(--coral-2); }
.footer-mail-link { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--white-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--white-faint);
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .nav { padding: 0.85rem 1.5rem; }
  .container { padding: 0 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .runner-panel { grid-template-columns: 1fr; align-items: start; }
  .runner-scoreboard { justify-content: flex-start; }
}

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

@media (max-width: 640px) {
  html { scroll-padding-top: 68px; }

  .nav {
    padding: 0.7rem 1rem;
  }

  .nav-brand {
    max-width: calc(100% - 56px);
    font-size: clamp(1rem, 5vw, 1.15rem);
    line-height: 1.15;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--nav-bg-mobile);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1.5px dashed var(--coral-line);
    box-shadow: 0 12px 30px rgba(61,42,26,0.08);
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
  }

  .nav-cta {
    display: inline-flex !important;
    justify-content: center;
    margin-top: 0.25rem;
    width: 100%;
    padding: 0.72rem 1rem;
  }

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

  #hero {
    min-height: 100svh;
    padding: 6.5rem 1rem 3rem;
  }

  .hero-title {
    font-size: clamp(2.65rem, 14vw, 3.5rem);
    max-width: 100%;
  }

  .hero-desc {
    max-width: 34rem;
    margin-bottom: 2rem;
  }

  .hero-ctas {
    width: min(100%, 19rem);
    margin: 0 auto;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-label { letter-spacing: 0.14em; }
  .section-blurb { font-size: 0.95rem; }

  .game-body { padding: 1.15rem 1.1rem 1.35rem; }
  .game-thumb { height: 180px; }
  .runner-panel { margin-top: 1.5rem; border-radius: 16px; }
  .runner-frame { border-radius: 10px; }
  .runner-scoreboard { gap: 0.5rem; }
  .runner-scoreboard span { min-width: calc(50% - 0.25rem); }
  .runner-button { width: 100%; }
  .btn { padding: 0.72rem 1.3rem; }
  .btn-sm { width: 100%; text-align: center; }

  .about-grid { gap: 2rem; }
  .join-box { padding: 1.15rem; }
  .devlog-coming-soon { padding: 2.5rem 1.25rem; }
  .pixel-stage { width: min(180px, 100%); }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  footer { padding: 2.75rem 1rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }
}

@media (max-width: 380px) {
  .hero-title { font-size: clamp(2.35rem, 13vw, 2.8rem); }
  .section-title { font-size: 2rem; }
  .section-label { font-size: 0.68rem; gap: 0.35rem; }
  .join-box { flex-direction: column; }
}
