/* =========================================
   Органайзер · STEM 2026
   Кинетична презентация — тюркоаз → зелено
   ========================================= */

:root {
  /* Turquoise palette (отваря с тази палитра) */
  --tq-50:  #ECFEFF;
  --tq-100: #CFFAFE;
  --tq-200: #A5F3FC;
  --tq-300: #67E8F9;
  --tq-400: #22D3EE;
  --tq-500: #06B6D4;
  --tq-600: #0891B2;
  --tq-700: #0E7490;
  --tq-800: #155E75;

  /* Green palette (преход в подходящ момент) */
  --gr-50:  #E8F0EB;
  --gr-100: #D2E1D7;
  --gr-200: #A8C4B1;
  --gr-400: #4F7A5C;
  --gr-600: #1F4D38;
  --gr-700: #163B2B;
  --gr-800: #0F2C20;
  --gr-900: #07180F;

  /* Theme tokens — се препрограмират при смяна на тема */
  --bg: #FFFFFF;
  --bg-tint: var(--tq-50);
  --paper: #FAFCFD;
  --accent: var(--tq-700);
  --accent-strong: var(--tq-800);
  --accent-soft: var(--tq-100);
  --accent-line: var(--tq-200);
  --ink: #042F2E;
  --muted: #4B6360;
  --muted-2: #8AA29F;
  --line: #D6E5E4;
  --line-soft: #E8F0EF;

  /* Шрифтове */
  --font: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-italic: "Instrument Serif", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* Smooth transition между темите */
:root,
body,
.cover,
.show,
.s,
.show__bar {
  transition: background 0.8s ease, color 0.8s ease, border-color 0.8s ease;
}

/* Зелена тема — активира се при определени слайдове */
body.theme-green {
  --bg: #F4F7F2;
  --bg-tint: var(--gr-50);
  --paper: #FAFBFA;
  --accent: var(--gr-700);
  --accent-strong: var(--gr-800);
  --accent-soft: var(--gr-50);
  --accent-line: var(--gr-200);
  --ink: #0B1F1A;
  --muted: #5C6B66;
  --muted-2: #95A29D;
  --line: #D5DCD7;
  --line-soft: #E8EEEA;
}

/* =========================================
   BASE
   ========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01";
  overflow: hidden;
  height: 100vh;
}

em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  transition: color 0.8s ease;
}

kbd {
  font-family: var(--font-body);
  font-size: 0.85em;
  background: white;
  border: 1px solid var(--line);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--ink);
  font-weight: 500;
}

/* =========================================
   LOGO — кропнато по-плътно
   ========================================= */
.logo-wrap {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-wrap--big {
  width: 56px;
  height: 56px;
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(28%) sepia(72%) saturate(1648%) hue-rotate(151deg) brightness(91%) contrast(92%);
  transition: filter 0.8s ease;
}
body.theme-green .logo-img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(31%) saturate(1129%) hue-rotate(112deg) brightness(94%) contrast(91%);
}

/* =========================================
   COVER (LANDING)
   ========================================= */
.cover {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 36px clamp(28px, 5vw, 80px);
  background: var(--bg);
  z-index: 10;
  transition: background 0.8s ease;
}
.cover.hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.cover__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
}
.cover__date {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
}

.cover__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.cover__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: 100px;
  margin-bottom: 36px;
  font-weight: 500;
}

.cover__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 36px;
}
.cover__title em {
  color: var(--accent);
}

.cover__lead {
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 48px;
}

.cover__start {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 22px 36px;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.8s ease;
  box-shadow: 0 8px 24px -8px rgba(8, 145, 178, 0.4);
}
.cover__start:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(8, 145, 178, 0.5);
}
.cover__start-arrow {
  display: inline-flex;
  width: 36px; height: 36px;
  background: white;
  color: var(--accent);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, color 0.8s ease;
  font-weight: 800;
}
.cover__start:hover .cover__start-arrow {
  transform: translateX(4px);
}

.cover__hint {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-2);
}

.cover__meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.cover__meta-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 12px;
}
.cover__meta-row .k {
  color: var(--muted-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cover__meta-row .v {
  color: var(--ink);
  font-weight: 500;
}

/* QR / Room code на корицата */
.cover__remote {
  position: fixed;
  top: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px 12px 18px;
  box-shadow: 0 4px 16px -4px rgba(4, 47, 46, 0.08);
  z-index: 15;
}
.cover__remote-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cover__remote-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.cover__remote-code {
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.cover__remote-qr {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 6px;
  display: block;
}

@media (max-width: 700px) {
  .cover { padding: 24px 20px; }
  .cover__meta { gap: 20px; }
  .cover__remote {
    top: auto;
    bottom: 20px;
    right: 20px;
    left: 20px;
    padding: 10px 12px;
  }
}

/* =========================================
   PRESENTATION
   ========================================= */
.show {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, background 0.8s ease;
  display: flex;
  flex-direction: column;
}
.show.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 20;
}

/* Минимална горна лента — само много тънка ивица прогрес */
.show__bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 25;
  background: transparent;
  pointer-events: none;
}
.show__progress {
  height: 100%;
  background: var(--accent-line);
  position: relative;
}
.show__progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.8s ease;
}

/* Скрити елементи (всичко долу) */
.show__exit,
.show__counter,
.show__nav,
.show__hint {
  display: none !important;
}

.show__stage {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* =========================================
   SLIDE BASE
   ========================================= */
.s {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px clamp(28px, 6vw, 120px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, background 0.8s ease;
}
.s.active {
  opacity: 1;
  pointer-events: auto;
}

.kicker {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 18px);
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 28px;
}

.below {
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 26px);
  color: var(--muted);
  margin-top: 32px;
  max-width: 720px;
}

.dot-end {
  color: var(--accent);
  transition: color 0.8s ease;
}

/* =========================================
   STATEMENT
   ========================================= */
.word-huge {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 1100px;
}
.word-huge em {
  color: var(--accent);
}
.word-huge strong {
  font-family: var(--font);
  font-weight: 800;
  font-style: normal;
  color: var(--accent);
  letter-spacing: -0.05em;
}

/* =========================================
   MEGA
   ========================================= */
.mega {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(80px, 16vw, 280px);
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: var(--ink);
}
.mega em {
  color: var(--accent);
}

/* =========================================
   QUESTION
   ========================================= */
.s--question { gap: 0; }
.q-mark {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(160px, 22vw, 360px);
  line-height: 0.8;
  color: var(--accent-line);
  margin-bottom: -40px;
  font-weight: 400;
  z-index: 1;
  transition: color 0.8s ease;
}
.q {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 120px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  position: relative;
  z-index: 2;
}
.q em {
  color: var(--accent);
}

/* =========================================
   NUMBER REVEAL
   ========================================= */
.big-num {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.num {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(140px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--accent);
  transition: color 0.8s ease;
}
.num-unit {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(32px, 4vw, 64px);
  color: var(--muted);
  margin-top: 24px;
  font-weight: 400;
}
.num-cap {
  margin-top: 36px;
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 26px);
  color: var(--muted);
  max-width: 640px;
}

/* =========================================
   TITLE REVEAL
   ========================================= */
.title-reveal {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(60px, 11vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin: 8px 0;
}
.title-reveal em { color: var(--accent); }

/* =========================================
   VISUAL (3D ISO)
   ========================================= */
.s--visual { gap: 40px; }
.iso-stage {
  width: clamp(280px, 50vw, 560px);
  height: clamp(280px, 50vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.iso-grid {
  width: 380px;
  height: 380px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(55deg) rotateZ(-45deg);
  animation: iso-rotate 28s linear infinite;
}
@keyframes iso-rotate {
  from { transform: rotateX(55deg) rotateZ(-45deg); }
  to { transform: rotateX(55deg) rotateZ(315deg); }
}
.iso-cell {
  position: absolute;
  width: 90px;
  height: 90px;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) translate3d(calc(var(--x) * 96px - 96px), calc(var(--y) * 96px - 48px), 0);
}
.iso-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-line);
  border: 2.5px solid var(--accent);
  transform: translateZ(30px);
  border-radius: 3px;
  transition: background 0.8s ease, border-color 0.8s ease;
}
.iso-cell::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--accent-soft);
  border: 1px dashed var(--accent);
  transform: translateZ(32px);
  transition: background 0.8s ease, border-color 0.8s ease;
}
.iso-cap {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 40px);
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* =========================================
   SPECS
   ========================================= */
.spec-list {
  display: flex;
  gap: clamp(32px, 5vw, 80px);
  flex-wrap: wrap;
  justify-content: center;
}
.spec-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sl-val {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--accent);
  transition: color 0.8s ease;
}
.sl-unit {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 32px);
  color: var(--muted);
}
.sl-lbl {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-top: 12px;
}

/* =========================================
   END
   ========================================= */
.s--end {
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-soft) 100%);
}
.end-word {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 240px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.end-word em { color: var(--accent); }
.end-meta {
  margin-top: 48px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================
   IDLE / WAITING SCREEN — clean shimmer
   ========================================= */
.waiting {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, background 0.8s ease;
  overflow: hidden;
}
.waiting.active {
  opacity: 1;
  pointer-events: auto;
}

.idle {
  position: relative;
  width: clamp(220px, 26vw, 320px);
  height: clamp(220px, 26vw, 320px);
  -webkit-mask: url('logo.svg') center / contain no-repeat;
  mask: url('logo.svg') center / contain no-repeat;
  animation: idle-breath 5.6s ease-in-out infinite;
  will-change: transform;
}

.idle__color {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transition: background 0.8s ease;
}

.idle__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.92) 50%,
    transparent 62%);
  background-size: 220% 220%;
  background-position: 220% -120%;
  animation: idle-shine 4.2s cubic-bezier(0.55, 0, 0.45, 1) infinite;
  opacity: 0.75;
  mix-blend-mode: screen;
}

@keyframes idle-breath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.03); }
}

@keyframes idle-shine {
  0%        { background-position: 220% -120%; }
  55%, 100% { background-position: -120% 220%; }
}

/* Subtle pulse dot — only shown when phone is connected */
.idle__pulse {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: idle-pulse 2s ease-in-out infinite;
  transition: background 0.8s ease, opacity 0.4s ease;
}
.idle__pulse.visible { opacity: 0.6; }

@keyframes idle-pulse {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50%      { transform: translate(-50%, 0) scale(1.6); }
}

/* =========================================
   REMOTE (mobile controller)
   ========================================= */
.remote {
  min-height: 100vh;
  height: auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 16px;
  background: var(--bg);
}

.remote__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12px;
}
.remote__status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.remote__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-2);
  transition: background 0.3s;
}
.remote.connected .remote__status-dot { background: var(--accent); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.remote__counter {
  font-family: var(--font);
  font-weight: 600;
  color: var(--accent);
}

.remote__preview {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.remote__preview-label {
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.remote__preview-content {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(24px, 7vw, 40px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 320px;
}
.remote__preview-content em {
  color: var(--accent);
  font-size: 0.92em;
}
.remote__preview-content .num {
  font-size: 1.6em;
  display: block;
  margin: 4px 0;
}
.remote__preview-kicker {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.remote__preview-below {
  font-family: var(--font);
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

.remote__next-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 4px;
  text-align: center;
}
.remote__next {
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 12px;
  padding: 16px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.remote__next-content {
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  line-height: 1.2;
}

.remote__controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.remote__btn {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 24px 0;
  border-radius: 16px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.remote__btn:active {
  background: var(--accent);
  color: white;
  transform: scale(0.98);
}
.remote__btn--primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.remote__btn--primary:active {
  background: var(--accent-strong);
}
.remote__btn-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}
.remote__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.remote__waiting {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 18px 24px;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.15s;
}
.remote__waiting.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.remote__waiting-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid currentColor;
}
.remote__waiting.active .remote__waiting-icon {
  background: white;
  border-color: white;
  animation: pulse-dot 1.6s infinite;
}

.remote__connect {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding: 60px 24px;
}
.remote__connect-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.remote__connect-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
}
.remote__code-input {
  width: 100%;
  max-width: 220px;
  margin: 16px auto 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  outline: none;
  background: white;
  color: var(--ink);
}
.remote__code-input:focus {
  border-color: var(--accent);
}
.remote__code-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin: 16px auto 0;
}

/* ============ REMOTE: READY SCREEN ============ */
.remote__ready {
  display: none;
  flex-direction: column;
  flex: 1;
  padding: 18px;
  gap: 0;
}
.remote__ready.visible { display: flex; }

.ready-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}
.ready-status {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ready-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.6s infinite;
}
.ready-code {
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.ready-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 32px 20px;
}
.ready-body .logo-wrap--big {
  width: 88px;
  height: 88px;
  margin-bottom: 12px;
}

.ready-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(42px, 11vw, 64px);
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.ready-sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 16px;
}

.ready-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 22px 30px;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 10px 28px -10px rgba(0,0,0,0.3);
  -webkit-tap-highlight-color: transparent;
}
.ready-btn:active {
  transform: scale(0.96);
  background: var(--accent-strong);
}
.ready-arrow {
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: white;
  color: var(--accent);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.ready-hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 20px;
}
