/* tapresult · guide deck shared styles */
:root {
  --orange: #FF5A1F;
  --ink: #0c0c0d;
  --ink-2: #16161a;
  --paper: #f6f4ef;
  --line: rgba(255,255,255,0.08);
  --muted: rgba(255,255,255,0.55);
  --display: 'Inter Tight','Inter',system-ui,sans-serif;
  --text: 'Inter',system-ui,sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #000; color: #fff; font-family: var(--text); }

deck-stage { background: #000; }
deck-stage > section {
  background: linear-gradient(180deg, #0c0c0d 0%, #16161a 100%);
  color: #fff;
  padding: 96px 120px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
deck-stage > section.alt { background: var(--paper); color: var(--ink); }
deck-stage > section.brand { background: var(--orange); color: #000; }

.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--orange); }

h1.slide-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
  text-wrap: balance;
}
h1.slide-title .dot { color: var(--orange); }
h2.step-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.lede {
  font-size: 26px;
  line-height: 1.5;
  max-width: 900px;
  opacity: 0.78;
  margin: 0;
}

.step-num {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.body-cols { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; flex: 1; }
.body-cols.flip { grid-template-columns: 1fr 1.1fr; }

.center-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 40px; flex: 1; text-align: center;
}

ul.bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
ul.bullets li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 20px; line-height: 1.55; opacity: 0.85;
}
ul.bullets li::before {
  content: ''; width: 8px; height: 8px; margin-top: 12px;
  border-radius: 999px; background: var(--orange); flex: 0 0 8px;
}

.cta-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px; border-radius: 999px;
  background: var(--orange); color: #000;
  font-family: var(--display); font-weight: 800; font-size: 22px;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); text-decoration: none;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em;
}

/* The dot mark */
.mark { display: inline-block; }

/* Wordmark */
.wm { font-family: var(--display); font-weight: 900; letter-spacing: -0.045em; line-height: 1; }
.wm .d { color: var(--orange); }

/* Top-right brand stripe + lang toggle (lives outside deck stage) */
.brand-strip {
  position: fixed; top: 18px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; pointer-events: none;
}
.brand-strip .left, .brand-strip .right { pointer-events: auto; display: flex; align-items: center; gap: 12px; }
.brand-strip .wm { color: #fff; font-size: 18px; }
.lang-toggle {
  display: inline-flex; padding: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
}
.lang-toggle button {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 0; padding: 6px 12px; border-radius: 999px;
  font: inherit; cursor: pointer; text-transform: uppercase;
}
.lang-toggle button.active { background: var(--orange); color: #000; }

/* lang visibility */
[data-en], [data-bg] { display: none; }
html[lang="en"] [data-en] { display: revert; }
html[lang="bg"] [data-bg] { display: revert; }

/* score pill (live game score component) */
.scoreboard {
  background: linear-gradient(180deg, #0c0c0d 0%, #1a1a1f 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px 40px;
  width: 100%; max-width: 520px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.scoreboard .row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 13px; color: var(--muted); margin-bottom: 18px;
}
.scoreboard .teams { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.scoreboard .team .label {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px; display: flex; align-items: center; gap: 8px;
}
.scoreboard .team.right .label { justify-content: flex-end; }
.scoreboard .team.right .num { text-align: right; }
.scoreboard .team .label .serve {
  width: 8px; height: 8px; border-radius: 999px; background: var(--orange);
}
.scoreboard .num {
  font-family: var(--display); font-weight: 900; font-size: 96px;
  line-height: 1; letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

/* Phone frame */
.phone {
  width: 320px; height: 660px;
  background: #1a1a1f; border-radius: 48px;
  border: 10px solid #2a2a30; padding: 14px;
  position: relative;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7);
}
.phone .notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 30px; background: #000; border-radius: 0 0 18px 18px;
}
.phone .screen {
  width: 100%; height: 100%; background: #0c0c0d;
  border-radius: 36px; overflow: hidden;
  display: flex; flex-direction: column;
}

/* misc */
.divider { height: 1px; background: var(--line); margin: 32px 0; }
.muted { opacity: 0.6; }

/* Hero loop wrapper */
.hero-stage {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 40px 0;
}
.hero-stage::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,90,31,0.12), transparent 60%);
  pointer-events: none;
}

/* keyframes */
@keyframes pulse-ring {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}
@keyframes flip-up {
  0%   { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes press {
  0%, 88%, 100% { transform: scale(1); }
  90%, 95%      { transform: scale(0.94); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* nav arrows + chrome */
deck-stage::part(arrow) { background: rgba(255,255,255,0.06); }
