/* ========= BASE ========= */

:root {
  --bg-dark: #020617;
  --bg-dark-soft: #020617;
  --bg-light: #f4f5fb;
  --bg-light-soft: #ffffff;

  --card-dark: rgba(15, 23, 42, 0.96);
  --card-dark-soft: rgba(15, 23, 42, 0.88);
  --card-light: rgba(255, 255, 255, 0.98);
  --card-light-soft: rgba(255, 255, 255, 0.9);

  --border-subtle-dark: rgba(148, 163, 184, 0.35);
  --border-subtle-light: rgba(148, 163, 184, 0.25);

  --text-main-dark: #e5e7eb;
  --text-muted-dark: #9ca3af;
  --text-main-light: #0f172a;
  --text-muted-light: #6b7280;

  --zeus-orange: #ff8a34;
  --zeus-orange-soft: #ffb45e;
  --zeus-blue: #17a2ff;
  --zeus-blue-soft: #5ad3ff;
  --zeus-green: #22c55e;
  --zeus-gold: #facc15;

  --pill-radius: 999px;

  --shadow-soft-dark: 0 18px 60px rgba(15, 23, 42, 0.9);
  --shadow-soft-light: 0 18px 50px rgba(15, 23, 42, 0.14);

  --transition-fast: 0.16s ease-out;
  --transition-med: 0.22s ease-out;

  color-scheme: dark;
}

body[data-theme='light'] {
  color-scheme: light;
}

/* ========= RESET ========= */

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
  min-height: 100vh;
  background: radial-gradient(
      circle at 10% 0%,
      rgba(37, 99, 235, 0.26),
      transparent 55%
    ),
    radial-gradient(
      circle at 90% 100%,
      rgba(249, 115, 22, 0.32),
      transparent 55%
    ),
    var(--bg-dark);
  color: var(--text-main-dark);
}

body[data-theme='light'] {
  background: radial-gradient(
      circle at 0% 0%,
      rgba(37, 99, 235, 0.16),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(249, 115, 22, 0.2),
      transparent 55%
    ),
    var(--bg-light);
  color: var(--text-main-light);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========= NAVBAR ========= */

.top-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.93),
    rgba(2, 6, 23, 0.86),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

body[data-theme='light'] .top-nav {
  background: linear-gradient(
    to bottom,
    rgba(248, 250, 252, 0.96),
    rgba(248, 250, 252, 0.92),
    transparent
  );
  border-bottom-color: rgba(148, 163, 184, 0.25);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Brand */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main-dark);
}

.brand-subtitle {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

body[data-theme='light'] .brand-title {
  color: var(--text-main-light);
}

body[data-theme='light'] .brand-subtitle {
  color: var(--text-muted-light);
}

/* Nav links */

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  flex: 1;
}

.nav-link {
  position: relative;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-muted-dark);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color var(--transition-fast),
    background var(--transition-fast), box-shadow var(--transition-fast),
    transform var(--transition-fast), border-color var(--transition-fast);
  border: 1px solid transparent;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    circle at 0 0,
    rgba(251, 191, 36, 0.35),
    transparent
  );
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.nav-link:hover {
  color: #f9fafb;
  background: radial-gradient(
      circle at 0 0,
      rgba(251, 191, 36, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(56, 189, 248, 0.45),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.95);
  border-color: rgba(148, 163, 184, 0.6);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.7);
  transform: translateY(-1px);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link--active {
  color: #f9fafb;
  background: linear-gradient(135deg, #f97316, #22c55e);
  box-shadow: 0 14px 40px rgba(248, 113, 22, 0.65);
}

body[data-theme='light'] .nav-link {
  color: var(--text-muted-light);
}

body[data-theme='light'] .nav-link:hover {
  color: var(--text-main-light);
  background: radial-gradient(
      circle at 0 0,
      rgba(251, 191, 36, 0.1),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(56, 189, 248, 0.14),
      transparent 55%
    ),
    #ffffff;
  box-shadow: var(--shadow-soft-light);
}

body[data-theme='light'] .nav-link--active {
  color: #0f172a;
  box-shadow: 0 14px 35px rgba(248, 113, 22, 0.4);
}

/* Nav controls */

.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-switch {
  display: flex;
  gap: 4px;
}

.lang-pill {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 4px 10px;
  font-size: 11px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-muted-dark);
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition-fast),
    color var(--transition-fast), border-color var(--transition-fast),
    box-shadow var(--transition-fast), transform var(--transition-fast);
}

.lang-pill--active {
  background: linear-gradient(135deg, #f97316, #22c55e);
  color: #f9fafb;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(248, 113, 22, 0.6);
  transform: translateY(-0.5px);
}

body[data-theme='light'] .lang-pill {
  background: #ffffff;
  color: var(--text-muted-light);
  border-color: rgba(148, 163, 184, 0.4);
}

/* Theme toggle */

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 10px 4px 6px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(
      circle at 0 0,
      rgba(56, 189, 248, 0.18),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  font-size: 11px;
  cursor: pointer;
  transition: box-shadow var(--transition-fast),
    transform var(--transition-fast),
    border-color var(--transition-fast), background var(--transition-fast),
    color var(--transition-fast);
}

.theme-toggle-icon {
  font-size: 14px;
}

.theme-toggle-label {
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.theme-toggle:hover {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

body[data-theme='light'] .theme-toggle {
  background: radial-gradient(
      circle at 0 0,
      rgba(251, 191, 36, 0.16),
      transparent 60%
    ),
    #ffffff;
  color: #0f172a;
}

/* ========= STATUS BAR ZEUS ========= */

.zeus-status-bar {
  margin-top: 6px;
}

.status-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 20px 10px;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.94),
    rgba(15, 23, 42, 0.96)
  );
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 6px 18px;
}

body[data-theme='light'] .status-inner {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.98)
  );
  border-color: rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft-light);
}

/* API badge */

.status-api-badge {
  grid-row: 1 / span 2;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  background: radial-gradient(
      circle at 0 0,
      rgba(251, 191, 36, 0.46),
      transparent 70%
    ),
    rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(253, 224, 71, 0.8);
  color: #fefce8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.status-api-badge::after {
  content: '';
  position: absolute;
  inset: -120%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  opacity: 0;
  animation: badgeShimmer 4s ease-in-out infinite;
}

.status-bolt {
  width: 18px;
  height: 18px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #facc15, #f97316);
  box-shadow: 0 0 15px rgba(248, 250, 252, 0.9);
  font-size: 12px;
}

body[data-theme='light'] .status-api-badge {
  background: radial-gradient(
      circle at 0 0,
      rgba(251, 191, 36, 0.4),
      transparent 70%
    ),
    #0f172a;
}

/* Marquee */

.status-marquee {
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  color: var(--text-muted-dark);
}

.status-track {
  display: inline-block;
  padding-left: 100%;
  animation: marqueeScroll 28s linear infinite;
}

.status-track span {
  padding-right: 40px;
}

body[data-theme='light'] .status-marquee {
  color: var(--text-muted-light);
}

/* Chips */

.status-chips {
  grid-column: 2 / 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  color: #f9fafb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.85);
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), opacity var(--transition-fast),
    filter var(--transition-fast);
}

.status-chip:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.85);
}

.chip-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.15);
}

.chip-icon svg {
  width: 12px;
  height: 12px;
}

/* TG & WA colors */

.tg-chip {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

.wa-chip {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* ========= MAIN LAYOUT ========= */

.main {
  max-width: 1180px;
  margin: 26px auto 40px;
  padding: 0 20px 40px;
  position: relative;
}

/* Watermark */

.zeus-watermark {
  position: absolute;
  inset: 160px -220px -120px auto;
  background-image: url('logo-zeus-tool-optimized.png');
  background-repeat: no-repeat;
  background-size: 520px auto;
  background-position: center;
  opacity: 0.16;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.7));
  pointer-events: none;
  mix-blend-mode: screen;
}

body[data-theme='light'] .zeus-watermark {
  opacity: 0.12;
  filter: drop-shadow(0 30px 50px rgba(15, 23, 42, 0.45));
  mix-blend-mode: multiply;
}

/* ========= HERO ========= */

.hero {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--zeus-orange-soft);
  font-weight: 700;
}

.hero-title {
  font-size: 30px;
  line-height: 1.18;
  margin: 0;
}

.hero-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

body[data-theme='light'] .hero-subtitle {
  color: var(--text-muted-light);
}

/* Download pills */

.hero-download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-pill {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--pill-radius);
  text-decoration: none;
  color: #0b1120;
  font-size: 13px;
  background: #f97316;
  box-shadow: 0 18px 40px rgba(248, 113, 22, 0.7);
  border: 1px solid rgba(248, 250, 252, 0.3);
  transition: transform var(--transition-med),
    box-shadow var(--transition-med), background var(--transition-med),
    filter var(--transition-med);
}

.download-pill:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 22px 55px rgba(248, 113, 22, 0.85);
  filter: saturate(1.06);
}

.win-pill {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.mac-pill {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  box-shadow: 0 18px 38px rgba(56, 189, 248, 0.72);
}

.pill-logo {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background-color: #0ea5e9;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

.pill-logo--win {
  background-color: #0b74d5;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.35),
      transparent
    ),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M3 4.5 11 3v8.25H3zm8 8.25V21l-8-1.5v-6.75zm2-9.93L21 2v9.25h-8zm8 9.25V22l-8-1.5v-7.68z"/></svg>');
}

.pill-logo--mac {
  background-color: #111827;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M16.36 1.64c0 1.2-.44 2.13-1.3 2.89-.86.76-1.86 1.19-3 1.12-.05-1.14.43-2.11 1.27-2.86.84-.76 1.94-1.24 3.03-1.15zM19.68 17.46c-.54 1.27-.8 1.84-1.5 2.97-.97 1.57-2.34 3.54-4.05 3.56-1.5.02-1.88-1.02-3.9-1.02-2.02 0-2.42 1.02-3.94 1-1.71-.02-3.02-1.78-3.99-3.34-2.74-4.44-3.03-9.64-1.34-12.39 1.19-1.95 3.07-3.11 4.84-3.11 1.79 0 2.9 1.05 4.38 1.05 1.45 0 2.33-1.05 4.36-1.05 1.64 0 3.37.89 4.55 2.44-4.01 2.19-3.35 7.92.93 9.94z"/></svg>');
}

/* Pill text */

.pill-text {
  display: flex;
  flex-direction: column;
}

.pill-text strong {
  font-size: 13px;
}

.pill-text span {
  font-size: 11px;
  opacity: 0.9;
}

/* Hero chips */

.hero-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--text-muted-dark);
  background: radial-gradient(
      circle at 0 0,
      rgba(148, 163, 184, 0.3),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.9);
}

.hero-chip--green {
  border-color: rgba(34, 197, 94, 0.8);
  color: #bbf7d0;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.35),
    rgba(22, 163, 74, 0.9)
  );
}

.hero-chip--gold {
  border-color: rgba(250, 204, 21, 0.85);
  color: #fef9c3;
  background: linear-gradient(
    135deg,
    rgba(250, 204, 21, 0.35),
    rgba(245, 158, 11, 0.9)
  );
}

body[data-theme='light'] .hero-chip {
  background: #ffffff;
  color: var(--text-muted-light);
}

/* Compat card */

.compat-card {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--border-subtle-dark);
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.92),
    rgba(15, 23, 42, 0.98)
  );
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
  font-size: 12px;
}

.compat-card h3 {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.compat-card p {
  margin: 0 0 2px;
  color: #cbd5f5;
}

body[data-theme='light'] .compat-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.98)
  );
  border-color: var(--border-subtle-light);
  box-shadow: var(--shadow-soft-light);
  color: var(--text-main-light);
}

body[data-theme='light'] .compat-card p {
  color: var(--text-muted-light);
}

/* Tool card */

.tool-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 14px 16px 18px;
  border-radius: 26px;
  background: radial-gradient(
      circle at 0 0,
      rgba(16, 185, 129, 0.38),
      transparent 65%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(56, 189, 248, 0.4),
      transparent 70%
    ),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.98);
}

body[data-theme='light'] .tool-card {
  background: radial-gradient(
      circle at 0 0,
      rgba(16, 185, 129, 0.18),
      transparent 65%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(56, 189, 248, 0.18),
      transparent 70%
    ),
    #ffffff;
  box-shadow: var(--shadow-soft-light);
}

.tool-logo-floating {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 0,
    #facc15,
    #f97316,
    #b45309
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 70px rgba(248, 113, 22, 0.95);
}

.tool-logo-floating img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.tool-screenshot-wrap {
  margin-top: 30px;
  border-radius: 20px;
  padding: 8px;
  background: radial-gradient(
      circle at 0 0,
      rgba(34, 197, 94, 0.22),
      transparent 60%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(56, 189, 248, 0.3),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.98);
}

.tool-screenshot {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  transform-origin: center;
  transform: translateY(0) scale(1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.tool-card:hover .tool-screenshot {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 1);
}

/* ========= SECTIONS ========= */

.section-header {
  margin: 40px 0 16px;
}

.section-header h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.section-header p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted-dark);
}

body[data-theme='light'] .section-header p {
  color: var(--text-muted-light);
}

/* Services */

.services-section {
  margin-top: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: var(--card-dark-soft);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft-dark);
  font-size: 13px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.35s ease-out, opacity 0.35s ease-out,
    box-shadow var(--transition-med), border-color var(--transition-med),
    background var(--transition-med);
}

.service-card.revealed {
  transform: translateY(0);
  opacity: 1;
}

.service-card--active {
  background: radial-gradient(
      circle at 0 0,
      rgba(248, 113, 22, 0.4),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(56, 189, 248, 0.4),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.98);
  border-color: rgba(250, 204, 21, 0.85);
}

body[data-theme='light'] .service-card {
  background: var(--card-light-soft);
  border-color: var(--border-subtle-light);
  box-shadow: var(--shadow-soft-light);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.service-header h3 {
  margin: 0;
  font-size: 15px;
}

.service-status {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
}

.service-status--live {
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
  border-color: rgba(34, 197, 94, 0.6);
}

.service-status--soon {
  background: rgba(248, 250, 252, 0.04);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.7);
}

body[data-theme='light'] .service-status--live {
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
}

body[data-theme='light'] .service-status--soon {
  background: rgba(15, 23, 42, 0.04);
  color: #374151;
}

.service-desc {
  margin: 0 0 6px;
  color: var(--text-muted-dark);
}

.service-list {
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--text-muted-dark);
}

.service-list li {
  margin-bottom: 3px;
}

/* Service actions */

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast);
}

.btn-pill--primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #0b1120;
  border-color: transparent;
  box-shadow: 0 14px 35px rgba(248, 113, 22, 0.85);
}

.btn-pill--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(248, 113, 22, 1);
}

.btn-pill--ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-pill--ghost:hover {
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}

/* Pricing */

.pricing-section {
  margin-top: 32px;
}

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

.price-card {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: var(--card-dark);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft-dark);
  font-size: 13px;
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.price-value {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.price-value .currency {
  font-size: 12px;
  margin-right: 4px;
  opacity: 0.7;
}

.price-note {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--text-muted-dark);
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted-dark);
  font-size: 12px;
}

body[data-theme='light'] .price-card {
  background: #ffffff;
  border-color: var(--border-subtle-light);
  box-shadow: var(--shadow-soft-light);
}

body[data-theme='light'] .price-note,
body[data-theme='light'] .price-card ul {
  color: var(--text-muted-light);
}

.pricing-footnote {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--text-muted-dark);
}

/* Resellers */

.resellers-section {
  margin-top: 32px;
}

.resellers-empty {
  padding: 18px 16px;
  border-radius: 20px;
  background: var(--card-dark-soft);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft-dark);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body[data-theme='light'] .resellers-empty {
  background: #ffffff;
  border-color: var(--border-subtle-light);
  box-shadow: var(--shadow-soft-light);
}

/* Telegram */

.telegram-section {
  margin-top: 32px;
}

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

.telegram-card {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: var(--card-dark-soft);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft-dark);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.telegram-card h3 {
  margin: 0;
}

.telegram-card p {
  margin: 0;
  color: var(--text-muted-dark);
}

.telegram-card .btn-pill {
  align-self: flex-start;
}

body[data-theme='light'] .telegram-card {
  background: #ffffff;
  border-color: var(--border-subtle-light);
  box-shadow: var(--shadow-soft-light);
}

body[data-theme='light'] .telegram-card p {
  color: var(--text-muted-light);
}

/* ========= FOOTER ========= */

.footer {
  border-top: 1px solid rgba(15, 23, 42, 0.5);
  padding: 14px 20px 20px;
  margin-top: auto;
  background: radial-gradient(
      circle at 0 0,
      rgba(30, 64, 175, 0.45),
      transparent 55%
    ),
    #020617;
}

body[data-theme='light'] .footer {
  background: #f9fafb;
  border-top-color: rgba(148, 163, 184, 0.4);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #9ca3af;
}

body[data-theme='light'] .footer-left {
  color: var(--text-muted-light);
}

.footer-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-right {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.footer-tag {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(252, 211, 77, 0.8);
  background: radial-gradient(
      circle at 0 0,
      rgba(250, 204, 21, 0.22),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.95);
}

/* ========= ANIMACIONES ========= */

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes badgeShimmer {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  20% {
    opacity: 0.9;
  }
  40% {
    opacity: 0;
    transform: translateX(120%);
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

/* ========= RESPONSIVE ========= */

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .hero-right {
    order: -1;
    margin-bottom: 22px;
  }

  .tool-card {
    margin: 0 auto;
  }

  .zeus-watermark {
    inset: 380px -180px -160px auto;
    background-size: 420px auto;
  }

  .status-inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .status-api-badge {
    grid-row: 1 / 2;
  }

  .status-marquee {
    grid-row: 2 / 3;
  }

  .status-chips {
    grid-row: 3 / 4;
    justify-content: flex-start;
  }

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

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

@media (max-width: 720px) {
  .nav-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links {
    order: 2;
    margin-left: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .nav-controls {
    margin-left: 0;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-download-row {
    flex-direction: column;
  }

  .compat-card {
    font-size: 11px;
  }

  .pricing-grid,
  .telegram-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .status-inner {
    padding: 8px 12px 10px;
  }

  .zeus-watermark {
    background-size: 360px auto;
    inset: 420px -160px -160px auto;
  }

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