:root {
  color-scheme: dark;
  --ink: #050917;
  --night: #07132d;
  --blue: #1e67ff;
  --cyan: #39e8ff;
  --violet: #956dff;
  --lime: #bfff47;
  --paper: #f7fbff;
  --muted: #a8b5ce;
  --line: rgba(186, 229, 255, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #02050d;
  color: var(--paper);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

.site-shell {
  isolation: isolate;
  position: relative;
  width: min(100vw, 1920px);
  height: min(100svh, 1080px);
  min-height: 620px;
  margin: auto;
  overflow: hidden;
  background: var(--ink);
}

.scene-background,
.scene-vignette,
.scene-grain,
.cursor-glow,
.fireflies,
.flash,
.shutter-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scene-background {
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.03) brightness(0.78);
  transform: scale(1.03);
  animation: background-breathe 14s ease-in-out infinite alternate;
}

.scene-vignette {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(2, 5, 15, 0.94) 0%, rgba(2, 7, 22, 0.76) 33%, rgba(2, 8, 24, 0.12) 67%, rgba(2, 5, 15, 0.32) 100%),
    linear-gradient(180deg, rgba(2, 5, 15, 0.34), transparent 35%, rgba(2, 5, 15, 0.72));
}

.scene-grain {
  z-index: 7;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
}

.cursor-glow {
  z-index: -2;
  --mouse-x: 75vw;
  --mouse-y: 48vh;
  background: radial-gradient(360px circle at var(--mouse-x) var(--mouse-y), rgba(70, 229, 255, 0.14), transparent 68%);
}

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 94px;
  padding: 0 clamp(32px, 4.4vw, 84px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(3, 8, 22, 0.88), rgba(3, 8, 22, 0.42));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.brand img {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(72, 228, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(57, 232, 255, 0.16);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.brand-copy small {
  color: #93a9ca;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.21em;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 9px;
  justify-self: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(4, 10, 26, 0.58);
  color: #ffffff;
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow: inset 0 0 20px rgba(57, 232, 255, 0.04);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff334f;
  box-shadow: 0 0 0 4px rgba(255, 51, 79, 0.12), 0 0 12px #ff334f;
  animation: rec-pulse 1.3s ease-in-out infinite;
}

.status-time {
  color: var(--cyan);
  min-width: 56px;
}

.social-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
}

.nav-link,
.ca-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(4, 11, 30, 0.72);
  color: #eaf8ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.075em;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-link:hover,
.ca-button:hover,
.nav-link:focus-visible,
.ca-button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(89, 234, 255, 0.72);
  background: rgba(8, 24, 57, 0.88);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26), 0 0 24px rgba(57, 232, 255, 0.12);
  outline: none;
}

.nav-link-accent {
  color: #142600;
  border-color: rgba(191, 255, 71, 0.7);
  background: var(--lime);
  box-shadow: 0 0 22px rgba(191, 255, 71, 0.12);
}

.nav-link-accent:hover,
.nav-link-accent:focus-visible {
  color: #0c1c00;
  border-color: #e4ffae;
  background: #d0ff75;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26), 0 0 25px rgba(191, 255, 71, 0.24);
}

.nav-icon {
  font-size: 16px;
  line-height: 1;
}

.ca-button {
  color: var(--cyan);
}

.ca-button strong {
  color: #ffffff;
}

.ca-button.is-copied {
  color: #061300;
  background: var(--lime);
  border-color: var(--lime);
  animation: copy-pop 420ms ease;
}

.ca-button.is-copied strong {
  color: #061300;
}

.copy-mark {
  margin-left: 2px;
  opacity: 0.65;
}

.hero {
  position: absolute;
  inset: 94px 0 52px;
  display: grid;
  grid-template-columns: minmax(520px, 47%) minmax(0, 53%);
  align-items: stretch;
}

.hero-copy {
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.3vw, 64px) 0 clamp(22px, 2vw, 38px) clamp(44px, 6.3vw, 120px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 13px;
  color: var(--cyan);
  font-family: "Courier New", monospace;
  font-size: clamp(10px, 0.7vw, 13px);
  font-weight: 800;
  letter-spacing: 0.17em;
}

.eyebrow-line {
  width: 42px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hero-title {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(104px, 9vw, 174px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.78;
  text-transform: uppercase;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.38));
}

.title-frog {
  color: #f5fbff;
  -webkit-text-stroke: 2px rgba(1, 7, 21, 0.44);
}

.title-pro {
  position: relative;
  color: var(--lime);
  transform: rotate(-4deg) translateY(8px);
  text-shadow: 5px 5px 0 #17430d, 0 0 34px rgba(191, 255, 71, 0.18);
}

.title-pro::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -18px;
  width: 82%;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(57, 232, 255, 0.48);
  transform: skewX(-22deg);
}

.hero-kicker {
  max-width: 680px;
  margin: 28px 0 11px;
  color: #ffffff;
  font-family: "Courier New", monospace;
  font-size: clamp(13px, 1vw, 19px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: #c0cce0;
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--cyan), #4fb7ff);
  color: #041226;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.11em;
  box-shadow: 0 12px 34px rgba(20, 137, 255, 0.25), inset 0 -3px 0 rgba(4, 24, 48, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.primary-action:hover,
.primary-action:focus-visible {
  transform: translateY(-4px) rotate(-1deg);
  filter: brightness(1.08);
  box-shadow: 0 16px 42px rgba(20, 137, 255, 0.38), inset 0 -3px 0 rgba(4, 24, 48, 0.2);
  outline: none;
}

.action-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff294f;
  box-shadow: 0 0 10px rgba(255, 41, 79, 0.6);
}

.micro-note {
  max-width: 170px;
  color: #8497b7;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
}

.lore-card {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  width: min(650px, 90%);
  margin-top: clamp(25px, 3.2vh, 38px);
  padding: 19px 22px 19px 18px;
  border: 1px solid rgba(93, 224, 255, 0.22);
  border-radius: 19px;
  background: linear-gradient(115deg, rgba(5, 18, 43, 0.78), rgba(5, 12, 30, 0.48));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(13px);
}

.lore-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 26px;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 15px var(--cyan);
}

.lore-number {
  display: grid;
  place-items: center;
  align-self: start;
  aspect-ratio: 1;
  border: 1px solid rgba(191, 255, 71, 0.36);
  border-radius: 15px;
  background: rgba(191, 255, 71, 0.08);
  color: var(--lime);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 29px;
  letter-spacing: 0.04em;
}

.card-label {
  margin: 0 0 7px !important;
  color: var(--cyan) !important;
  font-family: "Courier New", monospace;
  font-size: 10px !important;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.lore-card p {
  margin: 0;
  color: #bdc9dc;
  font-size: clamp(12px, 0.78vw, 15px);
  line-height: 1.52;
}

.lore-card strong {
  color: #ffffff;
}

.visual-zone {
  position: relative;
  min-width: 0;
}

.character-button {
  position: absolute;
  z-index: 5;
  right: -1.5%;
  bottom: -11%;
  width: min(54vw, 1030px);
  aspect-ratio: 1305 / 1205;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: crosshair;
  filter: drop-shadow(0 32px 34px rgba(0, 0, 0, 0.42));
}

.character-button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -18px;
  border-radius: 42px;
}

.frog-parallax,
.frog-stage {
  position: absolute;
  inset: 0;
  display: block;
  transform-origin: 58% 72%;
}

.frog-parallax {
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 180ms ease-out;
}

.frog-stage {
  animation: frog-float 5.4s ease-in-out infinite;
}

.frog-stage.is-reacting {
  animation: frog-react 680ms cubic-bezier(0.2, 0.9, 0.25, 1);
}

.frog-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  animation: frog-breathe 3.2s ease-in-out infinite;
}

.camera-live {
  position: absolute;
  z-index: 4;
  left: 77.1%;
  top: 10.5%;
  width: 10.2%;
  height: 12.9%;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.72);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(3, 9, 25, 0.08), rgba(3, 9, 25, 0.4)),
    url("assets/frogpro-forest-bg.webp") 78% 46% / 480% auto;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.48), 0 0 8px rgba(57, 232, 255, 0.25);
  transform: rotate(3deg) skewY(0.8deg);
}

.camera-live::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 33%, transparent 66%, rgba(89, 229, 255, 0.12));
}

.mini-rec {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: clamp(4px, 0.36vw, 7px);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.mini-rec i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff2447;
  box-shadow: 0 0 5px #ff2447;
  animation: rec-pulse 1s ease-in-out infinite;
}

.character-shadow {
  position: absolute;
  z-index: -1;
  left: 17%;
  right: 5%;
  bottom: 4%;
  height: 14%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  filter: blur(26px);
  transform: rotate(-4deg);
}

.focus-corner {
  position: absolute;
  z-index: 9;
  width: 42px;
  height: 42px;
  opacity: 0.42;
  transition: opacity 180ms ease, transform 180ms ease;
}

.focus-a {
  top: 15%;
  left: 13%;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.focus-b {
  top: 15%;
  right: 5%;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.focus-c {
  bottom: 13%;
  left: 13%;
  border-bottom: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.focus-d {
  right: 5%;
  bottom: 13%;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
}

.character-button:hover .focus-corner,
.character-button:focus-visible .focus-corner {
  opacity: 0.95;
  transform: scale(1.16);
}

.signal-ring {
  position: absolute;
  z-index: 0;
  right: 11%;
  top: 21%;
  width: 46%;
  aspect-ratio: 1;
  border: 1px solid rgba(57, 232, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(57, 232, 255, 0.08), inset 0 0 50px rgba(57, 232, 255, 0.04);
  animation: ring-pulse 4s ease-in-out infinite;
}

.signal-ring-two {
  right: 17%;
  top: 27%;
  width: 34%;
  border-color: rgba(149, 109, 255, 0.22);
  animation-delay: -2s;
}

.visual-tag {
  position: absolute;
  z-index: 12;
  padding: 8px 11px;
  border: 1px solid rgba(57, 232, 255, 0.28);
  border-radius: 9px;
  background: rgba(2, 11, 28, 0.72);
  color: #a4dfff;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  backdrop-filter: blur(8px);
}

.visual-tag-top {
  top: 13%;
  right: 9%;
  transform: rotate(2deg);
}

.visual-tag-side {
  right: 2.5%;
  bottom: 18%;
  transform: rotate(-3deg);
}

.record-counter {
  position: absolute;
  z-index: 14;
  right: 4%;
  bottom: 7%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(4, 11, 28, 0.72);
  color: #94a9c7;
  font-family: "Courier New", monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  backdrop-filter: blur(8px);
}

.record-counter strong {
  color: var(--lime);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 19px;
  letter-spacing: 0.05em;
}

.footer-strip {
  position: absolute;
  z-index: 18;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 52px;
  padding: 0 clamp(32px, 4.4vw, 84px);
  border-top: 1px solid var(--line);
  background: rgba(3, 8, 22, 0.78);
  color: #8194b4;
  font-family: "Courier New", monospace;
  font-size: clamp(8px, 0.58vw, 11px);
  font-weight: 800;
  letter-spacing: 0.11em;
  backdrop-filter: blur(14px);
}

.footer-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(57, 232, 255, 0.42), rgba(149, 109, 255, 0.14));
}

.fireflies {
  z-index: 1;
}

.fireflies i {
  --x: 50%;
  --y: 50%;
  --delay: 0s;
  --drift: 24px;
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d8ff76;
  box-shadow: 0 0 8px #d8ff76, 0 0 18px rgba(216, 255, 118, 0.7);
  animation: firefly 4.2s var(--delay) ease-in-out infinite;
}

.flash {
  z-index: 40;
  opacity: 0;
  background: #dffaff;
}

.flash.is-active {
  animation: camera-flash 620ms ease-out;
}

.shutter-lines {
  z-index: 39;
  opacity: 0;
  background: repeating-radial-gradient(circle at 76% 43%, transparent 0 50px, rgba(57, 232, 255, 0.42) 52px 54px, transparent 56px 86px);
}

.shutter-lines.is-active {
  animation: shutter-wave 720ms ease-out;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(191, 255, 71, 0.55);
  border-radius: 14px;
  background: rgba(5, 17, 35, 0.96);
  color: #ffffff;
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42), 0 0 28px rgba(191, 255, 71, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 22px) scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime);
  color: #0a1c00;
  font-weight: 900;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

@keyframes background-breathe {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-0.4%, -0.25%, 0); }
}

@keyframes frog-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.5deg); }
  50% { transform: translate3d(0, -13px, 0) rotate(0.8deg); }
}

@keyframes frog-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.006); }
}

@keyframes frog-react {
  0% { transform: translate3d(0, 0, 0) rotate(0); }
  28% { transform: translate3d(-8px, -28px, 0) rotate(-2.5deg) scale(1.025); }
  55% { transform: translate3d(8px, -8px, 0) rotate(2deg) scale(0.995); }
  100% { transform: translate3d(0, 0, 0) rotate(0); }
}

@keyframes rec-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.78); }
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(0.92); opacity: 0.28; }
  50% { transform: scale(1.08); opacity: 0.72; }
}

@keyframes firefly {
  0%, 100% { opacity: 0.15; transform: translate3d(0, 0, 0) scale(0.65); }
  42% { opacity: 1; transform: translate3d(var(--drift), -14px, 0) scale(1.15); }
  72% { opacity: 0.52; transform: translate3d(calc(var(--drift) * -0.35), -28px, 0) scale(0.82); }
}

@keyframes copy-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.08) rotate(-2deg); }
  100% { transform: scale(1); }
}

@keyframes camera-flash {
  0% { opacity: 0; }
  7% { opacity: 0.88; }
  16% { opacity: 0.12; }
  26% { opacity: 0.45; }
  100% { opacity: 0; }
}

@keyframes shutter-wave {
  0% { opacity: 0; transform: scale(0.72); }
  18% { opacity: 0.72; }
  100% { opacity: 0; transform: scale(1.36); }
}

@media (max-width: 1280px) {
  .topbar { padding-inline: 34px; }
  .hero { grid-template-columns: 50% 50%; }
  .hero-copy { padding-left: 54px; }
  .hero-title { font-size: clamp(92px, 9.2vw, 125px); gap: 12px; }
  .character-button { width: 58vw; right: -5%; bottom: -7%; }
  .lore-card { width: 96%; }
  .nav-link span:nth-child(2) { display: none; }
}

@media (max-width: 900px), (max-height: 680px) {
  .site-shell { min-height: 0; }
  .topbar { height: 72px; padding-inline: 18px; grid-template-columns: 1fr auto; }
  .brand img { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small, .live-status { display: none; }
  .social-nav { gap: 6px; }
  .nav-link, .ca-button { min-height: 38px; padding-inline: 10px; }
  .hero { inset: 72px 0 40px; grid-template-columns: 56% 44%; }
  .hero-copy { padding: 24px 0 18px 30px; }
  .hero-title { font-size: clamp(64px, 11vw, 96px); }
  .hero-kicker { margin-top: 18px; }
  .hero-lead { max-width: 440px; font-size: 13px; }
  .hero-actions { margin-top: 15px; }
  .primary-action { min-height: 44px; padding-inline: 16px; }
  .micro-note { display: none; }
  .lore-card { margin-top: 18px; padding: 14px; grid-template-columns: 48px 1fr; gap: 12px; }
  .lore-card p { font-size: 11px; }
  .character-button { width: 62vw; right: -14%; bottom: -2%; }
  .visual-tag, .record-counter { display: none; }
  .footer-strip { height: 40px; padding-inline: 24px; }
}

@media (max-width: 680px) {
  body { overflow: auto; }
  .site-shell { width: 100%; height: 100svh; min-height: 700px; }
  .topbar { grid-template-columns: 1fr auto; }
  .nav-link { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { justify-content: flex-start; padding: 44px 22px 0; }
  .hero-title { font-size: clamp(66px, 21vw, 104px); }
  .hero-kicker { max-width: 90%; font-size: 12px; }
  .hero-lead { max-width: 78%; font-size: 12px; line-height: 1.45; }
  .lore-card { display: none; }
  .character-button { width: 92vw; right: -18%; bottom: -7%; }
  .primary-action { font-size: 10px; }
  .footer-strip span:first-child, .footer-rule { display: none; }
  .footer-strip { justify-content: center; }
  .scene-vignette { background: linear-gradient(180deg, rgba(2, 5, 15, 0.82), rgba(2, 5, 15, 0.22) 57%, rgba(2, 5, 15, 0.78)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .frog-parallax {
    transform: none !important;
  }
}
