:root {
  --bg: #f4f7fb;
  --bg-soft: #e7eef7;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #f3f7fc;
  --ink: #0f1f38;
  --muted: #5d6f89;
  --line: rgba(146, 165, 193, 0.36);
  --line-strong: rgba(94, 122, 163, 0.24);
  --accent: #eb6a3c;
  --accent-dark: #c64b24;
  --accent-cool: #214f94;
  --accent-steel: #7288a7;
  --shadow: 0 24px 60px rgba(15, 31, 56, 0.11);
  --shadow-soft: 0 14px 34px rgba(15, 31, 56, 0.08);
  --radius: 22px;
  --radius-sm: 16px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(33, 79, 148, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(235, 106, 60, 0.1), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 44%, var(--bg-soft) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(33, 79, 148, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 79, 148, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.32;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.62), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(33, 79, 148, 0.08), transparent 24%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(33, 79, 148, 0.22);
  outline-offset: 3px;
}

.site-header,
.site-footer,
.section,
.page-hero,
.marquee {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0.85rem;
  z-index: 20;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, var(--accent-cool), #17396a);
  color: #fff9ef;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 0 0 1px rgba(255, 249, 239, 0.2),
    0 10px 24px rgba(33, 79, 148, 0.2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brand-copy strong {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.98rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(243, 247, 252, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.site-nav a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(33, 79, 148, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(132, 33, 13, 0.26);
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  background: linear-gradient(180deg, #cc4d27, #a93418);
  color: #ffffff;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
  letter-spacing: 0.01em;
  font-size: 0.96rem;
  line-height: 1.1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 30px rgba(216, 74, 34, 0.2);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 34px rgba(216, 74, 34, 0.24);
}

.button:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 3px rgba(0, 0, 0, 0.14),
    0 10px 20px rgba(216, 74, 34, 0.18);
}

.button-secondary,
.button-ghost {
  color: var(--accent-cool);
  background:
    linear-gradient(180deg, rgba(33, 79, 148, 0.08), rgba(33, 79, 148, 0.02)),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(33, 79, 148, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 24px rgba(33, 79, 148, 0.1);
}

.button-secondary:hover,
.button-ghost:hover {
  color: #0f2444;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 16px 30px rgba(33, 79, 148, 0.14);
}

.button-secondary:active,
.button-ghost:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 3px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(33, 79, 148, 0.1);
}

.hero,
.event-hero {
  width: min(calc(100% - 2rem), 1320px);
  margin: 0 auto;
  padding: 3.25rem 0 4.6rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: start;
}

.hero {
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 3%;
  top: 4%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px dashed rgba(30, 77, 143, 0.18);
  opacity: 0.8;
  pointer-events: none;
}

.hero-copy,
.event-hero-copy,
.page-hero {
  animation: fade-up 680ms ease both;
}

.hero h1,
.page-hero h1,
.event-hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.page-hero {
  margin-top: 1.85rem;
  padding: 2.25rem clamp(1.15rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(180deg, rgba(33, 79, 148, 0.08), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-cool);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.78;
}

.hero-actions,
.inline-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-stage {
  position: relative;
  min-height: 32rem;
  display: grid;
  place-items: center;
}

.vendor-ad-bubble {
  position: absolute;
  left: 8rem;
  top: -18rem;
  width: 14.5rem;
  min-height: 16.5rem;
  z-index: 5;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(30, 77, 143, 0.16);
  background: rgba(249, 251, 254, 0.9);
  box-shadow: 0 18px 36px rgba(17, 33, 59, 0.12);
  transform: rotate(-4deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.vendor-ad-bubble-secondary {
  left: -10rem;
  top: -17rem;
  transform: rotate(5deg);
}

.vendor-ad-bubble:hover {
  transform: rotate(-2deg) translateY(-3px);
  box-shadow: 0 24px 42px rgba(17, 33, 59, 0.16);
}

.vendor-ad-bubble-secondary:hover {
  transform: rotate(7deg) translateY(-3px);
}

.hero-ad-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  color: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.hero-ad-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.vendor-ad-visual {
  min-height: 9.4rem;
  border-bottom: 1px solid rgba(30, 77, 143, 0.12);
}

.vendor-ad-overlay {
  padding: 0.95rem 1rem 1.05rem;
  display: grid;
  gap: 0.55rem;
}

.vendor-ad-kicker,
.vendor-ad-meta {
  margin: 0;
}

.vendor-ad-kicker {
  color: var(--accent-cool);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 800;
}

.vendor-ad-overlay h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1;
  font-family: "Arial Narrow", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
}

.vendor-ad-meta {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-ad-dots {
  position: absolute;
  right: 0.9rem;
  bottom: 0.8rem;
  display: inline-flex;
  gap: 0.35rem;
  z-index: 4;
}

.hero-ad-dot {
  width: 0.72rem;
  height: 0.72rem;
  border: none;
  border-radius: 50%;
  background: rgba(30, 77, 143, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-ad-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.hero-mural {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.mural-grid {
  position: absolute;
  inset: 6% 6% 10% 6%;
  border-radius: 1.5rem;
  border: 1px dashed rgba(30, 77, 143, 0.14);
  background:
    linear-gradient(rgba(30, 77, 143, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 77, 143, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}

.saturn-v {
  position: absolute;
  left: -2%;
  top: 23%;
  width: 42rem;
  height: 6.8rem;
  border-radius: 3.8rem;
  transform: rotate(-18deg);
  background:
    linear-gradient(180deg, rgba(17, 33, 59, 0.18), rgba(255, 255, 255, 0.9) 18%, rgba(243, 247, 252, 0.98) 50%, rgba(195, 205, 219, 0.94) 82%, rgba(17, 33, 59, 0.18));
  box-shadow:
    0 22px 38px rgba(17, 33, 59, 0.12),
    inset 0 0 0 1px rgba(17, 33, 59, 0.08);
  opacity: 0.55;
  animation: rocket-flyby 12s ease-in-out infinite alternate;
}

.saturn-v::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -4.6rem;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 3.45rem solid transparent;
  border-bottom: 3.45rem solid transparent;
  border-left: 4.9rem solid rgba(240, 244, 250, 0.98);
  filter: drop-shadow(0 6px 10px rgba(17, 33, 59, 0.1));
}

.saturn-v::after {
  content: "";
  position: absolute;
  left: -4.2rem;
  top: 50%;
  width: 4rem;
  height: 4rem;
  transform: translateY(-50%);
  border-radius: 2rem 0 0 2rem;
  background:
    linear-gradient(180deg, rgba(17, 33, 59, 0.16), rgba(240, 244, 250, 0.94) 18%, rgba(210, 220, 232, 0.96) 82%, rgba(17, 33, 59, 0.16));
  box-shadow: inset 0 0 0 1px rgba(17, 33, 59, 0.08);
}

.rocket-band,
.rocket-window {
  position: absolute;
  left: 0;
  right: 0;
}

.rocket-band {
  top: 0.6rem;
  bottom: 0.6rem;
  width: 0.95rem;
  background: linear-gradient(180deg, rgba(16, 31, 58, 0.95), rgba(39, 65, 109, 0.88));
}

.rocket-band-top {
  left: 8rem;
}

.rocket-band-mid {
  left: 21rem;
}

.rocket-band-low {
  left: 33rem;
}

.rocket-window {
  top: 50%;
  left: auto;
  right: 6.6rem;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(30, 77, 143, 0.88);
  box-shadow: 0 0 0 0.24rem rgba(249, 251, 254, 0.82);
}

.rocket-plume {
  position: absolute;
  left: -10%;
  top: 18%;
  width: 38rem;
  height: 11rem;
  background:
    radial-gradient(circle at 88% 50%, rgba(255, 243, 214, 0.92), rgba(255, 190, 94, 0.7) 10%, rgba(228, 87, 46, 0.25) 18%, transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.55) 42%, rgba(255, 205, 126, 0.48) 72%, rgba(228, 87, 46, 0.08) 100%);
  transform: rotate(-18deg);
  filter: blur(12px);
  opacity: 0.68;
  animation: rocket-flyby 12s ease-in-out infinite alternate;
}

.hobby-piece {
  position: absolute;
  box-shadow: var(--shadow);
}

.hobby-card,
.hobby-slab,
.hobby-pack {
  display: grid;
  place-items: start;
  padding: 0.65rem;
}

.hobby-card,
.hobby-slab {
  width: 8.2rem;
  aspect-ratio: 0.72;
  border-radius: 1rem;
  border: 1px solid rgba(30, 77, 143, 0.18);
}

.hobby-card span,
.hobby-slab span,
.hobby-pack span {
  padding: 0.28rem 0.45rem;
  border-radius: 999px;
  background: rgba(249, 251, 254, 0.84);
  color: var(--accent-cool);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hobby-card::before,
.hobby-card::after,
.hobby-slab::before,
.hobby-pack::before {
  content: "";
  position: absolute;
}

.hobby-card::before,
.hobby-slab::before {
  inset: 22% 12% 12% 12%;
  border-radius: 0.85rem;
}

.hobby-card::after {
  left: 18%;
  right: 18%;
  bottom: 14%;
  height: 10%;
  border-radius: 999px;
  background: rgba(249, 251, 254, 0.5);
}

.hobby-card-a {
  right: 5%;
  top: 14%;
  transform: rotate(11deg);
  background:
    linear-gradient(180deg, rgba(79, 111, 152, 0.14), rgba(249, 251, 254, 0.96)),
    var(--surface);
}

.hobby-card-a::before {
  background:
    radial-gradient(circle at 70% 26%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(180deg, #5f80aa, #314f79);
}

.hobby-card-b {
  right: 18%;
  bottom: 10%;
  transform: rotate(-8deg);
  background:
    linear-gradient(180deg, rgba(122, 112, 187, 0.16), rgba(249, 251, 254, 0.96)),
    var(--surface);
}

.hobby-card-b::before {
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.36), transparent 18%),
    linear-gradient(180deg, #7d70bd, #4d3f8a);
}

.hobby-slab {
  right: 30%;
  top: 30%;
  transform: rotate(-12deg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(219, 228, 240, 0.96));
  box-shadow:
    0 18px 28px rgba(17, 33, 59, 0.12),
    inset 0 0 0 2px rgba(249, 251, 254, 0.72);
}

.hobby-slab::before {
  background:
    radial-gradient(circle at 60% 26%, rgba(255, 255, 255, 0.3), transparent 18%),
    linear-gradient(180deg, #48647e, #7aa1be);
}

.hobby-token {
  right: 7%;
  bottom: 24%;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.44), transparent 18%),
    linear-gradient(180deg, #f1bc5c, #d8882e);
  border: 4px solid rgba(249, 251, 254, 0.86);
}

.hobby-pack {
  left: 12%;
  bottom: 8%;
  width: 6.2rem;
  height: 10.4rem;
  transform: rotate(8deg);
  border-radius: 0.85rem;
  border: 1px solid rgba(228, 87, 46, 0.18);
  background:
    linear-gradient(180deg, rgba(228, 87, 46, 0.16), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.hobby-pack::before {
  inset: 18% 14% 14% 14%;
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(180deg, #ef7d4e, #c84e29);
}

.hero-orbit {
  display: none;
}

.hero-orbit-a {
  inset: 15% 18% auto auto;
  width: 13rem;
  height: 13rem;
  background: radial-gradient(circle, rgba(27, 199, 255, 0.32), transparent 68%);
}

.hero-orbit-b {
  inset: auto auto 8% 8%;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(255, 157, 31, 0.28), transparent 70%);
  animation-delay: -2s;
}

@keyframes rocket-flyby {
  0% {
    transform: rotate(-18deg) translate3d(-1.5rem, 1rem, 0);
  }

  100% {
    transform: rotate(-18deg) translate3d(3rem, -1.4rem, 0);
  }
}

.hero-panel,
.availability-panel,
.event-card,
.spotlight-card,
.package-card,
.mock-panel,
.content-block,
.calendar-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-panel {
  width: min(100%, 31rem);
  padding: 1.85rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(33, 79, 148, 0.08), rgba(33, 79, 148, 0)),
    var(--surface);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.75rem;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(180deg, var(--accent-cool), var(--accent));
}

.poster-copy h2,
.section h2,
.content-block h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1.03;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.poster-copy p,
.section p,
.content-block p,
.package-card p,
.event-card p,
.mock-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.poster-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.poster-stats div {
  padding: 0.9rem 0.75rem;
  border-radius: 1.15rem;
  background: var(--surface-strong);
  border: 1px solid rgba(33, 79, 148, 0.14);
}

.poster-stats span {
  display: block;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--ink);
}

.poster-stats small {
  color: var(--muted);
}

.marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.6rem;
  padding: 1.2rem 0 0;
  color: rgba(17, 33, 59, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.quick-links {
  gap: 0.75rem;
  padding-top: 0;
}

.quick-links a {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(33, 79, 148, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 4rem 0;
}

.utility-grid,
.info-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.utility-card,
.info-panel {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.utility-card-primary {
  grid-column: span 3;
  background:
    linear-gradient(180deg, rgba(30, 77, 143, 0.08), rgba(30, 77, 143, 0)),
    var(--surface);
}

.utility-card a,
.link-stack a {
  color: var(--accent-cool);
  font-weight: 700;
}

.link-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.link-stack a {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(30, 77, 143, 0.16);
  background: var(--surface-strong);
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.section-heading h2,
.section-heading p {
  margin: 0;
}

.status-board {
  padding-top: 1.25rem;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.status-card {
  padding: 1rem 1rem 1.1rem;
  border: 1px solid rgba(33, 79, 148, 0.16);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(33, 79, 148, 0.08), rgba(33, 79, 148, 0)),
    var(--surface);
  box-shadow: var(--shadow);
}

.status-card small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.status-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.split-section,
.event-layout,
.portal-layout,
.contact-layout,
.event-content-grid,
.dual-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-list,
.vendor-lanes,
.timeline,
.event-list,
.package-grid {
  display: grid;
  gap: 1rem;
}

.feature-list article,
.vendor-lanes article,
.timeline article,
.requirements-strip article {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(19, 35, 60, 0.1);
}

.feature-list article:first-child,
.vendor-lanes article:first-child,
.timeline article:first-child {
  border-top: none;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.spotlight-card,
.event-card,
.package-card,
.mock-panel,
.content-block {
  padding: 1.45rem;
}

[data-page="vendors"] .portal-layout,
[data-page="contact"] .contact-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

[data-page="vendors"] .vendor-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spotlight-card-wide {
  grid-column: span 3;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline article {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--surface-strong);
}

.timeline span {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.vendor-showcase .vendor-lanes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.vendor-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.vendor-feature-card,
.finder-card,
.guide-card,
.spotlight-panel,
.promo-flyer,
.booth-map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.vendor-feature-card,
.finder-card {
  overflow: hidden;
}

.vendor-photo {
  position: relative;
  min-height: 14rem;
  border-bottom: 1px solid rgba(30, 77, 143, 0.16);
  background-color: #cad9ec;
  overflow: hidden;
}

.vendor-photo::before,
.vendor-photo::after {
  content: "";
  position: absolute;
  inset: auto;
}

.vendor-photo::before {
  left: -8%;
  right: -8%;
  bottom: -12%;
  height: 56%;
  background:
    linear-gradient(180deg, rgba(17, 33, 59, 0.12), rgba(17, 33, 59, 0.24)),
    linear-gradient(90deg, rgba(249, 251, 254, 0.82) 0 18%, transparent 18% 22%, rgba(249, 251, 254, 0.82) 22% 40%, transparent 40% 44%, rgba(249, 251, 254, 0.82) 44% 62%, transparent 62% 66%, rgba(249, 251, 254, 0.82) 66% 84%, transparent 84% 88%, rgba(249, 251, 254, 0.82) 88% 100%);
  transform: perspective(800px) rotateX(64deg);
  border-top: 1px solid rgba(17, 33, 59, 0.08);
}

.vendor-photo::after {
  left: 18%;
  top: 18%;
  width: 64%;
  height: 56%;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 22px 34px rgba(17, 33, 59, 0.2);
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(249, 251, 254, 0.42), rgba(17, 33, 59, 0.08));
}

.vendor-photo span {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(249, 251, 254, 0.9);
  color: var(--accent-cool);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vendor-photo-a {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.38), transparent 18%),
    linear-gradient(135deg, #4f6f98 0%, #7e98bb 44%, #d0dceb 100%);
}

.vendor-photo-b {
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.34), transparent 20%),
    linear-gradient(135deg, #2f5f97 0%, #6090c2 42%, #dce7f5 100%);
}

.vendor-photo-c {
  background:
    radial-gradient(circle at 28% 16%, rgba(255, 255, 255, 0.32), transparent 18%),
    linear-gradient(135deg, #435f7f 0%, #7e8fa7 40%, #d9e3ee 100%);
}

.vendor-photo-d {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.3), transparent 20%),
    linear-gradient(135deg, #5d4d86 0%, #8798cb 42%, #dde6fb 100%);
}

.vendor-photo-e {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(135deg, #486775 0%, #7ea8b6 40%, #dfebef 100%);
}

.vendor-feature-body {
  padding: 1rem 1rem 1.1rem;
  display: grid;
  gap: 0.85rem;
}

.vendor-headline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.75rem;
}

.vendor-headline h3,
.promo-flyer h3,
.guide-card h3,
.spotlight-panel h3,
.finder-card h3 {
  margin: 0;
}

.social-handle {
  margin: 0;
  color: var(--accent-cool);
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-row,
.tag-row,
.flyer-meta,
.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mini-badge,
.tag-row span,
.flyer-meta span,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mini-badge {
  background: rgba(30, 77, 143, 0.1);
  color: var(--accent-cool);
  border: 1px solid rgba(30, 77, 143, 0.16);
}

.tag-row span,
.flyer-meta span {
  background: rgba(228, 87, 46, 0.09);
  color: var(--accent-dark);
  border: 1px solid rgba(228, 87, 46, 0.14);
}

.inventory-line {
  margin: 0;
  color: var(--muted);
}

.promo-flyer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.promo-flyer {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
  min-height: 21rem;
}

.promo-flyer-orange {
  background:
    linear-gradient(180deg, rgba(228, 87, 46, 0.16), rgba(228, 87, 46, 0.04)),
    var(--surface);
}

.promo-flyer-blue {
  background:
    linear-gradient(180deg, rgba(30, 77, 143, 0.16), rgba(30, 77, 143, 0.04)),
    var(--surface);
}

.flyer-kicker {
  margin: 0;
  color: var(--accent-cool);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.promo-flyer h3 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.9;
  font-family: "Arial Narrow", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
}

.flyer-big-copy {
  margin: 0;
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
}

.promo-flyer a,
.guide-card a,
.spotlight-panel a,
.utility-card a {
  color: var(--accent-cool);
  font-weight: 800;
}

.rocket-spotlight-grid,
.family-guide-grid,
.weekend-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.spotlight-panel,
.guide-card {
  padding: 1.3rem;
}

.finder-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
  align-items: start;
}

.finder-sidebar {
  display: grid;
  gap: 1rem;
}

.search-shell {
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
  font-weight: 700;
}

.search-shell input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(30, 77, 143, 0.2);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.filter-chip {
  appearance: none;
  background: rgba(249, 251, 254, 0.9);
  color: var(--accent-cool);
  border: 1px solid rgba(30, 77, 143, 0.18);
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--accent-cool);
  color: #f9fbfe;
}

.booth-map-card {
  padding: 1rem;
}

.map-label-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  margin-bottom: 0.8rem;
}

.booth-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.booth-block,
.map-feature {
  min-height: 4.8rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.booth-block {
  border: 1px solid rgba(30, 77, 143, 0.18);
  background: var(--surface-strong);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.booth-block.is-highlighted {
  border-color: rgba(228, 87, 46, 0.38);
  background: rgba(228, 87, 46, 0.12);
  transform: translateY(-2px);
}

.map-feature {
  background: rgba(30, 77, 143, 0.09);
  color: var(--accent-cool);
  border: 1px dashed rgba(30, 77, 143, 0.18);
}

.vendor-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.finder-card[hidden] {
  display: none;
}

.finder-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px dashed rgba(30, 77, 143, 0.24);
  color: var(--muted);
  background: rgba(249, 251, 254, 0.72);
}

.weekend-guide-grid .guide-card,
.family-guide-grid .guide-card {
  display: grid;
  gap: 0.85rem;
}

.external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.compact-links {
  gap: 0.6rem;
}

.compact-links a {
  padding: 0.7rem 0.85rem;
}

.final-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.calendar-block {
  padding: 1.45rem;
}

.calendar-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.65rem;
}

.calendar-day {
  min-height: 5.9rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: var(--surface-strong);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.calendar-day small,
.calendar-day-muted {
  color: var(--muted);
}

.calendar-day-empty {
  opacity: 0.28;
}

.has-event {
  border: 1px solid rgba(29, 79, 145, 0.28);
}

.featured-event {
  background: linear-gradient(180deg, rgba(30, 77, 143, 0.12), rgba(228, 87, 46, 0.08));
}

.event-card-featured,
.package-card-featured {
  border-color: rgba(231, 111, 36, 0.45);
  background:
    linear-gradient(180deg, rgba(30, 77, 143, 0.08), rgba(30, 77, 143, 0)),
    var(--surface);
}

.requirements-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.event-meta span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 35, 60, 0.14);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
}

.availability-panel {
  padding: 1.6rem;
}

.counter {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 1rem 0;
}

.counter strong {
  font-size: clamp(3rem, 8vw, 5.1rem);
  line-height: 1;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.05em;
  color: var(--accent-cool);
}

.counter-note {
  margin-bottom: 1.5rem;
}

.detail-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--accent-cool));
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price {
  margin: 0.5rem 0 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--ink);
}

.mock-form {
  display: grid;
  gap: 1rem;
}

.mock-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.mock-form input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(19, 35, 60, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.2rem;
  padding: 1.6rem 1.35rem 2rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.home-main {
  padding-bottom: 2rem;
}

[data-page="home"] .site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
}

[data-page="home"] .site-nav {
  justify-self: center;
}

[data-page="home"] .site-nav a {
  padding: 0.68rem 0.88rem;
  font-size: 0.95rem;
}

.home-hero {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 1320px);
  margin: 0 auto;
  padding: 2.2rem 0 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: center;
}

.home-hero-copy {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.home-kicker-row,
.home-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-kicker-row span,
.home-link-row a,
.home-event-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(33, 79, 148, 0.16);
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent-cool);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.home-link-row a {
  color: var(--accent-cool);
  font-size: 0.76rem;
}

.home-link-row a:hover {
  color: var(--ink);
  border-color: rgba(33, 79, 148, 0.24);
  transform: translateY(-1px);
}

.home-hero h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.home-hero .lede {
  margin: 0;
  max-width: 62ch;
}

.home-proof-grid,
.home-feature-grid,
.home-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-proof-card,
.home-feature-card,
.home-spotlight-rotator,
.home-pillar-card,
.home-weekend-story,
.home-weekend-sidebar {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.home-proof-card {
  padding: 1rem 1rem 1.05rem;
  background:
    linear-gradient(180deg, rgba(33, 79, 148, 0.08), rgba(33, 79, 148, 0.01)),
    rgba(255, 255, 255, 0.76);
}

.home-proof-card small,
.home-feature-grid small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.home-proof-card strong,
.home-feature-grid strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--ink);
}

.home-proof-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.home-hero-stage {
  position: relative;
  min-height: 45rem;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.home-stage-visual {
  position: absolute;
  inset: 1rem 0 0 2.6rem;
  overflow: hidden;
  border-radius: calc(var(--radius) + 18px);
  border: 1px solid rgba(33, 79, 148, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(226, 236, 248, 0.88) 50%, rgba(247, 219, 206, 0.62) 100%);
  box-shadow: var(--shadow-soft);
}

.home-stage-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33, 79, 148, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 79, 148, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.45;
}

.home-stage-visual::after {
  content: "";
  position: absolute;
  inset: 12% auto auto 18%;
  width: 19rem;
  height: 19rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 154, 92, 0.48), transparent 68%);
  filter: blur(8px);
}

.home-stage-pill,
.home-stage-card {
  position: absolute;
  z-index: 1;
}

.home-stage-pill {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(33, 79, 148, 0.14);
  box-shadow: 0 16px 28px rgba(15, 31, 56, 0.08);
  color: var(--accent-cool);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-stage-pill-a {
  top: 1.2rem;
  left: 1.2rem;
}

.home-stage-pill-b {
  right: 1.2rem;
  bottom: 1.4rem;
}

.home-stage-card {
  width: 11.5rem;
  aspect-ratio: 0.72;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 28px 42px rgba(15, 31, 56, 0.12);
}

.home-stage-card::before,
.home-stage-card::after {
  content: "";
  position: absolute;
}

.home-stage-card::before {
  inset: 12% 12% auto;
  height: 60%;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(15, 31, 56, 0.14));
}

.home-stage-card::after {
  left: 22%;
  right: 22%;
  bottom: 10%;
  height: 10%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
}

.home-stage-card-a {
  right: 4.5rem;
  top: 5rem;
  transform: rotate(13deg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(111, 150, 203, 0.78));
}

.home-stage-card-b {
  left: 2.5rem;
  bottom: 5rem;
  transform: rotate(-10deg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(237, 125, 74, 0.72));
}

.home-stage-card-c {
  right: 12rem;
  bottom: 3.5rem;
  transform: rotate(-18deg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(109, 87, 194, 0.7));
}

.home-feature-card,
.home-spotlight-rotator {
  position: relative;
  z-index: 2;
}

.home-feature-card {
  margin-top: 5.6rem;
  padding: 1.55rem;
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.76)),
    rgba(255, 255, 255, 0.8);
}

.home-feature-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.home-feature-card h2,
.home-weekend-story h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.home-feature-card p,
.home-pillar-card p,
.home-weekend-sidebar p,
.home-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-feature-grid article {
  padding: 0.95rem 1rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(33, 79, 148, 0.12);
  background: rgba(243, 247, 252, 0.86);
}

.home-feature-note {
  font-size: 0.9rem;
}

.home-spotlight-rotator {
  min-height: 14.8rem;
  margin-left: 3.7rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(33, 79, 148, 0.12), rgba(33, 79, 148, 0.02)),
    rgba(255, 255, 255, 0.78);
}

.home-spotlight-rotator .hero-ad-slide {
  padding: 1.25rem 1.25rem 3rem;
  gap: 0.8rem;
}

.home-spotlight-kicker {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 900;
}

.home-spotlight-card h3,
.home-weekend-sidebar h3,
.home-pillar-card h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.home-spotlight-rotator .tag-row span {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-cool);
  border-color: rgba(33, 79, 148, 0.12);
}

.home-pillars {
  padding-top: 1.25rem;
}

.home-pillar-card,
.home-weekend-story,
.home-weekend-sidebar {
  padding: 1.45rem;
}

.home-pillar-card {
  display: grid;
  gap: 0.8rem;
}

.home-pillar-card > span:first-child,
.home-steps span {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(33, 79, 148, 0.12);
  color: var(--accent-cool);
  font-weight: 900;
  font-size: 0.84rem;
}

.home-pillar-card a {
  color: var(--accent-cool);
  font-weight: 800;
}

.home-weekend-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 1rem;
  align-items: start;
}

.home-steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.home-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 31, 56, 0.08);
}

.home-steps article:first-child {
  padding-top: 0;
  border-top: none;
}

.home-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

@media (hover: hover) and (pointer: fine) {
  .utility-card,
  .event-card,
  .package-card,
  .mock-panel,
  .content-block,
  .vendor-feature-card,
  .finder-card,
  .guide-card,
  .spotlight-panel,
  .promo-flyer,
  .booth-map-card,
  .calendar-block,
  .status-card,
  .quick-links a,
  .home-proof-card,
  .home-pillar-card,
  .home-feature-card,
  .home-weekend-story,
  .home-weekend-sidebar,
  .home-link-row a,
  .home-spotlight-rotator {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
  }

  .utility-card:hover,
  .event-card:hover,
  .package-card:hover,
  .mock-panel:hover,
  .content-block:hover,
  .vendor-feature-card:hover,
  .finder-card:hover,
  .guide-card:hover,
  .spotlight-panel:hover,
  .promo-flyer:hover,
  .booth-map-card:hover,
  .calendar-block:hover,
  .status-card:hover,
  .quick-links a:hover,
  .home-proof-card:hover,
  .home-pillar-card:hover,
  .home-feature-card:hover,
  .home-weekend-story:hover,
  .home-weekend-sidebar:hover,
  .home-link-row a:hover,
  .home-spotlight-rotator:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 48px rgba(15, 31, 56, 0.13);
    border-color: rgba(33, 79, 148, 0.22);
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .site-header,
  .hero,
  .home-hero,
  .event-hero,
  .utility-grid,
  .info-layout,
  .status-grid,
  .split-section,
  .event-layout,
  .portal-layout,
  .contact-layout,
  .event-content-grid,
  .dual-columns,
  .finder-layout,
  .final-cta,
  .requirements-strip,
  .spotlight-grid,
  .vendor-showcase .vendor-lanes,
  .vendor-strip,
  .promo-flyer-grid,
  .rocket-spotlight-grid,
  .family-guide-grid,
  .weekend-guide-grid,
  .vendor-results,
  .package-grid,
  .timeline {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  [data-page="home"] .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  [data-page="home"] .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  [data-page="home"] .site-header > .button {
    grid-column: 2;
    grid-row: 1;
    width: auto;
  }

  .home-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.7rem, 8.6vw, 4.6rem);
  }

  .site-nav {
    flex-wrap: wrap;
    border-radius: 1.2rem;
  }

  .home-proof-grid,
  .home-feature-grid,
  .home-pillars-grid,
  .home-weekend-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-stage {
    min-height: 39rem;
  }

  .home-feature-card {
    margin-top: 4.25rem;
  }

  .home-spotlight-rotator {
    margin-left: 2rem;
  }

  .hero h1,
  .event-hero h1 {
    max-width: 100%;
  }

  .spotlight-card-wide {
    grid-column: auto;
  }

  .utility-card-primary {
    grid-column: auto;
  }

  .hero,
  .event-hero {
    padding-top: 2.4rem;
  }

  .status-grid,
  .package-grid,
  .vendor-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-footer,
  .section,
  .page-hero,
  .marquee {
    width: min(calc(100% - 1.2rem), var(--content-width));
  }

  .hero,
  .home-hero,
  .event-hero {
    width: min(calc(100% - 1.2rem), 1320px);
    padding-top: 1.6rem;
  }

  .site-header {
    top: 0.55rem;
    padding: 0.95rem;
  }

  .site-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 0.55rem;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.72rem 0.95rem;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.82);
  }

  .page-hero {
    margin-top: 1.15rem;
    padding: 1.6rem 1rem;
  }

  [data-page="home"] .site-header {
    grid-template-columns: 1fr;
  }

  [data-page="home"] .site-header > .button {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .home-hero h1 {
    max-width: 8ch;
    font-size: clamp(2.8rem, 12vw, 4.7rem);
  }

  .home-stage-visual {
    display: none;
  }

  .home-hero-stage {
    min-height: 0;
  }

  .home-feature-card {
    margin-top: 0;
  }

  .home-feature-header {
    display: grid;
  }

  .home-spotlight-rotator {
    margin-left: 0;
    min-height: 15.5rem;
  }

  .hero-stage {
    min-height: 23rem;
  }

  .hero h1,
  .event-hero h1 {
    max-width: 8ch;
    font-size: clamp(2.45rem, 15vw, 4.25rem);
  }

  .page-hero h1 {
    max-width: 9ch;
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .vendor-ad-bubble {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 20rem;
    min-height: 13.5rem;
    margin: 0 auto 1rem;
    transform: none;
  }

  .vendor-ad-visual {
    min-height: 7.2rem;
  }

  .vendor-ad-overlay {
    padding: 0.8rem;
  }

  .vendor-ad-overlay h3 {
    font-size: 1.05rem;
  }

  .saturn-v {
    left: -6%;
    top: 31%;
    width: 24rem;
    height: 4rem;
  }

  .saturn-v::before {
    right: -2.6rem;
    border-top-width: 2rem;
    border-bottom-width: 2rem;
    border-left-width: 2.9rem;
  }

  .rocket-band {
    top: 0.35rem;
    bottom: 0.35rem;
    width: 0.55rem;
  }

  .rocket-band-top {
    left: 4.6rem;
  }

  .rocket-band-mid {
    left: 11.6rem;
  }

  .rocket-band-low {
    left: 18.2rem;
  }

  .rocket-window {
    right: 4rem;
    width: 0.8rem;
    height: 0.8rem;
  }

  .rocket-plume {
    left: -14%;
    top: 28%;
    width: 22rem;
    height: 6rem;
  }

  .hobby-card,
  .hobby-slab {
    width: 5.8rem;
  }

  .hobby-pack {
    width: 4.8rem;
    height: 8.2rem;
  }

  .hobby-token {
    width: 3.8rem;
    height: 3.8rem;
  }

  .poster-stats {
    grid-template-columns: 1fr;
  }

  .status-grid,
  .calendar-grid,
  .booth-map-grid,
  .package-grid,
  .vendor-results,
  [data-page="vendors"] .vendor-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-link-row,
  .home-kicker-row {
    gap: 0.55rem;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .vendor-ad-bubble:hover {
    transform: translateY(-3px);
  }

  .hero-actions,
  .inline-actions,
  .cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .status-grid,
  .package-grid,
  .vendor-results,
  [data-page="vendors"] .vendor-strip,
  .home-proof-grid,
  .home-feature-grid,
  .home-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.vendor-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
  gap: 1.25rem;
  align-items: stretch;
}

.vendor-page-hero h1,
.vendor-page-hero .lede {
  max-width: 12ch;
}

.vendor-page-hero .lede {
  max-width: 58ch;
}

.vendor-hero-copy,
.vendor-command-card,
.vendor-side-summary,
.route-card,
.ops-board,
.form-shell,
.dashboard-summary-card,
.dashboard-workspace,
.resource-card,
.workspace-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.vendor-hero-copy,
.vendor-command-card,
.vendor-side-summary,
.route-card,
.ops-board,
.form-shell,
.dashboard-summary-card,
.resource-card,
.dashboard-workspace {
  padding: 1.5rem;
}

.vendor-command-card,
.vendor-side-summary,
.route-card,
.resource-card,
.dashboard-summary-card {
  display: grid;
  gap: 1rem;
}

.vendor-command-card h2,
.vendor-side-summary h2,
.route-card h2,
.route-card h3,
.ops-board h3,
.workspace-header h2,
.dashboard-summary-card h3,
.resource-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.vendor-command-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.command-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(33, 79, 148, 0.1);
  color: var(--accent-cool);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-stat-grid,
.workspace-grid,
.faq-preview-grid,
.resources-grid,
.vendor-route-grid {
  display: grid;
  gap: 1rem;
}

.portal-stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portal-stat-grid article,
.workspace-card,
.profile-preview-card {
  padding: 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(33, 79, 148, 0.14);
  background: var(--surface-strong);
}

.portal-stat-grid small,
.ops-meter-list span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.portal-stat-grid strong,
.ops-meter-list strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.vendor-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 1.2rem;
}

.vendor-subnav a {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-weight: 700;
}

.vendor-subnav a:hover,
.vendor-subnav a.is-active {
  color: var(--ink);
  background: rgba(33, 79, 148, 0.1);
  border-color: rgba(33, 79, 148, 0.26);
}

.vendor-route-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
}

.route-card-featured {
  background:
    linear-gradient(180deg, rgba(33, 79, 148, 0.1), rgba(255, 255, 255, 0.82)),
    var(--surface);
}

.route-list,
.support-mini-stack,
.ops-meter-list {
  display: grid;
  gap: 0.85rem;
}

.route-link,
.support-mini-stack div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(33, 79, 148, 0.14);
  background: rgba(255, 255, 255, 0.84);
}

.route-link strong,
.support-mini-stack strong {
  font-size: 1rem;
}

.route-link span,
.support-mini-stack span,
.ops-meter-list span,
.faq-item p,
.workspace-card p,
.resource-card p {
  color: var(--muted);
  line-height: 1.7;
}

.vendor-ops-layout,
.vendor-form-layout,
.dashboard-layout,
.setup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  gap: 1.25rem;
}

.ops-checklist {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.ops-checklist article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(33, 79, 148, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.ops-checklist span,
.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(235, 106, 60, 0.12);
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.ops-checklist h3,
.workspace-card h3,
.faq-item summary,
.resource-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

.ops-checklist p,
.profile-preview-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.ops-aside {
  display: grid;
  gap: 1rem;
}

.ops-board-muted {
  background:
    linear-gradient(180deg, rgba(33, 79, 148, 0.06), rgba(255, 255, 255, 0.84)),
    var(--surface);
}

.vendor-strip-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-preview-section {
  padding-top: 1rem;
}

.faq-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
}

.vendor-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vendor-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
}

.vendor-form input,
.vendor-form select,
.vendor-form textarea {
  width: 100%;
  border: 1px solid rgba(33, 79, 148, 0.18);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.vendor-form textarea {
  resize: vertical;
}

.field-span-2 {
  grid-column: span 2;
}

.check-row {
  grid-column: span 2;
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(33, 79, 148, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.check-row input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
}

.check-row span {
  font-weight: 600;
  color: var(--muted);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.dashboard-layout {
  align-items: start;
}

.dashboard-sidebar {
  display: grid;
  gap: 1rem;
}

.dashboard-workspace {
  display: grid;
  gap: 1rem;
}

.workspace-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.workspace-panel {
  display: none;
  gap: 1rem;
}

.workspace-panel.is-active {
  display: grid;
}

.workspace-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.workspace-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workspace-card {
  display: grid;
  gap: 0.8rem;
}

.workspace-card-preview {
  background:
    linear-gradient(180deg, rgba(235, 106, 60, 0.08), rgba(255, 255, 255, 0.86)),
    var(--surface-strong);
}

.profile-preview-card {
  display: grid;
  gap: 0.35rem;
}

.profile-preview-card strong {
  font-size: 1.15rem;
}

.profile-preview-card span {
  color: var(--accent-cool);
  font-weight: 700;
}

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

.resource-card-wide {
  grid-column: span 2;
}

@media (max-width: 1040px) {
  .vendor-page-hero,
  .vendor-route-grid,
  .vendor-ops-layout,
  .vendor-form-layout,
  .dashboard-layout,
  .setup-layout {
    grid-template-columns: 1fr;
  }

  .faq-preview-grid,
  .workspace-grid,
  .vendor-strip-expanded,
  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .vendor-page-hero h1,
  .vendor-page-hero .lede {
    max-width: 100%;
  }

  .vendor-subnav,
  .workspace-toggle {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vendor-form,
  .portal-stat-grid,
  .faq-preview-grid,
  .workspace-grid,
  .vendor-strip-expanded,
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .field-span-2,
  .check-row {
    grid-column: auto;
  }

  .form-actions,
  .workspace-header,
  .vendor-command-topline {
    flex-direction: column;
  }
}
