:root {
  color-scheme: dark;
  --bg: #0b0b0f;
  --bg-soft: #0f1115;
  --bg-elevated: #12161d;
  --panel: rgba(14, 18, 25, 0.84);
  --panel-strong: rgba(16, 21, 30, 0.94);
  --panel-border: rgba(182, 197, 224, 0.11);
  --panel-border-strong: rgba(188, 205, 236, 0.2);
  --panel-highlight: rgba(255, 255, 255, 0.05);
  --text: #f5f7fb;
  --text-soft: #c6cedd;
  --text-muted: #8d97aa;
  --accent: #8eb7ff;
  --accent-strong: #c8deff;
  --accent-soft: rgba(142, 183, 255, 0.16);
  --accent-violet: #b1a1ff;
  --accent-cyan: #8fe8ff;
  --danger-soft: rgba(166, 126, 126, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.22);
  --glow-blue: 0 0 40px rgba(142, 183, 255, 0.14);
  --glow-cyan: 0 0 32px rgba(143, 232, 255, 0.12);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: 720px;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lead-accent: #c9a96e;
  --lead-accent-dim: #c9a96e33;
  --lead-accent-mid: #c9a96e55;
  --lead-surface: #111111;
  --lead-surface-raised: #161616;
  --lead-text-primary: #f0ede6;
  --lead-text-secondary: #8a8580;
  --lead-text-muted: #55534f;
  --lead-radius-sm: 8px;
  --lead-radius-md: 12px;
  --lead-radius-lg: 16px;
  --lead-transition: 0.3s ease;
  --lead-z-sticky: 1000;
  --lead-z-modal: 2000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(177, 161, 255, 0.1), transparent 28%),
    radial-gradient(circle at 80% 14%, rgba(143, 232, 255, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(142, 183, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #090b10 0%, #0d1117 48%, #090b10 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.72;
  letter-spacing: -0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    radial-gradient(circle at center, transparent 55%, rgba(0, 0, 0, 0.18) 100%);
  z-index: 0;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.background-glow {
  position: fixed;
  inset: auto;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.background-glow--one {
  top: 4rem;
  left: -6rem;
  background: rgba(177, 161, 255, 0.16);
}

.background-glow--two {
  right: -8rem;
  bottom: 6rem;
  background: rgba(143, 232, 255, 0.14);
}

.site-header,
.app-shell,
.site-footer,
.noscript-warning {
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 1rem 1rem 0;
}

.site-header__inner,
.site-footer__inner {
  width: min(calc(100% - 2rem), calc(var(--content-width) + 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.language-switcher-slot {
  display: flex;
  align-items: center;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
}

.language-switcher__select {
  border: none;
  background: transparent;
  color: var(--text);
  min-width: 8.6rem;
  padding: 0.25rem 0.4rem;
  cursor: pointer;
  outline: none;
}

.language-switcher__select option {
  color: #111;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  gap: 0.2rem;
}

.brand__eyebrow,
.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand__name {
  font-size: 0.95rem;
  color: var(--text-soft);
  opacity: 0.9;
}

.app-shell {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.screen {
  display: none;
  min-height: calc(100vh - 8rem);
  min-height: calc(100svh - 8rem);
  align-items: stretch;
}

.screen.is-active {
  display: flex;
}

.screen--hero {
  align-items: center;
}

.panel {
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, rgba(18, 22, 29, 0.94), rgba(11, 14, 20, 0.9));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(28px);
  padding: 1.5rem;
}

.panel--hero {
  min-height: min(86svh, 52rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(177, 161, 255, 0.12), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(143, 232, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(17, 21, 29, 0.96), rgba(11, 14, 20, 0.94));
}

.display-title,
.section-title,
.event-title,
.summary-title,
.verdict-title,
.invite-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow: 0 0 24px rgba(188, 205, 236, 0.08);
}

.display-title {
  margin-top: 0.7rem;
  font-size: clamp(2.9rem, 8vw, 5.25rem);
  max-width: 12ch;
  text-wrap: balance;
  text-shadow: 0 0 40px rgba(177, 161, 255, 0.12), 0 0 20px rgba(143, 232, 255, 0.08);
}

.lead {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.78;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.hero-meta__item,
.progress-label,
.event-tag,
.timeline-item__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(188, 205, 236, 0.14);
  border-radius: 999px;
  color: var(--text-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  font-size: 0.85rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-intro {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
  color: var(--text-soft);
  max-width: 35rem;
}

.hero-intro p,
.note-block p,
.section-copy,
.invite-copy,
.timeline-item__text,
.option-card__text,
.footer-link,
.event-block p,
.summary-reflection,
.transition-text {
  margin: 0;
}

.hero-actions,
.panel-actions,
.invite-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 2rem;
}

.primary-button,
.ghost-button,
.text-link {
  appearance: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.primary-button,
.ghost-button {
  padding: 0.98rem 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.primary-button {
  background:
    linear-gradient(180deg, rgba(210, 230, 255, 0.95), rgba(132, 177, 255, 0.92));
  color: #07111f;
  box-shadow: 0 14px 34px rgba(80, 124, 216, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.primary-button:hover,
.primary-button:focus-visible {
  background:
    linear-gradient(180deg, rgba(230, 240, 255, 0.98), rgba(157, 196, 255, 0.96));
  box-shadow: 0 18px 42px rgba(80, 124, 216, 0.3), 0 0 28px rgba(142, 183, 255, 0.18);
}

.primary-button--secondary {
  background:
    linear-gradient(180deg, rgba(238, 244, 255, 0.96), rgba(183, 204, 255, 0.92));
  box-shadow: 0 16px 38px rgba(80, 124, 216, 0.24), 0 0 24px rgba(177, 161, 255, 0.12);
}

.primary-button--secondary:hover,
.primary-button--secondary:focus-visible {
  background:
    linear-gradient(180deg, rgba(244, 248, 255, 0.98), rgba(195, 213, 255, 0.96));
  box-shadow: 0 20px 44px rgba(80, 124, 216, 0.28), 0 0 28px rgba(177, 161, 255, 0.16);
}

.primary-button[disabled] {
  cursor: not-allowed;
  opacity: 0.35;
}

.ghost-button {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  color: var(--text);
  border: 1px solid var(--panel-border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.ghost-button:hover,
.ghost-button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  border-color: rgba(142, 183, 255, 0.38);
  color: #dce9ff;
  box-shadow: 0 0 24px rgba(142, 183, 255, 0.1);
}

.ghost-button--header {
  padding: 0.65rem 0.95rem;
  font-size: 0.92rem;
}

.is-hidden {
  display: none !important;
}

.section-title,
.event-title,
.summary-title,
.verdict-title,
.invite-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 0.4rem;
}

.steps-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps-list li,
.event-block,
.option-card,
.timeline-item,
.verdict-card,
.contact-card,
.summary-card {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  backdrop-filter: blur(12px);
}

.steps-list__number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #dce8ff;
  text-shadow: var(--glow-blue);
}

.steps-list h3,
.event-block h3,
.summary-card h3,
.contact-card h3,
.verdict-card h3 {
  margin: 0;
  font-size: 1rem;
}

.steps-list p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
}

.note-block {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-inline-start: 3px solid rgba(142, 183, 255, 0.46);
  background: linear-gradient(90deg, rgba(142, 183, 255, 0.08), rgba(142, 183, 255, 0.02));
  color: var(--text-soft);
}

.panel-actions {
  margin-top: 1.5rem;
}

.event-shell {
  display: grid;
  gap: 1.2rem;
}

.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.progress-dots {
  display: inline-flex;
  gap: 0.55rem;
}

.progress-dots span {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--panel-border-strong);
  background: transparent;
}

.progress-dots span.is-filled {
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent));
  border-color: transparent;
  box-shadow: 0 0 0 0.3rem rgba(142, 183, 255, 0.12), 0 0 20px rgba(143, 232, 255, 0.12);
}

.event-header {
  display: grid;
  gap: 0.75rem;
}

.event-meta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.event-body {
  display: grid;
  gap: 1rem;
}

.event-block {
  padding: 1.1rem;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.event-block--intro {
  background:
    radial-gradient(circle at top left, rgba(177, 161, 255, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(142, 183, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.event-block h3 {
  margin-bottom: 0.55rem;
  color: var(--text);
}

.event-block p {
  color: var(--text-soft);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--panel-border-strong), transparent);
}

.question-panel {
  display: grid;
  gap: 1rem;
}

.question-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.question-text {
  margin: 0;
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.55;
}

.options-group {
  display: grid;
  gap: 0.8rem;
}

.option-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.option-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(177, 161, 255, 0.08), transparent 48%, rgba(143, 232, 255, 0.05));
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.option-card:hover,
.option-card:focus-within {
  border-color: rgba(142, 183, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 34px rgba(8, 13, 22, 0.28), 0 0 24px rgba(142, 183, 255, 0.08);
}

.option-card:hover::before,
.option-card:focus-within::before {
  opacity: 1;
}

.option-card.is-selected {
  border-color: rgba(143, 232, 255, 0.38);
  background:
    linear-gradient(180deg, rgba(114, 157, 255, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow: 0 20px 40px rgba(8, 13, 22, 0.3), 0 0 0 1px rgba(143, 232, 255, 0.08), 0 0 30px rgba(142, 183, 255, 0.12);
}

.option-card__marker {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid rgba(188, 205, 236, 0.32);
  margin-top: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.option-card.is-selected .option-card__marker::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent));
  box-shadow: 0 0 18px rgba(143, 232, 255, 0.35);
}

.option-card__title {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.option-card__text {
  margin-top: 0.3rem;
  color: var(--text-soft);
}

.option-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.event-footer {
  display: grid;
  gap: 1rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
}

.event-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(142, 183, 255, 0.24);
  border-radius: 0;
  padding: 0 0 0.15rem;
}

.event-actions {
  position: sticky;
  bottom: 0.75rem;
  padding-top: 0.6rem;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: linear-gradient(180deg, transparent, rgba(11, 17, 23, 0.86) 34%, rgba(11, 17, 23, 0.97));
  backdrop-filter: blur(12px);
  border-radius: 20px;
}

.event-actions .primary-button {
  width: 100%;
  box-shadow: 0 18px 38px rgba(42, 74, 143, 0.24), 0 0 22px rgba(142, 183, 255, 0.12);
}

.summary-layout,
.invite-layout {
  display: grid;
  gap: 1.5rem;
}

.summary-reflection {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.82;
}

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline-item {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.timeline-item__header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.timeline-item__title {
  margin: 0;
  font-weight: 600;
}

.timeline-item__text {
  color: var(--text-soft);
}

.transition-text {
  color: var(--text-muted);
  font-style: italic;
}

.summary-actions {
  margin-top: 0.2rem;
}

.verdict-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.verdict-card {
  width: 100%;
  padding: 1.15rem;
  text-align: start;
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.verdict-card:hover,
.verdict-card:focus-visible {
  border-color: rgba(143, 232, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(177, 161, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: 0 20px 42px rgba(8, 13, 22, 0.3), 0 0 30px rgba(142, 183, 255, 0.08);
}

.verdict-card p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
}

.summary-card,
.contact-card {
  padding: 1.15rem;
}

.summary-card--verdict {
  background:
    radial-gradient(circle at top left, rgba(177, 161, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(123, 138, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.invite-layout {
  gap: 1.25rem;
}

.invite-copy {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.invite-copy--lead {
  color: var(--text);
  font-size: 1.08rem;
  text-shadow: 0 0 24px rgba(155, 174, 255, 0.08);
  line-height: 1.76;
}

.invite-panel {
  padding: 1.25rem;
  border: 1px solid rgba(147, 165, 255, 0.18);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top left, rgba(177, 161, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(98, 115, 196, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 42px rgba(5, 8, 18, 0.28), 0 0 24px rgba(142, 183, 255, 0.06);
}

.video-card {
  padding: 1.3rem;
  border: 1px solid rgba(177, 161, 255, 0.16);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top left, rgba(177, 161, 255, 0.08), transparent 34%),
    radial-gradient(circle at 85% 0%, rgba(143, 232, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: 0 20px 46px rgba(5, 8, 18, 0.28), 0 0 26px rgba(177, 161, 255, 0.06);
}

.video-card__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.video-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.22rem;
  color: var(--text);
  text-shadow: 0 0 20px rgba(177, 161, 255, 0.08);
}

.video-card .invite-copy {
  margin-bottom: 1.15rem;
}

.video-embed {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  border: 1px solid rgba(188, 205, 236, 0.12);
  border-radius: calc(var(--radius-md) - 4px);
  background:
    radial-gradient(circle at top left, rgba(177, 161, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(14, 18, 25, 0.98), rgba(9, 12, 18, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 42px rgba(5, 8, 18, 0.28);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.next-step-card {
  padding: 1.3rem;
  border: 1px solid rgba(143, 232, 255, 0.16);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top left, rgba(143, 232, 255, 0.08), transparent 34%),
    radial-gradient(circle at 85% 0%, rgba(177, 161, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: 0 20px 46px rgba(5, 8, 18, 0.28), 0 0 26px rgba(143, 232, 255, 0.06);
}

.next-step-card__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.next-step-card__title {
  margin: 0 0 0.7rem;
  font-size: 1.22rem;
  color: var(--text);
  text-shadow: 0 0 20px rgba(143, 232, 255, 0.08);
}

.next-step-card .invite-copy {
  margin-bottom: 1.35rem;
}

.next-step-card .invite-actions {
  margin-top: 0;
}


.invite-panel__title,
.contact-card__label {
  margin: 0 0 0.7rem;
}

.invite-panel__title {
  font-size: 0.96rem;
  color: var(--text);
}

.contact-actions {
  margin-top: 1.1rem;
}

.contact-card--final {
  background:
    radial-gradient(circle at 15% 0%, rgba(143, 232, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(93, 212, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border-color: rgba(116, 194, 226, 0.18);
}

.contact-card__label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-soft);
  text-decoration: none;
  margin-top: 0.75rem;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--accent-strong);
}

.contact-email--featured {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(116, 194, 226, 0.22);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(116, 194, 226, 0.08), rgba(116, 194, 226, 0.04));
  color: #d9f6ff;
  box-shadow: 0 0 0 1px rgba(116, 194, 226, 0.08), 0 18px 40px rgba(7, 18, 26, 0.28), 0 0 24px rgba(143, 232, 255, 0.08);
}

.contact-email--featured:hover,
.contact-email--featured:focus-visible {
  border-color: rgba(116, 194, 226, 0.34);
  background: rgba(116, 194, 226, 0.1);
  color: #f0fbff;
}

.contact-note {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.capture-shell {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.capture-shell__label {
  margin: 0 0 0.7rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.capture-shell__grid {
  display: grid;
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field__label {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.field__input,
.capture-shell__button {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(188, 205, 236, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field__input {
  padding: 0.95rem 1rem;
  outline: none;
}

.field__input::placeholder {
  color: #7e858f;
}

.field__input:focus {
  border-color: rgba(116, 194, 226, 0.34);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(116, 194, 226, 0.1), 0 0 22px rgba(143, 232, 255, 0.08);
}

.capture-shell__actions {
  margin-top: 0.95rem;
}

.capture-shell__submit {
  width: 100%;
}

.capture-shell__feedback {
  display: none;
  margin-top: 0.85rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(116, 194, 226, 0.18);
  background: rgba(116, 194, 226, 0.08);
  color: #ddf7ff;
  box-shadow: 0 0 20px rgba(143, 232, 255, 0.06);
}

.capture-shell__feedback.is-visible {
  display: block;
}

.capture-shell__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}

.capture-shell__input,
.capture-shell__button {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
}

.capture-shell__input {
  padding: 0.9rem 1rem;
}

.capture-shell__input::placeholder {
  color: #7e858f;
}

.capture-shell__button {
  padding: 0.9rem 1rem;
  min-width: 8.5rem;
}

.capture-shell__input:disabled,
.capture-shell__button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.site-footer {
  padding: 0 1rem 2rem;
}

.site-footer__inner {
  padding-top: 1rem;
  border-top: 1px solid var(--panel-border);
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer a {
  color: var(--text-soft);
  text-decoration: none;
}

.noscript-warning {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto 2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(166, 126, 126, 0.35);
  background: var(--danger-soft);
}

@media (min-width: 720px) {
  .panel {
    padding: 2.2rem;
  }

  .event-actions .primary-button {
    width: auto;
    min-width: 16rem;
  }

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

  .summary-layout {
    gap: 2rem;
  }

  .capture-shell__grid {
    grid-template-columns: 1fr 1fr;
  }

  .capture-shell__submit {
    width: auto;
    min-width: 12rem;
  }

  .site-footer__inner {
    flex-direction: row;
    align-items: center;
  }
}

@media (hover: hover) {
  .primary-button:hover,
  .ghost-button:hover,
  .verdict-card:hover,
  .option-card:hover {
    transform: translateY(-2px);
  }
}

.lead-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lead-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  font-size: 16px;
  background: var(--lead-surface-raised);
  border: 1px solid var(--lead-accent-mid);
  border-radius: var(--lead-radius-sm);
  color: var(--lead-text-primary);
  font-family: inherit;
  outline: none;
  transition: border-color var(--lead-transition);
}

.lead-form input[type="email"]:focus {
  border-color: var(--lead-accent);
}

.lead-form input[type="email"]::placeholder {
  color: var(--lead-text-muted);
}

.lead-form button[type="submit"] {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  background: var(--lead-accent);
  color: #0a0a0a;
  border: none;
  border-radius: var(--lead-radius-sm);
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: opacity var(--lead-transition);
}

.lead-form button[type="submit"]:hover {
  opacity: 0.88;
}

.lead-success {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--lead-accent-mid);
  border-radius: var(--lead-radius-sm);
  background: var(--lead-surface-raised);
  color: var(--lead-text-primary);
  font-size: 14px;
  line-height: 1.5;
}

.lead-success strong {
  color: var(--lead-accent);
}

.lead-success .success-sub {
  color: var(--lead-text-secondary);
  font-size: 13px;
}

.lead-reassurance {
  margin-top: 8px;
  font-size: 12px;
  color: var(--lead-text-muted);
}

@media (max-width: 480px) {
  .lead-form {
    flex-direction: column;
  }

  .lead-form input[type="email"],
  .lead-form button[type="submit"] {
    width: 100%;
    min-width: unset;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── ANIMAÇÕES DE ENTRADA ─────────────────────────────────────── */

[data-animar] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animar].animado {
  opacity: 1;
  transform: translateY(0);
}

/* ─── STICKY BAR ───────────────────────────────────────────────── */

#sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--lead-z-sticky);
  background: var(--lead-surface);
  border-bottom: 1px solid var(--lead-accent-dim);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(-100%);
  transition: transform var(--lead-transition);
}

#sticky-bar.visivel {
  transform: translateY(0);
}

.sticky-texto {
  font-size: 14px;
  color: var(--lead-text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

#sticky-fechar {
  background: none;
  border: none;
  color: var(--lead-text-muted);
  cursor: pointer;
  font-size: 16px;
  padding: 4px 8px;
  margin-inline-start: auto;
  flex-shrink: 0;
  transition: color var(--lead-transition);
}

#sticky-fechar:hover {
  color: var(--lead-text-primary);
}

@media (max-width: 600px) {
  #sticky-bar {
    top: auto;
    bottom: 0;
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
    gap: 0.75rem;
    transform: translateY(115%);
    box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.3);
  }

  #sticky-bar .lead-form {
    width: 100%;
  }

  .sticky-texto {
    width: 100%;
    white-space: normal;
    font-size: 13px;
  }

  #sticky-fechar {
    position: absolute;
    top: 0.6rem;
    inset-inline-end: 0.55rem;
    margin-inline-start: 0;
  }
}

/* ─── MODAL DE EXIT INTENT ─────────────────────────────────────── */

#exit-modal {
  position: fixed;
  inset: 0;
  z-index: var(--lead-z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#exit-modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.modal-caixa {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--lead-surface);
  border: 1px solid var(--lead-accent-mid);
  border-radius: var(--lead-radius-lg);
  padding: 40px;
  animation: modalEntrada 0.25s ease-out;
}

@keyframes modalEntrada {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.modal-fechar {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  background: none;
  border: none;
  color: var(--lead-text-muted);
  cursor: pointer;
  font-size: 18px;
  transition: color var(--lead-transition);
}

.modal-fechar:hover {
  color: var(--lead-text-primary);
}

.modal-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lead-accent);
  margin-bottom: 12px;
}

.modal-titulo {
  font-size: 24px;
  font-weight: 400;
  color: var(--lead-text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.modal-texto {
  font-size: 15px;
  color: var(--lead-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-skip {
  display: block;
  margin-top: 16px;
  background: none;
  border: none;
  color: var(--lead-text-muted);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: inherit;
}

.modal-skip:hover {
  color: var(--lead-text-secondary);
}

/* ─── HERO LEAD WRAP ───────────────────────────────────────────── */

.hero-lead-wrap {
  margin-top: 32px;
}

.hero-lead-label {
  font-size: 13px;
  color: var(--lead-accent);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hero-cta-secundario {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  background: none;
  border: none;
  color: var(--lead-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--lead-accent-dim);
  padding-bottom: 2px;
  padding-inline: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--lead-transition), border-color var(--lead-transition);
}

.hero-cta-secundario:hover {
  color: var(--lead-text-primary);
  border-color: var(--lead-accent-mid);
}

/* ─── CHECKPOINT DA TIMELINE ───────────────────────────────────── */

.timeline-checkpoint {
  margin: 40px 0;
  border: 1px solid var(--lead-accent-mid);
  border-radius: var(--lead-radius-md);
  background: var(--lead-surface);
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.5s ease, padding 0.4s ease;
  max-height: 600px;
}

.checkpoint-inner {
  padding: 32px;
}

.checkpoint-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lead-accent);
  margin-bottom: 10px;
}

.checkpoint-titulo {
  font-size: 20px;
  font-weight: 400;
  color: var(--lead-text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.checkpoint-texto {
  font-size: 14px;
  color: var(--lead-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.checkpoint-skip {
  display: block;
  margin-top: 14px;
  background: none;
  border: none;
  color: var(--lead-text-muted);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: inherit;
}

.checkpoint-skip:hover {
  color: var(--lead-text-secondary);
}

/* ─── CTA FINAL ────────────────────────────────────────────────── */

.cta-final {
  border-top: 1px solid var(--lead-accent-dim);
  padding: 80px 24px;
  text-align: center;
}

.cta-final-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lead-accent);
  margin-bottom: 16px;
}

.cta-final-titulo {
  font-size: 28px;
  font-weight: 400;
  color: var(--lead-text-primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.cta-final-texto {
  font-size: 16px;
  color: var(--lead-text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-final .lead-form {
  justify-content: center;
}

html[dir="rtl"] .site-header__inner,
html[dir="rtl"] .site-footer__inner,
html[dir="rtl"] .progress-row,
html[dir="rtl"] .event-meta,
html[dir="rtl"] .timeline-item__header,
html[dir="rtl"] #sticky-bar,
html[dir="rtl"] .site-header__controls {
  direction: rtl;
}

html[dir="rtl"] .display-title,
html[dir="rtl"] .lead,
html[dir="rtl"] .hero-intro,
html[dir="rtl"] .event-title,
html[dir="rtl"] .event-block,
html[dir="rtl"] .question-text,
html[dir="rtl"] .timeline-item,
html[dir="rtl"] .invite-copy,
html[dir="rtl"] .modal-caixa,
html[dir="rtl"] .checkpoint-inner {
  text-align: right;
}

@media (max-width: 760px) {
  .site-header__inner {
    align-items: flex-start;
  }

  .site-header__controls {
    width: 100%;
    justify-content: space-between;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }
}
