:root {
  --ink: #1b1430;
  --sky: #7ecbff;
  --sky-deep: #4aa8f0;
  --cream: #fff6e0;
  --yellow: #ffe14a;
  --pink: #ff7ad9;
  --lime: #b6f25c;
  --coral: #ff6b57;
  --purple: #6d5efc;
  --white: #fffdf8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Nunito, "Trebuchet MS", sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background: var(--cream);
  overflow-x: hidden;
}

a { color: var(--purple); text-decoration: none; }
img { max-width: 100%; display: block; }

h1, .brand, .btn {
  font-family: "Luckiest Guy", "Fredoka", cursive;
  letter-spacing: 0.04em;
}

h2, h3, .nav-links a, .social a {
  font-family: Fredoka, Nunito, sans-serif;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.45em;
  color: var(--ink);
  text-shadow: none;
}

.lead {
  text-align: center;
  max-width: 34em;
  margin: 0 auto 2.2em;
  font-weight: 700;
  font-size: 1.12rem;
}

section { scroll-margin-top: 110px; }

.dark, .grey, .white, .cta, .board, .live-sec, .map-sec, .pc-sec { padding-top: 72px; }

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 64px;
}

.nav {
  position: fixed;
  inset: 14px 16px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 8px 12px 8px 16px;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 999px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.2s ease;
}

.nav.solid { transform: translateY(-2px); }

.brand {
  margin-right: auto;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.nav-links { display: flex; gap: 1px; }
.nav-links a {
  color: var(--ink);
  font-size: 13px;
  padding: 7px 8px;
  border-radius: 999px;
}
.nav-links a:hover {
  background: var(--ink);
  color: var(--yellow);
}

.nav-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff3b4e;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 999px;
  border: 3px solid var(--ink);
}
.nav-live:hover {
  background: #e2263a;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 3px solid var(--ink);
  background: var(--white);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { height: 3px; background: var(--ink); display: block; border-radius: 3px; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #8fd4ff 0%, #5eb7f7 62%, #4aa3ea 100%);
}

.doodle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.cloud {
  width: min(420px, 48vw);
  height: auto;
  animation: floaty 8s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(255, 255, 255, 0.35));
}
.cloud-2 {
  width: min(280px, 34vw);
  animation-delay: -3s;
}
.cloud-3 {
  width: min(360px, 44vw);
  opacity: 0.92;
  animation-delay: -5s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 28px;
  width: min(1120px, calc(100% - 40px));
  padding: 100px 0 40px;
}

.hero-copy { text-align: left; }

.hero h1 {
  font-size: clamp(3rem, 10vw, 6.4rem);
  line-height: 0.95;
  color: var(--yellow);
  -webkit-text-stroke: 0;
  text-shadow:
    3px 3px 0 var(--ink),
    -2px 0 0 var(--ink),
    2px 0 0 var(--ink),
    0 2px 0 var(--ink),
    0 -2px 0 var(--ink);
}

.speech {
  display: block;
  width: fit-content;
  max-width: min(22rem, 100%);
  margin: 18px 0 22px;
  padding: 10px 22px 12px;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 22px 22px 22px 6px;
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--ink);
  text-wrap: balance;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 18px;
  border: 4px solid var(--ink);
  cursor: pointer;
  font-size: 20px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover {
  transform: translate(-2px, -2px) rotate(-2deg);
  box-shadow: 8px 8px 0 var(--ink);
}
.btn:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-ghost { background: var(--pink); }

.hero-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff3b4e;
  color: #fff;
}
.btn-live:hover { color: #fff; }
.hero-photo {
  position: relative;
  z-index: 2;
  justify-self: end;
}
.hero-photo img {
  width: min(420px, 100%);
  height: auto;
  border: 6px solid var(--ink);
  border-radius: 40px;
  box-shadow: 10px 10px 0 var(--ink);
  background: #ff8a3c;
  transform: rotate(3deg);
}

.live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: livepulse 1.4s ease-out infinite;
}

@keyframes livepulse {
  70% { box-shadow: 0 0 0 10px transparent; }
}

.wave {
  display: block;
  width: 100%;
  height: 90px;
}
.wave-cream { background: var(--yellow); margin-bottom: -1px; }

.dark {
  background: #6d5efc;
  color: var(--white);
}
.dark h2 {
  color: #fff;
  text-shadow: 3px 3px 0 var(--ink);
}
.dark .lead { color: #fff; }

.grey {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255, 255, 255, 0.18) 18px, rgba(255, 255, 255, 0.18) 19px),
    #7ecbff;
}
.white { background: var(--cream); }

.live-sec {
  background: var(--cream);
}
.live-frame {
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #0e0e10;
  border: 4px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
}
.live-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-sec {
  background: var(--yellow);
  padding-bottom: 72px;
}
.map-sec h2 { text-align: center; }
.map-sec .lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
  font-weight: 800;
}
.map-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
  max-width: 960px;
  margin: 0 auto;
}
.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 280px;
}
.map-copy {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.map-copy h3 { font-size: 1.5rem; }
.map-copy p { font-weight: 700; }
.map-code {
  font-family: Fredoka, Nunito, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 10px 14px;
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.features article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
  text-align: left;
  background: var(--white);
  color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 18px 16px;
  box-shadow: 7px 7px 0 var(--ink);
}
.features article:nth-child(1) .circle { color: #c9b3ff; }
.features article:nth-child(2) .circle { color: var(--yellow); }
.features article:nth-child(3) .circle { color: var(--lime); }
.features article:nth-child(4) .circle { color: var(--pink); }
.features article:hover { transform: translate(-2px, -2px); }

.circle {
  width: 64px;
  height: 64px;
  margin: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--yellow);
  border: 4px solid var(--ink);
  flex-shrink: 0;
}
.circle svg { width: 32px; height: 32px; }
.features h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.features p { font-weight: 700; font-size: 0.95rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: -8px 0 36px;
  text-align: center;
}
.stats div {
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 16px 8px;
  box-shadow: 5px 5px 0 var(--ink);
}
.stats div:nth-child(2) { background: var(--pink); }
.stats div:nth-child(3) { background: var(--lime); }
.stats div:nth-child(4) { background: var(--white); }
.stats strong {
  display: block;
  font-family: "Luckiest Guy", cursive;
  font-size: 1.7rem;
  color: var(--ink);
}
.stats span {
  font-size: 0.92rem;
  font-weight: 800;
  color: #111;
}

.pc-sec {
  background: var(--yellow);
  padding-bottom: 24px;
}
.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.pc-card {
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 28px;
  padding: 20px 18px 16px;
  box-shadow: 8px 8px 0 var(--ink);
}
.pc-card-stream {
  background: #fffdf8;
}
.pc-badge {
  display: inline-block;
  font-family: Fredoka, Nunito, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  background: var(--lime);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 8px;
}
.pc-card-stream .pc-badge {
  background: var(--pink);
}
.pc-card h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
}
.pc-spec {
  display: grid;
  gap: 8px;
}
.pc-spec div {
  display: grid;
  grid-template-columns: 7.4rem 1fr;
  gap: 10px;
  align-items: center;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 8px 12px;
}
.pc-spec dt {
  font-family: Fredoka, Nunito, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #5a4d86;
}
.pc-spec dd {
  font-weight: 800;
  font-size: 0.95rem;
}

.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.partner {
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 18px 12px;
  display: grid;
  place-items: center;
  flex: 0 0 148px;
  min-height: 108px;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.15s ease;
}
.partner:hover {
  transform: translate(-3px, -3px);
  background: #fff;
}
.partner svg,
.partner-logo {
  width: 56px;
  height: 56px;
  margin: 0;
  display: block;
  object-fit: contain;
}
.partner-logo[alt="Razer"],
.partner-logo[alt="Epic Games"] {
  width: 72px;
  height: 72px;
}
.partner-logo-holy {
  width: 118px;
  height: 42px;
  padding: 8px 10px;
  background: #111;
  border: 3px solid var(--ink);
  border-radius: 14px;
}

.social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.social a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 18px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 700;
  font-size: 15px;
}
.social a:last-child {
  grid-column: 1 / -1;
  justify-content: center;
}
.social svg { width: 26px; height: 26px; flex-shrink: 0; }

.board {
  background: var(--cream);
  padding-top: 40px;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.split h2 { text-align: left; }
.split .lead { text-align: left; margin-left: 0; margin-right: 0; }
.cta-panel {
  background: #1b1430;
  border: 4px solid var(--ink);
  border-radius: 28px;
  padding: 24px 20px 22px;
  box-shadow: 8px 8px 0 var(--ink);
}
.cta-panel h2 {
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--ink);
}
.cta-panel .lead { color: #fff; }
.cta-panel strong { color: var(--yellow); }

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-shop {
  background: var(--yellow);
  color: var(--ink);
}

.support {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: none;
  margin: 0;
}
.support-card {
  background: var(--white);
  color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 18px 16px 16px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--ink);
}
.support-card svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: block;
}
.support-card h3 { margin-bottom: 8px; }
.support-card p {
  font-weight: 700;
  margin-bottom: 18px;
}
.support-card .btn { font-size: 16px; padding: 10px 18px; }

.comments-sec {
  background: var(--cream);
  padding-top: 12px;
}
.comments-sec h2 {
  margin-bottom: 1em;
}
.comments-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}
.comment-form {
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 28px;
  padding: 22px 20px 20px;
  box-shadow: 8px 8px 0 var(--ink);
  display: grid;
  gap: 14px;
}
.comment-form label {
  display: grid;
  gap: 6px;
  font-family: Fredoka, Nunito, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: 16px;
  padding: 10px 12px;
  font-family: Nunito, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: 3px solid var(--purple);
  outline-offset: 1px;
}
.comment-form .btn { justify-self: start; }
.comment-list {
  display: grid;
  gap: 12px;
  max-height: 420px;
  overflow-y: auto;
  padding: 2px 6px 8px 2px;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) #f3e7c4;
  scroll-behavior: smooth;
}
.comment-card {
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 14px 16px;
  box-shadow: 5px 5px 0 var(--ink);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}
.comment-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: Fredoka, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}
.comment-card h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.comment-card time {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #53486d;
  margin-bottom: 6px;
}
.comment-card p {
  font-weight: 700;
  font-size: 0.95rem;
}
.comment-empty {
  background: var(--white);
  border: 4px dashed var(--ink);
  border-radius: 22px;
  padding: 28px 18px;
  text-align: center;
  font-weight: 800;
  color: #53486d;
}

.chat-sec {
  background: var(--cream);
  padding-top: 8px;
}
.chat-box {
  max-width: 760px;
  margin: 0 auto;
  background: #1b1430;
  border: 4px solid var(--ink);
  border-radius: 28px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
}
.chat-tabs {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: #241c3d;
  border-bottom: 4px solid var(--ink);
}
.chat-tab {
  font-family: Fredoka, Nunito, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}
.chat-tab.is-on {
  background: var(--yellow);
}
.chat-panel[hidden] { display: none; }
.chat-log {
  height: 360px;
  overflow-y: auto;
  padding: 16px 10px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #1b1430;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) #241c3d;
  scroll-behavior: smooth;
}
.chat-log::before {
  content: "";
  margin-top: auto;
}

.comment-list::-webkit-scrollbar,
.chat-log::-webkit-scrollbar {
  width: 10px;
}
.comment-list::-webkit-scrollbar-track {
  background: #f3e7c4;
  border-radius: 999px;
  margin: 6px 0;
}
.chat-log::-webkit-scrollbar-track {
  background: #241c3d;
  border-radius: 999px;
  margin: 8px 2px;
  border: 2px solid #1b1430;
}
.comment-list::-webkit-scrollbar-thumb {
  background: var(--ink);
  border-radius: 999px;
  border: 2px solid #f3e7c4;
}
.chat-log::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 999px;
  border: 2px solid #1b1430;
}
.comment-list::-webkit-scrollbar-thumb:hover {
  background: #3a2f58;
}
.chat-log::-webkit-scrollbar-thumb:hover {
  background: #fff08a;
}
.comment-list::-webkit-scrollbar-button,
.chat-log::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.chat-msg {
  max-width: 78%;
  display: grid;
  gap: 2px;
}
.chat-msg.mine { align-self: flex-end; text-align: right; }
.chat-msg.system { align-self: center; max-width: 90%; text-align: center; }
.chat-msg strong {
  font-family: Fredoka, Nunito, sans-serif;
  font-size: 0.82rem;
  color: var(--yellow);
}
.chat-msg.mine strong { color: var(--lime); }
.chat-msg .bubble {
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 18px 18px 18px 6px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.95rem;
}
.chat-msg.mine .bubble {
  background: var(--lime);
  border-radius: 18px 18px 6px 18px;
}
.chat-msg.system .bubble {
  background: #3a2f5c;
  color: #fff;
  border-radius: 18px;
  font-size: 0.88rem;
}
.chat-bar {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 8px;
  padding: 12px;
  background: #241c3d;
  border-top: 4px solid var(--ink);
}
.chat-bar input {
  width: 100%;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 10px 12px;
  font-family: Nunito, sans-serif;
  font-weight: 700;
  background: var(--white);
  color: var(--ink);
}
.chat-bar .btn {
  font-size: 16px;
  padding: 10px 16px;
  box-shadow: 4px 4px 0 var(--ink);
}
.twitch-chat {
  width: 100%;
  height: 460px;
  border: 0;
  background: #0e0e10;
}

.footer {
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  padding: 22px 16px;
  font-size: 15px;
  font-weight: 800;
  border-top: 4px solid var(--ink);
}
.credits {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 12px);
  background: var(--white);
  color: var(--ink);
  border: 4px solid var(--ink);
  padding: 10px 18px;
  border-radius: 18px;
  font-family: Fredoka, Nunito, sans-serif;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 5px 5px 0 var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s linear;
  z-index: 30;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@keyframes floaty {
  50% { transform: translateY(-12px); }
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.comment-card.pop-in,
.chat-msg.pop-in {
  animation: pop-in 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.chat-msg.mine.pop-in {
  animation-name: pop-in-right;
}
@keyframes pop-in-right {
  from {
    opacity: 0;
    transform: translateY(10px) translateX(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

section.will-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
section.will-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html, .comment-list, .chat-log { scroll-behavior: auto; }
  .comment-card.pop-in,
  .chat-msg.pop-in,
  .chat-msg.mine.pop-in { animation: none; }
  section.will-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1200px) {
  .nav-links { display: none; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: var(--yellow);
    border: 4px solid var(--ink);
    border-radius: 22px;
    padding: 12px;
    box-shadow: 6px 6px 0 var(--ink);
  }
  .nav-toggle { display: flex; }
  .nav-live { order: 2; }
  .nav-toggle { order: 3; }
}

@media (max-width: 900px) {
  .features, .stats, .support, .pc-grid { grid-template-columns: 1fr; }
  .partner { flex-basis: 132px; }
  .social { grid-template-columns: 1fr 1fr; }
  .split, .comments-grid, .map-card { grid-template-columns: 1fr; }
  .split h2, .split .lead { text-align: center; }
  .comment-form .btn { justify-self: center; }
  .chat-bar { grid-template-columns: 1fr; }
  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 0 40px;
  }
  .hero-copy { text-align: center; }
  .speech { margin: 18px auto 22px; }
  .hero-actions { justify-content: center; }
  .hero-photo { justify-self: center; }
  .hero-photo img { width: min(280px, 72vw); transform: rotate(2deg); }
}

@media (max-width: 560px) {
  .partners { gap: 10px; }
  .partner { flex-basis: calc(50% - 10px); }
  .social, .stats { grid-template-columns: 1fr 1fr; }
  .nav { inset: 10px 10px auto; }
  .hero h1 { font-size: 2.6rem; }
  .pc-spec div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
