
:root {
  --ps-bg: #061316;
  --ps-card: rgba(255,255,255,.075);
  --ps-border: rgba(255,255,255,.13);
  --ps-text: #f8fafc;
  --ps-muted: #b8c0d8;
  --ps-soft: #dbeafe;
  --ps-accent: #2dd4bf;
  --ps-accent-2: #6366f1;
  --ps-accent-3: #f472b6;
  --ps-radius: 30px;
  --ps-shadow: 0 34px 90px rgba(0,0,0,.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ps-text);
  background:
    radial-gradient(circle at 8% 8%, color-mix(in srgb, var(--ps-accent) 30%, transparent), transparent 30%),
    radial-gradient(circle at 90% 5%, color-mix(in srgb, var(--ps-accent-2) 28%, transparent), transparent 34%),
    radial-gradient(circle at 50% 90%, color-mix(in srgb, var(--ps-accent-3) 20%, transparent), transparent 30%),
    linear-gradient(180deg, var(--ps-bg), #080a12 48%, #050711);
  overflow-x: hidden;
  line-height: 1.75;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  opacity: .55;
}

.ps-bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .32;
  pointer-events: none;
  animation: psFloat 13s ease-in-out infinite;
}

.ps-bg-orb-1 {
  left: -150px;
  top: 120px;
  background: var(--ps-accent);
}

.ps-bg-orb-2 {
  right: -180px;
  top: 320px;
  background: var(--ps-accent-2);
  animation-delay: -5s;
}

@keyframes psFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(30px,-35px,0) scale(1.08); }
}

.ps-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ps-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(4,7,18,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.ps-nav {
  width: min(1180px, calc(100% - 40px));
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ps-logo img {
  height: 30px;
  width: auto;
  display: block;
}

.ps-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ps-menu a {
  color: #e8ecff;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
  padding: 10px 13px;
  border-radius: 999px;
  transition: .2s ease;
}

.ps-menu a:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.ps-nav-cta,
.ps-btn-primary {
  background: linear-gradient(135deg, var(--ps-accent), var(--ps-accent-2)) !important;
  color: #fff !important;
  box-shadow: 0 14px 36px color-mix(in srgb, var(--ps-accent) 38%, transparent);
}

.ps-menu-btn {
  display: none;
  border: 1px solid var(--ps-border);
  background: rgba(255,255,255,.08);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.ps-hero {
  padding: 92px 0 60px;
}

.ps-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ps-muted);
  font-size: .92rem;
  margin-bottom: 28px;
}

.ps-breadcrumb a {
  color: var(--ps-soft);
  text-decoration: none;
}

.ps-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) .82fr;
  gap: 42px;
  align-items: center;
}

.ps-kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  font-size: .92rem;
}

.ps-kicker i {
  color: var(--ps-accent);
}

.ps-hero h1 {
  margin: 22px 0;
  font-size: clamp(2.65rem, 6vw, 5.7rem);
  line-height: .96;
  letter-spacing: -.065em;
  text-wrap: balance;
  background: linear-gradient(135deg, #fff, #dbeafe 46%, var(--ps-accent));
  -webkit-background-clip: text;
  color: transparent;
}

.ps-hero p {
  max-width: 740px;
  margin: 0;
  color: #d9e2ff;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.ps-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ps-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ps-muted);
  font-size: .92rem;
}

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

.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: .2s ease;
}

.ps-btn:hover {
  transform: translateY(-2px);
}

.ps-btn-secondary {
  color: #fff;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.14);
}

.ps-hero-media {
  position: relative;
}

.ps-hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: linear-gradient(135deg, var(--ps-accent), var(--ps-accent-2), var(--ps-accent-3));
  border-radius: 38px;
  opacity: .55;
  filter: blur(18px);
  z-index: -1;
}

.ps-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--ps-shadow);
}

.ps-main-section {
  padding: 35px 0 96px;
}

.ps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: start;
}

.ps-article {
  min-width: 0;
}

.ps-lead-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: var(--ps-radius);
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  margin-bottom: 26px;
}

.ps-lead-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--ps-accent), var(--ps-accent-2));
  color: #fff;
}

.ps-lead-card p {
  margin: 0;
  color: #eef2ff;
  font-size: 1.12rem;
}

.ps-content {
  padding: 34px;
  border-radius: var(--ps-radius);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--ps-shadow);
}

.ps-content h2 {
  margin: 58px 0 18px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -.04em;
  color: #fff;
}

.ps-content h2:first-child {
  margin-top: 0;
}

.ps-content h3 {
  margin: 34px 0 12px;
  font-size: 1.33rem;
  color: #fff;
}

.ps-content p {
  color: #d8def0;
  margin: 0 0 21px;
  font-size: 1.03rem;
}

.ps-content a {
  color: var(--ps-accent);
  font-weight: 850;
  text-decoration: none;
}

.ps-content ul,
.ps-content ol {
  margin: 26px 0;
  padding: 24px 28px 24px 50px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.105);
}

.ps-content li {
  margin: 10px 0;
  color: #edf2ff;
}

.ps-content strong {
  color: #fff;
}

.ps-content blockquote {
  margin: 42px 0;
  padding: 30px 34px;
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: 1.15rem;
}

.ps-faq {
  margin-top: 28px;
  padding: 30px;
  border-radius: var(--ps-radius);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
}

.ps-faq h2 {
  margin: 0 0 18px;
  font-size: 2rem;
}

.ps-faq-item {
  border-top: 1px solid rgba(255,255,255,.11);
  padding: 16px 0;
}

.ps-faq-item summary {
  cursor: pointer;
  font-weight: 900;
  color: #fff;
}

.ps-faq-item p {
  color: var(--ps-muted);
}

.ps-final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 34px;
  border-radius: var(--ps-radius);
  background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--ps-shadow);
}

.ps-final-cta h2 {
  margin: 14px 0 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -.045em;
}

.ps-final-cta p {
  margin: 0;
  color: #dce4ff;
}

.ps-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ps-tag {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
}

.ps-sidebar {
  position: sticky;
  top: 96px;
}

.ps-widget {
  margin-bottom: 22px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.23);
}

.ps-widget-glow {
  background: rgba(255,255,255,.07);
}

.ps-widget h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 1.1rem;
}

.ps-widget h3 i {
  color: var(--ps-accent);
  margin-right: 8px;
}

.ps-widget p {
  color: var(--ps-muted);
  margin: 0 0 17px;
}

.ps-mini-cta {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--ps-accent), var(--ps-accent-2));
  text-decoration: none;
  font-weight: 900;
}

.ps-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ps-link-list li + li {
  margin-top: 12px;
}

.ps-link-list a {
  display: flex;
  gap: 10px;
  color: #e8eeff;
  text-decoration: none;
  font-weight: 750;
}

.ps-feature-list {
  display: grid;
  gap: 10px;
}

.ps-feature-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #eef2ff;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}

.ps-feature-list i {
  color: var(--ps-accent);
}

.ps-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(2,5,14,.75);
  padding: 52px 0;
}

.ps-footer-grid {
  display: grid;
  grid-template-columns: 1fr 220px 220px;
  gap: 34px;
}

.ps-footer-logo {
  height: 34px;
}

.ps-footer p {
  color: var(--ps-muted);
  max-width: 420px;
}

.ps-footer h4 {
  color: #fff;
  margin: 0 0 14px;
}

.ps-footer a {
  display: block;
  color: var(--ps-muted);
  text-decoration: none;
  margin: 8px 0;
}

@media (max-width: 980px) {
  .ps-menu-btn {
    display: grid;
    place-items: center;
  }

  .ps-menu {
    display: none;
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(6,10,24,.96);
    border: 1px solid rgba(255,255,255,.12);
  }

  .ps-menu-open .ps-menu {
    display: grid;
  }

  .ps-hero {
    padding-top: 58px;
  }

  .ps-hero-grid,
  .ps-layout,
  .ps-final-cta,
  .ps-footer-grid {
    grid-template-columns: 1fr;
  }

  .ps-sidebar {
    position: static;
  }

  .ps-content,
  .ps-faq,
  .ps-final-cta {
    padding: 24px;
  }

  .ps-hero-media img {
    aspect-ratio: 16/11;
  }
}

@media (max-width: 560px) {
  .ps-container,
  .ps-nav {
    width: min(100% - 26px, 1180px);
  }

  .ps-hero h1 {
    font-size: 2.55rem;
  }

  .ps-content {
    padding: 20px;
  }

  .ps-content ul,
  .ps-content ol {
    padding-left: 36px;
  }
}
