:root {
  color-scheme: dark;
  --bg: #05070a;
  --bg-panel: #0b1115;
  --bg-panel-strong: #10191d;
  --text: #f4fbff;
  --muted: #a8b8bd;
  --soft: #d7e5e7;
  --line: rgba(179, 245, 255, 0.2);
  --cyan: #23e8ff;
  --cyan-strong: #05c9e8;
  --lime: #b8ff3d;
  --lime-dark: #79ba16;
  --rose: #ff597a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

.webinar-body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
}

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

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

h1,
h2,
h3,
p,
li,
a,
dd {
  overflow-wrap: break-word;
}

.hero-actions,
.speaker-line {
  display: flex;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 36px 36px 58px;
  background:
    radial-gradient(circle at 84% 20%, rgba(35, 232, 255, 0.18), transparent 28%),
    radial-gradient(circle at 15% 78%, rgba(184, 255, 61, 0.12), transparent 30%),
    linear-gradient(135deg, #061013 0%, #05070a 52%, #081315 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 82%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(184, 255, 61, 0.75), transparent);
  opacity: 0.75;
}

.hero-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.74fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-bottom: 26px;
}

.event-labels {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.format-label {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.academy-label {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: var(--cyan);
  border: 1px solid rgba(35, 232, 255, 0.34);
  border-radius: 8px;
  background: rgba(35, 232, 255, 0.08);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(35, 232, 255, 0.1);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.accent-title {
  color: var(--cyan);
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 3.05vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.45;
}

.speaker-line {
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 24px;
  color: var(--muted);
}

.speaker-line span {
  padding: 4px 8px;
  color: #061115;
  background: var(--lime);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.speaker-line strong {
  color: var(--text);
  font-size: 17px;
}

.speaker-line em {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
}

.hero-visual {
  position: relative;
  display: grid;
  width: min(510px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  place-items: center;
  overflow: visible;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -26px;
  background: url("/static/webinar_landing/assets/speaker.jpg") center / cover no-repeat;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.72;
  transform: scale(1.04);
  -webkit-mask-image: radial-gradient(circle at center, #000 48%, rgba(0, 0, 0, 0.75) 64%, transparent 83%);
  mask-image: radial-gradient(circle at center, #000 48%, rgba(0, 0, 0, 0.75) 64%, transparent 83%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(5, 7, 10, 0) 52%, rgba(5, 7, 10, 0.16) 70%, #05070a 96%);
  pointer-events: none;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle at center, #000 54%, rgba(0, 0, 0, 0.84) 68%, transparent 88%);
  mask-image: radial-gradient(circle at center, #000 54%, rgba(0, 0, 0, 0.84) 68%, transparent 88%);
}

.hero-program-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 32px 0 0;
  padding: 0 14px;
  color: var(--lime);
  background: rgba(184, 255, 61, 0.08);
  border: 1px solid rgba(184, 255, 61, 0.34);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(184, 255, 61, 0.1);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  min-height: 116px;
  padding: 32px 22px 20px;
  color: var(--soft);
  background: rgba(244, 251, 255, 0.075);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.point-number {
  position: absolute;
  top: -18px;
  left: 22px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #041014;
  background: var(--cyan);
  border: 4px solid #05070a;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(35, 232, 255, 0.45);
}

.hero-points p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #031014;
  background: var(--cyan);
  box-shadow: 0 0 0 1px rgba(35, 232, 255, 0.4), 0 20px 44px rgba(35, 232, 255, 0.22);
}

.button-primary:hover {
  background: #7cf4ff;
}

.game-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(184, 255, 61, 0.12), transparent 28%),
    radial-gradient(circle at 20% 76%, rgba(35, 232, 255, 0.14), transparent 30%),
    #050a0d;
}

.game-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(35, 232, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 61, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.game-inner {
  position: relative;
  z-index: 1;
}

.game-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(35, 232, 255, 0.38);
  border-radius: 8px;
  background: rgba(3, 10, 12, 0.88);
  box-shadow:
    0 0 0 1px rgba(184, 255, 61, 0.07),
    0 26px 76px rgba(0, 0, 0, 0.42);
}

.game-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(35, 232, 255, 0.24);
  background: linear-gradient(90deg, rgba(35, 232, 255, 0.14), rgba(184, 255, 61, 0.07));
  color: var(--soft);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 800;
}

.game-toolbar strong {
  color: var(--lime);
}

.game-reset {
  min-height: 34px;
  padding: 0 14px;
  color: #031014;
  background: var(--lime);
  border: 0;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}

.game-reset:hover,
.game-reset:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 255, 61, 0.24);
}

.game-stage {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  overscroll-behavior: auto;
}

.game-guide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 10, 12, 0.76);
  backdrop-filter: blur(2px);
}

.game-guide-card {
  width: min(610px, 94%);
  padding: 22px;
  color: var(--text);
  border: 1px solid rgba(35, 232, 255, 0.42);
  border-radius: 8px;
  background: rgba(4, 14, 17, 0.78);
  box-shadow:
    0 0 0 1px rgba(184, 255, 61, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(35, 232, 255, 0.12);
}

.game-guide-title {
  margin: 0 0 14px;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 22px;
  font-weight: 950;
  text-transform: uppercase;
}

.game-guide-diagram {
  position: relative;
  --guide-cursor-x: clamp(28px, 8%, 46px);
  --guide-line-x: 18%;
  --guide-line-width: 24%;
  --guide-projectile-x: 40%;
  --guide-arrow-x: 48%;
  --guide-arrow-width: 25%;
  --guide-target-x-1: 80%;
  --guide-target-x-2: 86%;
  --guide-target-x-3: 86%;
  height: 128px;
  overflow: hidden;
  border: 1px solid rgba(35, 232, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(rgba(35, 232, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 232, 255, 0.06) 1px, transparent 1px),
    rgba(3, 10, 12, 0.55);
  background-size: 32px 32px;
}

.guide-cursor {
  position: absolute;
  left: var(--guide-cursor-x);
  top: 31px;
  z-index: 2;
  width: 62px;
  height: 62px;
  overflow: visible;
  filter: drop-shadow(0 0 16px rgba(35, 232, 255, 0.24));
}

.guide-cursor-shape {
  fill: #f4fbff;
  stroke: #020507;
  stroke-width: 5;
  stroke-linejoin: miter;
  stroke-linecap: square;
  shape-rendering: crispEdges;
}

.guide-line {
  position: absolute;
  left: var(--guide-line-x);
  top: 58px;
  width: var(--guide-line-width);
  border-top: 3px dashed rgba(184, 255, 61, 0.86);
  transform: rotate(-8deg);
  transform-origin: left center;
}

.guide-projectile {
  position: absolute;
  left: var(--guide-projectile-x);
  top: 45px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(35, 232, 255, 0.65);
}

.guide-arrow {
  position: absolute;
  left: var(--guide-arrow-x);
  top: 57px;
  width: var(--guide-arrow-width);
  border-top: 3px solid rgba(35, 232, 255, 0.8);
}

.guide-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -8px;
  border-left: 14px solid rgba(35, 232, 255, 0.85);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.guide-target {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid rgba(244, 251, 255, 0.88);
  box-shadow: 0 0 18px rgba(184, 255, 61, 0.38);
}

.guide-target-one {
  left: var(--guide-target-x-1);
  top: 50px;
}

.guide-target-two {
  left: var(--guide-target-x-2);
  top: 30px;
}

.guide-target-three {
  left: var(--guide-target-x-3);
  top: 78px;
}

.game-guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.game-guide-steps li {
  min-height: 58px;
  padding: 12px;
  color: var(--soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.game-guide-start {
  width: 100%;
  margin-top: 14px;
}

#bird-game {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 5;
  background: #051012;
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  transition: filter 220ms ease;
}

#bird-game.is-dragging {
  cursor: grabbing;
}

.game-panel.is-complete #bird-game,
.game-panel.is-lost #bird-game {
  filter: blur(4px) brightness(0.68) saturate(0.9);
}

.game-win-modal {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  background: rgba(3, 10, 12, 0.16);
  backdrop-filter: blur(1.5px);
}

.game-win-card {
  position: relative;
  z-index: 2;
  width: min(320px, 82%);
  padding: 22px 20px;
  text-align: center;
  color: var(--text);
  background: rgba(4, 14, 17, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(35, 232, 255, 0.48);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(184, 255, 61, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(35, 232, 255, 0.14);
}

.game-win-card h3 {
  margin: 0;
  color: var(--cyan);
  font-size: 28px;
  line-height: 1.08;
}

.game-lose-card h3 {
  color: var(--rose);
}

.game-win-card p {
  margin: 16px 0 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.45;
}

.game-win-reset,
.game-lose-reset {
  margin-top: 16px;
}

.win-confetti {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.win-confetti span {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 7px;
  height: 13px;
  border-radius: 2px;
  background: var(--confetti-color, var(--cyan));
  box-shadow: 0 0 14px var(--confetti-glow, rgba(35, 232, 255, 0.4));
  opacity: 0;
  animation: confetti-pop 1.75s cubic-bezier(0.16, 0.86, 0.44, 1) both;
}

.win-confetti span:nth-child(1) {
  --confetti-x: -205px;
  --confetti-y: -118px;
  --confetti-rotate: 260deg;
  --confetti-color: var(--lime);
  --confetti-glow: rgba(184, 255, 61, 0.44);
}

.win-confetti span:nth-child(2) {
  --confetti-x: -152px;
  --confetti-y: -156px;
  --confetti-rotate: -210deg;
  animation-delay: 0.03s;
}

.win-confetti span:nth-child(3) {
  --confetti-x: -92px;
  --confetti-y: -132px;
  --confetti-rotate: 310deg;
  --confetti-color: #f4fbff;
  --confetti-glow: rgba(244, 251, 255, 0.34);
  animation-delay: 0.08s;
}

.win-confetti span:nth-child(4) {
  --confetti-x: -34px;
  --confetti-y: -174px;
  --confetti-rotate: -280deg;
  --confetti-color: var(--lime);
  --confetti-glow: rgba(184, 255, 61, 0.44);
  animation-delay: 0.01s;
}

.win-confetti span:nth-child(5) {
  --confetti-x: 38px;
  --confetti-y: -148px;
  --confetti-rotate: 240deg;
  animation-delay: 0.05s;
}

.win-confetti span:nth-child(6) {
  --confetti-x: 104px;
  --confetti-y: -174px;
  --confetti-rotate: -330deg;
  --confetti-color: var(--lime);
  --confetti-glow: rgba(184, 255, 61, 0.44);
  animation-delay: 0.1s;
}

.win-confetti span:nth-child(7) {
  --confetti-x: 168px;
  --confetti-y: -124px;
  --confetti-rotate: 290deg;
  --confetti-color: #f4fbff;
  --confetti-glow: rgba(244, 251, 255, 0.34);
  animation-delay: 0.04s;
}

.win-confetti span:nth-child(8) {
  --confetti-x: 218px;
  --confetti-y: -78px;
  --confetti-rotate: -260deg;
  animation-delay: 0.11s;
}

.win-confetti span:nth-child(9) {
  --confetti-x: -184px;
  --confetti-y: 62px;
  --confetti-rotate: -300deg;
  --confetti-color: var(--lime);
  --confetti-glow: rgba(184, 255, 61, 0.44);
  animation-delay: 0.12s;
}

.win-confetti span:nth-child(10) {
  --confetti-x: -104px;
  --confetti-y: 108px;
  --confetti-rotate: 260deg;
  animation-delay: 0.16s;
}

.win-confetti span:nth-child(11) {
  --confetti-x: -18px;
  --confetti-y: 136px;
  --confetti-rotate: -230deg;
  --confetti-color: #f4fbff;
  --confetti-glow: rgba(244, 251, 255, 0.34);
  animation-delay: 0.09s;
}

.win-confetti span:nth-child(12) {
  --confetti-x: 74px;
  --confetti-y: 118px;
  --confetti-rotate: 310deg;
  --confetti-color: var(--lime);
  --confetti-glow: rgba(184, 255, 61, 0.44);
  animation-delay: 0.14s;
}

.win-confetti span:nth-child(13) {
  --confetti-x: 142px;
  --confetti-y: 88px;
  --confetti-rotate: -280deg;
  animation-delay: 0.18s;
}

.win-confetti span:nth-child(14) {
  --confetti-x: 210px;
  --confetti-y: 34px;
  --confetti-rotate: 220deg;
  --confetti-color: #f4fbff;
  --confetti-glow: rgba(244, 251, 255, 0.34);
  animation-delay: 0.07s;
}

@keyframes confetti-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35) rotate(0deg);
  }

  12% {
    opacity: 1;
  }

  72% {
    opacity: 0.92;
  }

  100% {
    opacity: 0;
    transform: translate(var(--confetti-x), var(--confetti-y)) scale(0.92) rotate(var(--confetti-rotate));
  }
}

.identity-gate {
  position: relative;
  overflow: hidden;
  padding: 76px 36px 96px;
  background:
    linear-gradient(180deg, #05070a 0%, #061013 54%, #05070a 100%);
  isolation: isolate;
}

.identity-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(35, 232, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 61, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
}

.identity-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 24% 18%, rgba(35, 232, 255, 0.22), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(184, 255, 61, 0.14), transparent 32%);
  opacity: 0.9;
}

.terminal-frame {
  position: relative;
  width: min(900px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(35, 232, 255, 0.46);
  border-radius: 8px;
  background: rgba(3, 10, 12, 0.9);
  box-shadow:
    0 0 0 1px rgba(184, 255, 61, 0.08),
    0 0 46px rgba(35, 232, 255, 0.16),
    0 30px 90px rgba(0, 0, 0, 0.45);
}

.terminal-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035) 0,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 8px
  );
  opacity: 0.35;
}

.terminal-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(35, 232, 255, 0.16), rgba(184, 255, 61, 0.08));
  border-bottom: 1px solid rgba(35, 232, 255, 0.32);
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(35, 232, 255, 0.8);
}

.terminal-top span:nth-child(2) {
  background: var(--lime);
  box-shadow: 0 0 16px rgba(184, 255, 61, 0.65);
}

.terminal-top span:nth-child(3) {
  background: #ff597a;
  box-shadow: 0 0 16px rgba(255, 89, 122, 0.6);
}

.terminal-body {
  position: relative;
  padding: 34px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.terminal-path {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 15px;
  font-weight: 800;
}

.terminal-body h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  text-shadow: 0 0 28px rgba(35, 232, 255, 0.35);
}

.terminal-body h2::before {
  content: "> ";
  color: var(--cyan);
}

.terminal-subtitle {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
}

.terminal-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.terminal-option {
  min-height: 54px;
  padding: 0 18px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  background: rgba(8, 20, 23, 0.88);
  border: 1px solid rgba(35, 232, 255, 0.34);
  border-radius: 8px;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.terminal-option::before {
  content: "./";
  color: var(--cyan);
}

.terminal-option:hover,
.terminal-option:focus-visible,
.terminal-option.is-selected {
  color: #031014;
  background: var(--lime);
  border-color: rgba(184, 255, 61, 0.9);
  box-shadow: 0 0 30px rgba(184, 255, 61, 0.2);
  transform: translateY(-1px);
  outline: none;
}

.terminal-option:hover::before,
.terminal-option:focus-visible::before,
.terminal-option.is-selected::before {
  color: #031014;
}

.terminal-output {
  min-height: 24px;
  margin: 24px 0 0;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 800;
}

[hidden] {
  display: none !important;
}

[data-typewriter].is-typing::after {
  content: "_";
  display: inline-block;
  margin-left: 4px;
  color: var(--cyan);
  animation: cursor-blink 0.8s steps(2, start) infinite;
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

.section {
  padding: 96px 36px;
}

.section-inner,
.registration-wrap,
.author-wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.section-audience {
  background: #071012;
}

.section-author {
  background:
    radial-gradient(circle at 80% 18%, rgba(35, 232, 255, 0.12), transparent 28%),
    #071012;
}

.section-heading {
  position: relative;
  max-width: 900px;
  margin-bottom: 42px;
  overflow: hidden;
  padding: 60px 30px 30px;
  border: 1px solid rgba(35, 232, 255, 0.42);
  border-radius: 8px;
  background: rgba(3, 10, 12, 0.88);
  box-shadow:
    0 0 0 1px rgba(184, 255, 61, 0.07),
    0 0 38px rgba(35, 232, 255, 0.12),
    var(--shadow);
}

.section-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: linear-gradient(90deg, rgba(35, 232, 255, 0.16), rgba(184, 255, 61, 0.08));
  border-bottom: 1px solid rgba(35, 232, 255, 0.32);
}

.section-heading::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    18px 0 0 var(--lime),
    36px 0 0 #ff597a,
    0 0 16px rgba(35, 232, 255, 0.7);
}

.section-heading h2,
.registration-copy h2,
.author-copy h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading .section-kicker {
  margin-bottom: 18px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.section-heading .section-kicker::before {
  content: "visitor@ai-webinar:~$ ";
  color: var(--cyan);
}

.section-heading h2 {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  text-shadow: 0 0 28px rgba(35, 232, 255, 0.28);
}

.section-heading h2::before {
  content: "> ";
  color: var(--cyan);
}

.section-heading h2::after {
  content: "";
  display: inline-block;
  width: 0.58em;
  height: 0.92em;
  margin-left: 8px;
  vertical-align: -0.12em;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(35, 232, 255, 0.58);
  animation: cursor-blink 0.85s steps(2, start) infinite;
}

.section-program {
  background:
    radial-gradient(circle at 18% 20%, rgba(35, 232, 255, 0.12), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(184, 255, 61, 0.09), transparent 28%),
    #071012;
}

.program-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.program-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}

.program-heading p {
  margin: 16px 0 0;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 18px;
  font-weight: 900;
}

.program-chat-list {
  display: grid;
  gap: 16px;
  width: min(880px, 100%);
}

.program-message-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  width: min(760px, 100%);
  min-height: 86px;
  padding: 20px 22px 18px;
  color: var(--text);
  text-align: left;
  background:
    linear-gradient(135deg, rgba(35, 232, 255, 0.13), rgba(184, 255, 61, 0.05)),
    rgba(11, 17, 21, 0.94);
  border: 1px solid rgba(35, 232, 255, 0.32);
  border-radius: 8px 8px 8px 2px;
  box-shadow:
    0 0 0 1px rgba(184, 255, 61, 0.06),
    0 22px 56px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.program-message-card::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  background: rgba(11, 17, 21, 0.94);
  border-left: 1px solid rgba(35, 232, 255, 0.32);
  border-bottom: 1px solid rgba(35, 232, 255, 0.32);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.program-message-card-alt {
  justify-self: end;
  border-radius: 8px 8px 2px 8px;
}

.program-message-card-alt::after {
  right: -1px;
  left: auto;
  border-right: 1px solid rgba(35, 232, 255, 0.32);
  border-left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.program-message-card:hover,
.program-message-card:focus-visible,
.program-message-card.is-liked {
  border-color: rgba(35, 232, 255, 0.68);
  box-shadow:
    0 0 0 1px rgba(35, 232, 255, 0.18),
    0 24px 66px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(35, 232, 255, 0.14);
  outline: none;
  transform: translateY(-2px);
}

.program-message-text {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 850;
  line-height: 1.22;
}

.program-like-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  color: #041014;
  background: var(--cyan);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(35, 232, 255, 0.32);
}

.program-message-card.is-liked .program-like-badge {
  background: var(--lime);
  box-shadow: 0 0 22px rgba(184, 255, 61, 0.34);
}

.program-actions {
  margin-top: 32px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

body.is-unlocked .audience-grid {
  grid-template-columns: minmax(0, 760px);
}

.audience-card,
.form-placeholder,
.landing-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.audience-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cyan);
}

.audience-card-alt::before {
  background: var(--lime);
}

.audience-label {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 8px 10px;
  color: var(--cyan);
  background: rgba(35, 232, 255, 0.1);
  border: 1px solid rgba(35, 232, 255, 0.25);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.audience-card-alt .audience-label {
  color: var(--lime);
  background: rgba(184, 255, 61, 0.09);
  border-color: rgba(184, 255, 61, 0.24);
}

.audience-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.18;
}

.audience-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  position: relative;
  padding: 16px 0 0 28px;
  color: var(--soft);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(35, 232, 255, 0.55);
}

.audience-card-alt .audience-list li::before {
  background: var(--lime);
  box-shadow: 0 0 18px rgba(184, 255, 61, 0.45);
}

.author-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: 48px;
  align-items: center;
}

.author-copy h3 {
  margin: 22px 0 0;
  color: var(--cyan);
  font-size: 32px;
  line-height: 1.08;
}

.author-copy p:not(.section-kicker) {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 20px;
}

.author-list {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.author-list li {
  position: relative;
  padding: 18px 0 0 34px;
  color: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
}

.author-list li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--lime);
  box-shadow: 0 0 20px rgba(184, 255, 61, 0.5);
}

.author-photo-frame {
  position: relative;
  display: grid;
  width: min(480px, 100%);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
}

.author-photo-frame::before {
  content: "";
  position: absolute;
  inset: -42px;
  background: url("/static/webinar_landing/assets/author.jpg") center / cover no-repeat;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.82;
  transform: scale(1.08);
  -webkit-mask-image: radial-gradient(circle at center, #000 42%, rgba(0, 0, 0, 0.68) 59%, transparent 82%);
  mask-image: radial-gradient(circle at center, #000 42%, rgba(0, 0, 0, 0.68) 59%, transparent 82%);
}

.author-photo-frame::after {
  content: "";
  position: absolute;
  inset: -26px;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(7, 16, 18, 0) 46%, rgba(7, 16, 18, 0.22) 66%, #071012 94%);
  pointer-events: none;
}

.author-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle at center, #000 48%, rgba(0, 0, 0, 0.78) 63%, transparent 84%);
  mask-image: radial-gradient(circle at center, #000 48%, rgba(0, 0, 0, 0.78) 63%, transparent 84%);
}

.section-registration {
  background: #0a1114;
  padding-bottom: 112px;
}

.registration-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.registration-copy {
  padding: 8px 0;
}

.registration-copy p:last-child {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 18px;
}

.landing-form {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(35, 232, 255, 0.1), rgba(184, 255, 61, 0.07)),
    var(--bg-panel-strong);
}

.landing-form-title {
  margin: 0 0 2px;
  color: var(--text);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 950;
  line-height: 1.12;
}

.landing-field,
.landing-consents,
.landing-checkbox {
  min-width: 0;
}

.landing-field {
  display: grid;
  gap: 8px;
}

.landing-field span,
.landing-consents legend {
  color: var(--soft);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 800;
}

.landing-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(3, 10, 12, 0.86);
  border: 1px solid rgba(35, 232, 255, 0.34);
  border-radius: 8px;
  font: inherit;
  font-size: 17px;
  outline: none;
}

.landing-field input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(35, 232, 255, 0.15);
}

.landing-field input::placeholder {
  color: rgba(168, 184, 189, 0.72);
}

.landing-consents {
  display: grid;
  gap: 14px;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.landing-consents legend {
  margin: 0 0 2px;
}

.landing-checkbox {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.45;
}

.landing-checkbox input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--lime);
}

.landing-checkbox a,
.webinar-footer a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-checkbox a:hover,
.landing-checkbox a:focus-visible,
.webinar-footer a:hover,
.webinar-footer a:focus-visible {
  color: #7cf4ff;
}

.landing-errors {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  color: #ffd7df;
  background: rgba(255, 89, 122, 0.1);
  border: 1px solid rgba(255, 89, 122, 0.38);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
}

.landing-errors p {
  margin: 0;
}

.landing-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.registration-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
}

.registration-modal[hidden] {
  display: none !important;
}

.registration-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 10, 12, 0.78);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.registration-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: min(560px, 100%);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  padding: 30px;
  color: var(--text);
  border: 1px solid rgba(35, 232, 255, 0.44);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(35, 232, 255, 0.16), transparent 34%),
    rgba(4, 14, 17, 0.96);
  box-shadow:
    0 0 0 1px rgba(184, 255, 61, 0.08),
    0 34px 110px rgba(0, 0, 0, 0.55);
}

.registration-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--text);
  border: 1px solid rgba(35, 232, 255, 0.3);
  border-radius: 8px;
  background: rgba(3, 10, 12, 0.72);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.registration-modal-close:hover,
.registration-modal-close:focus-visible {
  color: #031014;
  background: var(--cyan);
  outline: none;
}

.registration-modal-title {
  margin: 0;
  padding-right: 46px;
  color: var(--text);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.12;
}

.landing-form-modal {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

body.modal-open {
  overflow: hidden;
}

.webinar-footer {
  padding: 30px 36px 38px;
  color: var(--muted);
  background: #05070a;
  border-top: 1px solid rgba(35, 232, 255, 0.18);
}

.webinar-footer-inner {
  display: flex;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.webinar-footer p {
  margin: 0;
}

.webinar-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.form-placeholder {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 28px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(35, 232, 255, 0.12), rgba(184, 255, 61, 0.08)),
    var(--bg-panel-strong);
  border-style: dashed;
}

.form-placeholder span {
  width: min(420px, 100%);
  padding: 28px;
  text-align: center;
  color: var(--text);
  background: rgba(5, 7, 10, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 34px 24px 58px;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-visual {
    width: min(520px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .hero-program-label {
    margin-top: 30px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-points li {
    min-height: 0;
  }

  .section {
    padding: 76px 24px;
  }

  .identity-gate {
    padding: 66px 24px 82px;
  }

  .section-heading h2,
  .registration-copy h2,
  .author-copy h2 {
    font-size: 36px;
  }

  .audience-grid,
  .registration-wrap,
  .author-wrap {
    grid-template-columns: 1fr;
  }

  .registration-modal-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(560px, 100%);
  }

  .author-photo-frame {
    max-width: 520px;
  }

}

@media (min-width: 981px) and (max-height: 760px) {
  .hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 17px;
  }

  .hero-program-label {
    min-height: 34px;
    margin-top: 22px;
    font-size: 12px;
  }

  .hero-points {
    gap: 16px;
    margin-top: 18px;
  }

  .hero-points li {
    min-height: 86px;
    padding: 26px 18px 16px;
  }

  .hero-points p {
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-visual {
    width: min(480px, 100%);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    padding: 14px 12px 18px;
  }

  .hero::after {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .hero-main {
    gap: 8px;
  }

  .hero-meta {
    flex-wrap: nowrap;
    gap: 4px;
    margin-bottom: 12px;
  }

  .format-label {
    flex: 0 0 auto;
    font-size: clamp(6.4px, 1.95vw, 8px);
    line-height: 1;
    white-space: nowrap;
  }

  .event-labels {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    gap: 4px;
    min-width: 0;
  }

  .academy-label {
    flex: 0 1 auto;
    min-height: 28px;
    padding: 0 6px;
    border-radius: 7px;
    font-size: clamp(6.4px, 1.95vw, 8px);
    line-height: 1;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(20px, 5.95vw, 25px);
    line-height: 1.02;
  }

  .hero-lead {
    margin-top: 9px;
    font-size: clamp(12.5px, 3.35vw, 14px);
    line-height: 1.32;
  }

  .speaker-line {
    width: 100%;
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 10px;
  }

  .speaker-line span {
    flex: 0 0 auto;
    padding: 3px 6px;
    border-radius: 6px;
    font-size: 9px;
  }

  .speaker-line strong {
    flex: 0 0 auto;
    font-size: 14px;
    white-space: nowrap;
  }

  .speaker-line em {
    min-width: 0;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero-visual {
    width: min(148px, 43vw);
    min-height: 0;
    margin: -2px auto 0;
  }

  .hero-visual::before {
    inset: -14px;
    filter: blur(18px);
  }

  .hero-visual::after {
    inset: -8px;
  }

  .hero-photo {
    height: 100%;
    min-height: 0;
    object-position: 52% center;
  }

  .hero-program-label {
    min-height: 24px;
    margin-top: 8px;
    padding: 0 7px;
    border-radius: 7px;
    font-size: 9px;
  }

  .hero-points {
    gap: 7px;
    margin-top: 7px;
  }

  .hero-points li {
    padding: 8px 10px 8px 36px;
    min-height: 0;
  }

  .point-number {
    top: 9px;
    left: 10px;
    width: 18px;
    height: 18px;
    border-width: 2px;
    font-size: 10px;
  }

  .hero-points p {
    font-size: 11.5px;
    line-height: 1.25;
  }

  .hero-actions {
    margin-top: 10px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }

  .registration-modal {
    padding: 10px;
  }

  .registration-modal-panel {
    max-height: calc(100svh - 20px);
    padding: 18px;
  }

  .registration-modal-close {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .registration-modal-title {
    padding-right: 38px;
    font-size: 22px;
    line-height: 1.14;
  }

  .section {
    padding: 64px 16px;
  }

  .game-toolbar {
    flex-wrap: wrap;
    padding: 12px;
    font-size: 12px;
  }

  .game-reset {
    min-height: 32px;
    padding: 0 12px;
  }

  .game-guide-overlay {
    padding: 10px;
  }

  .game-guide-card {
    width: min(350px, 96%);
    padding: 10px;
  }

  .game-guide-title {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .game-guide-diagram {
    --guide-cursor-x: 6%;
    --guide-line-x: 18%;
    --guide-line-width: 23%;
    --guide-projectile-x: 43%;
    --guide-arrow-x: 50%;
    --guide-arrow-width: 22%;
    --guide-target-x-1: 79%;
    --guide-target-x-2: 88%;
    --guide-target-x-3: 88%;
    height: 58px;
  }

  .guide-cursor {
    top: 18px;
    width: 34px;
    height: 34px;
  }

  .guide-cursor-shape {
    stroke-width: 5;
  }

  .guide-line {
    top: 28px;
    border-top-width: 2px;
  }

  .guide-projectile {
    top: 21px;
    width: 16px;
    height: 16px;
  }

  .guide-arrow {
    top: 29px;
    border-top-width: 2px;
  }

  .guide-arrow::after {
    top: -6px;
    border-left-width: 10px;
    border-top-width: 5px;
    border-bottom-width: 5px;
  }

  .guide-target {
    width: 17px;
    height: 17px;
    border-width: 2px;
  }

  .guide-target-one {
    top: 24px;
  }

  .guide-target-two {
    top: 12px;
  }

  .guide-target-three {
    top: 38px;
  }

  .game-guide-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 6px;
  }

  .game-guide-steps li {
    min-height: 0;
    padding: 6px;
    font-size: 9px;
    line-height: 1.12;
  }

  .game-guide-start {
    min-height: 30px;
    margin-top: 6px;
    font-size: 11px;
  }

  .game-win-card {
    width: min(238px, 76%);
    padding: 16px 14px;
  }

  .game-win-card h3 {
    font-size: 21px;
  }

  .game-win-reset,
  .game-lose-reset {
    min-height: 32px;
    margin-top: 12px;
    padding: 0 12px;
    font-size: 12px;
  }

  .identity-gate {
    padding: 54px 16px 72px;
  }

  .terminal-body {
    padding: 24px 18px;
  }

  .terminal-options {
    grid-template-columns: 1fr;
  }

  .terminal-option {
    min-height: 52px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .registration-copy h2,
  .author-copy h2 {
    font-size: 31px;
  }

  .program-heading {
    margin-bottom: 24px;
  }

  .program-heading h2 {
    font-size: 36px;
  }

  .program-heading p {
    font-size: 15px;
  }

  .program-chat-list {
    gap: 14px;
  }

  .program-message-card,
  .program-message-card-alt {
    justify-self: stretch;
    min-height: 0;
    padding: 16px;
  }

  .program-message-text {
    font-size: 17px;
  }

  .audience-card {
    padding: 22px;
  }

  .audience-card h3 {
    font-size: 22px;
  }

  .registration-wrap {
    gap: 22px;
  }

  .landing-form {
    padding: 20px;
  }

  .landing-checkbox {
    font-size: 13px;
  }

  .author-wrap {
    gap: 30px;
  }

  .author-copy h3 {
    font-size: 26px;
  }

  .author-copy p:not(.section-kicker),
  .author-list li {
    font-size: 17px;
  }

  .form-placeholder {
    min-height: 220px;
    padding: 18px;
  }

  .form-placeholder span {
    padding: 22px;
    font-size: 18px;
  }

  .webinar-footer {
    padding: 26px 16px 32px;
  }

  .webinar-footer-inner {
    display: grid;
    gap: 8px;
    font-size: 13px;
  }

  .webinar-footer nav {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding: 10px 10px 14px;
  }

  .hero::after {
    left: 10px;
    right: 10px;
    bottom: 9px;
  }

  .hero-meta {
    gap: 3px;
    margin-bottom: 9px;
  }

  .event-labels {
    gap: 3px;
  }

  .format-label,
  .academy-label {
    font-size: 5.8px;
  }

  .academy-label {
    min-height: 24px;
    padding: 0 4px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero-lead {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.28;
  }

  .speaker-line {
    gap: 5px;
    margin-top: 8px;
  }

  .speaker-line span {
    padding: 2px 5px;
    font-size: 8px;
  }

  .speaker-line strong {
    font-size: 13px;
  }

  .speaker-line em {
    font-size: 11px;
  }

  .hero-visual {
    width: min(126px, 40vw);
  }

  .hero-program-label {
    min-height: 22px;
    margin-top: 6px;
    font-size: 8px;
  }

  .hero-points {
    gap: 5px;
    margin-top: 6px;
  }

  .hero-points li {
    padding: 7px 8px 7px 32px;
  }

  .point-number {
    top: 8px;
    left: 8px;
  }

  .hero-points p {
    font-size: 10.8px;
    line-height: 1.2;
  }

  .program-heading h2 {
    font-size: 31px;
  }

  .program-message-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .program-like-badge {
    justify-self: end;
  }

  .hero-actions {
    margin-top: 8px;
  }

  .button {
    min-height: 40px;
  }

  .game-toolbar {
    gap: 6px;
    font-size: 11px;
  }

  .game-reset {
    min-height: 30px;
    padding: 0 10px;
  }
}
