@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #010101;
  --bg-soft: #070706;
  --panel: rgba(255, 255, 255, 0.026);
  --panel-strong: rgba(9, 9, 8, 0.94);
  --text: #fbf7ea;
  --muted: rgba(251, 247, 234, 0.67);
  --faint: rgba(251, 247, 234, 0.44);
  --gold: #d9a84e;
  --gold-2: #fff3c7;
  --gold-3: #9d6820;
  --line: rgba(217, 168, 78, 0.18);
  --line-strong: rgba(217, 168, 78, 0.42);
  --success: #b3f5c8;
  --danger: #ff978c;
  --radius: 24px;
  --max: 1120px;
  --shadow: 0 20px 72px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -18%, rgba(217, 168, 78, 0.12), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(217, 168, 78, 0.08), transparent 26%),
    linear-gradient(180deg, #000 0%, #040403 44%, #000 100%);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000, transparent);
}

.ambient {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(12px);
}

.ambient-a {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 120px;
  background: radial-gradient(circle, rgba(217, 168, 78, 0.15), transparent 70%);
}

.ambient-b {
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(217, 168, 78, 0.11), transparent 72%);
}

.container,
.nav {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(217, 168, 78, 0.22);
  border-radius: 999px;
  background: rgba(2, 2, 2, 0.86);
  backdrop-filter: blur(24px);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.nav::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 35%,
      rgba(217, 168, 78, 0) 42%,
      rgba(255, 243, 199, 0.95) 49%,
      rgba(217, 168, 78, 0.92) 52%,
      rgba(217, 168, 78, 0) 59%,
      transparent 100%
    );
  background-size: 240% 100%;
  background-position: 120% 0;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderSlide 4s ease-in-out infinite;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 194px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(217, 168, 78, 0.18));
}

.nav-menu {
  display: flex;
  gap: 4px;
}

.nav-menu a {
  padding: 10px 12px;
  color: rgba(251, 247, 234, 0.66);
  font-size: 13px;
  font-weight: 850;
  border-radius: 999px;
  transition: 0.22s;
}

.nav-menu a:hover {
  color: #fff;
  background: rgba(217, 168, 78, 0.045);
}

.nav-actions,
.hero-actions,
.form-nav,
.success-actions,
.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
  transition:
    transform 0.22s,
    border-color 0.22s,
    background-color 0.22s,
    box-shadow 0.22s,
    opacity 0.22s;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover,
.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.btn:disabled,
.primary-button:disabled,
.ghost-button:disabled {
  cursor: wait;
  opacity: 0.6;
  transform: none;
}

.primary,
.primary-button {
  color: #080704;
  border-color: rgba(217, 168, 78, 0.72);
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 45%, var(--gold-3));
  box-shadow: 0 18px 44px rgba(217, 168, 78, 0.19);
}

.ghost,
.ghost-button {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.035);
}

.large {
  min-height: 48px;
  padding: 0 20px;
  font-size: 13px;
}

.danger-button {
  color: var(--danger);
  border-color: rgba(255, 151, 140, 0.24);
  background: rgba(255, 151, 140, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
  padding: 72px 0 36px;
}

.live-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff0be 0%, #e4b14e 44%, #b97b28 100%);
  color: #120d05;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.3),
    0 12px 24px rgba(217, 168, 78, 0.16);
  border: 1px solid rgba(255, 243, 199, 0.46);
}

.live-dot {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #120d05;
  box-shadow: 0 0 0 6px rgba(18, 13, 5, 0.12);
}

.live-notice-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.1;
}

.live-notice-copy strong {
  font-size: 15px;
  letter-spacing: -0.05em;
}

.live-notice-copy span {
  font-size: 11px;
}

.live-notice-copy.is-updating {
  animation: noticeSwap 0.32s ease;
}

.live-notice-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  margin-top: 0;
  max-width: min(calc(100vw - 24px), 320px);
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.centered {
  justify-content: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.067em;
}

h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.gold-text {
  display: inline-block;
  background:
    linear-gradient(
      112deg,
      #6d410e 0%,
      #d9a84e 22%,
      #fff5cc 43%,
      #c88825 58%,
      #fff0b0 73%,
      #8a5518 100%
    );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(217, 168, 78, 0.18);
  animation: goldShine 4.2s ease-in-out infinite;
}

.lead,
.section-head p,
.empty-state,
.toolbar-note,
.flow-card p,
.card p,
.proof-card strong,
.progress-copy span,
.step-copy p,
.success-panel p,
.stat-card small {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  font-size: 15px;
  font-weight: 560;
}

.proof-grid,
.cards.three,
.stats-grid,
.flow-grid {
  display: grid;
  gap: 14px;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.proof-card,
.card,
.quiz-shell,
.progress-card,
.success-panel,
.admin-hero,
.stat-card,
.admin-toolbar,
.table-card,
.flow-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(217, 168, 78, 0.075), transparent 36%), var(--panel);
  box-shadow: var(--shadow);
}

.proof-card {
  min-height: 112px;
  padding: 16px;
}

.proof-card small,
.stat-label,
.flow-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
}

.quiz-shell {
  padding: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 168, 78, 0.12), transparent 32%),
    linear-gradient(180deg, #090908 0%, #030303 100%);
}

.quiz-shell-top,
.quiz-shell-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quiz-shell-brand {
  justify-content: flex-start;
}

.quiz-shell-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.quiz-shell-brand strong {
  display: block;
  font-size: 12px;
  letter-spacing: -0.03em;
}

.quiz-shell-brand span {
  display: block;
  margin-top: 1px;
  color: var(--faint);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sync-pill,
.success-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(217, 168, 78, 0.22);
  background: rgba(255, 255, 255, 0.035);
  color: var(--gold-2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sync-pill.is-live {
  border-color: rgba(179, 245, 200, 0.24);
  color: var(--success);
  background: rgba(179, 245, 200, 0.08);
}

.sync-pill.is-local {
  color: rgba(251, 247, 234, 0.7);
}

.sync-pill.is-warning {
  color: #ffe4a2;
}

.progress-card,
.form-feedback,
.step-card,
.stat-card,
.flow-card,
.admin-toolbar {
  background-color: rgba(255, 255, 255, 0.02);
}

.progress-card {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 16px;
}

.progress-copy {
  display: grid;
  gap: 2px;
}

.progress-track {
  width: 100%;
  height: 6px;
  margin-top: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.progress-bar {
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 24px rgba(217, 168, 78, 0.32);
  transition: width 0.24s ease;
}

.lead-flow {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.step-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  animation: notificationIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.step-copy {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}

.step-copy h3 {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 24px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.step-copy p {
  font-size: 12px;
}

.options-grid,
.input-stack {
  display: grid;
  gap: 8px;
}

.option-card {
  width: 100%;
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(217, 168, 78, 0.16);
  background: linear-gradient(135deg, rgba(217, 168, 78, 0.08), transparent 44%), rgba(255, 255, 255, 0.034);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.22s,
    border-color 0.22s,
    box-shadow 0.22s,
    background-color 0.22s;
}

.option-card strong,
.option-card span {
  display: block;
}

.option-card strong {
  font-size: 12px;
}

.option-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.option-card:hover,
.option-card.is-selected {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.field-label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
}

.field-label small {
  color: var(--muted);
  font-weight: 500;
}

.field-input,
.search-field input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
}

.field-input:focus,
.search-field input:focus {
  border-color: rgba(217, 168, 78, 0.52);
  box-shadow: 0 0 0 4px rgba(217, 168, 78, 0.12);
}

.form-feedback {
  padding: 10px 12px;
  border: 1px solid rgba(217, 168, 78, 0.18);
  border-radius: 16px;
  color: #ffe2a4;
  font-size: 12px;
}

.form-feedback.is-error {
  border-color: rgba(255, 151, 140, 0.24);
  color: #ffc7bf;
}

.form-feedback.is-success {
  border-color: rgba(179, 245, 200, 0.24);
  color: var(--success);
}

.success-panel {
  padding: 16px;
  margin-top: 2px;
}

.marquee {
  position: relative;
  z-index: 2;
  margin: 14px 0 28px;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  overflow: hidden;
}

.marquee div {
  display: flex;
  min-width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee span {
  position: relative;
  padding: 16px 26px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.marquee span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 58px 0;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

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

.group-section {
  padding-top: 46px;
}

.group-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.group-head h2 {
  max-width: 14ch;
  margin-inline: auto;
}

.group-head p:last-child {
  max-width: 54ch;
  margin-inline: auto;
}

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

.group-card {
  position: relative;
  min-height: 212px;
  padding: 22px 20px 18px;
  border: 1px solid rgba(217, 168, 78, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(217, 168, 78, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.012));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.group-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 168, 78, 0.34), transparent 70%);
}

.group-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 22px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(217, 168, 78, 0.26);
  background: rgba(217, 168, 78, 0.06);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.group-card h3 {
  margin-bottom: 12px;
  font-size: 17px;
}

.group-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 0 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(217, 168, 78, 0.14);
}

.footer-inner p,
.footer-inner span {
  margin: 0;
  color: rgba(251, 247, 234, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.card,
.stat-card {
  padding: 18px;
}

.card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border: 1px solid rgba(217, 168, 78, 0.3);
  border-radius: 14px;
  color: var(--gold);
  font-weight: 900;
  background: rgba(217, 168, 78, 0.06);
  letter-spacing: 0;
  font-size: 13px;
}

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

.flow-card {
  padding: 18px;
}

.flow-number {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 1px solid rgba(217, 168, 78, 0.28);
  color: var(--gold-2);
  font-weight: 900;
  box-shadow: inset 0 0 0 5px rgba(0, 0, 0, 0.45);
}

.admin-shell {
  padding: 70px 0 42px;
}

.admin-login-shell {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px 0;
}

.admin-login-brand,
.admin-panel-brand {
  display: flex;
  justify-content: center;
}

.admin-login-brand {
  width: 100%;
  margin-bottom: 18px;
}

.admin-login-brand img,
.admin-panel-brand img {
  display: block;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(217, 168, 78, 0.18));
}

.admin-login-brand img {
  width: min(188px, 58vw) !important;
  height: auto !important;
}

.admin-panel-brand {
  margin-bottom: 18px;
}

.admin-panel-brand img {
  height: 40px;
}

.admin-login-card {
  width: min(100%, 470px);
  padding: 30px 26px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(217, 168, 78, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.012));
  box-shadow: var(--shadow);
  text-align: center;
}

.admin-login-card h1 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.admin-login-eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-login-card .lead {
  max-width: 34ch;
  margin-inline: auto;
  font-size: 14px;
}

.admin-login-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  text-align: left;
}

.admin-login-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.admin-login-actions .ghost-button,
.admin-login-actions .primary-button {
  min-width: 180px;
}

.admin-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
}

.admin-hero h1 {
  margin-bottom: 14px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.stat-card strong {
  display: block;
  margin: 14px 0 8px;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.05em;
}

.admin-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px;
}

.search-field {
  display: grid;
  gap: 8px;
  width: min(430px, 100%);
  font-size: 13px;
  font-weight: 700;
}

.toolbar-status {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.toolbar-note {
  margin: 0;
  font-size: 13px;
}

.table-card {
  margin-top: 18px;
  padding: 14px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}

th {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

.table-strong {
  color: var(--text);
  font-weight: 800;
}

.table-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(217, 168, 78, 0.16);
  background: rgba(217, 168, 78, 0.08);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.table-action-button {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 151, 140, 0.24);
  background: rgba(255, 151, 140, 0.08);
  color: var(--danger);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.table-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.table-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(100, 232, 157, 0.24);
  background: rgba(100, 232, 157, 0.1);
  color: #baf7cf;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.table-whatsapp-button.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.table-action-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.empty-state {
  padding: 22px 10px 8px;
  text-align: center;
}

.hidden {
  display: none !important;
}

@keyframes borderSlide {
  0%,
  100% {
    background-position: 120% 0;
  }

  50% {
    background-position: -120% 0;
  }
}

@keyframes goldShine {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes notificationIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes noticePulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes noticeSwap {
  0% {
    opacity: 0.2;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .nav-menu {
    display: none;
  }

  .hero,
  .cards.three,
  .flow-grid {
    grid-template-columns: 1fr;
  }

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

  .group-grid {
    grid-template-columns: 1fr;
  }

  .admin-hero,
  .admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .toolbar-status {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .container,
  .nav {
    width: min(100% - 22px, var(--max));
  }

  .nav {
    top: 10px;
    margin-top: 10px;
    min-height: 62px;
    border-radius: 20px;
  }

  .brand img {
    height: 32px;
    max-width: 136px;
  }

  .nav-actions .ghost {
    display: none;
  }

  .hero {
    padding-top: 54px;
    gap: 18px;
  }

  .live-notice-floating {
    right: 12px;
    left: auto;
    bottom: 12px;
    max-width: min(calc(100vw - 24px), 248px);
    justify-content: flex-start;
  }

  .live-notice {
    gap: 8px;
    min-height: 36px;
    padding: 7px 11px;
    border-radius: 14px;
  }

  .live-dot {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 5px rgba(18, 13, 5, 0.1);
  }

  .live-notice-copy {
    gap: 5px;
    flex-wrap: nowrap;
  }

  .live-notice-copy strong {
    font-size: 13px;
  }

  .live-notice-copy span {
    font-size: 10px;
  }

  h1 {
    font-size: clamp(24px, 8.3vw, 34px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(26px, 9vw, 36px);
  }

  .lead {
    font-size: 14px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-grid,
  .stats-grid,
  .form-nav,
  .success-actions {
    grid-template-columns: 1fr;
  }

  .form-nav,
  .success-actions,
  .admin-actions,
  .admin-login-actions {
    flex-direction: column;
  }

  .primary-button,
  .ghost-button,
  .admin-actions .primary-button,
  .admin-actions .ghost-button,
  .admin-login-actions .primary-button,
  .admin-login-actions .ghost-button {
    width: 100%;
  }

  .quiz-shell,
  .admin-login-card,
  .admin-hero,
  .stat-card,
  .admin-toolbar,
  .table-card,
  .card,
  .flow-card {
    padding: 16px;
    border-radius: 20px;
  }

  .admin-login-card {
    width: min(100%, 100%);
    padding: 24px 18px 20px;
  }

  .admin-login-brand img {
    width: min(164px, 58vw) !important;
  }

  .quiz-shell-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .toolbar-note {
    font-size: 13px;
  }
}
