/* Webinar landing — standalone */

:root {
  --wb-bg: #f4f6f9;
  --wb-surface: #ffffff;
  --wb-ink: #0a0a0b;
  --wb-muted: #6b7280;
  --wb-line: #e5e7eb;
  --wb-blue: #2563eb;
  --wb-blue-bright: #3b82f6;
  --wb-blue-soft: #60a5fa;
  --wb-dark: #0a0a0b;
  --wb-panel: #141416;
  --wb-radius: 20px;
  --wb-radius-sm: 14px;
  --wb-max: 1120px;
  --wb-font: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--wb-font);
  color: var(--wb-ink);
  background: var(--wb-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wb-wrap {
  width: min(100% - 48px, var(--wb-max));
  margin-inline: auto;
}

/* Buttons */
.wb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--wb-ink);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.wb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.wb-btn:active {
  transform: translateY(0);
}

.wb-btn--cta {
  padding-right: 10px;
}

.wb-btn__orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--wb-blue);
  color: #fff;
}

.wb-btn--block {
  width: 100%;
}

.wb-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Shared type */
.wb-eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wb-muted);
}

.wb-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wb-blue);
}

.wb-label--on-dark {
  color: var(--wb-blue-soft);
}

.wb-section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.wb-section-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.wb-section-sub {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--wb-muted);
}

/* Subtle dividers between sections */
.wb-countdown,
.wb-levers,
.wb-stats,
.wb-speaker,
.wb-case,
.wb-agenda,
.wb-tech,
.wb-why,
.wb-register {
  border-top: 1px solid #ebebeb;
}

.wb-case,
.wb-register,
.wb-why {
  border-top-color: #1f1f22;
}

/* Hero */
.wb-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background:
    radial-gradient(ellipse 60% 50% at 8% 20%, rgba(59, 130, 246, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 45% at 92% 80%, rgba(124, 58, 237, 0.14), transparent 55%),
    linear-gradient(180deg, #eef2f7 0%, #f7f8fb 55%, #ffffff 100%);
}

.wb-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.wb-hero__glow--tl {
  top: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.22);
}

.wb-hero__glow--br {
  right: -40px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  background: rgba(124, 58, 237, 0.16);
}

.wb-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.wb-hero__title {
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.wb-hero__accent {
  color: var(--wb-blue);
}

.wb-hero__lead {
  margin: 0 0 32px;
  max-width: 460px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--wb-muted);
}

.wb-hero__media {
  position: relative;
}

.wb-hero__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.wb-hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.wb-hero__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 40px);
  color: #fff;
}

.wb-hero__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #fff;
  color: #0a0a0b;
  flex-shrink: 0;
}

.wb-hero__badge-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: #0a0a0b;
}

.wb-hero__badge__meta {
  min-width: 0;
}

.wb-hero__badge__meta strong,
.wb-hero__badge__meta span {
  display: block;
}

.wb-hero__badge__meta strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.wb-hero__badge__meta span {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

/* Countdown */
.wb-countdown {
  padding: 88px 0;
  background: var(--wb-surface);
  text-align: center;
}

.wb-countdown__date {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.wb-countdown__sub {
  margin: 0 0 40px;
  font-size: 16px;
  color: var(--wb-muted);
}

.wb-timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 120px));
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}

.wb-timer__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 12px 16px;
  background: #f3f4f6;
  border: 1px solid var(--wb-line);
  border-radius: 18px;
}

.wb-timer__num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.wb-timer__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--wb-muted);
}

/* Levers */
.wb-levers {
  padding: 72px 0 96px;
  background: #f5f5f5;
}

.wb-levers__head {
  max-width: 720px;
  margin: 0 0 40px;
  text-align: left;
}

.wb-levers__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--wb-ink);
}

.wb-levers__sub {
  margin: 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--wb-muted);
}

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

.wb-lever {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 18px;
}

.wb-lever__title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--wb-ink);
}

.wb-lever__num {
  color: var(--wb-blue);
  font-weight: 700;
  margin-right: 6px;
}

.wb-lever__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--wb-muted);
}

/* Stats */
.wb-stats {
  padding: 72px 0;
  background: #fff;
}

.wb-stats__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.wb-stats__num {
  margin: 0 0 16px;
  font-size: clamp(72px, 12vw, 120px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--wb-blue);
}

.wb-stats__title {
  margin: 0 0 16px;
  max-width: 480px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--wb-ink);
}

.wb-stats__text {
  margin: 0;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--wb-muted);
}

.wb-dots {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px 20px;
  justify-items: center;
}

.wb-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eceef2;
}

.wb-dot--on {
  background: var(--wb-ink);
}

/* Speaker */
.wb-speaker {
  padding: 96px 0;
}

.wb-speaker__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.wb-speaker__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.wb-speaker__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
}

.wb-speaker__label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wb-muted);
}

.wb-speaker__name {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--wb-ink);
}

.wb-speaker__role {
  margin: 0 0 36px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--wb-muted);
}

.wb-speaker__bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wb-speaker__bio p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
}

/* Case */
.wb-case {
  padding: 88px 0;
  background: var(--wb-dark);
  color: #fff;
}

.wb-case__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.wb-case__metric {
  margin: 0 0 12px;
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--wb-blue-soft);
}

.wb-case__title {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.wb-case__text {
  margin: 0;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.7;
  color: #a1a1aa;
}

.wb-case__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
}

/* Agenda */
.wb-agenda {
  padding: 96px 0;
  background: #fff;
}

.wb-agenda__head {
  margin: 0 0 36px;
  text-align: left;
}

.wb-agenda__heading {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--wb-ink);
}

.wb-agenda__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: none;
  margin: 0;
}

.wb-agenda__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
}

.wb-agenda__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--wb-ink);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.wb-agenda__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #333;
}

/* Tech */
.wb-tech {
  padding: 88px 0;
  background: #f5f5f5;
}

.wb-tech__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.wb-tech__label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wb-muted);
}

.wb-tech__title {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--wb-ink);
}

.wb-tech__text {
  margin: 0;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--wb-muted);
}

.wb-tech__panel {
  padding: 36px 40px;
  background: #121212;
  border-radius: 24px;
  color: #d4d4d8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.55;
}

.wb-tech__status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a1a1aa;
}

.wb-tech__dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--wb-blue-bright);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.wb-tech__log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
  color: #c4c4c8;
}

.wb-tech__ok {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--wb-blue-bright);
}

/* Why join */
.wb-why {
  padding: 96px 0;
  background: #000;
  color: #fff;
  border-top-color: #1f1f22;
}

.wb-why__inner {
  max-width: 760px;
}

.wb-why__title {
  margin: 0 0 48px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fff;
}

.wb-why__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wb-why__text {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

/* Register */
.wb-register {
  padding: 88px 0;
  background: var(--wb-dark);
  color: #fff;
}

.wb-register__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.wb-register__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.wb-register__text {
  margin: 0 0 28px;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.65;
  color: #a1a1aa;
}

.wb-register__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #d4d4d8;
}

.wb-register__meta li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wb-register__meta li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--wb-blue-soft);
}

.wb-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border-radius: 24px;
  color: var(--wb-ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.wb-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wb-form__label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.wb-form__input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--wb-line);
  border-radius: 12px;
  background: #f9fafb;
  font-family: inherit;
  font-size: 15px;
  color: var(--wb-ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.wb-form__input:focus {
  background: #fff;
  border-color: var(--wb-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.wb-form__input--error {
  border-color: #ef4444;
}

.wb-form__field-error {
  margin: 0;
  font-size: 12px;
  color: #ef4444;
}

.wb-form .wb-btn {
  margin-top: 8px;
}

/* Footer styles removed — site footer from global.css */

/* Motion */
@keyframes wb-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wb-hero__content,
.wb-hero__media,
.wb-countdown__inner,
.wb-lever,
.wb-stats__copy,
.wb-stats__visual,
.wb-speaker__media,
.wb-speaker__content,
.wb-case__copy,
.wb-case__media,
.wb-agenda__item,
.wb-tech__copy,
.wb-tech__panel,
.wb-register__copy,
.wb-form {
  animation: wb-fade-up 0.7s ease both;
}

.wb-hero__media { animation-delay: 0.12s; }
.wb-lever:nth-child(2) { animation-delay: 0.08s; }
.wb-lever:nth-child(3) { animation-delay: 0.12s; }
.wb-lever:nth-child(4) { animation-delay: 0.16s; }
.wb-stats__visual { animation-delay: 0.1s; }
.wb-speaker__content { animation-delay: 0.1s; }
.wb-case__media { animation-delay: 0.1s; }
.wb-tech__panel { animation-delay: 0.1s; }
.wb-form { animation-delay: 0.1s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .wb-hero__grid,
  .wb-stats__grid,
  .wb-speaker__grid,
  .wb-case__grid,
  .wb-tech__grid,
  .wb-register__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .wb-hero {
    padding: 48px 0 56px;
  }

  .wb-hero__media {
    max-width: 480px;
    width: 100%;
    margin-inline: auto;
  }

  .wb-speaker__media {
    max-width: 480px;
    width: 100%;
    margin-inline: auto;
  }

  .wb-speaker__media img {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .wb-speaker__content {
    padding: 36px 28px;
  }

  .wb-levers__grid {
    grid-template-columns: 1fr;
  }

  .wb-timer {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 520px;
    margin-inline: auto;
  }

  .wb-dots {
    max-width: 420px;
    margin-inline: auto 0;
    gap: 14px 16px;
  }

  .wb-dot {
    width: 28px;
    height: 28px;
  }

  .wb-agenda__item {
    align-items: flex-start;
  }

  .wb-tech__panel {
    font-size: 13px;
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: clip;
  }

  .wb-wrap {
    width: min(100% - 32px, var(--wb-max));
  }

  .wb-countdown,
  .wb-stats,
  .wb-speaker,
  .wb-agenda,
  .wb-case,
  .wb-tech,
  .wb-why,
  .wb-register,
  .wb-levers {
    padding: 56px 0;
  }

  .wb-hero__title {
    font-size: clamp(34px, 10vw, 42px);
  }

  .wb-hero__lead {
    font-size: 15px;
  }

  .wb-hero__badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    gap: 10px;
  }

  .wb-hero__badge-icon {
    width: 32px;
    height: 32px;
  }

  .wb-hero__badge__meta strong {
    font-size: 14px;
  }

  .wb-hero__badge__meta span {
    font-size: 11px;
  }

  .wb-timer {
    gap: 8px;
    max-width: none;
  }

  .wb-timer__cell {
    padding: 14px 4px 12px;
    border-radius: 14px;
  }

  .wb-timer__num {
    font-size: 28px;
  }

  .wb-timer__label {
    font-size: 10px;
  }

  .wb-stats__grid {
    gap: 28px;
  }

  .wb-stats__num {
    font-size: 72px;
  }

  .wb-dots {
    max-width: 100%;
    margin-inline: 0;
    gap: 10px 12px;
  }

  .wb-dot {
    width: 22px;
    height: 22px;
  }

  .wb-speaker__media,
  .wb-hero__media {
    max-width: none;
  }

  .wb-speaker__content {
    padding: 28px 22px;
  }

  .wb-speaker__name {
    font-size: 34px;
  }

  .wb-speaker__role {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .wb-case__metric {
    font-size: 48px;
  }

  .wb-agenda__item {
    gap: 16px;
    padding: 18px 16px;
  }

  .wb-agenda__num {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin-top: 2px;
  }

  .wb-agenda__text {
    font-size: 14px;
    line-height: 1.5;
  }

  .wb-why {
    padding: 64px 0;
  }

  .wb-why__title {
    margin-bottom: 32px;
    letter-spacing: 0.12em;
  }

  .wb-why__list {
    gap: 24px;
  }

  .wb-why__text {
    font-size: 15px;
  }

  .wb-tech__panel {
    padding: 24px 18px;
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .wb-tech__log {
    gap: 10px;
  }

  .wb-register__meta {
    margin-bottom: 8px;
  }

  .wb-form {
    padding: 22px 18px;
  }
}
