:root {
  --bg: #061015;
  --bg-2: #0a1b22;
  --panel: rgba(13, 31, 39, .82);
  --panel-strong: #0f2630;
  --panel-soft: rgba(255, 255, 255, .055);
  --ink: #f2fff8;
  --muted: #9fb7b8;
  --line: rgba(196, 255, 232, .13);
  --brand: #27e2ad;
  --brand-2: #6ee7ff;
  --accent: #ffcf5a;
  --danger: #ff756d;
  --shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(39, 226, 173, .15), transparent 34rem),
    radial-gradient(circle at 78% 12%, rgba(110, 231, 255, .13), transparent 28rem),
    linear-gradient(180deg, #061015 0%, #08171d 45%, #050c11 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 86%);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(5, 14, 19, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid rgba(39, 226, 173, .24);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(39, 226, 173, .09);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.brand img {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 26px rgba(39, 226, 173, .18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, .08);
  transform: translateY(-1px);
}

.site-nav .nav-action {
  color: #03120f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 28px rgba(39, 226, 173, .22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
  min-height: calc(100vh - 74px);
  padding: clamp(46px, 7vw, 92px) clamp(18px, 6vw, 86px) 58px;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8vw;
  bottom: 8vh;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 207, 90, .10);
  filter: blur(52px);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.lead,
.section-heading p,
.section-copy p,
.final-cta p {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.75;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 720px;
  margin: 28px 0 20px;
  padding: 8px;
  border: 1px solid rgba(39, 226, 173, .20);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

.hero-search label,
.search-panel label {
  display: grid;
  gap: 6px;
}

.hero-search span,
.search-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.hero-search input,
.search-panel input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
  background: rgba(3, 13, 17, .78);
  color: var(--ink);
}

.hero-search input:focus,
.search-panel input:focus {
  border-color: rgba(39, 226, 173, .62);
  box-shadow: 0 0 0 4px rgba(39, 226, 173, .10);
}

.hero-search button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  font-weight: 950;
}

.hero-search button,
.button.primary {
  color: #03120f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 30px rgba(39, 226, 173, .22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 28px;
}

.hub-mascot {
  display: inline-grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin-top: 18px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 207, 90, .26);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 207, 90, .16), rgba(39, 226, 173, .08)),
    rgba(255, 255, 255, .055);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .20);
}

.mascot-face {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 22px 22px 22px 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(39, 226, 173, .10);
  transform-origin: center;
  animation: mascot-bob 3.2s ease-in-out infinite;
}

.mascot-face img {
  width: 118%;
  height: 118%;
  object-fit: cover;
  object-position: center 18%;
}

.hub-mascot strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
}

.hub-mascot small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  line-height: 1.45;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin: 0;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  padding: 18px 18px 0 0;
}

.hero-stats dt {
  color: var(--brand-2);
  font-size: 21px;
  font-weight: 950;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.portal-preview {
  position: relative;
  min-height: 560px;
}

.preview-mascot,
.map-mascot,
.cta-mascot {
  --tilt: -4deg;
  border: 1px solid rgba(233, 255, 246, .72);
  background: #fff;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .34), 0 0 0 10px rgba(39, 226, 173, .10);
  object-fit: cover;
  object-position: center top;
  animation: mascot-float 4.6s ease-in-out infinite;
}

.preview-mascot {
  position: absolute;
  right: -4px;
  bottom: -10px;
  z-index: 3;
  width: clamp(118px, 16vw, 172px);
  aspect-ratio: 1 / 1.18;
  border-radius: 30px 30px 30px 12px;
}

.preview-glow {
  position: absolute;
  inset: 46px 12px 38px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(39, 226, 173, .18), transparent),
    linear-gradient(315deg, rgba(110, 231, 255, .12), rgba(255, 207, 90, .08));
  border: 1px solid var(--line);
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, .34));
}

.preview-card,
.floating-map {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(196, 255, 232, .14);
  border-radius: 22px;
  background: rgba(8, 25, 32, .88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.preview-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: min(94%, 430px);
  padding: 14px;
  animation: float-card 4.8s ease-in-out infinite;
}

.preview-card.active {
  top: 64px;
  right: 26px;
}

.preview-card.ghost {
  left: 8px;
  bottom: 42px;
  opacity: .86;
  animation-delay: .6s;
}

.preview-card img {
  width: 96px;
  height: 78px;
  border-radius: 16px;
  object-fit: cover;
}

.preview-card span,
.featured-card span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
}

.preview-card strong {
  display: block;
  margin: 4px 0;
  font-size: 18px;
}

.preview-card small {
  color: var(--muted);
}

.floating-map {
  top: 205px;
  left: 50px;
  right: 34px;
  min-height: 230px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(39, 226, 173, .12), transparent),
    linear-gradient(45deg, rgba(255, 255, 255, .055) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .055) 50%, rgba(255, 255, 255, .055) 75%, transparent 75%);
  background-size: auto, 42px 42px;
  overflow: hidden;
}

.floating-map strong {
  position: absolute;
  left: 24px;
  bottom: 48px;
  font-size: 24px;
}

.floating-map small {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: var(--muted);
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid #03120f;
  border-radius: 50% 50% 50% 4px;
  background: var(--accent);
  transform: rotate(-45deg);
  animation: pin-pulse 1.8s ease-in-out infinite;
}

.map-pin.pin-a { top: 54px; left: 64%; }
.map-pin.pin-b { top: 106px; left: 32%; animation-delay: .3s; }
.map-pin.pin-c { top: 78px; left: 78%; animation-delay: .7s; }

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 6vw, 86px);
}

.section-heading {
  display: grid;
  gap: 4px;
  max-width: 900px;
  margin-bottom: 28px;
}

.venue-portal,
.owner-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), transparent);
}

.portal-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 16px;
  margin-bottom: 18px;
}

.search-panel,
.portal-note,
.map-card,
.owner-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.search-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chips button {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: var(--muted);
  font-weight: 850;
}

.filter-chips button.active {
  color: #03120f;
  background: var(--brand);
  border-color: var(--brand);
}

.portal-note {
  display: grid;
  align-content: center;
  gap: 8px;
  position: relative;
  min-height: 148px;
  padding: 18px 18px 18px 112px;
  overflow: hidden;
}

.note-mascot {
  position: absolute;
  left: 14px;
  bottom: -10px;
  width: 84px;
  height: 112px;
  border: 1px solid rgba(233, 255, 246, .62);
  border-radius: 24px 24px 8px 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
  object-fit: cover;
  object-position: center top;
}

.portal-note strong {
  color: var(--accent);
  font-size: 18px;
}

.portal-note span {
  color: var(--muted);
  line-height: 1.6;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
}

.venue-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 22px 64px rgba(0, 0, 0, .26);
  transition: transform .2s ease, border-color .2s ease;
}

.venue-card:hover {
  transform: translateY(-4px);
  border-color: rgba(39, 226, 173, .38);
}

.venue-card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.venue-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: image-drift 10s ease-in-out infinite alternate;
}

.venue-logo-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  padding: 7px;
  border: 1px solid rgba(233, 255, 246, .72);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(217, 255, 243, .86));
  box-shadow: 0 18px 36px rgba(0, 0, 0, .28), 0 0 0 8px rgba(39, 226, 173, .12);
}

.venue-logo-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 17px;
  animation: none;
  transform: none;
}

.venue-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 21, .72), transparent 55%);
}

.venue-status {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  color: #03120f;
  background: var(--brand);
  font-size: 12px;
  font-weight: 950;
}

.venue-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.venue-card h3 {
  margin: 0;
  font-size: 24px;
}

.venue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.venue-meta span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .045);
  font-size: 12px;
  font-weight: 850;
}

.venue-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.venue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.venue-actions a,
.venue-actions button {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 12px;
  font-weight: 950;
}

.venue-actions a {
  color: #03120f;
  background: var(--brand);
}

.venue-actions button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .055);
  color: var(--ink);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 18px;
}

.map-board {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 67% 35%, rgba(39, 226, 173, .24), transparent 18%),
    radial-gradient(circle at 36% 59%, rgba(110, 231, 255, .16), transparent 19%),
    linear-gradient(145deg, #102a34, #07161c);
  box-shadow: var(--shadow);
}

.map-mascot {
  --tilt: 4deg;
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  width: clamp(118px, 13vw, 164px);
  aspect-ratio: 1 / 1.12;
  border-radius: 28px 28px 12px 28px;
}

.map-embed-shell {
  position: absolute;
  inset: 14px;
  overflow: hidden;
  border: 1px solid rgba(196, 255, 232, .16);
  border-radius: 22px;
  background: rgba(5, 14, 19, .72);
}

.map-embed-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.88) contrast(.92) brightness(.74);
}

.map-embed-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 16, 21, .18), rgba(6, 16, 21, .34));
}

.map-empty {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--muted);
  font-weight: 850;
}

.map-grid-lines {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: rotate(-9deg);
  opacity: .42;
  pointer-events: none;
}

.venue-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-grid;
  justify-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.venue-pin span {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 6px solid rgba(5, 14, 19, .86);
  border-radius: 50% 50% 50% 8px;
  background: var(--accent);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 8px rgba(255, 207, 90, .15);
}

.venue-pin span img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  border-radius: 5px;
  transform: rotate(45deg);
}

.venue-pin.active span {
  background: var(--brand);
  box-shadow: 0 0 0 10px rgba(39, 226, 173, .18);
}

.venue-pin b {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(5, 14, 19, .74);
  font-size: 12px;
}

.map-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
}

.map-card-media {
  position: relative;
}

.map-card-media > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  object-fit: cover;
}

.map-logo {
  width: 58px;
  height: 58px;
  right: 12px;
  bottom: 12px;
  border-radius: 19px;
}

.map-card p {
  color: var(--muted);
  line-height: 1.65;
}

.featured-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.featured-mascot {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 7px;
  width: 112px;
  padding: 8px 8px 10px;
  border: 1px solid rgba(255, 207, 90, .34);
  border-radius: 24px;
  background: rgba(5, 14, 19, .86);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .32);
  transform: translate(-50%, -50%) rotate(-3deg);
  backdrop-filter: blur(16px);
}

.featured-mascot img {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: #fff;
  object-fit: cover;
  object-position: center top;
}

.featured-mascot span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(180px, .85fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  animation: float-card 5.6s ease-in-out infinite;
}

.featured-card.delay {
  animation-delay: .8s;
}

.featured-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  object-fit: cover;
}

.featured-card p {
  color: var(--muted);
  line-height: 1.7;
}

.owner-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.owner-grid {
  display: grid;
  gap: 14px;
}

.owner-mascot {
  display: inline-grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  max-width: 460px;
  margin-top: 20px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(39, 226, 173, .22);
  border-radius: 24px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .20);
}

.owner-mascot img {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(233, 255, 246, .70);
  border-radius: 22px;
  background: #fff;
  object-fit: cover;
  object-position: center top;
}

.owner-mascot span {
  color: var(--muted);
  line-height: 1.55;
}

.owner-card {
  padding: 18px;
}

.owner-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: #03120f;
  background: var(--brand);
  font-weight: 950;
}

.owner-card p {
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 clamp(18px, 6vw, 86px) clamp(50px, 7vw, 88px);
  padding: clamp(24px, 4vw, 42px) clamp(24px, 4vw, 42px) clamp(24px, 4vw, 42px) clamp(24px, 4vw, 42px);
  border: 1px solid rgba(39, 226, 173, .22);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(39, 226, 173, .15), rgba(110, 231, 255, .07));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.final-cta > div,
.final-cta .button {
  position: relative;
  z-index: 2;
}

.cta-mascot {
  --tilt: 5deg;
  position: absolute;
  right: clamp(142px, 19vw, 260px);
  bottom: -36px;
  z-index: 1;
  width: clamp(92px, 10vw, 132px);
  aspect-ratio: 1 / 1.08;
  border-radius: 24px 24px 8px 24px;
  opacity: .92;
}

.final-cta h2 {
  margin-bottom: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

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

@keyframes image-drift {
  from { transform: scale(1.04) translateX(-1%); }
  to { transform: scale(1.10) translateX(1.5%); }
}

@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 207, 90, .26); }
  50% { box-shadow: 0 0 0 12px rgba(255, 207, 90, 0); }
}

@keyframes mascot-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-6px) rotate(3deg); }
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(var(--tilt)); }
  50% { transform: translateY(-8px) rotate(var(--tilt)); }
}

@media (max-width: 980px) {
  .hero,
  .portal-tools,
  .map-layout,
  .featured-strip,
  .owner-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

  .portal-preview {
    min-height: 500px;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-mascot {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 10px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
    font-size: 18px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand em {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(5, 14, 19, .96);
  }

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

  .hero-search,
  .hero-stats,
  .hub-mascot,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hub-mascot {
    justify-items: start;
  }

  .portal-note {
    min-height: 0;
    padding-left: 98px;
  }

  .note-mascot {
    width: 70px;
    height: 94px;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats div {
    padding-right: 0;
  }

  .portal-preview {
    min-height: 430px;
  }

  .preview-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .preview-card img {
    width: 76px;
    height: 64px;
  }

  .preview-card.active {
    right: 0;
  }

  .floating-map {
    left: 0;
    right: 0;
  }

  .preview-mascot {
    right: 8px;
    bottom: 2px;
    width: 106px;
  }

  .map-board {
    min-height: 430px;
  }

  .map-mascot {
    right: 10px;
    bottom: 10px;
    width: 88px;
  }

  .owner-mascot {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .owner-mascot img {
    width: 68px;
    height: 68px;
  }

  .final-cta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-mascot {
    position: static;
    order: 2;
    width: 94px;
    margin-top: -6px;
  }

  .final-cta .button {
    order: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mascot-face,
  .preview-mascot,
  .map-mascot,
  .cta-mascot {
    animation: none;
  }
}

.cookie-consent {
  position: fixed;
  right: clamp(14px, 3vw, 32px);
  bottom: calc(clamp(14px, 3vw, 28px) + env(safe-area-inset-bottom));
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(620px, calc(100vw - 28px));
  padding: 18px 20px;
  border: 1px solid rgba(110, 231, 255, .24);
  border-radius: 18px;
  background: rgba(10, 27, 34, .96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .44);
  backdrop-filter: blur(18px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent div {
  min-width: 0;
}

.cookie-consent strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-consent button {
  flex: 0 0 auto;
  min-width: 96px;
  min-height: 42px;
  padding: 9px 18px;
  border: 0;
  border-radius: 12px;
  color: #03120f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 900;
}

.cookie-consent button:hover {
  filter: brightness(1.06);
}

@media (max-width: 640px) {
  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: auto;
    padding: 16px;
  }

  .cookie-consent button {
    width: 100%;
  }
}
