:root {
  --pgp-bg: #000000;
  --pgp-bg-soft: #050810;
  --pgp-panel: rgba(20, 20, 30, 0.4);
  --pgp-panel-strong: rgba(18, 24, 38, 0.72);
  --pgp-border: rgba(255, 255, 255, 0.08);
  --pgp-border-cyan: rgba(0, 243, 255, 0.28);
  --pgp-cyan: #00f3ff;
  --pgp-cyan-soft: rgba(0, 243, 255, 0.12);
  --pgp-violet: #7c5cff;
  --pgp-gold: #f0a500;
  --pgp-green: #00e499;
  --pgp-red: #ff5f57;
  --pgp-text: #e2e8f0;
  --pgp-muted: #94a3b8;
  --pgp-dim: #4a5568;
  --pgp-shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
  --pgp-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pgp-font-heading: "Orbitron", system-ui, sans-serif;
  --pgp-font-tech: "Rajdhani", system-ui, sans-serif;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--pgp-text);
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 243, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 78% 8%, rgba(124, 92, 255, 0.13), transparent 28rem),
    linear-gradient(180deg, #000000 0%, #050810 54%, #000000 100%);
  font-family: var(--pgp-font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 243, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.pgp-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--pgp-border);
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pgp-nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.pgp-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--pgp-font-heading);
  font-size: 14px;
  font-weight: 800;
}

.pgp-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pgp-border-cyan);
  border-radius: 8px;
  color: var(--pgp-cyan);
  background: rgba(0, 243, 255, 0.08);
  box-shadow: 0 0 28px rgba(0, 243, 255, 0.14);
  font-family: var(--pgp-font-tech);
  font-weight: 700;
}

.pgp-mark-img {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
  border-radius: 10px;
  filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.48));
}

.pgp-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.pgp-nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--pgp-muted);
  font-size: 14px;
  font-weight: 700;
}

.pgp-nav-links a:hover,
.pgp-nav-links a[aria-current="page"] {
  color: var(--pgp-text);
  border-color: var(--pgp-border);
  background: rgba(255, 255, 255, 0.055);
}

.pgp-nav-links .pgp-nav-cta {
  color: #001014;
  border-color: rgba(0, 243, 255, 0.78);
  background: var(--pgp-cyan);
}

.pgp-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  align-items: center;
  padding: 86px 0 70px;
}

.pgp-hero.compact {
  min-height: 520px;
}

.pgp-kicker,
.pgp-section-label,
.pgp-card-kicker,
.pgp-tech {
  font-family: var(--pgp-font-tech);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pgp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--pgp-cyan);
  font-size: 13px;
}

.pgp-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--pgp-cyan);
  box-shadow: 0 0 18px var(--pgp-cyan);
}

.pgp-title {
  max-width: 720px;
  margin: 0;
  font-family: var(--pgp-font-heading);
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

.pgp-title span {
  color: var(--pgp-cyan);
  text-shadow: 0 0 48px rgba(0, 243, 255, 0.34);
}

.pgp-lede {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--pgp-muted);
  font-size: 17px;
  line-height: 1.78;
}

.pgp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.pgp-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--pgp-border);
  border-radius: 8px;
  color: var(--pgp-text);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
  cursor: pointer;
}

.pgp-button:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.075);
}

.pgp-button.primary {
  color: #001014;
  border-color: rgba(0, 243, 255, 0.8);
  background: var(--pgp-cyan);
  box-shadow: 0 0 36px rgba(0, 243, 255, 0.18);
}

.pgp-button.primary:hover {
  background: #79faff;
}

.pgp-button.full {
  width: 100%;
}

.pgp-panel,
.pgp-card,
.pgp-plan,
.pgp-form {
  border: 1px solid var(--pgp-border);
  border-radius: 8px;
  background: var(--pgp-panel);
  box-shadow: var(--pgp-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pgp-cta-panel {
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
}

.pgp-cta-panel .pgp-kicker {
  margin-bottom: 18px;
}

.pgp-cta-panel .pgp-section-title {
  max-width: 900px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
}

.pgp-cta-panel .pgp-section-copy {
  max-width: 900px;
}

.pgp-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 28px;
}

.pgp-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 243, 255, 0.12), transparent 40%),
    radial-gradient(circle at 72% 22%, rgba(240, 165, 0, 0.12), transparent 16rem);
  pointer-events: none;
}

.pgp-terminal {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pgp-terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pgp-border);
}

.pgp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pgp-dot.cyan {
  background: var(--pgp-cyan);
}

.pgp-dot.gold {
  background: var(--pgp-gold);
}

.pgp-dot.violet {
  background: var(--pgp-violet);
}

.pgp-flow {
  display: grid;
  gap: 12px;
}

.pgp-flow-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.pgp-flow-row:last-child {
  border-bottom: 0;
}

.pgp-flow-index,
.pgp-flow-meta,
.pgp-tag,
.pgp-price-note {
  font-family: var(--pgp-font-tech);
  color: var(--pgp-dim);
}

.pgp-flow-index {
  color: var(--pgp-cyan);
  font-weight: 700;
}

.pgp-flow-title {
  font-weight: 800;
}

.pgp-flow-text {
  color: var(--pgp-muted);
  font-size: 14px;
}

.pgp-flow-meta {
  color: var(--pgp-green);
  font-weight: 700;
}

.pgp-section {
  padding: 88px 0;
}

.pgp-section.tight {
  padding: 58px 0;
}

.pgp-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.pgp-section-label {
  margin: 0 0 14px;
  color: var(--pgp-cyan);
  font-size: 13px;
}

.pgp-section-title {
  max-width: 820px;
  margin: 0;
  font-family: var(--pgp-font-heading);
  font-size: clamp(28px, 3.1vw, 36px);
  line-height: 1.18;
  letter-spacing: 0;
}

.pgp-section-copy {
  margin: 18px 0 0;
  color: var(--pgp-muted);
  font-size: 16px;
  line-height: 1.8;
}

.pgp-grid {
  display: grid;
  gap: 16px;
}

.pgp-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.pgp-card,
.pgp-plan {
  padding: 24px;
}

.pgp-card:hover,
.pgp-plan:hover {
  border-color: var(--pgp-border-cyan);
}

.pgp-card-kicker {
  margin: 0 0 10px;
  color: var(--pgp-cyan);
  font-size: 13px;
}

.pgp-card h3,
.pgp-plan h2 {
  margin: 0 0 12px;
  font-family: var(--pgp-font-heading);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.pgp-card p,
.pgp-plan p,
.pgp-card li,
.pgp-plan li {
  color: var(--pgp-muted);
}

.pgp-card p,
.pgp-plan p {
  margin: 0;
}

.pgp-card ul,
.pgp-plan ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pgp-card li,
.pgp-plan li {
  display: flex;
  gap: 10px;
}

.pgp-card li::before,
.pgp-plan li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--pgp-cyan);
  box-shadow: 0 0 14px rgba(0, 243, 255, 0.5);
}

.pgp-map-frame {
  display: block;
  overflow: hidden;
  padding: 18px;
}

.pgp-map-frame img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--pgp-border);
  background: rgba(255, 255, 255, 0.02);
}

.pgp-post-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(0, 243, 255, 0.1);
  border-radius: 16px;
  background: rgba(14, 18, 28, 0.72);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  border-color: rgba(0, 243, 255, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 243, 255, 0.08);
}

.card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(0, 243, 255, 0.06);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-category {
  position: absolute;
  left: 14px;
  top: 14px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(0, 243, 255, 0.34);
  border-radius: 999px;
  color: var(--pgp-cyan);
  background: rgba(0, 0, 0, 0.58);
  font-family: var(--pgp-font-tech);
  font-size: 13px;
  font-weight: 700;
}

.card-body {
  padding: 22px;
}

.card-title {
  margin: 0 0 12px;
  font-family: var(--pgp-font-heading);
  font-size: 20px;
  line-height: 1.25;
}

.card-title a:hover {
  color: var(--pgp-cyan);
}

.card-excerpt {
  min-height: 86px;
  margin: 0;
  color: var(--pgp-muted);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  color: var(--pgp-dim);
  font-family: var(--pgp-font-tech);
  font-weight: 700;
}

.card-read {
  color: var(--pgp-cyan);
}

.pgp-post-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 22px;
}

.pgp-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 999px;
  color: var(--pgp-cyan);
  background: rgba(0, 243, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
}

.pgp-form {
  padding: 28px;
}

.pgp-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.pgp-field label {
  color: var(--pgp-text);
  font-family: var(--pgp-font-tech);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pgp-field input,
.pgp-field textarea,
.pgp-field select {
  width: 100%;
  border: 1px solid var(--pgp-border);
  border-radius: 8px;
  color: var(--pgp-text);
  background: rgba(0, 0, 0, 0.34);
  outline: none;
}

.pgp-field input,
.pgp-field select {
  min-height: 50px;
  padding: 0 14px;
}

.pgp-field textarea {
  min-height: 150px;
  resize: vertical;
  padding: 14px;
}

.pgp-field input:focus,
.pgp-field textarea:focus,
.pgp-field select:focus {
  border-color: var(--pgp-cyan);
  box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.12);
}

.pgp-message {
  min-height: 46px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--pgp-border);
  border-radius: 8px;
  color: var(--pgp-muted);
  background: rgba(255, 255, 255, 0.045);
}

.pgp-message:empty {
  display: none;
}

.pgp-message[data-tone="success"] {
  color: var(--pgp-green);
  border-color: rgba(0, 228, 153, 0.24);
}

.pgp-message[data-tone="error"] {
  color: var(--pgp-red);
  border-color: rgba(255, 95, 87, 0.24);
}

.pgp-plan {
  min-height: 440px;
  display: flex;
  flex-direction: column;
}

.pgp-plan.featured {
  border-color: rgba(0, 243, 255, 0.42);
  box-shadow: 0 24px 90px rgba(0, 243, 255, 0.12);
}

.pgp-plan-badge {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 10px;
  border: 1px solid rgba(0, 243, 255, 0.35);
  border-radius: 999px;
  color: var(--pgp-cyan);
  background: rgba(0, 243, 255, 0.08);
  font-family: var(--pgp-font-tech);
  font-weight: 700;
}

.pgp-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 22px 0;
}

.pgp-price strong {
  font-family: var(--pgp-font-heading);
  font-size: 58px;
  line-height: 0.9;
  letter-spacing: 0;
}

.pgp-price span {
  color: var(--pgp-muted);
  font-weight: 800;
}

.pgp-plan .pgp-button {
  margin-top: auto;
}

.pgp-guarantee {
  margin: 22px 0 0;
  padding: 15px 16px;
  border: 1px solid rgba(0, 228, 153, 0.2);
  border-radius: 8px;
  color: var(--pgp-green);
  background: rgba(0, 228, 153, 0.06);
  text-align: center;
  font-weight: 800;
}

.pgp-legal {
  max-width: 920px;
}

.pgp-legal-stack {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.pgp-legal-card {
  padding: 24px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.pgp-legal-card h2 {
  margin: 0 0 12px;
  font-family: var(--pgp-font-heading);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.pgp-legal-card h3 {
  margin: 18px 0 8px;
  color: var(--pgp-text);
  font-size: 17px;
}

.pgp-legal-card p {
  margin: 0 0 12px;
  color: var(--pgp-muted);
  font-size: 16px;
  line-height: 1.8;
}

.pgp-legal-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding-left: 20px;
  color: var(--pgp-muted);
}

.pgp-legal-card li {
  line-height: 1.65;
}

.pgp-legal-card a {
  color: var(--pgp-cyan);
}

.pgp-footer {
  padding: 40px 0;
  border-top: 1px solid var(--pgp-border);
  color: var(--pgp-muted);
}

.pgp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.pgp-footer a {
  color: var(--pgp-text);
}

.pgp-home {
  overflow: hidden;
}

.pgp-home-hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 56px;
  padding: 76px 0 72px;
}

.pgp-home-hero::before {
  content: "";
  position: absolute;
  inset: 7% -10% auto 46%;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 243, 255, 0.18), transparent 68%);
  filter: blur(18px);
}

.pgp-home-copy,
.pgp-logo-command {
  position: relative;
  z-index: 1;
}

.pgp-home-title {
  max-width: 720px;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.12;
}

.pgp-home-title::selection,
.pgp-home-title span::selection {
  color: #001014;
  background: var(--pgp-cyan);
}

.pgp-home-lede {
  max-width: 720px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 17px;
}

.pgp-home-actions {
  margin-top: 30px;
}

.pgp-button.ghost {
  border-color: rgba(0, 243, 255, 0.2);
  color: var(--pgp-cyan);
  background: rgba(0, 243, 255, 0.06);
}

.pgp-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
}

.pgp-proof-row span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid rgba(0, 243, 255, 0.13);
  border-radius: 8px;
  color: rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 800;
}

.pgp-logo-command {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.pgp-orbit-scene {
  --pgp-orbit-wide: 150px;
  --pgp-orbit-mid: 126px;
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.pgp-orbit-scene::before {
  display: none;
}

.pgp-logo-cube {
  position: relative;
  z-index: 3;
  width: 270px;
  aspect-ratio: 1;
  border-radius: 0;
  transform: none;
  transform-style: flat;
  animation: none;
}

.pgp-logo-cube::before,
.pgp-logo-cube::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.pgp-logo-cube::before {
  display: none;
}

.pgp-logo-cube::after {
  display: none;
}

.pgp-logo-cube img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.pgp-orbit-ring {
  position: absolute;
  z-index: 4;
  width: 58%;
  height: 28%;
  border: 2px solid rgba(0, 243, 255, 0.56);
  border-radius: 999px;
  pointer-events: none;
  transform-origin: 50% 50%;
  will-change: transform;
  box-shadow:
    0 0 18px rgba(0, 243, 255, 0.42),
    inset 0 0 18px rgba(0, 243, 255, 0.12);
}

.pgp-orbit-ring.ring-one {
  animation: pgpOrbitOne 22s linear infinite;
}

.pgp-orbit-ring.ring-two {
  width: 56%;
  height: 27%;
  opacity: 0.72;
  border-color: rgba(123, 241, 255, 0.42);
  animation: pgpOrbitTwo 30s linear infinite;
}

.pgp-orbit-ring.ring-three {
  display: block;
  width: 42%;
  height: 24%;
  opacity: 0.42;
  border-width: 1px;
  border-color: rgba(0, 243, 255, 0.34);
  animation: pgpOrbitThree 38s linear infinite;
}

.pgp-orbit-dot {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  display: block;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 999px;
  background: var(--pgp-cyan);
  box-shadow: 0 0 18px rgba(0, 243, 255, 0.9);
  pointer-events: none;
  will-change: transform;
}

.pgp-orbit-dot.dot-one {
  animation: pgpDotOne 8s linear infinite;
}

.pgp-orbit-dot.dot-two {
  width: 7px;
  height: 7px;
  opacity: 0.76;
  margin: -3.5px 0 0 -3.5px;
  animation: pgpDotTwo 11s linear infinite;
}

.pgp-mini-pipeline {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(0, 243, 255, 0.14);
  border-radius: 12px;
  background: rgba(2, 10, 16, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.pgp-mini-pipeline div {
  min-height: 76px;
  display: grid;
  gap: 5px;
  align-content: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.pgp-mini-pipeline strong {
  color: var(--pgp-cyan);
  font-family: var(--pgp-font-tech);
  font-size: 13px;
}

.pgp-mini-pipeline span {
  color: rgba(226, 232, 240, 0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.pgp-home-section {
  padding-top: 36px;
}

@keyframes pgpCubeFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(8deg) rotateY(-10deg);
  }
  50% {
    transform: translateY(-14px) rotateX(5deg) rotateY(10deg);
  }
}

@keyframes pgpOrbitOne {
  from {
    transform: rotate(-18deg) rotateZ(0deg);
  }
  to {
    transform: rotate(-18deg) rotateZ(360deg);
  }
}

@keyframes pgpOrbitTwo {
  from {
    transform: rotate(64deg) rotateZ(0deg);
  }
  to {
    transform: rotate(64deg) rotateZ(-360deg);
  }
}

@keyframes pgpOrbitThree {
  from {
    transform: rotate(45deg) rotateZ(0deg);
  }
  to {
    transform: rotate(45deg) rotateZ(360deg);
  }
}

@keyframes pgpDotOne {
  from {
    transform: rotate(-18deg) translateX(var(--pgp-orbit-wide)) rotate(18deg);
  }
  to {
    transform: rotate(342deg) translateX(var(--pgp-orbit-wide)) rotate(-342deg);
  }
}

@keyframes pgpDotTwo {
  from {
    transform: rotate(64deg) translateX(var(--pgp-orbit-mid)) rotate(-64deg);
  }
  to {
    transform: rotate(-296deg) translateX(var(--pgp-orbit-mid)) rotate(296deg);
  }
}

.pgp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.pgp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .pgp-home-hero,
  .pgp-hero,
  .pgp-grid.two,
  .pgp-grid.three {
    grid-template-columns: 1fr;
  }

  .pgp-home-hero {
    min-height: 0;
    gap: 42px;
    padding: 58px 0 64px;
  }

  .pgp-home-title {
    font-size: 43px;
  }

  .pgp-logo-command {
    max-width: 560px;
    margin: 0 auto;
  }

  .pgp-orbit-scene {
    --pgp-orbit-wide: 124px;
    --pgp-orbit-mid: 104px;
    width: min(420px, 100%);
  }

  .pgp-logo-cube {
    width: 220px;
    border-radius: 36px;
  }

  .pgp-hero {
    min-height: 0;
    padding: 64px 0;
  }

  .pgp-title {
    font-size: 40px;
  }

  .pgp-section-title {
    font-size: 31px;
  }
}

@media (max-width: 680px) {
  .pgp-shell {
    width: min(100% - 40px, 1180px);
  }

  .pgp-nav-inner {
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .pgp-nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    gap: 5px;
    padding-bottom: 0;
  }

  .pgp-nav-links a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .pgp-nav-links .pgp-nav-cta {
    padding: 0 13px;
  }

  .pgp-title {
    font-size: 26px;
    line-height: 1.2;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pgp-home-title {
    font-size: 28px;
    line-height: 1.16;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pgp-home-hero {
    padding: 42px 0 52px;
  }

  .pgp-home-copy,
  .pgp-home-lede,
  .pgp-lede,
  .pgp-section-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .pgp-home-lede {
    font-size: 16px;
    line-height: 1.7;
  }

  .pgp-actions .pgp-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-right: 16px;
    padding-left: 16px;
    white-space: normal;
    text-align: center;
  }

  .pgp-proof-row {
    grid-template-columns: 1fr;
  }

  .pgp-orbit-scene {
    --pgp-orbit-wide: 98px;
    --pgp-orbit-mid: 82px;
    width: min(330px, 100%);
  }

  .pgp-logo-cube {
    width: 176px;
    border-radius: 30px;
  }

  .pgp-mini-pipeline {
    grid-template-columns: 1fr;
  }

  .pgp-lede,
  .pgp-section-copy {
    font-size: 16px;
  }

  .pgp-section {
    padding: 62px 0;
  }

  .pgp-hero-panel {
    min-height: 0;
    padding: 18px;
  }

  .pgp-flow-row {
    grid-template-columns: 24px 1fr;
  }

  .pgp-flow-meta {
    grid-column: 2;
  }

  .pgp-cta-panel {
    padding: 24px;
  }

  .pgp-cta-panel .pgp-section-title {
    font-size: 26px;
    line-height: 1.24;
  }

  .pgp-price strong {
    font-size: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pgp-logo-cube,
  .pgp-orbit-ring,
  .pgp-orbit-dot {
    animation: none;
  }
}
