/* ============ tarfket — clean & light ============ */
:root {
  --bg: #f3f3ef;
  --bg-soft: #e8e9e2;
  --surface: #ffffff;
  --panel: #ffffff;
  --panel-2: #eeefe9;
  --ink: #111114;
  --text: #111114;
  --muted: #65656b;
  --faint: #9a9aa0;
  --line: #dedfd8;
  --line-2: #cfd1c8;
  --accent: #78870d;
  --accent-bright: #e8ff5a;
  --accent-dim: #d5ed3d;
  --accent-soft: #f4ffc7;
  --green: #78870d;
  --green-dim: #e8ff5a;
  --green-dark: #f4ffc7;
  --cream: #111114;
  --ok: #16a34a;
  --radius: 20px;
  --shadow-sm:
    0 1px 2px rgba(26, 22, 34, 0.05), 0 6px 18px rgba(26, 22, 34, 0.06);
  --shadow-md: 0 10px 30px -8px rgba(26, 22, 34, 0.13);
  --shadow-lg: 0 30px 70px -20px rgba(17, 17, 20, 0.28);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Bricolage Grotesque", "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: rgba(232, 255, 90, 0.62);
}

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

.container-narrow {
  width: min(760px, 100% - 48px);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.3rem);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

h3 {
  font-size: 1.1rem;
}

.accent {
  color: var(--accent);
}

/* podčiarknutý akcent */
.hl {
  position: relative;
  color: var(--accent);
  white-space: nowrap;
}

.hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 4px;
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.85;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section {
  padding: 108px 0;
}

.section-line {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 640px;
  margin-bottom: 54px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-sub {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.06rem;
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.services-grid .reveal:nth-child(2),
.campaigns-grid .reveal:nth-child(2),
.steps .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.services-grid .reveal:nth-child(3),
.campaigns-grid .reveal:nth-child(3),
.steps .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.steps .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.steps .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  .float-chip,
  .badge-dot,
  .ec-live i,
  .ec-chart i,
  .stage-chip,
  .orbit-ring,
  .orbit-ping,
  .sb-head i,
  .tl-row > span i,
  .studio-float {
    animation: none !important;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease,
    box-shadow 0.2s ease;
}

.btn-lg {
  padding: 15px 28px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.86rem;
}

.btn .arr {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover .arr {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent-bright);
  color: var(--ink);
  box-shadow: 0 12px 28px -12px rgba(176, 198, 40, 0.66);
}

.btn-primary:hover {
  background: #f0ff7d;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(176, 198, 40, 0.75);
}

.btn-cream,
.btn-soft {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}

.btn-cream:hover,
.btn-soft:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--muted);
  padding-inline: 14px;
}

.btn-ghost:hover {
  color: var(--ink);
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(245, 247, 241, 0.88);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav.scrolled {
  border-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 70px;
}

.logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.34rem;
  letter-spacing: -0.035em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.logo span {
  transform: translateY(-1px);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.live-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s infinite;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-inline: auto;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-burger span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
}

/* ---------- hero ---------- */
.hero {
  padding: 150px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto;
  height: 720px;
  background:
    radial-gradient(
      680px 460px at 78% 18%,
      rgba(255, 82, 51, 0.13),
      transparent 62%
    ),
    radial-gradient(
      520px 420px at 10% 8%,
      rgba(245, 158, 11, 0.08),
      transparent 60%
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

.hero h1 {
  font-size: clamp(1rem, 1vw, 1rem);
}

.hero-sub {
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 460px;
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-note {
  color: var(--faint);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 24px;
}

/* telefón + plávajúce čipy */
.hero-visual {
  position: relative;
  justify-self: center;
}

.phone {
  position: relative;
  width: 300px;
  border-radius: 40px;
  padding: 12px;
  background: linear-gradient(155deg, #ff6a4d, #e0391a 55%, #7f1d1d);
  box-shadow: var(--shadow-lg);
}

.phone-screen {
  border-radius: 30px;
  background: linear-gradient(180deg, #ff6547, #cf3217 68%, #87220f);
  padding: 30px 24px 26px;
  min-height: 470px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.phone-screen::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  top: -120px;
  right: -80px;
}

.ps-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}

.ps-amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.02em;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
  position: relative;
}

.ps-trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.18);
  padding: 5px 12px;
  border-radius: 999px;
  margin-top: 10px;
  position: relative;
}

.ps-rows {
  margin-top: 28px;
  display: grid;
  gap: 10px;
  position: relative;
}

.ps-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.ps-row strong {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.ps-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 24px;
  position: relative;
}

.ps-live .d {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7dffb0;
  box-shadow: 0 0 8px #7dffb0;
  animation: pulse 1.6s infinite;
}

.float-chip {
  position: absolute;
  z-index: 3;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 11px 16px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 2px;
  animation: floaty 5.5s ease-in-out infinite;
}

.float-chip .fc-k {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--faint);
}

.float-chip .fc-v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.fc-views {
  top: 6%;
  left: -74px;
}

.fc-earn {
  top: 40%;
  right: -66px;
  animation-delay: 0.8s;
}

.fc-earn .fc-v {
  color: var(--ok);
}

.fc-streak {
  bottom: 12%;
  left: -60px;
  animation-delay: 1.4s;
}

.fc-streak .fc-v {
  color: #f59e0b;
}

@keyframes floaty {
  50% {
    transform: translateY(-9px);
  }
}

/* trust logá riadok */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

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

.hero-trust li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

/* ---------- hero: marketplace command center ---------- */
.hero {
  padding: 112px 0 72px;
}

.hero::before {
  inset: 0;
  height: 100%;
  background: radial-gradient(
    700px 420px at 85% 5%,
    rgba(168, 232, 92, 0.16),
    transparent 65%
  );
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  min-height: 600px;
  padding: 64px 68px;
  border-radius: 36px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      520px 360px at 90% 12%,
      rgba(168, 232, 92, 0.13),
      transparent 68%
    ),
    linear-gradient(135deg, #2b1936, #1d1225 62%, #17101c);
  box-shadow: 0 32px 80px -32px rgba(37, 21, 47, 0.55);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.11) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent 35%, #000);
  opacity: 0.28;
}

.hero-shell .hero-copy {
  position: relative;
  z-index: 2;
}

.hero-shell .badge {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.hero-shell .badge-dot {
  background: var(--accent-bright);
}

.hero-shell h1 {
  color: #fff;
  font-size: clamp(2.8rem, 5.4vw, 4.7rem);
}

.hero-shell .hl {
  color: var(--accent-bright);
}

.hero-shell .hl::after {
  display: none;
}

.hero-shell .hero-sub {
  color: rgba(255, 255, 255, 0.68);
  max-width: 520px;
}

.btn-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-shell .hero-trust {
  color: rgba(255, 255, 255, 0.62);
}

.hero-shell .hero-trust li::before {
  color: var(--accent-bright);
}

.earnings-stage {
  position: relative;
  z-index: 2;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.earnings-card {
  width: min(410px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  transform: rotate(1.5deg);
  transition: transform 0.35s ease;
}

.hero-shell:hover .earnings-card {
  transform: rotate(0.3deg) translateY(-4px);
}

.ec-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.ec-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
}

.ec-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 5px rgba(168, 232, 92, 0.2);
  animation: pulse 1.8s infinite;
}

.ec-total {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-top: 18px;
}

.ec-total small {
  grid-column: 1 / -1;
  color: var(--faint);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ec-total strong {
  font: 800 2.35rem/1.1 var(--display);
  letter-spacing: -0.04em;
}

.ec-total span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding-bottom: 5px;
}

.ec-chart {
  height: 86px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 18px 0 20px;
  padding: 0 2px;
}

.ec-chart i {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--accent-bright), #75b837);
  transform-origin: bottom;
  animation: chartGrow 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ec-chart i:nth-child(2) {
  animation-delay: 0.06s;
}

.ec-chart i:nth-child(3) {
  animation-delay: 0.12s;
}

.ec-chart i:nth-child(4) {
  animation-delay: 0.18s;
}

.ec-chart i:nth-child(5) {
  animation-delay: 0.24s;
}

.ec-chart i:nth-child(6) {
  animation-delay: 0.3s;
}

.ec-chart i:nth-child(7) {
  animation-delay: 0.36s;
}

@keyframes chartGrow {
  from {
    transform: scaleY(0);
    opacity: 0.25;
  }
}

.ec-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.ec-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.ec-icon.alt {
  background: #f0e7f6;
  color: #7c3d91;
}

.ec-icon.warm {
  background: #fff0db;
  color: #c56b14;
}

.ec-row p {
  display: grid;
  flex: 1;
  line-height: 1.25;
}

.ec-row p strong {
  font-size: 0.86rem;
}

.ec-row p small {
  color: var(--faint);
  font-size: 0.72rem;
}

.ec-row b {
  font-size: 0.86rem;
  color: var(--accent);
}

.stage-chip {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 12px 15px;
  border-radius: 15px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  animation: floaty 5s ease-in-out infinite;
}

.stage-chip small {
  color: var(--faint);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.stage-chip strong {
  font-size: 0.95rem;
}

.stage-views {
  top: 10%;
  left: -5%;
}

.stage-paid {
  right: -5%;
  bottom: 12%;
  animation-delay: 1s;
}

.stage-paid strong {
  color: var(--accent);
}

.hero-models {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-models span {
  margin-right: 8px;
  font-weight: 600;
  color: var(--ink);
}

.hero-models a {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transition: 0.2s ease;
}

.hero-models a:hover {
  border-color: var(--accent-bright);
  background: #fff;
  transform: translateY(-2px);
}

/* ---------- hero: orbitálny marketplace ---------- */
.hero-orbit {
  padding: 128px 0 56px;
  background: radial-gradient(
    720px 440px at 78% 18%,
    rgba(255, 107, 53, 0.13),
    transparent 68%
  );
}

.orbit-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 56px;
  min-height: 580px;
}

.orbit-copy h1 {
  font-size: clamp(3.4rem, 6.8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.orbit-copy h1 span {
  color: var(--accent-bright);
  font-style: italic;
  font-weight: 700;
}

.orbit-copy .hero-sub {
  max-width: 510px;
}

.orbit-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  padding: 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
}

.orbit-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.13);
}

.orbit-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.84rem;
}

.orbit-proof span {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.orbit-proof strong {
  color: var(--ink);
  font: 800 1rem var(--display);
}

.orbit-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.orbit-stage::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #234f49, #0d2926 68%);
  box-shadow: 0 40px 70px -30px rgba(13, 41, 38, 0.55);
  z-index: -2;
}

.orbit-stage::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: -1;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(13, 41, 38, 0.24);
  animation: orbitSpin 22s linear infinite;
}

.ring-one {
  width: 470px;
  height: 470px;
}

.ring-two {
  width: 560px;
  height: 560px;
  animation-direction: reverse;
  animation-duration: 32s;
  opacity: 0.5;
}

.ring-one::before,
.ring-two::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 7px rgba(255, 107, 53, 0.12);
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.orbit-core {
  width: 235px;
  height: 235px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.04);
}

.orbit-core span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.orbit-core strong {
  font: 800 2.6rem/1.1 var(--display);
  letter-spacing: -0.04em;
  margin: 7px 0;
}

.orbit-core small {
  color: #ffb08f;
  font-size: 0.75rem;
  font-weight: 700;
}

.orbit-card {
  position: absolute;
  min-width: 178px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid rgba(13, 41, 38, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(13, 41, 38, 0.14);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  z-index: 3;
}

.orbit-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 22px 44px rgba(13, 41, 38, 0.2);
}

.orbit-card i {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent-bright);
  font-style: normal;
  font-weight: 800;
}

.orbit-card span {
  display: grid;
  font-weight: 800;
  line-height: 1.2;
}

.orbit-card small {
  color: var(--faint);
  font-size: 0.67rem;
  font-weight: 500;
  margin-top: 3px;
}

.oc-clip {
  left: 0;
  top: 19%;
}

.oc-aff {
  right: -2%;
  top: 37%;
}

.oc-promo {
  left: 9%;
  bottom: 10%;
}

.oc-aff i {
  background: #0d2926;
}

.oc-promo i {
  color: #0d2926;
  background: #c8ed73;
}

.orbit-ping {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.13);
  animation: pingPulse 2.4s ease-in-out infinite;
}

.ping-a {
  right: 13%;
  top: 15%;
}

.ping-b {
  left: 18%;
  top: 48%;
  animation-delay: 0.7s;
}

.ping-c {
  right: 20%;
  bottom: 12%;
  animation-delay: 1.4s;
  background: #c8ed73;
  box-shadow: 0 0 0 8px rgba(200, 237, 115, 0.15);
}

@keyframes pingPulse {
  50% {
    transform: scale(0.7);
    opacity: 0.55;
  }
}

.orbit-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.orbit-strip p,
.orbit-strip span {
  padding: 14px 22px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.orbit-strip p {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.orbit-strip span {
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.orbit-strip i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  margin-right: 7px;
}

/* ---------- hero: content studio ---------- */
.studio-hero {
  padding: 112px 0 60px;
  color: #fff;
  background: #111114;
  overflow: hidden;
}

.studio-hero::before {
  inset: 0;
  height: 100%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 85%);
}

.studio-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
  min-height: 620px;
}

.studio-copy {
  position: relative;
  z-index: 2;
}

.studio-copy h1 {
  color: #fff;
  font-size: clamp(3.7rem, 7vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.studio-copy h1 span {
  color: var(--accent-bright);
}

.studio-copy .hero-sub {
  color: rgba(255, 255, 255, 0.62);
  max-width: 500px;
}

.studio-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.studio-kicker i {
  width: 28px;
  height: 1px;
  background: var(--accent-bright);
  box-shadow: 10px 0 0 rgba(232, 255, 90, 0.42);
}

.btn-arrow {
  padding-right: 9px;
  gap: 16px;
}

.btn-arrow i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--accent-bright);
  font-style: normal;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.btn-arrow:hover i {
  transform: rotate(45deg);
}

.btn-studio {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.btn-studio:hover {
  border-color: var(--accent-bright);
  background: rgba(232, 255, 90, 0.07);
  transform: translateY(-2px);
}

.play-mini {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 0.625rem;
}

.studio-proof {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.8rem;
}

.studio-proof span {
  display: flex;
  gap: 5px;
  align-items: baseline;
}

.studio-proof b {
  color: #fff;
  font: 800 1.02rem var(--display);
}

.studio-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.studio-board {
  width: min(600px, 100%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: #1b1b20;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.48);
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.studio-hero:hover .studio-board {
  transform: perspective(1100px) rotateY(-1deg) rotateX(0);
}

.sb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 3px 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sb-head span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sb-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 5px rgba(232, 255, 90, 0.1);
  animation: pulse 1.8s infinite;
}

.sb-head b {
  letter-spacing: 0.18em;
}

.clip-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.deck-clip {
  position: relative;
  aspect-ratio: 9/11;
  overflow: hidden;
  border-radius: 15px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(155deg, #3a3a45, #151519);
}

.deck-clip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255, 255, 255, 0.09)
  );
}

.deck-a {
  background: linear-gradient(155deg, #4f5b12, #17190d);
}

.deck-b {
  background: linear-gradient(155deg, #5a2449, #1a1017);
}

.deck-c {
  background: linear-gradient(155deg, #314b58, #10171a);
}

.deck-clip span,
.deck-clip small,
.deck-clip i {
  position: relative;
  z-index: 1;
}

.deck-clip span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.deck-clip small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
}

.deck-clip i {
  align-self: center;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  font-style: normal;
  font-size: 0.68rem;
  transition: 0.2s ease;
}

.deck-clip:hover i {
  background: var(--accent-bright);
  color: var(--ink);
  transform: scale(1.08);
}

.timeline {
  margin-top: 12px;
  padding: 15px 16px 11px;
  border-radius: 16px;
  background: #121216;
}

.tl-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
}

.tl-head span {
  color: #fff;
  font-weight: 700;
}

.tl-head strong {
  font-weight: 500;
}

.tl-row {
  display: grid;
  grid-template-columns: 48px 1fr 42px;
  align-items: center;
  gap: 10px;
  margin: 9px 0;
}

.tl-row em {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.66rem;
  font-style: normal;
}

.tl-row > span {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.tl-row > span i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--accent-bright);
  animation: timelineFill 1.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.tl-row b {
  color: #fff;
  font-size: 0.68rem;
  text-align: right;
}

@keyframes timelineFill {
  from {
    width: 0;
  }
}

.studio-float {
  position: absolute;
  z-index: 4;
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
}

.sf-earned {
  top: 4%;
  right: -3%;
  min-width: 205px;
  padding: 15px 17px;
  border-radius: 16px;
  color: var(--ink);
  background: var(--accent-bright);
  animation: studioFloat 5s ease-in-out infinite;
}

.sf-earned small {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.62;
}

.sf-earned strong {
  font: 800 1.4rem var(--display);
  margin: 2px 0;
}

.sf-earned span {
  font-size: 0.68rem;
  font-weight: 700;
}

.sf-live {
  left: -4%;
  bottom: 8%;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 9px;
  padding: 12px 15px;
  border-radius: 14px;
  color: #fff;
  background: #26262c;
  animation: studioFloat 5s 1s ease-in-out infinite;
}

.sf-live i {
  grid-row: 1/3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 6px rgba(232, 255, 90, 0.1);
}

.sf-live span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.625rem;
}

.sf-live strong {
  font-size: 0.83rem;
}

@keyframes studioFloat {
  50% {
    transform: translateY(-8px);
  }
}

.model-dock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  overflow: hidden;
  background: #19191d;
}

.model-dock a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  color: #fff;
  transition: 0.2s ease;
}

.model-dock a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.model-dock a:hover {
  color: var(--accent-bright);
  background: rgba(255, 255, 255, 0.04);
}

.model-dock b {
  color: var(--accent-bright);
  font-size: 0.7rem;
}

.model-dock span {
  display: grid;
  font-weight: 700;
  font-size: 0.86rem;
}

.model-dock small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.65rem;
  font-weight: 500;
  margin-top: 2px;
}

.model-dock i {
  font-style: normal;
  transition: transform 0.2s ease;
}

.model-dock a:hover i {
  transform: translate(3px, -3px);
}

/* ---------- služby ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}

.service-hot {
  border-color: rgba(200, 222, 55, 0.62);
  background: linear-gradient(180deg, #fbffd9, #fff 42%);
}

.service-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}

.service-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--accent);
  background: var(--accent-soft);
  margin-bottom: 18px;
}

.service h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.service > p {
  color: var(--muted);
  font-size: 0.93rem;
  margin-bottom: 18px;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
  flex: 1;
}

.service-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' stroke='%2378870d' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/10px no-repeat;
}

.service-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.service-link .arr {
  transition: transform 0.2s ease;
}

.service:hover .service-link .arr {
  transform: translateX(4px);
}

/* celá karta klikateľná */
.service {
  cursor: pointer;
}

.service-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

/* ---------- kampane ---------- */
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.camp {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.camp:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}

.camp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--panel-2);
  padding: 5px 11px;
  border-radius: 999px;
}

.chip-demo {
  color: var(--accent);
  background: var(--accent-soft);
}

.camp h3 {
  margin-bottom: 8px;
}

.camp > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex: 1;
}

.camp-rate {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 16px;
}

.camp-rate strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.camp-rate span {
  color: var(--faint);
  font-size: 0.85rem;
}

.camp-budget {
  margin-bottom: 16px;
}

.cb-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
}

.cb-bar {
  height: 7px;
  border-radius: 999px;
  background: var(--panel-2);
  overflow: hidden;
}

.cb-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--accent);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.camp.in .cb-bar span {
  width: var(--w, 0%);
}

.camp-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--faint);
}

.campaigns-note {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 222, 55, 0.42);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.campaigns-note p {
  color: var(--muted);
  font-size: 0.95rem;
}

.campaigns-note strong {
  color: var(--ink);
  font-weight: 700;
}

.campaigns-empty {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid #26262b;
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #111114;
  background-size: 42px 42px;
  box-shadow: 0 22px 60px rgba(17, 17, 20, 0.15);
}

.empty-orbit {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(232, 255, 90, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: studioFloat 4s ease-in-out infinite;
}

.empty-orbit::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 18px var(--accent-bright);
  transform: translate(38px, -24px);
}

.empty-orbit span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-bright);
  color: #111114;
  font: 900 1.5rem/1 var(--display);
}

.empty-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-bright);
  font: 700 0.7rem/1 var(--body);
  letter-spacing: 0.17em;
}

.campaigns-empty h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}

.campaigns-empty p {
  max-width: 620px;
  color: #a8a8ae;
  font-size: 0.92rem;
}

/* ---------- kroky ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 0.86rem;
}

/* ---------- kalkulačka ---------- */
.calc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 38px 32px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 30px;
}

.calc-row {
  display: grid;
  gap: 13px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.calc-label span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.calc-label strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent) var(--fill, 50%),
    var(--bg-soft) var(--fill, 50%)
  );
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
}

input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent) var(--fill, 50%),
    var(--bg-soft) var(--fill, 50%)
  );
}

.calc-rates {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.calc-rates-label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.calc-rates-note {
  color: var(--faint);
  font-size: 0.82rem;
}

.rate-chips {
  display: flex;
  gap: 8px;
}

.rate-chips button {
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  transition: all 0.15s ease;
}

.rate-chips button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.rate-chips button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(37, 21, 47, 0.35);
}

.calc-result {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  text-align: center;
  display: grid;
  gap: 2px;
}

.calc-result p {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--faint);
}

.calc-result strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.calc-result span {
  color: var(--muted);
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}

.calc-disclaimer {
  color: var(--faint);
  font-size: 0.82rem;
  margin-top: 16px;
  text-align: center;
}

/* ---------- pre značky ---------- */
.dark-band {
  background: var(--ink);
  color: #fff;
  padding: 104px 0;
}

.db-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.db-copy h2 {
  color: #fff;
}

.db-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin: 16px 0 30px;
  max-width: 470px;
  font-size: 1.02rem;
}

.db-copy .eyebrow {
  color: var(--accent-bright);
}

.db-points {
  list-style: none;
  display: grid;
  gap: 12px;
}

.db-points li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: grid;
  gap: 3px;
}

.db-points strong {
  font-weight: 700;
  font-size: 0.98rem;
}

.db-points span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 44px 20px 0;
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  transition: color 0.15s ease;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--faint);
  font-size: 1.3rem;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--accent);
}

.faq-item p {
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 0.93rem;
  max-width: 620px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, #222228, #111114 58%, #08080a);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  max-width: 640px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  margin: 14px 0 30px;
  max-width: 460px;
}

.cta-inner .btn-dark {
  background: var(--accent-bright);
  color: var(--ink);
}

.cta-inner .btn-dark:hover {
  background: #f0ff7d;
}

/* ---------- footer ---------- */
.footer {
  background: var(--surface);
  color: var(--muted);
  padding: 68px 0 34px;
  border-top: 1px solid var(--line);
}

.footer .logo {
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  color: var(--faint);
  font-size: 0.88rem;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--faint);
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-col a,
.footer-col button {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: left;
  padding: 0;
  transition: color 0.15s ease;
}

.footer-col a:hover,
.footer-col button:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  color: var(--faint);
  font-size: 0.8rem;
}

/* ---------- modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 31, 0.4);
  backdrop-filter: blur(3px);
}

.modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(84vh, 900px);
  background: var(--surface);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
}

.modal-head h3 {
  font-size: 1.02rem;
}

.modal-close {
  color: var(--faint);
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 8px;
}

.modal-close:hover {
  color: var(--ink);
  background: var(--panel-2);
}

.modal-body {
  padding: 8px 26px 30px;
  overflow-y: auto;
}

.modal-body h4 {
  font-weight: 700;
  margin: 24px 0 8px;
  font-size: 0.96rem;
}

.modal-body p {
  color: var(--muted);
  font-size: 0.89rem;
  margin-top: 8px;
  white-space: pre-line;
}

.modal-body ul {
  margin: 8px 0 0 20px;
  color: var(--muted);
  font-size: 0.89rem;
  display: grid;
  gap: 4px;
}

/* ---------- cookie bar ---------- */
.cookiebar {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 90;
  width: min(740px, calc(100% - 32px));
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow-lg);
}

.cookiebar[hidden] {
  display: none;
}

.cookiebar-text {
  font-size: 0.87rem;
  color: var(--muted);
}

.cookiebar-text strong {
  color: var(--ink);
  font-weight: 700;
}

.cookiebar-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.linklike {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.87rem;
}

.linklike:hover {
  text-decoration: underline;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav-inner {
    gap: 20px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 0.85rem;
  }
  .nav-cta .btn-ghost {
    display: none;
  }
}

@media (max-width: 1020px) {
  .studio-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .studio-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .studio-copy .hero-sub {
    margin-inline: auto;
  }
  .studio-proof {
    justify-content: center;
  }
  .studio-visual {
    width: min(680px, 100%);
    margin-inline: auto;
  }
  .orbit-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .orbit-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .orbit-copy .hero-sub {
    margin-inline: auto;
  }
  .orbit-proof {
    justify-content: center;
  }
  .orbit-stage {
    width: min(620px, 100%);
    margin-inline: auto;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    padding: 54px;
  }
  .earnings-stage {
    width: min(520px, 100%);
    margin: 34px auto 0;
  }
  .hero-models {
    flex-wrap: wrap;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 72px;
    text-align: center;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-sub {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }
  .fc-views {
    left: -20px;
  }
  .fc-earn {
    right: -14px;
  }
  .fc-streak {
    left: -14px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
  .campaigns-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .steps .step:last-child {
    grid-column: 1 / -1;
  }
  .db-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .campaigns-empty {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px;
  }
  .campaigns-empty .btn {
    width: 100%;
  }
  .section {
    padding: 84px 0;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .nav-mobile.open {
    display: grid;
    gap: 4px;
    padding: 12px 24px 24px;
    border-top: 1px solid var(--line);
    background: rgba(248, 246, 241, 0.98);
  }
  .nav-mobile a {
    padding: 12px 4px;
    font-weight: 500;
    color: var(--muted);
  }
  .nav-mobile a.btn {
    justify-content: center;
    margin-top: 8px;
  }
  .nav-mobile a.btn-primary {
    color: var(--ink);
  }
  .hero {
    padding: 100px 0 62px;
  }
  .studio-hero {
    padding: 104px 0 44px;
  }
  .studio-copy h1 {
    font-size: clamp(3.35rem, 16vw, 4.5rem);
  }
  .studio-copy .hero-actions {
    width: 100%;
  }
  .studio-copy .hero-actions .btn {
    width: 100%;
  }
  .studio-proof {
    gap: 15px;
  }
  .studio-visual {
    min-height: 430px;
    margin-top: 16px;
  }
  .studio-board {
    padding: 12px;
    border-radius: 20px;
    transform: none;
  }
  .clip-deck {
    gap: 6px;
  }
  .deck-clip {
    padding: 9px;
    border-radius: 11px;
  }
  .deck-clip i {
    width: 34px;
    height: 34px;
  }
  .timeline {
    padding: 12px 11px 8px;
  }
  .tl-row {
    grid-template-columns: 42px 1fr 36px;
    gap: 7px;
  }
  .sf-earned {
    top: -4%;
    right: -2%;
    min-width: 174px;
  }
  .sf-live {
    display: none;
  }
  .model-dock {
    grid-template-columns: 1fr;
  }
  .model-dock a + a {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-orbit {
    padding-top: 106px;
  }
  .orbit-copy h1 {
    font-size: clamp(3.05rem, 15vw, 4.3rem);
  }
  .orbit-copy .hero-actions {
    width: 100%;
  }
  .orbit-copy .hero-actions .btn {
    width: 100%;
  }
  .orbit-stage {
    min-height: 480px;
    transform: scale(0.82);
    margin-block: -30px;
  }
  .ring-one {
    width: 410px;
    height: 410px;
  }
  .ring-two {
    width: 490px;
    height: 490px;
  }
  .orbit-stage::before {
    width: 330px;
    height: 330px;
  }
  .orbit-stage::after {
    width: 240px;
    height: 240px;
  }
  .orbit-core {
    width: 205px;
    height: 205px;
  }
  .orbit-core strong {
    font-size: 2.15rem;
  }
  .oc-clip {
    left: -3%;
  }
  .oc-aff {
    right: -5%;
  }
  .oc-promo {
    left: 3%;
  }
  .orbit-strip {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .hero-shell {
    padding: 38px 22px 30px;
    border-radius: 26px;
    min-height: 0;
  }
  .hero-shell h1 {
    font-size: clamp(2.45rem, 12vw, 3.3rem);
  }
  .hero-shell .hero-actions {
    width: 100%;
  }
  .hero-shell .hero-actions .btn {
    width: 100%;
  }
  .earnings-stage {
    min-height: 430px;
    margin-top: 24px;
  }
  .earnings-card {
    padding: 20px;
    border-radius: 22px;
    transform: none;
  }
  .ec-total strong {
    font-size: 2rem;
  }
  .stage-chip {
    display: none;
  }
  .hero-models span {
    width: 100%;
    text-align: center;
    margin: 0 0 2px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .calc-card {
    padding: 26px 20px 24px;
  }
  .cookiebar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookiebar-actions {
    justify-content: center;
  }
}

/* Current brand mark: replaces legacy SVG references without touching page markup. */
img[src*="tarfket-mark-v3.png"] {
  content: url("../assets/tarfket-mark-v3.png?v=1");
  object-fit: contain;
}
