:root {
  color-scheme: dark;
  --ink: #180846;
  --ink-deep: #0b0420;
  --ocean: #421063;
  --electric: #c72fbd;
  --aqua: #37d7ff;
  --aqua-soft: #f5d5ff;
  --coral: #eb4fdf;
  --white: #fffaff;
  --muted: #d9c9e3;
  --line: rgba(245, 213, 255, 0.18);
  --panel: rgba(24, 8, 70, 0.78);
  --panel-strong: rgba(11, 4, 32, 0.92);
  --shadow: 0 30px 90px rgba(4, 1, 19, 0.48);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink-deep);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(199, 47, 189, 0.18), transparent 35rem),
    var(--ink-deep);
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input {
  font: inherit;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

@keyframes background-pan {
  0% {
    transform: scale(1.055) translate3d(-1.5%, -1%, 0);
  }

  48% {
    transform: scale(1.115) translate3d(1.4%, 0.6%, 0);
  }

  100% {
    transform: scale(1.075) translate3d(-0.5%, 1.4%, 0);
  }
}

@keyframes aurora-drift {
  0% {
    opacity: 0.3;
    transform: translate3d(-10%, -8%, 0) rotate(-7deg) scale(0.96);
  }

  50% {
    opacity: 0.62;
    transform: translate3d(8%, 4%, 0) rotate(5deg) scale(1.08);
  }

  100% {
    opacity: 0.38;
    transform: translate3d(-2%, 10%, 0) rotate(-2deg) scale(1.02);
  }
}

@keyframes orbit-turn {
  from {
    transform: rotate(0deg) scale(0.97);
  }

  to {
    transform: rotate(360deg) scale(1.04);
  }
}

@keyframes orbit-pulse {
  from {
    opacity: 0.48;
    transform: scale(0.72);
  }

  to {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes light-sweep {
  0%,
  12% {
    opacity: 0;
    transform: translate3d(-44%, 0, 0) rotate(4deg);
  }

  40% {
    opacity: 0.7;
  }

  72%,
  100% {
    opacity: 0;
    transform: translate3d(44%, 0, 0) rotate(4deg);
  }
}

@keyframes scanline-flow {
  from {
    transform: translate3d(0, -12px, 0);
  }

  to {
    transform: translate3d(0, 12px, 0);
  }
}

@keyframes scanline-glow {
  from {
    opacity: 0.22;
  }

  to {
    opacity: 0.46;
  }
}

@keyframes gradient-mesh-flow {
  0% {
    opacity: 0.54;
    transform: translate3d(-7%, -5%, 0) rotate(-8deg) scale(0.96);
  }

  48% {
    opacity: 0.82;
    transform: translate3d(7%, 3%, 0) rotate(5deg) scale(1.08);
  }

  100% {
    opacity: 0.62;
    transform: translate3d(-2%, 8%, 0) rotate(-2deg) scale(1.02);
  }
}

@keyframes ambient-wave {
  0%,
  10% {
    opacity: 0.12;
    transform: translate3d(-38%, -9%, 0) rotate(-13deg) scaleX(0.82);
  }

  46% {
    opacity: 0.58;
    transform: translate3d(4%, 6%, 0) rotate(-5deg) scaleX(1.08);
  }

  86%,
  100% {
    opacity: 0.16;
    transform: translate3d(39%, -2%, 0) rotate(8deg) scaleX(0.92);
  }
}

@keyframes blob-aqua-drift {
  0% {
    transform: translate3d(-16%, -10%, 0) scale(0.9);
  }

  50% {
    transform: translate3d(20%, 14%, 0) scale(1.18);
  }

  100% {
    transform: translate3d(-4%, 28%, 0) scale(1.02);
  }
}

@keyframes blob-blue-drift {
  0% {
    transform: translate3d(14%, 16%, 0) scale(1.04);
  }

  52% {
    transform: translate3d(-18%, -12%, 0) scale(0.88);
  }

  100% {
    transform: translate3d(6%, -24%, 0) scale(1.14);
  }
}

@keyframes blob-coral-drift {
  0% {
    transform: translate3d(-12%, 22%, 0) scale(0.82);
  }

  50% {
    transform: translate3d(14%, -18%, 0) scale(1.14);
  }

  100% {
    transform: translate3d(28%, 6%, 0) scale(0.94);
  }
}

@keyframes computer-float {
  0%,
  100% {
    transform: translate3d(0, -5px, 0) rotate(-2deg);
  }

  45% {
    transform: translate3d(4px, 7px, 0) rotate(2deg);
  }

  72% {
    transform: translate3d(3px, 2px, 0) rotate(0deg);
  }
}

@keyframes computer-orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes cursor-click {
  0%,
  58%,
  100% {
    filter: drop-shadow(0 0 7px rgba(235, 79, 223, 0.72));
    transform: translate3d(0, 0, 0) scale(1);
  }

  66% {
    filter: drop-shadow(0 0 16px rgba(235, 79, 223, 1));
    transform: translate3d(-2px, -2px, 0) scale(0.86);
  }

  76% {
    transform: translate3d(1px, 1px, 0) scale(1.08);
  }
}

@keyframes signal-ripple {
  0% {
    opacity: 0.08;
    transform: scale(0.68);
  }

  45% {
    opacity: 0.66;
  }

  100% {
    opacity: 0;
    transform: scale(1.38);
  }
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--ink-deep);
  background: var(--white);
  border-radius: 999px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  min-height: 100vh;
  padding: clamp(0.75rem, 2vw, 1.75rem);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: calc(100vh - clamp(1.5rem, 4vw, 3.5rem));
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 3rem) clamp(1.1rem, 5vw, 5rem) clamp(1.1rem, 2.8vw, 2.5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(1.5rem, 3vw, 3rem);
  background:
    linear-gradient(100deg, rgba(199, 47, 189, 0.18) 0%, rgba(58, 15, 88, 0.96) 38%, rgba(24, 8, 70, 0.74) 72%, rgba(11, 4, 32, 0.94) 100%),
    var(--ink);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -36%;
  opacity: 0;
  background:
    radial-gradient(circle at 24% 42%, rgba(55, 215, 255, 0.28) 0 5%, transparent 20%),
    radial-gradient(circle at 70% 58%, rgba(235, 79, 223, 0.34) 0 7%, transparent 24%),
    linear-gradient(112deg, transparent 32%, rgba(245, 213, 255, 0.18) 46%, rgba(55, 215, 255, 0.12) 51%, transparent 66%);
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform, opacity;
  animation: light-sweep 10.5s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 38%;
  opacity: 0.34;
  background: repeating-linear-gradient(
    0deg,
    rgba(55, 215, 255, 0.28) 0,
    rgba(55, 215, 255, 0.28) 1px,
    transparent 1px,
    transparent 6px
  );
  mask-image: linear-gradient(to bottom, transparent, #000 38%);
  pointer-events: none;
  will-change: transform, opacity;
  animation:
    scanline-flow 3.6s linear infinite alternate,
    scanline-glow 5.2s ease-in-out infinite alternate;
}

.hero-art {
  position: absolute;
  z-index: -3;
  inset: -5%;
  background-image: url("/assets/flyer-background.webp");
  background-repeat: no-repeat;
  background-position: 50% 64%;
  background-size: cover;
  filter: saturate(1.05) contrast(1.03);
  transform-origin: 56% 58%;
  pointer-events: none;
  will-change: transform, opacity;
  animation: background-pan 18s ease-in-out infinite alternate;
}

.hero-art::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -18%;
  opacity: 0.32;
  background:
    radial-gradient(circle at 28% 38%, rgba(235, 79, 223, 0.42), transparent 29%),
    radial-gradient(circle at 72% 32%, rgba(55, 215, 255, 0.38), transparent 24%),
    radial-gradient(circle at 58% 78%, rgba(199, 47, 189, 0.46), transparent 28%);
  filter: blur(20px);
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform, opacity;
  animation: aurora-drift 13s ease-in-out infinite alternate;
}

.hero-art::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--ink) 0%,
      rgba(24, 8, 70, 0.98) 38%,
      rgba(24, 8, 70, 1) 50%,
      rgba(24, 8, 70, 0.78) 60%,
      rgba(24, 8, 70, 0.24) 70%,
      transparent 80%
    ),
    linear-gradient(0deg, rgba(11, 4, 32, 0.32), transparent 54%);
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  z-index: -2;
  width: min(48vw, 760px);
  aspect-ratio: 1;
  top: -31%;
  right: -8%;
  border: 1px solid rgba(245, 213, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(245, 213, 255, 0.045),
    0 0 0 44px rgba(245, 213, 255, 0.04),
    0 0 0 66px rgba(245, 213, 255, 0.035),
    0 0 0 88px rgba(245, 213, 255, 0.03),
    0 0 0 110px rgba(245, 213, 255, 0.025),
    0 0 0 132px rgba(245, 213, 255, 0.02);
  opacity: 0.9;
  transform-origin: center;
  pointer-events: none;
  will-change: transform, opacity;
  animation: orbit-turn 28s linear infinite;
}

.hero-lines::before,
.hero-lines::after {
  content: "";
  position: absolute;
  width: clamp(0.55rem, 0.9vw, 0.9rem);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
  animation: orbit-pulse 2.4s ease-in-out infinite alternate;
}

.hero-lines::before {
  top: 16%;
  left: 8%;
  background: var(--aqua);
  box-shadow: 0 0 1.5rem rgba(55, 215, 255, 0.92);
}

.hero-lines::after {
  right: 9%;
  bottom: 18%;
  background: var(--coral);
  box-shadow: 0 0 1.7rem rgba(235, 79, 223, 0.9);
  animation-delay: -1.2s;
}

.motion-stage {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  contain: paint;
  pointer-events: none;
}

.motion-stage::before {
  content: "";
  position: absolute;
  inset: -32%;
  opacity: 0.62;
  background:
    conic-gradient(
      from 214deg at 68% 42%,
      transparent 0 12%,
      rgba(55, 215, 255, 0.22) 20%,
      transparent 34%,
      rgba(199, 47, 189, 0.24) 52%,
      transparent 67%,
      rgba(235, 79, 223, 0.15) 79%,
      transparent 92%
    );
  filter: blur(52px);
  mix-blend-mode: screen;
  transform-origin: 68% 42%;
  will-change: transform, opacity;
  animation: gradient-mesh-flow 12s ease-in-out infinite alternate;
}

.motion-stage::after {
  content: "";
  position: absolute;
  top: -38%;
  left: 22%;
  width: 74%;
  height: 176%;
  opacity: 0.24;
  background: linear-gradient(
    90deg,
    transparent 8%,
    rgba(55, 215, 255, 0.05) 29%,
    rgba(255, 250, 255, 0.28) 49%,
    rgba(199, 47, 189, 0.12) 60%,
    transparent 87%
  );
  filter: blur(22px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
  animation: ambient-wave 9.5s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.motion-blob {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(54px);
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform, opacity;
}

.motion-blob--aqua {
  top: 12%;
  left: 48%;
  width: min(34vw, 32rem);
  opacity: 0.32;
  background: radial-gradient(circle, rgba(55, 215, 255, 0.68), rgba(55, 215, 255, 0.08) 58%, transparent 73%);
  animation: blob-aqua-drift 10.5s ease-in-out infinite alternate;
}

.motion-blob--blue {
  bottom: -16%;
  left: 20%;
  width: min(42vw, 39rem);
  opacity: 0.28;
  background: radial-gradient(circle, rgba(199, 47, 189, 0.62), rgba(199, 47, 189, 0.07) 60%, transparent 76%);
  animation: blob-blue-drift 13.5s ease-in-out infinite alternate;
}

.motion-blob--coral {
  top: 24%;
  right: -5%;
  width: min(24vw, 22rem);
  opacity: 0.24;
  background: radial-gradient(circle, rgba(235, 79, 223, 0.68), rgba(235, 79, 223, 0.06) 58%, transparent 74%);
  animation: blob-coral-drift 8.5s ease-in-out infinite alternate;
}

.computer-use-float {
  position: absolute;
  z-index: 1;
  top: 33%;
  right: 0.25rem;
  width: clamp(3.7rem, 4.4vw, 4rem);
  aspect-ratio: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(55, 215, 255, 0.4));
  will-change: transform, opacity;
  animation: computer-float 5.4s ease-in-out infinite;
}

.computer-use-ripple,
.computer-use-orbit,
.computer-use-tile {
  position: absolute;
  border-radius: 50%;
}

.computer-use-ripple {
  inset: -16%;
  border: 1px solid rgba(55, 215, 255, 0.78);
  box-shadow: 0 0 1rem rgba(55, 215, 255, 0.32);
  will-change: transform, opacity;
  animation: signal-ripple 2.8s ease-out infinite;
}

.computer-use-orbit {
  inset: -4%;
  border: 1px dashed rgba(245, 213, 255, 0.78);
  box-shadow:
    inset 0 0 1.2rem rgba(199, 47, 189, 0.2),
    0 0 1.4rem rgba(55, 215, 255, 0.26);
  will-change: transform, opacity;
  animation: computer-orbit 7.5s linear infinite;
}

.computer-use-orbit::before,
.computer-use-orbit::after {
  content: "";
  position: absolute;
  width: 0.48rem;
  aspect-ratio: 1;
  border-radius: 50%;
}

.computer-use-orbit::before {
  top: 4%;
  left: 16%;
  background: var(--aqua);
  box-shadow: 0 0 1rem rgba(55, 215, 255, 1);
}

.computer-use-orbit::after {
  right: 3%;
  bottom: 19%;
  background: var(--coral);
  box-shadow: 0 0 1rem rgba(235, 79, 223, 0.95);
}

.computer-use-tile {
  inset: 14%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 213, 255, 0.48);
  background: rgba(24, 8, 70, 0.72);
  box-shadow:
    inset 0 0 1.1rem rgba(199, 47, 189, 0.24),
    0 0 1.5rem rgba(55, 215, 255, 0.22);
  backdrop-filter: blur(12px);
}

.computer-use-tile svg {
  width: 82%;
  height: 82%;
  overflow: visible;
}

.computer-use-screen,
.computer-use-stand {
  fill: rgba(24, 8, 70, 0.36);
  stroke: var(--aqua);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(55, 215, 255, 0.75));
}

.computer-use-stand {
  fill: none;
}

.computer-use-cursor {
  fill: var(--coral);
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linejoin: round;
  transform-box: fill-box;
  transform-origin: 30% 30%;
  will-change: transform, filter;
  animation: cursor-click 2.8s ease-in-out infinite;
}

.brand-row,
.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-size: clamp(0.86rem, 1.4vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.075em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(245, 213, 255, 0.34);
  border-radius: 999px;
  color: var(--aqua-soft);
  background: rgba(24, 8, 70, 0.46);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 470px);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  width: 100%;
  padding: clamp(2.5rem, 5vh, 5rem) 0;
}

.hero-grid,
.hero-copy,
.registration-card {
  min-width: 0;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow,
.card-kicker,
.info-kicker {
  margin: 0 0 1.1rem;
  color: var(--aqua-soft);
  font-size: clamp(0.76rem, 1.2vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.eyebrow {
  color: var(--coral);
}

.eyebrow span {
  display: block;
  margin-top: 0.35rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  max-width: 8ch;
  font-family: "Arial Black", Impact, "Segoe UI Black", sans-serif;
  font-size: clamp(4.5rem, 10vw, 9.7rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(55, 215, 255, 0.56),
    0 0 64px rgba(199, 47, 189, 0.3);
}

.hero h1 span {
  display: block;
}

.lead {
  margin: clamp(1.8rem, 4vh, 3.25rem) 0 0.4rem;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.support {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
}

.session-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.55rem 0 0;
  padding: 0;
  list-style: none;
}

.session-notes li {
  padding: 0.52rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--aqua-soft);
  background: rgba(11, 4, 32, 0.36);
  font-size: 0.82rem;
  font-weight: 750;
}

.registration-card {
  padding: clamp(1.45rem, 3.2vw, 2.35rem);
  border: 1px solid rgba(245, 213, 255, 0.24);
  border-radius: 1.6rem;
  background:
    linear-gradient(145deg, rgba(58, 15, 88, 0.72), rgba(11, 4, 32, 0.9)),
    var(--panel);
  box-shadow:
    0 24px 70px rgba(4, 1, 19, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(24px) saturate(1.2);
}

.registration-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.card-kicker {
  margin-bottom: 0.65rem;
  color: var(--aqua-soft);
}

.card-intro {
  margin: 0.75rem 0 1.45rem;
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.55;
}

.registration-form {
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  gap: 0.45rem;
}

.field-row label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.optional {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.field-row input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.76rem 0.9rem;
  border: 1px solid rgba(245, 213, 255, 0.3);
  border-radius: 0.75rem;
  color: var(--white);
  background: rgba(5, 1, 18, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 1rem;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.field-row input:hover {
  border-color: rgba(245, 213, 255, 0.58);
}

.field-row input:focus {
  border-color: var(--aqua);
  background: rgba(5, 1, 18, 0.82);
  box-shadow: 0 0 0 4px rgba(55, 215, 255, 0.14);
  outline: none;
}

.consent-row {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  align-items: start;
  gap: 0.72rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.48;
  cursor: pointer;
}

.consent-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.17rem 0 0;
  accent-color: var(--coral);
}

.consent-row a,
.trust-copy a {
  color: var(--white);
  font-weight: 750;
}

.registration-form button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.85rem 1.2rem;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(90deg, #a918a5, var(--coral));
  box-shadow: 0 13px 30px rgba(235, 79, 223, 0.28);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: transform 150ms ease, filter 150ms ease, box-shadow 150ms ease;
}

.registration-form button:not(:disabled):hover,
.primary-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 17px 38px rgba(235, 79, 223, 0.38);
}

.registration-form button:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  box-shadow: none;
}

.form-status {
  min-height: 1.3em;
  margin: -0.25rem 0 0;
  color: var(--aqua-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-status[data-state="error"] {
  color: #ffd0ce;
}

.trust-copy {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.trust-copy p {
  margin: 0;
}

.trust-copy p + p {
  margin-top: 0.42rem;
}

.trust-copy strong {
  color: var(--white);
}

.site-footer {
  align-items: flex-end;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 250, 255, 0.72);
  font-size: 0.76rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.site-footer a:hover {
  color: var(--white);
}

.info-page,
.state-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(120deg, rgba(199, 47, 189, 0.2), rgba(24, 8, 70, 0.84)),
    url("/assets/flyer-background.webp") center / cover fixed,
    var(--ink);
}

.info-shell,
.state-card {
  width: min(100%, 760px);
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgba(245, 213, 255, 0.25);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.info-shell h1,
.state-card h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.info-lead,
.state-card > p:not(.info-kicker) {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.info-shell section {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.info-shell h2 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
}

.info-shell section p,
.info-footer {
  color: var(--muted);
  line-height: 1.72;
}

.info-shell a,
.state-card a:not(.primary-link) {
  color: var(--aqua-soft);
}

.back-link {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--aqua-soft);
  font-weight: 800;
}

.info-footer {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.info-footer p {
  margin: 0.35rem 0;
}

.state-card {
  text-align: left;
}

.state-card .state-note {
  margin-bottom: 1.8rem;
  font-size: 0.94rem;
}

.primary-link {
  width: fit-content;
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100vh - 1.5rem);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2.25rem;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero-art {
    inset: 0 0 auto;
    height: 62%;
    opacity: 0.64;
    background-position: 64% 50%;
    background-size: auto 100%;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  }

  .hero-art::after {
    background:
      linear-gradient(90deg, var(--ink) 0%, rgba(24, 8, 70, 0.45) 50%, transparent),
      linear-gradient(0deg, var(--ink) 0%, transparent 65%);
  }

  .hero h1 {
    font-size: clamp(5.4rem, 18vw, 9rem);
  }

  .registration-card {
    width: min(100%, 620px);
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 0;
  }

  .hero {
    min-height: 100vh;
    padding: 1.2rem 1rem 1rem;
    border: 0;
    border-radius: 0;
  }

  .brand-row {
    align-items: flex-start;
  }

  .live-pill {
    max-width: 10rem;
    justify-content: center;
    text-align: center;
    font-size: 0.6rem;
  }

  .hero-grid {
    padding: 3.3rem 0 2rem;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 23vw, 7.2rem);
  }

  .computer-use-float {
    right: 0.65rem;
    width: 3.5rem;
  }

  .motion-blob {
    filter: blur(42px);
  }

  .motion-blob--aqua {
    left: 38%;
    width: 62vw;
  }

  .motion-blob--blue {
    left: 4%;
    width: 76vw;
  }

  .motion-blob--coral {
    right: -18%;
    width: 48vw;
  }

  .lead {
    margin-top: 1.7rem;
  }

  .session-notes {
    gap: 0.45rem;
  }

  .session-notes li {
    font-size: 0.72rem;
  }

  .registration-card {
    padding: 1.25rem;
    border-radius: 1.2rem;
  }

  .field-row input {
    font-size: 16px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .info-page,
  .state-page {
    padding: 0;
  }

  .info-shell,
  .state-card {
    min-height: 100vh;
    padding: 2rem 1.15rem;
    border: 0;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-art,
  .hero-art::before,
  .hero-lines,
  .hero-lines::before,
  .hero-lines::after,
  .hero::before,
  .hero::after,
  .motion-stage,
  .motion-stage::before,
  .motion-stage::after,
  .motion-blob,
  .computer-use-float,
  .computer-use-orbit,
  .computer-use-cursor,
  .computer-use-ripple {
    animation: none !important;
    transform: none !important;
  }

  .motion-stage::before {
    opacity: 0.38 !important;
  }

  .motion-stage::after,
  .computer-use-ripple {
    opacity: 0.18 !important;
  }

  .hero::before {
    opacity: 0.26 !important;
  }
}
