:root {
  --nv-orange: #ff7a00;
  --nv-orange-light: #ff9a3c;
  --nv-peach: #ffbe6a;
  --nv-cream: #fff9e8;
  --nv-blue: #2979f5;
  --nv-green: #4cd964;
  --nv-green-text: #2fa544;
  --nv-teal: #00c2a8;
  --nv-purple: #a65ce6;
  --nv-error: #ed3b3b;
  --nv-bg: #f3f7fa;
  --nv-surface: #ffffff;
  --nv-surface-secondary: #f7f8fa;
  --nv-text: #1a1a1a;
  --nv-text-secondary: #6b7076;
  --nv-text-tertiary: #a0a4ab;
  --nv-border: #e7e9ec;
  --nv-border-strong: #d6d9dd;
  --nv-shadow-card: 0 2px 8px rgba(0, 0, 0, 0.05);
  --nv-shadow-raised: 0 4px 20px rgba(0, 0, 0, 0.08);
  --nv-shadow-float: 0 10px 40px rgba(0, 0, 0, 0.1);
  --nv-shadow-cta: 0 8px 24px rgba(255, 122, 0, 0.35);
  --nv-shadow-cta-green: 0 8px 22px rgba(76, 217, 100, 0.35);
  --nv-radius-pill: 999px;
  --nv-font-display: "Fredoka", "Nunito", sans-serif;
  --nv-font-body: "Nunito", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --cat-stadt: #ff7a00;
  --cat-land: #2979f5;
  --cat-fluss: #00c2a8;
  --cat-name: #a65ce6;
  --cat-beruf: #ff9500;
  --cat-tier: #34c759;
}

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

@keyframes slfPop {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slfFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-140px) scale(1.5);
    opacity: 0;
  }
}

@keyframes slfPulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes slfSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(300%);
  }
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--nv-font-body);
  font-weight: 600;
  color: var(--nv-text);
  background: var(--nv-bg);
  line-height: 1.4;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--nv-orange);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--nv-orange);
  color: #fff;
  border-radius: 0.5rem;
}

.skip-link:focus {
  left: 0.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 430px;
  margin: 0 auto;
  background: var(--nv-bg);
}

.screen--hero,
.screen--login {
  background: linear-gradient(170deg, #ff7a00 0%, #ff9a3c 42%, #ffbe6a 72%, #fff9e8 100%);
  color: #fff;
}

.screen-pad {
  padding: 20px 16px 40px;
}

.screen-body {
  padding: 16px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.hdr {
  padding: 20px 22px 26px;
  color: #fff;
  background: linear-gradient(135deg, #ff7a00, #ff9a3c);
}

.hdr--lobby {
  padding: 18px 20px 30px;
  background: linear-gradient(160deg, #ff7a00, #ff9a3c 60%, #ffb055);
}

.hdr--score {
  padding: 20px 20px 30px;
  background: linear-gradient(170deg, #ff7a00, #ff9a3c 65%, #ffbe6a);
}

.hdr--dark {
  background: linear-gradient(135deg, #1b1d22, #2a2d35);
}

.hdr--finale {
  background: linear-gradient(160deg, #1b1d22, #33363f);
  padding: 20px 20px 24px;
}

.hdr--solo {
  background: linear-gradient(135deg, #00c2a8, #4cd964);
  padding: 20px 22px 30px;
}

.hdr--critical {
  background: linear-gradient(135deg, #ed3b3b, #ff7a00);
  transition: background 0.4s var(--ease);
}

.hdr-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hdr-title {
  font-family: var(--nv-font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  flex: 1;
}

.hdr-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.icon-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.icon-btn--ghost {
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  width: 42px;
  height: 42px;
}

.icon-btn:hover,
.btn:hover {
  filter: brightness(0.94);
}

.icon-btn:active,
.btn:active,
.chip:active,
.card:active.pressable {
  transform: scale(0.96);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.btn--primary {
  background: var(--nv-orange);
  color: #fff;
  box-shadow: var(--nv-shadow-cta);
  font-size: 17px;
}

.btn--white {
  background: #fff;
  color: var(--nv-orange);
  box-shadow: 0 10px 30px rgba(120, 50, 0, 0.25);
  font-size: 18px;
  padding: 19px;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  font-size: 17px;
}

.btn--text {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  min-height: auto;
  padding: 8px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: none;
}

.btn--outline {
  background: #fff;
  color: var(--nv-text);
  border: 1.5px solid var(--nv-border-strong);
}

.btn--danger {
  background: #fff;
  color: var(--nv-error);
  border: 1.5px solid var(--nv-border-strong);
}

.btn--success {
  background: var(--nv-green);
  color: #fff;
  box-shadow: var(--nv-shadow-cta-green);
}

.btn--teal {
  background: var(--nv-teal);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 194, 168, 0.32);
}

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

.btn--waiting {
  background: #6b7076;
  color: #fff;
  box-shadow: none;
}

.card {
  background: var(--nv-surface);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--nv-shadow-card);
}

.card--hint {
  background: linear-gradient(135deg, #fff5e6, #fffdf7);
  color: #7a5427;
  font-size: 13.5px;
}

.card--float {
  box-shadow: var(--nv-shadow-float);
  border-radius: 22px;
}

.label {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nv-text-tertiary);
  margin-bottom: 6px;
}

.field {
  background: var(--nv-surface-secondary);
  border-radius: 14px;
  padding: 12px 15px;
}

.field input {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  color: var(--nv-text);
  outline: none;
}

.input-underline {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--nv-border);
  background: transparent;
  font-family: var(--nv-font-display);
  font-size: 22px;
  font-weight: 700;
  padding: 6px 0;
  outline: none;
}

.option-row {
  display: flex;
  gap: 8px;
}

.option {
  flex: 1;
  border-radius: 12px;
  padding: 13px 0;
  border: 1.5px solid var(--nv-border);
  background: #fff;
  color: var(--nv-text-secondary);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
}

.option.is-on {
  background: rgba(255, 122, 0, 0.12);
  color: var(--nv-orange);
  border-color: var(--nv-orange);
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--nv-border);
}

.toggle-row:last-child {
  border-bottom: 0;
}

.tile {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.switch {
  width: 52px;
  height: 31px;
  border-radius: 999px;
  background: #d6d9dd;
  border: 0;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.switch.is-on {
  background: #4cd964;
}

.switch::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: left 0.2s var(--spring);
}

.switch.is-on::after {
  left: 24px;
}

.sticky-cta {
  margin-top: auto;
  padding: 14px 18px 20px;
  background: linear-gradient(180deg, transparent, var(--nv-bg) 28%);
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 24px 0;
}

.wordmark {
  font-family: var(--nv-font-display);
  font-size: 19px;
  font-weight: 700;
}

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

.circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.profile-chip {
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.avatar {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.letter-row {
  display: flex;
  gap: 9px;
  margin-bottom: 18px;
}

.letter-tile {
  width: 62px;
  height: 74px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(160, 60, 0, 0.28);
  color: var(--nv-orange);
  font-family: var(--nv-font-display);
  font-size: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mid h1 {
  font-family: var(--nv-font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  max-width: 9ch;
}

.hero-mid p {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34ch;
  margin: 0;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 24px 40px;
}

.code-tiles {
  display: flex;
  gap: 6px;
}

.code-tile {
  width: 38px;
  height: 48px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--nv-orange);
  font-family: var(--nv-font-display);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 14px rgba(140, 55, 0, 0.22);
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.tab {
  border: 1px solid var(--nv-border);
  background: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  color: var(--nv-text);
}

.tab.is-on {
  background: rgba(255, 122, 0, 0.12);
  color: var(--nv-orange);
  border: 1.5px solid var(--nv-orange);
  box-shadow: 0 2px 3px rgba(255, 122, 0, 0.15);
}

.player-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.player-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nv-surface-secondary);
  border-radius: 999px;
  padding: 5px 12px 5px 5px;
  font-size: 13.5px;
  font-weight: 700;
}

.host-mark {
  color: var(--nv-orange);
  font-size: 11px;
  font-weight: 800;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4cd964;
  animation: slfPulse 1.6s infinite;
  display: inline-block;
}

.chip-live {
  background: rgba(76, 217, 100, 0.14);
  color: #2fa544;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lobby-footer {
  position: sticky;
  bottom: 0;
  padding: 12px 16px 16px;
}

.lobby-footer .card {
  border-radius: 20px;
  box-shadow: var(--nv-shadow-float);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.input-hdr {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 18px 16px;
  color: #fff;
  display: flex;
  gap: 14px;
  align-items: center;
  background: linear-gradient(135deg, #ff7a00, #ff9a3c);
}

.input-hdr.is-urgent {
  background: linear-gradient(135deg, #ed3b3b, #ff6b5a);
}

.timer-num.timer-urgent {
  color: #fff;
  animation: slfPulse 0.9s ease infinite;
}

.letter-ring {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.letter-inner {
  width: 68px;
  height: 68px;
  background: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nv-orange);
  font-family: var(--nv-font-display);
  font-size: 42px;
  font-weight: 700;
  animation: slfPop 0.4s var(--spring);
}

.timer-num {
  font-family: var(--nv-font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.progress {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
  margin-top: 8px;
}

.progress > span {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: inherit;
  transition: width 0.6s ease;
}

.cat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--nv-shadow-card);
  border-left: 4px solid var(--nv-orange);
}

.cat-card input {
  flex: 1;
  border: 0;
  font-family: var(--nv-font-display);
  font-size: 21px;
  font-weight: 700;
  outline: none;
  background: transparent;
  min-width: 0;
  scroll-margin-bottom: 140px;
}

.cat-name {
  width: 44px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nv-text-tertiary);
}

.react-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  position: relative;
}

.react-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 19px;
  cursor: pointer;
}

.float-emoji {
  position: absolute;
  left: 80px;
  bottom: 8px;
  font-size: 30px;
  pointer-events: none;
  animation: slfFloat 1.4s ease forwards;
}

.auto-check {
  min-height: 100vh;
  background: linear-gradient(160deg, #1b1d22, #2a2d35 60%, #1b1d22);
  color: #fff;
  padding: 40px 28px;
  display: flex;
  justify-content: center;
}

.auto-check inner,
.auto-check > div {
  max-width: 460px;
  width: 100%;
}

.sweep {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin: 18px 0 22px;
}

.sweep > span {
  display: block;
  width: 34%;
  height: 100%;
  background: var(--nv-orange);
  animation: slfSweep 1.3s ease infinite;
}

.check-row {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.dispute-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: var(--nv-shadow-float);
  position: relative;
  overflow: hidden;
}

.dispute-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7a00, #ffbe6a);
}

.word-xl {
  font-family: var(--nv-font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0;
}

.bar {
  height: 9px;
  border-radius: 999px;
  background: rgba(237, 59, 59, 0.18);
  overflow: hidden;
}

.bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #4cd964, #00c2a8);
}

.dist-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}

.dist-word {
  width: 96px;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.dist-track {
  flex: 1;
  height: 22px;
  border-radius: 7px;
  background: var(--nv-surface-secondary);
  overflow: hidden;
}

.dist-track > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ff7a00, #ffbe6a);
}

.podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.podium-col {
  flex: 1;
  max-width: 120px;
  text-align: center;
  color: #fff;
}

.podium-col .name {
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.podium-col .pillar {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 10px 0 14px;
  color: var(--nv-orange);
  box-shadow: 0 4px 14px rgba(140, 55, 0, 0.18);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.stat-tile {
  background: #fff;
  border-radius: 16px;
  padding: 15px 16px;
}

.stat-tile .val {
  font-family: var(--nv-font-display);
  font-size: 26px;
  font-weight: 700;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 6, 0.72);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  display: none;
  align-items: flex-start;
  padding: 24px;
  z-index: 40;
}

.overlay:not([hidden]) {
  display: flex;
}

.overlay-dialog {
  background: #fff;
  border-radius: 28px;
  padding: 22px 24px 20px;
  max-width: 340px;
  margin: auto;
  width: 100%;
  animation: slfPop 0.28s var(--spring);
  position: relative;
}

.banner-float {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  background: rgba(237, 59, 59, 0.95);
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
}

.flash-list {
  list-style: none;
  margin: 0;
  padding: 12px 16px 0;
}

.flash {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 8px;
}

.flash-error {
  color: var(--nv-error);
  border: 1.5px solid var(--nv-error);
}

.field-error {
  border: 1.5px solid var(--nv-error) !important;
}

.error-text {
  color: var(--nv-error);
  font-size: 13px;
  margin-top: 6px;
}

.rank-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--nv-border);
}

.me-row {
  border: 2px solid rgba(255, 122, 0, 0.35);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--nv-shadow-float);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 10px;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--nv-shadow-card);
  border-top: 4px solid var(--nv-orange);
}

.screen-beamer {
  min-height: 100vh;
  max-width: none;
  background: radial-gradient(120% 90% at 20% 0%, #2a1706 0%, #121217 55%, #0b0b0f 100%);
  color: #fff;
  padding: 36px 40px;
}

.beamer-letter {
  font-family: var(--nv-font-display);
  font-size: 200px;
  font-weight: 700;
  line-height: 0.85;
  background: linear-gradient(180deg, #ffc46a, #ff7a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 280px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.13);
}

.dot.is-on {
  background: #ff9a3c;
}

.seg {
  display: flex;
  background: var(--nv-surface-secondary);
  border-radius: 999px;
  padding: 4px;
}

.seg button,
.seg a {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 11px 0;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--nv-text-secondary);
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.seg button.is-on,
.seg a.is-on {
  background: #fff;
  color: var(--nv-orange);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.sso {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  font-size: 15.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.sso--google {
  background: #fff;
  color: #1a1a1a;
  border: 1.5px solid #d6d9dd;
}

.sso--apple {
  background: #1a1a1a;
  color: #fff;
  border: 0;
}

.help-step {
  display: flex;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
}

.num-tile {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--nv-orange);
  font-family: var(--nv-font-display);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.week-bars,
.round-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.week-bars span,
.round-bars .col {
  flex: 1;
  background: rgba(255, 122, 0, 0.22);
  border-radius: 6px 6px 3px 3px;
  min-height: 8px;
}

.week-bars span.is-now {
  background: linear-gradient(180deg, #ff7a00, #ff9a3c);
}

.chat-line {
  font-size: 13.5px;
  margin: 4px 0;
}

.muted {
  color: var(--nv-text-secondary);
}

@media (min-width: 640px) {
  .screen {
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .screen:not(.screen-beamer):not(.screen--hero):not(.screen--login) {
    max-width: 1040px;
  }

  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  #input-view .screen-body,
  .input-col {
    max-width: 560px;
    margin: 0 auto;
  }
}
