@import url("./prime-global.css");

/* ─── Hero / main ─── */
main {
  padding: calc(var(--ps-nav-h) + 32px) clamp(20px, 5vw, 40px) 64px;
  position: relative;
}
main .continer {
  max-width: var(--ps-container); margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--ps-radius-pill);
  font-size: 0.8rem; font-weight: 700;
  color: var(--ps-violet);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
main .continer h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  background: var(--ps-gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
main .continer h2, main .continer h6 {
  color: var(--ps-muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 500;
  max-width: 720px;
  line-height: 1.8;
}
.ps-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.ps-btn {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 50px; padding: 0 26px;
  border-radius: var(--ps-radius-pill);
  font-weight: 700; font-size: 0.92rem;
  transition: var(--ps-transition);
  border: 1px solid transparent;
}
.ps-btn-primary { background: var(--ps-gradient-brand); color: #fff; box-shadow: var(--ps-shadow-glow); }
.ps-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 80px rgba(124,58,237,0.35); }
.ps-btn-secondary {
  background: var(--ps-glass);
  border-color: var(--ps-glass-border);
  color: var(--ps-text);
}
.ps-btn-secondary:hover { border-color: rgba(124,58,237,0.4); background: rgba(124,58,237,0.08); }
.ps-stats-row {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px; width: 100%; max-width: 720px;
}
.ps-stat-card {
  padding: 22px 16px;
  background: var(--ps-gradient-surface);
  border: 1px solid var(--ps-glass-border);
  border-radius: var(--ps-radius-lg);
  transition: var(--ps-transition);
  position: relative; overflow: hidden;
}
.ps-stat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--ps-gradient-brand); opacity: 0.6;
}
.ps-stat-card strong { display: block; font-size: 1.5rem; font-weight: 800; }
.ps-stat-card span { font-size: 0.72rem; color: var(--ps-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.ps-trust-strip {
  padding: 56px clamp(20px, 5vw, 40px);
  background: transparent;
  border: none;
}
.ps-trust-grid {
  max-width: var(--ps-container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.ps-trust-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--ps-radius-lg);
  transition: var(--ps-transition);
  backdrop-filter: blur(8px);
}
.ps-trust-item:hover { border-color: rgba(124,58,237,0.35); transform: translateY(-3px); }
.ps-trust-item i {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--ps-radius-sm);
  background: rgba(124,58,237,0.14);
  color: var(--ps-violet);
}
.ps-trust-item strong { display: block; font-size: 0.98rem; margin-bottom: 4px; }
.ps-trust-item span { font-size: 0.84rem; color: var(--ps-muted); line-height: 1.65; }

/* Showcase band */
.ps-showcase {
  padding: 80px clamp(20px, 5vw, 40px);
  max-width: var(--ps-container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.ps-showcase-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 16px;
}
.ps-showcase-copy p { color: var(--ps-muted); margin-bottom: 24px; line-height: 1.8; }
.ps-showcase-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.ps-showcase-metric {
  padding: 20px;
  background: var(--ps-gradient-surface);
  border: 1px solid var(--ps-glass-border);
  border-radius: var(--ps-radius-md);
}
.ps-showcase-metric strong { display: block; font-size: 1.4rem; color: var(--ps-violet); }
.ps-showcase-metric span { font-size: 0.82rem; color: var(--ps-muted); }
.ps-showcase-visual {
  aspect-ratio: 4/3;
  border-radius: var(--ps-radius-xl);
  border: 1px solid var(--ps-glass-border);
  background:
    radial-gradient(circle at 30% 30%, rgba(124,58,237,0.25), transparent 50%),
    var(--ps-gradient-surface);
  display: grid; place-items: center;
  box-shadow: var(--ps-shadow);
}
.ps-showcase-visual i { font-size: 4rem; color: var(--ps-violet); opacity: 0.5; }

/* ─── Products ─── */
.Scripts_Section {
  padding: 88px clamp(20px, 5vw, 40px);
  max-width: 1400px; margin: 0 auto;
}
.Scripts_Section h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  background: var(--ps-gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Scripts_Section > div > p {
  text-align: center; color: var(--ps-muted);
  max-width: 640px; margin: 0 auto 36px;
}
.BottounsBuy {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.BottounsBuy button {
  padding: 10px 20px;
  background: var(--ps-glass);
  border: 1px solid var(--ps-glass-border);
  border-radius: var(--ps-radius-pill);
  color: var(--ps-muted);
  font-weight: 700; font-size: 0.86rem;
  cursor: pointer;
  transition: var(--ps-transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.BottounsBuy button:hover, .BottounsBuy button.active {
  background: var(--ps-gradient-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--ps-shadow-glow);
}
.Continer_Scripts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.Scripts {
  position: relative;
  background: var(--ps-gradient-surface);
  border: 1px solid var(--ps-glass-border);
  border-radius: var(--ps-radius-lg);
  overflow: hidden;
  transition: var(--ps-transition);
  display: block;
}
.Scripts:hover {
  transform: translateY(-8px);
  border-color: rgba(124,58,237,0.45);
  box-shadow: var(--ps-shadow-md), var(--ps-shadow-glow);
}
.price-tag {
  position: absolute; top: 12px; inset-inline-end: 12px;
  padding: 5px 12px;
  background: rgba(6,6,11,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: var(--ps-radius-pill);
  font-size: 0.8rem; font-weight: 800;
  color: var(--ps-violet);
  z-index: 2;
}
.ScriptPhoto { height: 180px; overflow: hidden; }
.ScriptPhoto img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.Scripts:hover .ScriptPhoto img { transform: scale(1.06); }
.Scripts .center {
  padding: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.Scripts .center h4 { font-size: 1rem; font-weight: 700; }
.Scripts .center .info {
  width: 42px; height: 42px;
  background: var(--ps-gradient-brand);
  border-radius: var(--ps-radius-sm);
  display: grid; place-items: center;
  color: #fff;
}

/* ─── Features ─── */
.Feutchers_Section {
  padding: 88px clamp(20px, 5vw, 40px);
  background: linear-gradient(180deg, transparent, rgba(124,58,237,0.05), transparent);
}
.Feutchers_Section h2 {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--ps-gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Feutchers_Section > div > p {
  text-align: center; color: var(--ps-muted);
  max-width: 640px; margin: 0 auto 44px;
}
.Continer_Feutchers {
  max-width: var(--ps-container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.Feutchers {
  padding: 36px 26px;
  background: var(--ps-gradient-surface);
  border: 1px solid var(--ps-glass-border);
  border-radius: var(--ps-radius-xl);
  text-align: center;
  transition: var(--ps-transition);
}
.Feutchers:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-5px); }
.Feutchers .title i { font-size: 2rem; color: var(--ps-violet); margin-bottom: 14px; display: block; }
.Feutchers .title h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 10px; }
.Feutchers h5 { color: var(--ps-muted); font-size: 0.9rem; line-height: 1.75; }

.log-discord {
  background: linear-gradient(135deg, #5865F2, #4752c4) !important;
  border-color: transparent !important;
  color: #fff !important; font-weight: 700;
}

/* ─── License / free / change ─── */
main .continer_license, main .continer_free, main .continer_change {
  max-width: var(--ps-container); margin: 0 auto;
  padding: calc(var(--ps-nav-h) + 48px) clamp(16px, 4vw, 32px) 64px;
}
main .continer_free .page-hero {
  text-align: center; margin-bottom: 36px;
}
main .continer_free .page-hero h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; margin-bottom: 10px;
  background: var(--ps-gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
main .continer_free .page-hero p { color: var(--ps-muted); max-width: 560px; margin: 0 auto; }

main .continer_license .license, main .continer_change .change, main .continer_free .free {
  background: var(--ps-gradient-surface);
  border: 1px solid var(--ps-glass-border);
  border-radius: var(--ps-radius-xl);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--ps-shadow-sm);
}
main .license h2, main .continer_change h2 {
  font-size: 1.6rem; font-weight: 800; margin-bottom: 8px;
}
main .license p, main .continer_change p { color: var(--ps-muted); margin-bottom: 20px; }
main .license table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--ps-radius-md); }
main .license th {
  background: rgba(124,58,237,0.1);
  padding: 12px; font-weight: 700; color: var(--ps-violet);
  font-size: 0.85rem; border-bottom: 1px solid var(--ps-glass-border);
}
main .license td {
  padding: 12px; text-align: center;
  border-bottom: 1px solid var(--ps-glass-border);
  color: var(--ps-muted); font-size: 0.88rem;
}
main .license tr:hover td { background: rgba(124,58,237,0.04); }
main .license td a {
  padding: 7px 14px;
  background: var(--ps-gradient-brand);
  border-radius: var(--ps-radius-sm);
  color: #fff; font-weight: 700; font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
main .license .license-key {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.8rem;
  color: #ddd6fe;
  word-break: break-all;
}
main .license .license-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
  main .continer_license {
    padding: calc(var(--ps-nav-h) + 20px) 14px 48px;
  }
  main .continer_license .license {
    padding: 20px 16px;
  }
  main .license h2 {
    font-size: 1.35rem;
  }
  main .license p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  main .license .license-table-wrap {
    overflow: visible;
  }
  main .license table.license-table {
    border: none;
    border-radius: 0;
  }
  main .license table.license-table thead {
    display: none;
  }
  main .license table.license-table tbody tr {
    display: block;
    margin-bottom: 14px;
    border: 1px solid rgba(124, 58, 237, 0.28);
    border-radius: var(--ps-radius-lg);
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.1), rgba(10, 10, 18, 0.55));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    overflow: hidden;
  }
  main .license table.license-table tbody tr:hover td {
    background: transparent;
  }
  main .license table.license-table td {
    display: grid;
    grid-template-columns: minmax(88px, 36%) 1fr;
    gap: 10px;
    align-items: start;
    text-align: start;
    padding: 11px 14px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.12);
  }
  main .license table.license-table td:last-child {
    border-bottom: none;
  }
  main .license table.license-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #a78bfa;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
  }
  main .license table.license-table td.license-cell-download {
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
    background: rgba(124, 58, 237, 0.06);
  }
  main .license table.license-table td.license-cell-download::before {
    display: block;
    margin-bottom: 10px;
  }
  main .license table.license-table td.license-cell-download a {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--ps-radius-md);
    box-shadow: var(--ps-glow);
  }
  main .license table.license-table td.license-cell-script {
    font-weight: 700;
    color: var(--ps-text);
  }
}
main .continer_change .input {
  width: 100%; padding: 13px 16px;
  background: var(--ps-glass);
  border: 1px solid var(--ps-glass-border);
  border-radius: var(--ps-radius-md);
  color: var(--ps-text); margin-bottom: 14px;
}
main .continer_change .input:focus {
  outline: none;
  border-color: rgba(124,58,237,0.45);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
main .continer_change .buttons button[name="ChangeLicense"] {
  padding: 12px 24px;
  background: var(--ps-gradient-brand);
  border: none; border-radius: var(--ps-radius-md);
  color: #fff; font-weight: 700; cursor: pointer;
}

main .continer_free .free .Proudacts_Free_Continer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
main .continer_free .free .freeProudact {
  background: var(--ps-gradient-surface);
  border: 1px solid var(--ps-glass-border);
  border-radius: var(--ps-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--ps-transition);
}
main .continer_free .free .freeProudact:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.4);
  box-shadow: var(--ps-shadow-glow);
}
main .continer_free .free .freeProudact img { width: 100%; height: 170px; object-fit: cover; }
main .continer_free .free .freeProudact .info {
  padding: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
main .continer_free .free .freeProudact .info h5 { font-weight: 700; font-size: 0.95rem; }
main .continer_free .free .freeProudact .Download::after {
  content: "\f019";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--ps-violet);
}

.badge.badge-success {
  padding: 5px 12px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: var(--ps-radius-pill);
  color: #fff; font-weight: 700; font-size: 0.78rem;
}
.badge.badge-inactive {
  padding: 5px 12px;
  background: rgba(148, 163, 184, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: var(--ps-radius-pill);
  color: #94a3b8; font-weight: 700; font-size: 0.78rem;
}

@media (max-width: 900px) {
  .ps-showcase { grid-template-columns: 1fr; }
  .ps-stats-row { grid-template-columns: 1fr; max-width: 300px; }
  .Continer_Scripts { grid-template-columns: 1fr; }
}

/* ─── Corporate Hero ─── */
.home-main { padding-top: 80px; background: transparent; }
.hero-corporate {
  min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 24px 64px;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
}
.hero-corporate-glow {
  display: none !important;
}
body.page-store-home .prime-glow-center {
  display: none !important;
}
body.page-store-home .prime-glow-purple {
  opacity: 0.25;
}
.hero-badge-v4 {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; margin-bottom: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 700;
  color: var(--ps-blue-electric);
  text-transform: uppercase; letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ps-blue-electric);
  box-shadow: 0 0 12px var(--ps-blue-electric);
  animation: pulse-glow 2s infinite;
}
.hero-title-v4 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.04em; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-title-v4 > span:first-child { color: #fff; }
.hero-title-line { display: block; }
.hero-word { display: inline; }
.hero-line-text { display: inline; }
.hero-sub-v4 {
  max-width: 640px; color: #c0c0d0;
  font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.75;
  margin-bottom: 32px;
}
.hero-cta-v4 { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 48px; }
.hero-stats-v4 {
  display: flex; flex-wrap: wrap; gap: 32px; justify-content: center;
}
.hero-stat-v4 strong {
  display: block; font-size: 1.75rem; font-weight: 800; color: #fff;
}
.hero-stat-v4 span { font-size: 0.82rem; color: var(--ps-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-scroll-hint {
  margin-top: 48px; color: var(--ps-muted);
  animation: bounce-y 2s infinite;
}
@keyframes bounce-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.section-head { text-align: center; margin-bottom: 40px; }
.section-kicker {
  display: block; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ps-blue-electric); margin-bottom: 10px;
}

.partners-section {
  padding: 88px 24px;
  max-width: var(--ps-container); margin: 0 auto;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}
.partner-card {
  padding: 28px 20px;
  background: var(--ps-gradient-surface);
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-lg);
  text-align: center;
  transition: var(--ps-transition);
}
.partner-card:hover { border-color: rgba(0,212,255,0.35); transform: translateY(-4px); }
.partner-card img { height: 56px; width: auto; max-width: 120px; object-fit: contain; margin: 0 auto 12px; }
.partner-fallback {
  width: 56px; height: 56px; margin: 0 auto 12px;
  border-radius: 14px;
  background: var(--ps-gradient);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.1rem;
}
.partner-card span { font-size: 0.88rem; color: var(--ps-muted); font-weight: 600; }

