/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #06090f;
  color: #e2eaf8;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Ambient Orbs ─────────────────────────────────────────── */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: floatOrb 12s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; top: -150px; left: -100px; background: rgba(0,120,255,0.22); }
.orb-2 { width: 400px; height: 400px; bottom: -100px; right: -100px; background: rgba(0,255,180,0.18); animation-delay: 3s; }
.orb-3 { width: 300px; height: 300px; top: 50%; left: 50%; background: rgba(140,60,255,0.12); animation-delay: 6s; }
@keyframes floatOrb {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(30px,-20px); }
  66% { transform: translate(-20px,30px); }
}

/* ── All content above orbs ───────────────────────────────── */
nav, section, footer, .modal-overlay { position: relative; z-index: 1; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,9,15,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo { width: 36px; height: 36px; border-radius: 10px; }
.nav-title { font-size: 18px; font-weight: 800; background: linear-gradient(90deg,#fff,#00FFCC); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-actions { display: flex; gap: 10px; }
.nav-btn {
  padding: 8px 20px; border-radius: 10px; font-size: 14px;
  font-weight: 700; text-decoration: none; transition: all .2s;
}
.nav-btn-ghost { color: #b0c4de; border: 1px solid rgba(255,255,255,0.15); }
.nav-btn-ghost:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-btn-primary { background: linear-gradient(135deg,#0A84FF,#00FFCC); color: #020811; }
.nav-btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  max-width: 900px; margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(0,255,204,0.1); border: 1px solid rgba(0,255,204,0.3);
  color: #00FFCC; font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 24px;
  animation: fadeDown 0.6s ease;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00FFCC;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeDown 0.7s ease 0.1s both;
}
.gradient-text {
  background: linear-gradient(90deg, #0A84FF, #00FFCC, #A78BFA);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  background-size: 200%; animation: shimmer 4s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% } 100% { background-position: 200% } }
.hero-sub {
  font-size: 18px; color: #94a8c8; max-width: 640px; margin: 0 auto 36px;
  animation: fadeDown 0.7s ease 0.2s both;
}

/* ── CTA Row ──────────────────────────────────────────────── */
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-bottom: 20px;
  animation: fadeDown 0.7s ease 0.3s both;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 14px; border: none;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.2s ease;
  letter-spacing: 0.04em;
  color: inherit;
  box-sizing: border-box;
}
.cta-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.cta-android { background: linear-gradient(135deg,#3DDC84,#00A550); color: #fff; }
.cta-web { background: linear-gradient(135deg,#0A84FF,#005FCC); color: #fff; }
.cta-tv { background: linear-gradient(135deg,#A78BFA,#6D28D9); color: #fff; }

.device-hint {
  color: #5a7194; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 16px;
  animation: fadeDown 0.7s ease 0.4s both;
}
.quick-links {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  align-items: center; color: #3d5270; font-size: 13px;
}
.quick-links a { color: #6b8ab5; text-decoration: none; transition: color .2s; }
.quick-links a:hover { color: #00FFCC; }

/* ── Features ─────────────────────────────────────────────── */
.features-section {
  max-width: 1100px; margin: 0 auto; padding: 60px 24px;
}
.section-title {
  text-align: center; font-size: clamp(28px,4vw,42px); font-weight: 800;
  margin-bottom: 40px; letter-spacing: -0.02em;
}
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.feature-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 28px 20px; text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); border-color: rgba(0,255,204,0.2); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #7a9ab8; }

/* ── Stats ────────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, rgba(10,132,255,0.08), rgba(0,255,204,0.06));
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 40px 24px;
}
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; text-align: center;
}
.stat-num {
  display: block; font-size: 42px; font-weight: 900;
  background: linear-gradient(90deg,#0A84FF,#00FFCC);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 12px; color: #6b8ab5; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── How It Works ─────────────────────────────────────────── */
.how-section { max-width: 1000px; margin: 0 auto; padding: 70px 24px; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 30px 24px; position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,#0A84FF,#00FFCC);
}
.step-num {
  font-size: 48px; font-weight: 900; color: rgba(0,255,204,0.15);
  line-height: 1; margin-bottom: 16px;
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: #7a9ab8; }

/* ── TV Section ───────────────────────────────────────────── */
.tv-section {
  background: linear-gradient(135deg, rgba(109,40,217,0.12), rgba(0,255,204,0.06));
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 70px 24px;
}
.tv-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.tv-badge {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: rgba(167,139,250,0.15); border: 1px solid rgba(167,139,250,0.35);
  color: #A78BFA; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 18px;
}
.tv-text h2 { font-size: clamp(28px,4vw,42px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.tv-text p { color: #7a9ab8; font-size: 15px; margin-bottom: 24px; }
.tv-steps { display: flex; flex-direction: column; gap: 12px; }
.tv-step {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: #b0c4de;
}
.tv-step span {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg,#A78BFA,#6D28D9);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.tv-mockup { display: flex; justify-content: center; }
.tv-screen {
  width: 260px; height: 200px; background: #0d1420;
  border-radius: 16px; border: 2px solid rgba(167,139,250,0.3);
  box-shadow: 0 0 60px rgba(109,40,217,0.25);
  display: flex; align-items: center; justify-content: center;
}
.tv-qr-demo { text-align: center; }
.tv-qr-demo p { color: #6b8ab5; font-size: 12px; margin: 10px 0 6px; }
.tv-code-demo {
  font-size: 20px; font-weight: 800; letter-spacing: 0.15em;
  color: #00FFCC; font-family: monospace;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer { padding: 32px 24px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; }
.footer-brand img { border-radius: 8px; }
.footer-copy { color: #3d5270; font-size: 13px; }

/* ── PWA Modal ────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 16px;
  animation: modalIn 0.3s ease;
}
.modal-overlay[hidden] { display: none; }
@keyframes modalIn { from { opacity:0; transform:translateY(20px) } to { opacity:1; transform:none } }
.modal-card {
  background: #0f1928; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px; padding: 32px 28px; max-width: 420px; width: 100%;
  position: relative; box-shadow: 0 -8px 60px rgba(0,0,0,0.5);
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.08); border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 14px;
}
.modal-icon { font-size: 48px; text-align: center; margin-bottom: 12px; }
.modal-title { font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 8px; }
.modal-sub { text-align: center; color: #7a9ab8; font-size: 14px; margin-bottom: 20px; }
.modal-steps { display: flex; flex-direction: column; gap: 10px; }
.modal-step {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,0.04); border-radius: 12px; padding: 12px;
  font-size: 13px; color: #b0c4de;
}
.modal-step-icon { font-size: 20px; flex-shrink: 0; }

/* ── TV box detected banner (shown via app.js) ─────────────── */
.tv-install-banner {
  max-width: 720px;
  margin: 0 auto 20px;
  padding: 0 8px;
}
.tv-install-banner-inner {
  background: linear-gradient(135deg, rgba(123,31,162,0.35), rgba(0,229,255,0.12));
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 16px;
  padding: 16px 20px;
  text-align: left;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.tv-install-banner-inner p {
  margin: 10px 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #cbd5e1;
}
.tv-install-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #00e5ff;
  border: 1px solid rgba(0, 229, 255, 0.45);
  padding: 4px 10px;
  border-radius: 999px;
}
.tv-install-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
  background: linear-gradient(90deg, #00e5ff, #22c55e);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.25);
}
.tv-install-banner-cta:hover { filter: brightness(1.08); }

/* ── Full-screen TV / box install wall ─────────────────────── */
.tv-install-wall {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-y: auto;
}
.tv-install-wall[hidden] { display: none !important; }
.tv-install-wall-card {
  max-width: 520px;
  width: 100%;
  padding: 28px 24px 24px;
  border-radius: 24px;
  border: 1px solid rgba(0, 229, 255, 0.35);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(30, 10, 50, 0.95));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  text-align: center;
}
.tv-install-wall-logo {
  border-radius: 18px;
  border: 2px solid rgba(0, 229, 255, 0.4);
  margin-bottom: 16px;
}
.tv-install-wall-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #f8fafc;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.tv-install-wall-lead {
  font-size: 15px;
  line-height: 1.55;
  color: #94a3b8;
  margin: 0 0 20px;
}
.tv-install-wall-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  color: #0f172a;
  background: linear-gradient(90deg, #22d3ee, #22c55e, #a78bfa);
  background-size: 200% auto;
  box-shadow: 0 12px 40px rgba(34, 211, 238, 0.35);
  margin-bottom: 16px;
}
.tv-install-wall-primary:hover { filter: brightness(1.06); }
.tv-install-wall-steps {
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e1;
  text-align: left;
  margin: 0 0 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.tv-install-wall-secondary {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.12);
  color: #fde68a;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
}
.tv-install-wall-secondary:hover { background: rgba(251, 191, 36, 0.2); }
.tv-install-wall-dismiss {
  width: 100%;
  padding: 12px;
  margin-top: 4px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

/* ── Manager business pages ─────────────────────────────────── */
.manager-page { min-height: 100vh; }
.manager-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  text-align: center;
}
.manager-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.manager-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.35);
  margin-bottom: 16px;
}
.manager-badge-business {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.35);
}
.manager-card h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: #f8fafc;
  margin-bottom: 12px;
}
.manager-lead {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.manager-hint {
  color: #64748b;
  font-size: 13px;
  margin-top: 20px;
}
.manager-spinner {
  width: 44px;
  height: 44px;
  margin: 24px auto;
  border: 3px solid rgba(99, 102, 241, 0.2);
  border-top-color: #818cf8;
  border-radius: 50%;
  animation: managerSpin 0.9s linear infinite;
}
@keyframes managerSpin { to { transform: rotate(360deg); } }
.manager-features-inline {
  list-style: none;
  text-align: left;
  max-width: 360px;
  margin: 0 auto 28px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.manager-features-inline li {
  color: #cbd5e1;
  font-size: 14px;
  padding: 6px 0;
}
.manager-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  color: #0f172a;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.35);
  transition: filter 0.2s, transform 0.2s;
}
.manager-download-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.manager-secondary-btn {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 16px auto 0;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.manager-secondary-btn:hover { background: rgba(255, 255, 255, 0.1); }
.manager-footnote {
  margin-top: 24px;
  font-size: 13px;
  color: #64748b;
}
.manager-footnote a { color: #818cf8; }
.manager-cta-band {
  text-align: center;
  padding: 48px 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.manager-cta-band h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: #f8fafc;
  margin-bottom: 12px;
}
.manager-cta-band p {
  color: #94a3b8;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Partner program pages ─────────────────────────────────── */
.partner-page .partner-lead { max-width: 680px; margin: 0 auto 32px; }
.partner-hero { max-width: 820px; margin: 0 auto; padding: 40px 24px 48px; text-align: center; }
.partner-hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.partner-stat { text-align: center; }
.partner-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6366f1, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.partner-stat-label { font-size: 12px; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.section-sub { text-align: center; color: #94a3b8; max-width: 560px; margin: -8px auto 32px; font-size: 15px; }
.partner-download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.partner-download-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
}
.partner-download-icon { font-size: 48px; margin-bottom: 12px; }
.partner-download-card h3 { color: #f8fafc; font-size: 1.25rem; margin-bottom: 10px; }
.partner-download-card p { color: #94a3b8; font-size: 14px; line-height: 1.55; margin-bottom: 20px; min-height: 66px; }
.partner-desktop-btn { background: linear-gradient(135deg, #0ea5e9, #6366f1) !important; }
.partner-install-note { text-align: center; color: #64748b; font-size: 14px; margin-top: 28px; padding: 0 24px; }
.partner-apply-section { padding: 48px 24px 64px; }
.partner-apply-card {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}
.partner-form { text-align: left; margin-top: 24px; }
.partner-form-row { margin-bottom: 18px; }
.partner-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.partner-label { display: block; font-size: 12px; font-weight: 700; color: #94a3b8; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.partner-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #f8fafc;
  font-size: 15px;
  font-family: inherit;
  box-sizing: border-box;
}
.partner-input:focus { outline: none; border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2); }
.partner-textarea { resize: vertical; min-height: 88px; }
.partner-file { padding: 10px; }
.partner-submit-btn { width: 100%; margin-top: 8px; border: none; cursor: pointer; }
.partner-form-msg { margin-top: 16px; padding: 14px; border-radius: 12px; font-size: 14px; text-align: center; }
.partner-form-msg.success { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; border: 1px solid rgba(16, 185, 129, 0.3); }
.partner-form-msg.error { background: rgba(239, 68, 68, 0.12); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.3); }
.partner-home-band .partner-home-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.partner-home-apk { display: inline-flex !important; padding: 14px 24px !important; align-items: center; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .tv-inner { grid-template-columns: 1fr; }
  .tv-mockup { display: none; }
  .partner-download-grid { grid-template-columns: 1fr; }
  .partner-form-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-btn { justify-content: center; }
  .nav-btn-ghost { display: none; }
  .hero { padding: 50px 16px 40px; }
}
