/* Orqit — public marketing (landing, pricing, demo, contact, legal) */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* === VARIABLES === */
:root {
  /* Public chrome — keep mega-menu + mobile drawer alignment in sync (pub-mega-nav.css uses this). */
  --pub-nav-height: 104px;

  --orq-dark: #0a0f1e;
  --orq-navy: #0f1923;
  --orq-blue: #2563eb;
  --orq-indigo: #4f46e5;
  --orq-green: #22c55e;
  --orq-green-soft: #dcfce7;
  --orq-border: #e5e7eb;
  --orq-muted: #6b7280;
  --orq-surface: #f9fafb;
  --orq-white: #ffffff;

  --pub-max: 1200px;
  --pub-section-pad-y: 96px;
  --pub-section-pad-x: 24px;
  --pub-muted: var(--orq-muted);
  --pub-border: var(--orq-border);
  --pub-bg: var(--orq-surface);
  --pub-surface: var(--orq-white);
  --pub-text: #374151;
  --pub-blue: var(--orq-blue);
  --pub-indigo: var(--orq-indigo);
  --pub-section: var(--pub-section-pad-y);
  --pub-shadow: 0 4px 24px rgba(10, 15, 30, 0.06);
  --pub-shadow-lg: 0 24px 48px -12px rgba(10, 15, 30, 0.12);
  --pub-radius: 16px;
  --pub-radius-lg: 18px;

  /* Premium landing sections */
  --pub-prem-glass: rgba(255, 255, 255, 0.55);
  --pub-prem-glass-border: rgba(255, 255, 255, 0.65);
  --pub-prem-shadow-float: 0 32px 64px -24px rgba(15, 23, 42, 0.28);
  --pub-itsm-a: #2563eb;
  --pub-itsm-b: #7c3aed;
  --pub-itsm-c: #06b6d4;
  --pub-itam-a: #059669;
  --pub-itam-b: #14b8a6;
  --pub-itam-c: #84cc16;
  --pub-pm-a: #ea580c;
  --pub-pm-b: #8b5cf6;
  --pub-pm-c: #ec4899;
}

/* === RESET / BASE === */
.pub-page {
  margin: 0;
  min-height: 100dvh;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--pub-text);
  background: var(--orq-white);
  -webkit-font-smoothing: antialiased;
}

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

.pub-page a {
  color: inherit;
  text-decoration: none;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  from {
    background-position: -200% 0;
  }
  to {
    background-position: 200% 0;
  }
}

@keyframes pubPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.4;
  }
}

/* === NAV === */
.pub-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--pub-nav-height);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.pub-nav.is-scrolled {
  box-shadow: 0 1px 0 rgba(10, 15, 30, 0.04);
  background: rgba(255, 255, 255, 0.95);
}

.pub-nav__inner {
  max-width: var(--pub-max);
  margin: 0 auto;
  padding: 0 var(--pub-section-pad-x);
  height: var(--pub-nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pub-nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.pub-nav__logo img {
  display: block;
  height: clamp(52px, 3.2vw + 38px, 74px);
  width: auto;
  max-width: min(340px, 54vw);
  object-fit: contain;
  object-position: left center;
}

.pub-nav__logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orq-green);
  vertical-align: middle;
}

.pub-nav__logo-fallback .pub-nav__logo-dot {
  width: 7px;
  height: 7px;
}

.pub-nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.pub-nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 10px;
  border: 1px solid var(--orq-border);
  background: var(--orq-white);
  cursor: pointer;
}

.pub-nav-burger svg {
  width: 22px;
  height: 22px;
  color: var(--orq-dark);
}

.pub-nav__cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2rem;
}

.pub-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.pub-nav__link {
  font-size: 16px;
  font-weight: 700;
  color: #374151;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pub-nav__mega-trigger {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  color: #374151;
}

.pub-nav__link:hover {
  color: var(--orq-dark);
}

.pub-nav__link.is-active {
  color: #1e3a8a;
  border-bottom-color: #1e3a8a;
}

.pub-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pub-nav__demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  padding: 8px 14px;
  border: 1px solid var(--orq-border);
  border-radius: 8px;
  background: #fff;
}

.pub-nav__demo:hover {
  color: #1e3a8a;
  border-color: #93c5fd;
  background: #eff6ff;
}

.pub-nav__cta-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orq-dark);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pub-nav__cta-solid:visited,
.pub-nav__cta-solid:hover,
.pub-nav__cta-solid:active {
  color: #ffffff !important;
}

.pub-nav__cta-solid:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .pub-nav-burger {
    display: flex;
  }

  .pub-nav__cluster {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--pub-nav-height);
    flex-direction: column;
    align-items: stretch;
    padding: 16px var(--pub-section-pad-x) 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--orq-border);
    box-shadow: var(--pub-shadow-lg);
    gap: 0;
  }

  .pub-nav-toggle:checked ~ .pub-nav__cluster {
    display: flex;
  }

  .pub-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .pub-nav__link {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
  }

  .pub-nav__actions {
    flex-direction: column;
    align-items: stretch;
    padding-top: 16px;
    gap: 10px;
  }

  .pub-nav__demo,
  .pub-nav__cta-solid {
    justify-content: center;
  }
}

/* === BUTTONS === */
.pub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.pub-btn--primary {
  background: var(--orq-blue);
  color: var(--orq-white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.pub-btn--primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.pub-btn--ghost {
  color: var(--orq-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pub-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.pub-btn--outline {
  color: var(--orq-indigo);
  background: var(--orq-white);
  border: 1px solid var(--orq-border);
}

.pub-btn--outline:hover {
  border-color: var(--orq-blue);
  box-shadow: var(--pub-shadow);
}

.pub-btn--solid {
  background: linear-gradient(135deg, var(--orq-blue), var(--orq-indigo));
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.pub-btn--solid:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.pub-btn--block {
  width: 100%;
}

.pub-btn--cta-light {
  background: var(--orq-white);
  color: var(--orq-blue);
}

.pub-btn--cta-light:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.pub-btn--cta-ghost {
  background: transparent;
  color: var(--orq-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.pub-btn--cta-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* === HERO === */
.pub-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--orq-dark);
}

.pub-hero__layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pub-hero__radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
}

.pub-hero__gridlines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.pub-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.pub-hero__blob--1 {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.25);
  top: -100px;
  right: 10%;
}

.pub-hero__blob--2 {
  width: 300px;
  height: 300px;
  background: rgba(79, 70, 229, 0.2);
  bottom: 10%;
  left: 5%;
}

.pub-hero__grid {
  position: relative;
  z-index: 1;
  max-width: var(--pub-max);
  margin: 0 auto;
  padding: 120px var(--pub-section-pad-x) 80px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: center;
}

.pub-hero__copy {
  color: var(--orq-white);
}

.pub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #93c5fd;
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s ease both;
}

.pub-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orq-green);
  animation: pubPulse 2s ease-in-out infinite;
}

.pub-hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--orq-white);
  animation: fadeUp 0.75s ease 0.08s both;
}

.pub-hero__gradient {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pub-hero__lead {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  animation: fadeUp 0.75s ease 0.15s both;
}

.pub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  animation: fadeUp 0.75s ease 0.22s both;
}

.pub-hero__subcta {
  margin-top: 1rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  animation: fadeUp 0.75s ease 0.28s both;
}

.pub-hero__subcta a {
  color: #93c5fd;
  font-weight: 600;
  text-decoration: underline;
}

.pub-hero__proof {
  margin-top: 32px;
  animation: fadeUp 0.75s ease 0.32s both;
}

.pub-hero__proof-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.pub-avatar-stack {
  display: flex;
  align-items: center;
}

.pub-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--orq-dark);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--orq-white);
}

.pub-avatar:first-child {
  margin-left: 0;
}

.pub-avatar--a {
  background: #4f46e5;
}
.pub-avatar--b {
  background: #2563eb;
}
.pub-avatar--c {
  background: #0891b2;
}
.pub-avatar--d {
  background: #059669;
}
.pub-avatar--e {
  background: #7c3aed;
}

.pub-hero__visual {
  animation: fadeUp 0.85s ease 0.18s both;
}

.pub-mock-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3px;
  animation: float 5s ease-in-out infinite;
  animation-fill-mode: both;
}

.pub-mock {
  background: var(--orq-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--pub-shadow-lg);
}

.pub-mock__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--orq-border);
}

.pub-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pub-mock__dot:nth-of-type(1) {
  background: #ef4444;
}
.pub-mock__dot:nth-of-type(2) {
  background: #f59e0b;
}
.pub-mock__dot:nth-of-type(3) {
  background: var(--orq-green);
}

.pub-mock__title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #9ca3af;
}

.pub-mock__body {
  padding: 16px;
}

.pub-mock-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pub-mock-stat {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.pub-mock-stat--green {
  background: var(--orq-green-soft);
  color: #166534;
}

.pub-mock-stat--blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.pub-mock-stat--red {
  background: #fee2e2;
  color: #991b1b;
}

.pub-mock-ticket-rows {
  border-top: 1px solid #f3f4f6;
  padding-top: 12px;
}

.pub-mock-ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 11px;
  color: #374151;
}

.pub-mock-ticket-row:last-child {
  border-bottom: none;
}

.pub-badge-warn {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  background: #fef3c7;
  color: #92400e;
}

.pub-badge-ok {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  background: #dbeafe;
  color: #1d4ed8;
}

.pub-badge-new {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  background: #f3f4f6;
  color: #4b5563;
}

.pub-mock-kanban-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.pub-mock-kanban-mini .pub-mock-col {
  background: #f8fafc;
  border-radius: 8px;
  padding: 8px 6px;
  min-height: auto;
}

.pub-mock-kanban-mini .pub-mock-col span {
  font-size: 10px;
  font-weight: 700;
  color: var(--orq-muted);
  display: block;
  text-align: center;
  margin-bottom: 6px;
}

.pub-mock-kanban-mini .pub-mock-card {
  margin: 0 0 4px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 10px;
  background: var(--orq-white);
  border: 1px solid var(--orq-border);
}

/* Legacy mock pieces (product sections / collage) */
.pub-mock-tickets h4 {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orq-muted);
}

.pub-mock-tickets {
  border-radius: 12px;
  border: 1px solid var(--orq-border);
  background: #fff;
  padding: 10px;
}

.pub-mock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 11px;
  margin-bottom: 4px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.pub-mock-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
}

.pub-mock-pill--warn {
  background: #ffedd5;
  color: #c2410c;
}

.pub-mock-kanban {
  border-radius: 12px;
  border: 1px solid var(--orq-border);
  background: #fff;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.pub-mock-col {
  background: #f1f5f9;
  border-radius: 8px;
  padding: 6px 4px;
  min-height: 88px;
}

.pub-mock-col span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--orq-muted);
  text-align: center;
  margin-bottom: 6px;
}

.pub-mock-card {
  margin: 0 3px 4px;
  padding: 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-size: 10px;
}

.pub-mock-widgets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pub-mock-widget {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-size: 11px;
}

.pub-mock-widget strong {
  display: block;
  font-size: 1.1rem;
  color: #1e40af;
}

/* === TRUST BAR === */
.pub-trust {
  padding: 32px var(--pub-section-pad-x);
  border-top: 1px solid #f3f4f6;
  background: var(--orq-white);
  text-align: center;
}

.pub-trust p {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
}

.pub-trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.pub-trust__logo {
  font-size: 14px;
  font-weight: 700;
  color: #d1d5db;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pub-trust__logo:hover {
  color: #9ca3af;
}

/* === FEATURES === */
.pub-section {
  padding: var(--pub-section-pad-y) var(--pub-section-pad-x);
}

.pub-section__head {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.pub-section__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--orq-blue);
  margin-bottom: 10px;
  animation: fadeUp 0.6s ease both;
}

.pub-section__head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--orq-dark);
  letter-spacing: -0.02em;
  animation: fadeUp 0.65s ease 0.06s both;
}

.pub-section__head p {
  margin: 0;
  font-size: 1rem;
  color: var(--orq-muted);
  line-height: 1.7;
  animation: fadeUp 0.65s ease 0.12s both;
}

.pub-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: var(--pub-max);
  margin: 0 auto;
}

.pub-fcard {
  background: var(--orq-white);
  border: 1px solid var(--orq-border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pub-fcard:hover {
  border-color: var(--orq-blue);
  transform: translateY(-4px);
  box-shadow: var(--pub-shadow-lg);
}

.pub-fcard:nth-child(1) {
  animation: fadeUp 0.6s ease 0.05s both;
}
.pub-fcard:nth-child(2) {
  animation: fadeUp 0.6s ease 0.1s both;
}
.pub-fcard:nth-child(3) {
  animation: fadeUp 0.6s ease 0.15s both;
}
.pub-fcard:nth-child(4) {
  animation: fadeUp 0.6s ease 0.2s both;
}

.pub-fcard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff6ff, #eef2ff);
}

.pub-fcard__icon svg {
  width: 22px;
  height: 22px;
  color: var(--orq-blue);
}

.pub-fcard h3 {
  margin: 16px 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--orq-dark);
}

.pub-fcard p {
  margin: 0;
  font-size: 14px;
  color: var(--orq-muted);
  line-height: 1.65;
}

/* === PRODUCT SECTIONS === */
.pub-product {
  max-width: var(--pub-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: var(--pub-section-pad-y) var(--pub-section-pad-x);
}

.pub-product + .pub-product {
  border-top: 1px solid var(--orq-border);
}

.pub-product--reverse .pub-product__text {
  order: 2;
}

.pub-product--reverse .pub-product__visual {
  order: 1;
}

.pub-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
  background: #eff6ff;
  color: var(--orq-blue);
  margin-bottom: 12px;
}

.pub-pill--amethyst {
  background: #eef2ff;
  color: var(--orq-indigo);
}

.pub-pill--emerald {
  background: var(--orq-green-soft);
  color: #166534;
}

.pub-product__text h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--orq-dark);
}

.pub-product__text > p {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--orq-muted);
  line-height: 1.7;
}

.pub-product__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.pub-product__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.pub-product__list svg {
  width: 16px;
  height: 16px;
  color: var(--orq-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.pub-product__more {
  font-size: 14px;
  font-weight: 600;
  color: var(--orq-blue);
}

.pub-product__more:hover {
  text-decoration: underline;
}

.pub-ui-card {
  background: var(--orq-white);
  border-radius: 16px;
  border: 1px solid var(--orq-border);
  box-shadow: var(--pub-shadow-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pub-ui-card:hover {
  transform: translateY(-4px);
}

.pub-ui-card__head {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid var(--orq-border);
  background: linear-gradient(90deg, #f9fafb, #fff);
}

.pub-ui-card__body {
  padding: 14px 16px;
  font-size: 13px;
}

.pub-ui-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}

.pub-ui-row:last-child {
  border-bottom: none;
}

.pub-kanban-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

/* Collage / visual section */
.pub-visual {
  padding: var(--pub-section-pad-y) var(--pub-section-pad-x);
  background: linear-gradient(180deg, #f9fafb 0%, var(--orq-white) 60%);
}

.pub-visual__head {
  text-align: center;
  margin-bottom: 3rem;
}

.pub-visual__head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--orq-dark);
}

.pub-visual__head p {
  margin: 0;
  color: var(--orq-muted);
  font-size: 1rem;
}

.pub-collage {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  min-height: 380px;
}

.pub-collage__card {
  position: absolute;
  border-radius: var(--pub-radius-lg);
  background: var(--orq-white);
  border: 1px solid var(--orq-border);
  box-shadow: var(--pub-shadow-lg);
  overflow: hidden;
  transition: transform 0.35s ease;
}

.pub-collage__card:hover {
  transform: translateY(-4px) scale(1.02);
  z-index: 10;
}

.pub-collage__card--1 {
  width: 58%;
  left: 0;
  top: 0;
  z-index: 3;
  transform: rotate(-2deg);
}

.pub-collage__card--2 {
  width: 48%;
  right: 0;
  top: 48px;
  z-index: 2;
  transform: rotate(3deg);
}

.pub-collage__card--3 {
  width: 42%;
  left: 18%;
  bottom: 0;
  z-index: 4;
  transform: rotate(-1deg);
}

/* === QUOTE === */
.pub-quote {
  background: var(--orq-dark);
  padding: 80px var(--pub-section-pad-x);
  text-align: center;
}

.pub-quote__mark {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: rgba(37, 99, 235, 0.4);
}

.pub-quote blockquote {
  margin: 0 auto;
  max-width: 640px;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--orq-white);
  line-height: 1.55;
}

.pub-quote figcaption {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* === INTEGRATIONS ECOSYSTEM (premium) === */
  to {
    stroke-dashoffset: -80;
  }
}

@keyframes pub-hub-pulse-ring {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.45);
  }
}

.pub-mesh-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.pub-gradient-border {
  position: relative;
  border-radius: 18px;
  background-image:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.78)),
    linear-gradient(var(--pub-g-angle, 132deg), rgba(99, 102, 241, 0.55), rgba(6, 182, 212, 0.35), rgba(244, 114, 182, 0.25));
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
}

.pub-glow-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    var(--pub-prem-shadow-float),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.pub-floating-logo {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.pub-ambient-light {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
  opacity: 0.45;
}

.pub-ambient-light--vio {
  width: min(56vw, 580px);
  height: min(56vw, 580px);
  background: radial-gradient(circle, rgba(129, 140, 248, 0.45), transparent 68%);
  top: -20%;
  right: -14%;
}

.pub-ambient-light--cyan {
  width: min(48vw, 480px);
  height: min(48vw, 480px);
  background: radial-gradient(circle, rgba(6, 182, 212, 0.32), transparent 65%);
  bottom: -25%;
  left: -8%;
}

.pub-ambient-light--em {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  background: radial-gradient(circle, rgba(52, 211, 153, 0.28), transparent 66%);
  top: 40%;
  left: 25%;
}

.pub-ambient-light--or {
  width: min(38vw, 380px);
  height: min(38vw, 380px);
  background: radial-gradient(circle, rgba(251, 146, 60, 0.22), transparent 68%);
  bottom: 10%;
  right: 20%;
}

.pub-integrations {
  position: relative;
  padding: calc(var(--pub-section-pad-y) * 1.08) var(--pub-section-pad-x) calc(var(--pub-section-pad-y) * 1.15);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(99, 102, 241, 0.08), transparent 55%),
    linear-gradient(180deg, #fafbff 0%, #ffffff 52%, #f6fffc 100%);
  overflow-x: clip;
}

.pub-integrations::before {
  content: "";
  display: block;
  height: 1px;
  max-width: var(--pub-max);
  margin: 0 auto 3rem;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.pub-integrations__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pub-mesh-bg--integrations {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    radial-gradient(rgba(99, 102, 241, 0.12) 1px, transparent 1px),
    radial-gradient(at 85% 20%, rgba(14, 165, 233, 0.08), transparent 40%),
    radial-gradient(at 10% 80%, rgba(52, 211, 153, 0.06), transparent 42%);
  background-size: 20px 20px, 100% 100%, 100% 100%;
}

.pub-integrations__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.95rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--orq-dark);
}

.pub-integrations__eyebrow {
  color: #6366f1;
}

.pub-integrations__stage {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  min-height: clamp(420px, 58vw, 520px);
}

.pub-integrations__circuit {
  position: absolute;
  inset: 8% 2% 4%;
  width: auto;
  height: auto;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

.pub-integrations__circuit path {
  animation: pub-circuit-drift 24s linear infinite;
}

.pub-integrations__hub-area {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.pub-integrations-hub {
  position: relative;
  display: grid;
  place-items: center;
  gap: 2px;
  width: clamp(148px, 22vw, 188px);
  height: clamp(148px, 22vw, 188px);
  border-radius: 50%;
  text-align: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), transparent 52%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.35), rgba(224, 231, 255, 0.2));
}

.pub-integrations-hub__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(99, 102, 241, 0.35);
  animation: pub-hub-pulse-ring 3.2s ease-out infinite;
}

.pub-integrations-hub__signal {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(6, 182, 212, 0.25);
  animation: pub-hub-pulse-ring 4.4s ease-out infinite;
  animation-delay: 1.1s;
}

.pub-integrations-hub__label {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.125rem;
  color: var(--orq-dark);
}

.pub-integrations-hub__sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pub-indigo);
}

.pub-integrations-orbit {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pub-integration-node {
  position: absolute;
  width: auto;
  max-width: min(100%, 200px);
  z-index: 2;
}

.pub-integration-node__card {
  --pub-g-angle: 132deg;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: default;
  min-width: clamp(154px, 28vw, 188px);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease,
    filter 0.42s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pub-integration-node__card:hover {
  --pub-g-angle: 268deg;
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 24px 50px -22px rgba(79, 70, 229, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.2));
}

.pub-integration-node__name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pub-integration-node--1 {
  left: 50%;
  top: 2%;
  transform: translate(-50%, 0);
}

.pub-integration-node--2 {
  right: clamp(10px, 3vw, 28px);
  top: clamp(72px, 15%, 118px);
  left: auto;
}

.pub-integration-node--3 {
  right: clamp(-4px, 0vw, 12px);
  top: 50%;
  transform: translateY(-50%);
  left: auto;
}

.pub-integration-node--4 {
  right: clamp(18px, 5vw, 44px);
  bottom: clamp(36px, 10%, 60px);
  top: auto;
  left: auto;
}

.pub-integration-node--5 {
  left: 50%;
  bottom: 6%;
  transform: translate(-50%, 0);
  top: auto;
}

.pub-integration-node--6 {
  left: clamp(18px, 5vw, 44px);
  bottom: clamp(36px, 10%, 60px);
  top: auto;
  right: auto;
}

.pub-integration-node--7 {
  left: clamp(-4px, 0vw, 12px);
  top: 50%;
  transform: translateY(-50%);
  right: auto;
}

.pub-integration-node--8 {
  left: clamp(10px, 3vw, 28px);
  top: clamp(72px, 15%, 118px);
  right: auto;
}

.pub-integrations__foot {
  max-width: 920px;
  margin-inline: auto;
  margin-top: clamp(2.25rem, 5vw, 3.75rem);
  padding-top: clamp(12px, 2vw, 20px);
  text-align: center;
  position: relative;
  z-index: 4;
}

/* === PREMIUM PRICING · CTA (landing) === */
.pub-pricing--premium {
  position: relative;
  border-top: none;
  background: transparent;
}

.pub-pricing-premium-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pub-pricing-premium-bg__dots {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(rgba(148, 163, 184, 0.2) 1px, transparent 1px);
  background-size: 22px 22px;
}

.pub-pricing__head-premium h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.pub-pricing__eyebrow {
  color: #6366f1;
}

.pub-pricing-root--premium {
  position: relative;
  z-index: 1;
  max-width: var(--pub-max);
  margin: 0 auto;
  padding: 0 var(--pub-section-pad-x) calc(var(--pub-section-pad-y) * 0.85);
}

.pub-pricing-toggle-wrap {
  text-align: center;
  margin-bottom: 2.25rem;
}

.pub-pricing-toggle.pub-billing {
  position: relative;
  display: inline-flex;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(129, 140, 248, 0.22);
  box-shadow:
    0 12px 40px -28px rgba(79, 70, 229, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  gap: 4px;
}

.pub-pricing-toggle__glow {
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 210deg, rgba(99, 102, 241, 0.25), transparent, rgba(6, 182, 212, 0.2), transparent);
  filter: blur(24px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.pub-pricing-toggle__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  border-radius: 999px;
  background: transparent;
  transition:
    transform 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.pub-pricing-toggle__btn:hover {
  color: var(--orq-dark);
}

.pub-pricing-toggle__btn.is-active {
  color: var(--orq-white);
  background: linear-gradient(102deg, #4f46e5, #7c3aed 48%, #06b6d4);
  box-shadow:
    0 14px 32px -12px rgba(79, 70, 229, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.pub-pricing-toggle__badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.pub-pricing-toggle__hint {
  margin: 12px auto 0;
  max-width: 32rem;
  font-size: 0.8125rem;
  color: var(--orq-muted);
}

.pub-pricing--premium .pub-pricing__grid {
  align-items: stretch;
}

.pub-pcard {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pub-pcard__tier {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orq-muted);
  margin-bottom: 8px;
}

.pub-pricing-card.pub-pcard h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--orq-dark);
  letter-spacing: -0.03em;
}

.pub-pcard__desc {
  font-size: 14px;
  color: var(--orq-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.pub-pcard__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orq-dark);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1;
}

.pub-pcard__price-note {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.pub-pcard__annual {
  display: none;
}

.pub-pricing-root.is-annual .pub-pcard__monthly {
  display: none;
}


.pub-pricing-root.is-annual .pub-pcard__annual {
  display: block;
}

.pub-pricing-card.pub-pcard {
  border-radius: 20px;
  padding: 1.65rem 1.35rem 1.5rem;
  border: none;
  background-image:
    linear-gradient(168deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.88)),
    linear-gradient(138deg, rgba(99, 102, 241, 0.18), rgba(6, 182, 212, 0.1));
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border-color: transparent;
  box-shadow:
    var(--pub-prem-shadow-float),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    filter 0.35s ease;
}

.pub-pricing-card.pub-pcard:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 64px -32px rgba(79, 70, 229, 0.22),
    0 96px 120px -64px rgba(6, 182, 212, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.pub-pcard--enterprise.pub-pricing-card.pub-pcard {
  color: rgba(248, 250, 252, 0.98);
  background-image:
    linear-gradient(168deg, rgba(15, 23, 42, 1), rgba(30, 41, 59, 0.95), rgba(49, 46, 129, 0.75)),
    linear-gradient(148deg, rgba(52, 211, 153, 0.25), transparent 52%);
}

.pub-pcard--enterprise.pub-pricing-card.pub-pcard .pub-pcard__tier {
  color: rgba(148, 163, 184, 0.95);
}

.pub-pcard--enterprise.pub-pricing-card.pub-pcard h3 {
  color: rgba(248, 250, 252, 0.98);
}

.pub-pcard--enterprise.pub-pricing-card.pub-pcard .pub-pcard__desc,
.pub-pcard--enterprise.pub-pricing-card.pub-pcard .pub-pcard__price-note {
  color: rgba(226, 232, 240, 0.9);
}

.pub-pcard--enterprise.pub-pricing-card.pub-pcard .pub-pcard__price {
  color: #fff;
  font-size: 2rem;
}

.pub-pcard--enterprise.pub-pricing-card.pub-pcard:hover {
  box-shadow:
    0 32px 70px rgba(15, 23, 42, 0.6),
    0 0 0 1px rgba(148, 163, 184, 0.12) inset;
}

.pub-pricing-card__shine {
  pointer-events: none;
  position: absolute;
  inset: -60% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.6), transparent 65%);
  opacity: 0.35;
}

.pub-pricing-card__shine--hot {
  background: radial-gradient(ellipse at 50% 100%, rgba(129, 140, 248, 0.35), transparent 62%);
  opacity: 0.65;
}

.pub-pricing-card__shine--em {
  background: radial-gradient(ellipse at 50% 100%, rgba(52, 211, 153, 0.2), transparent 65%);
}

.pub-pcard--featured.pub-pricing-card.pub-pcard {
  z-index: 2;
  padding-top: 2.45rem !important;
  transform: translateY(-6px);
  background-image:
    linear-gradient(174deg, rgba(255, 255, 255, 1), rgba(239, 246, 255, 0.78)),
    linear-gradient(132deg, #6366f1, #7c3aed 42%, #06b6d4 78%, #c026d3);
  box-shadow:
    0 32px 80px -40px rgba(79, 70, 229, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.95) inset,
    0 0 72px rgba(99, 102, 241, 0.16);
}

.pub-pcard--featured.pub-pricing-card.pub-pcard:hover {
  transform: translateY(-12px);
}

.pub-pcard__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orq-white);
  border-radius: 999px;
  background: linear-gradient(92deg, #4f46e5, #a855f7, #06b6d4);
  box-shadow:
    0 8px 24px rgba(79, 70, 229, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.pub-pricing-card__cta.pub-btn-gradient {
  width: 100%;
  margin-top: auto;
  justify-content: center;
  text-align: center;
}

.pub-pricing-card__cta--enterprise {
  background: linear-gradient(102deg, #ecfdf5, #fefce8 45%, #e0f2fe);
  color: #0f172a !important;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.45) inset;
}

.pub-pricing-card__cta--enterprise:hover {
  filter: brightness(1.06);
}

.pub-pcard--starter .pub-pcard__tier,
.pub-pcard--pro .pub-pcard__tier,
.pub-pcard--featured .pub-pcard__tier {
  color: #64748b;
}

.pub-pcard--featured .pub-pcard__tier {
  color: #5b21b6;
}

.pub-pcard--featured.pub-pricing-card.pub-pcard h3 {
  background: linear-gradient(100deg, #312e81, #0369a1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .pub-integrations__circuit path {
    animation: none !important;
  }
}

.pub-cta-band.pub-cta-band--premium {
  position: relative;
  overflow: clip;
  padding: clamp(88px, 14vw, 140px) var(--pub-section-pad-x);
  text-align: center;
  color: var(--orq-white);
  background:
    radial-gradient(ellipse 90% 80% at 20% -20%, rgba(129, 140, 248, 0.45), transparent 55%),
    radial-gradient(ellipse 65% 60% at 100% 0%, rgba(6, 182, 212, 0.32), transparent 50%),
    linear-gradient(128deg, #1d1d4f 0%, #312e81 28%, #0f766e 100%);
}

.pub-cta-band__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.pub-cta-band__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.42;
}

.pub-cta-band__blob--1 {
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  background: rgba(99, 102, 241, 0.45);
  top: -40%;
  right: -14%;
}

.pub-cta-band__blob--2 {
  width: min(50vw, 500px);
  height: min(50vw, 500px);
  background: rgba(236, 72, 153, 0.2);
  bottom: -30%;
  left: -14%;
}

.pub-cta-band__blob--3 {
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  background: rgba(34, 211, 238, 0.22);
  top: 20%;
  left: 44%;
}

.pub-cta-band__grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 0.85px, transparent 0.85px);
  background-size: 14px 14px;
  mix-blend-mode: overlay;
}

.pub-cta-band__waves {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: clamp(96px, 18vw, 160px);
  pointer-events: none;
  opacity: 0.6;
}

.pub-cta-band__mesh {
  background:
    radial-gradient(rgba(255, 255, 255, 0.06) 0.85px, transparent 0.85px),
    linear-gradient(rgba(255, 255, 255, 0.06), transparent);
  background-size: 26px 26px, 100% 100%;
  opacity: 0.4;
}

.pub-cta-band__content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  margin: 0 auto;
}

.pub-cta-band__pill {
  display: inline-flex;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.pub-cta-band--premium .pub-cta-band__spark {
  background: linear-gradient(95deg, #f0abfc, #67e8f9, #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pub-cta-band--premium h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.pub-cta-band--premium p {
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.82);
}

.pub-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.pub-cta-band__prime {
  padding: 14px 28px !important;
  font-weight: 800 !important;
  border-radius: 14px !important;
  background: linear-gradient(102deg, #eab308, #fb7185 45%, #a855f7) !important;
  color: #0f172a !important;
  border: none !important;
  box-shadow:
    0 22px 50px rgba(251, 113, 133, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.pub-cta-band__prime:hover {
  transform: translateY(-3px) scale(1.02);
}

.pub-cta-band__glass {
  padding: 13px 24px !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  color: var(--orq-white) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.pub-cta-band__glass:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18) !important;
}

.pub-cta-band__particles {
  pointer-events: none;
  position: absolute;
  inset: 18% -8% auto;
  height: clamp(140px, 22vw, 220px);
  z-index: 1;
}

.pub-cta-band__particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), transparent 70%);
  opacity: 0.35;
  animation: pub-float-soft-chip 11s ease-in-out infinite;
}

.pub-cta-band__particles span:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}

.pub-cta-band__particles span:nth-child(2) {
  left: 24%;
  top: 60%;
  animation-delay: -1.5s;
}

.pub-cta-band__particles span:nth-child(3) {
  left: 48%;
  top: 12%;
  animation-delay: -2.4s;
}

.pub-cta-band__particles span:nth-child(4) {
  left: 66%;
  top: 48%;
  animation-delay: -3.2s;
}

.pub-cta-band__particles span:nth-child(5) {
  left: 82%;
  top: 28%;
  animation-delay: -4.1s;
}

.pub-cta-band__particles span:nth-child(6) {
  left: 55%;
  top: 78%;
  animation-delay: -5s;
}

@keyframes pub-float-soft-chip {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translateY(-16px) scale(1.4);
    opacity: 0.55;
  }
}

/* === SPLIT PAGES === */
.pub-split-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px var(--pub-section-pad-x) 64px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  border-radius: 20px;
  border: 1px solid var(--orq-border);
  overflow: hidden;
  background: var(--orq-white);
  box-shadow: var(--pub-shadow);
}

.pub-split-aside {
  padding: 48px 40px;
  background: var(--orq-dark);
  color: var(--orq-white);
}

.pub-split-aside h1 {
  margin: 32px 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: var(--orq-white);
}

.pub-split-aside > p:first-of-type,
.pub-split-lead {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.pub-split-logo {
  display: inline-flex;
  align-items: center;
}

.pub-split-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.pub-split-logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orq-green);
}

.pub-split-logo-fallback {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.pub-split-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orq-green);
}

.pub-split-aside ul {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.pub-split-aside li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.pub-split-aside li svg {
  width: 18px;
  height: 18px;
  color: var(--orq-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.pub-split-aside a {
  color: #93c5fd;
}

.pub-split-preview {
  margin-top: 40px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pub-split-preview-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pub-split-preview-row:last-child {
  border-bottom: none;
}

.pub-split-main {
  padding: 48px 40px;
  background: var(--orq-white);
}

.pub-split-main h2 {
  margin: 0 0 8px;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--orq-dark);
}

.pub-gradient-text {
  background: linear-gradient(135deg, var(--orq-blue), #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pub-info-banner {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #1d4ed8;
  margin-bottom: 20px;
}

.pub-info-banner svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pub-contact-rows {
  margin-top: 32px;
}

.pub-contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.pub-contact-row svg {
  width: 16px;
  height: 16px;
  color: var(--orq-white);
  flex-shrink: 0;
  margin-top: 3px;
}

.pub-contact-row a {
  color: var(--orq-white);
  text-decoration: underline;
}

.pub-gradient-card {
  margin-top: 32px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.pub-gradient-card strong {
  display: block;
  color: var(--orq-white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.pub-gradient-card a {
  font-size: 13px;
  color: #60a5fa;
}

.pub-trial-checklist {
  margin-top: 32px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.pub-trial-checklist h3 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
}

.pub-trial-checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pub-trial-checklist li {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.pub-trial-checklist li svg {
  width: 16px;
  height: 16px;
  color: var(--orq-green);
  flex-shrink: 0;
}

/* === FORMS === */
.pub-form {
  max-width: 100%;
}

.pub-form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pub-field {
  margin-bottom: 1.1rem;
}

.pub-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}

.pub-field input,
.pub-field select,
.pub-field textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--orq-dark);
  border: 1px solid var(--orq-border);
  border-radius: 10px;
  background: var(--orq-white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pub-field input:focus,
.pub-field select:focus,
.pub-field textarea:focus {
  border-color: var(--orq-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.pub-field textarea {
  min-height: 120px;
  resize: vertical;
}

.pub-field-error {
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
}

.pub-alert {
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  margin-bottom: 16px;
}

.pub-alert--ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.pub-alert--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}




/* === FOOTER (premium glass) === */
.pub-footer.pub-footer--premium {
  position: relative;
  padding: clamp(72px, 10vw, 104px) var(--pub-section-pad-x) 28px;
  background:
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(99, 102, 241, 0.2), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 20%, rgba(6, 182, 212, 0.1), transparent 50%),
    linear-gradient(180deg, #060a18 0%, #0f172a 38%, #0a0f1e 100%);
  color: rgba(226, 232, 240, 0.6);
  font-size: 13px;
}

.pub-footer__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pub-footer__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.38;
}

.pub-footer__glow--tl {
  width: min(60vw, 520px);
  height: min(60vw, 520px);
  background: rgba(129, 140, 248, 0.35);
  top: -30%;
  left: -22%;
}

.pub-footer__glow--br {
  width: min(50vw, 440px);
  height: min(50vw, 440px);
  background: rgba(34, 211, 238, 0.15);
  bottom: -20%;
  right: -14%;
}

.pub-footer-glass {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 40px);
  margin: 0 auto;
  max-width: var(--pub-max);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow:
    0 32px 80px -46px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 2rem 2.75rem;
}

.pub-footer-glass-divider.pub-footer__bottom {
  position: relative;
  z-index: 1;
  max-width: var(--pub-max);
  margin: 32px auto 0;
  padding: 22px clamp(28px, 4vw, 40px);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: rgba(148, 163, 184, 0.7);
}

.pub-footer-glass-row.pub-footer__brand {
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pub-footer__brand-img {
  height: clamp(52px, 5vw + 28px, 80px);
  width: auto;
  max-width: min(400px, 85vw);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(99, 102, 241, 0.25));
}

.pub-footer__brand-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(165, 180, 252, 0.95);
  border: 1px solid rgba(129, 140, 248, 0.4);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(99, 102, 241, 0.12);
}

.pub-footer__tagline {
  margin: 12px 0 0;
  line-height: 1.62;
  font-size: 13px;
  color: rgba(148, 163, 184, 0.75);
  max-width: 260px;
}

.pub-footer-social-glow.pub-footer__social {
  margin-top: 20px;
  gap: 10px;
}

.pub-footer-social-glow.pub-footer__social a {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(203, 213, 245, 0.55);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.pub-footer-social-glow.pub-footer__social a:hover {
  color: rgba(248, 250, 252, 0.92);
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(129, 140, 248, 0.45);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
  transform: translateY(-2px);
}

.pub-footer-social-glow.pub-footer__social svg {
  width: 18px;
  height: 18px;
}

.pub-footer__heading {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.08px;
  color: rgba(148, 163, 184, 0.5);
}

.pub-footer-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  margin-bottom: 12px !important;
  font-weight: 500;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.7) !important;
  transition:
    transform 0.32s ease,
    color 0.32s ease;
}

.pub-footer-link span {
  position: relative;
  display: inline-block;
}

.pub-footer-link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #a855f7, #22d3ee);
  transition: width 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.pub-footer-link:hover {
  transform: translateX(4px);
  color: rgba(248, 250, 252, 0.94) !important;
}

.pub-footer-link:hover span::after {
  width: 100%;
}

.pub-footer-link svg {
  width: 16px;
  height: 16px;
  color: rgba(129, 140, 248, 0.7);
  flex-shrink: 0;
}

.pub-footer-link:hover svg {
  color: rgba(34, 211, 238, 0.9);
}

.pub-footer__trust {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  color: rgba(203, 213, 245, 0.45);
}

/* === HERO PREMIUM DASH + USER 360 (landing) === */
.pub-hero__visual--premium {
  padding: 12px;
}

.pub-hero-dash {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.pub-hero-dash__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.55;
  pointer-events: none;
}

.pub-hero-dash__orb--1 {
  width: min(340px, 70vw);
  height: min(340px, 70vw);
  background: rgba(167, 139, 250, 0.45);
  top: -6%;
  right: -12%;
}

.pub-hero-dash__orb--2 {
  width: min(260px, 55vw);
  height: min(260px, 55vw);
  background: rgba(34, 211, 238, 0.32);
  bottom: -4%;
  left: -8%;
}

.pub-hero-dash__deco {
  position: absolute;
  width: clamp(96px, 18vw, 140px);
  height: auto;
  top: 4%;
  right: 10%;
  z-index: 2;
  opacity: 0.95;
  filter: drop-shadow(0 10px 24px rgba(99, 102, 241, 0.2));
}

.pub-hero-dash__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(620px, 100%);
  padding: 4px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.08),
    0 2px 0 rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: float 6s ease-in-out infinite alternate;
}

.pub-hero-dash__main {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.pub-hero-dash__float {
  position: absolute;
  z-index: 4;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: float 7s ease-in-out infinite alternate;
}

.pub-hero-dash__float--sla {
  top: 18%;
  left: 8%;
  color: #065f46;
  background: rgba(236, 253, 245, 0.92);
}

.pub-hero-dash__float--ai {
  bottom: 28%;
  right: 14%;
  color: #5b21b6;
  background: rgba(245, 243, 255, 0.95);
}

.pub-hero-dash__thumb {
  position: absolute;
  bottom: -4%;
  right: 2%;
  z-index: 3;
  max-width: min(42%, 240px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(99, 102, 241, 0.12);
}

.pub-hero-dash__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.pub-hero-dash__thumb-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 10px;
  color: #475569;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .pub-hero-dash__frame,
  .pub-hero-dash__float {
    animation: none;
  }
}

.pub-user360 {
  padding: var(--pub-section-pad-y) var(--pub-section-pad-x);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(196, 181, 253, 0.2), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 100%, rgba(52, 211, 153, 0.12), transparent 50%),
    linear-gradient(180deg, #fcfcfd 0%, #f6faff 55%, #f5fbfa 100%);
}

.pub-user360__inner {
  max-width: var(--pub-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.pub-user360:not(.pub-user360--orbit) .pub-user360__copy h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.65rem 0 1rem;
  color: var(--orq-dark);
  background: linear-gradient(110deg, #0f172a 0%, #7c3aed 45%, #0d9488 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .pub-user360:not(.pub-user360--orbit) .pub-user360__copy h2 {
    color: var(--orq-dark);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }
}

.pub-user360__eyebrow {
  color: #5b21b6;
}

.pub-user360__copy p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--orq-muted);
}

.pub-user360__bullets {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pub-user360__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  font-weight: 600;
  color: #374151;
}

.pub-user360__bullets svg {
  width: 22px;
  height: 22px;
  color: #6366f1;
  flex-shrink: 0;
}

.pub-user360__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.pub-btn-outline-user360 {
  border-color: rgba(99, 102, 241, 0.45);
}

.pub-user360__visual {
  position: relative;
}

.pub-user360__glow {
  position: absolute;
  inset: 10% -8% -12% -8%;
  background: radial-gradient(ellipse at 50% 40%, rgba(139, 92, 246, 0.25), transparent 65%);
  filter: blur(32px);
  pointer-events: none;
}

.pub-user360__figure {
  margin: 0;
  position: relative;
  border-radius: 20px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.1),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.pub-user360__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.pub-user360__caption {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

@media (max-width: 980px) {
  .pub-user360__inner {
    grid-template-columns: 1fr;
  }

  .pub-user360__visual {
    max-width: 520px;
    margin: 0 auto;
    order: -1;
  }

  .pub-hero-dash {
    min-height: 340px;
  }

  .pub-hero-dash__thumb {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -32px auto 0;
    max-width: 280px;
  }

  .pub-hero-dash__float {
    display: none;
  }
}


/* === PREMIUM FEATURES · SHOWCASE · USER360 ORBIT === */
@keyframes pubFloatSoft {
  0%,
  100% {
    transform: translateY(0) rotateX(0) rotateY(0);
  }
  45% {
    transform: translateY(-10px) rotateX(0.6deg) rotateY(-0.4deg);
  }
}

@keyframes pubBorderSpinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pubGlowPulsePremium {
  0%,
  100% {
    opacity: 0.62;
    filter: brightness(1) blur(12px);
  }
  50% {
    opacity: 1;
    filter: brightness(1.06) blur(14px);
  }
}

@keyframes pubRingFade {
  0%,
  100% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1.012);
  }
}

@keyframes pubBadgeBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes pubFadeRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pubBlobDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(5%, -4%) scale(1.06);
  }
  65% {
    transform: translate(-4%, 3%) scale(1.04);
  }
}

@keyframes pubNebulaShift {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1) translate(-2%, -1%);
  }
  50% {
    opacity: 1;
    transform: scale(1.06) translate(2%, 1%);
  }
}

.premium-section {
  position: relative;
  overflow-x: clip;
}

.pub-text-gradient {
  background: linear-gradient(103deg, #2563eb, #6366f1 38%, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pub-text-gradient--itsm {
  background: linear-gradient(100deg, var(--pub-itsm-a), var(--pub-itsm-b) 52%, var(--pub-itsm-c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pub-text-gradient--em {
  background: linear-gradient(95deg, var(--pub-itam-a), var(--pub-itam-b) 45%, var(--pub-itam-c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pub-text-gradient--pm {
  background: linear-gradient(95deg, var(--pub-pm-a), var(--pub-pm-b) 40%, var(--pub-pm-c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pub-text-gradient-ai {
  background: linear-gradient(94deg, #6366f1, #c026d3 42%, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* — Platform capability grid — */
.pub-premium-features.premium-section,
.pub-premium-features {
  position: relative;
  overflow: clip;
}

.pub-premium-features__ambient {
  pointer-events: none;
  position: absolute;
  inset: -40% -20%;
  opacity: 0.85;
}

.pub-animated-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  animation: pubBlobDrift 22s ease-in-out infinite;
}

.pub-animated-blob--vio {
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  top: -8%;
  left: -12%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.42), transparent 68%);
}

.pub-animated-blob--cy {
  width: min(52vw, 560px);
  height: min(52vw, 560px);
  bottom: -18%;
  right: -10%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.32), transparent 65%);
  animation-delay: -7s;
}

.pub-animated-blob--em {
  width: min(40vw, 420px);
  height: min(40vw, 420px);
  top: 35%;
  right: 20%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.24), transparent 70%);
  animation-delay: -12s;
}

.pub-premium-features__gridveil {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5) 100%);
  background-size: 18px 18px, 100% 100%;
  opacity: 0.5;
}

.pub-premium-features__head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--orq-dark);
  margin-bottom: 0.75rem;
}

.pub-premium-features__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--pub-max);
  margin: 0 auto;
  padding-bottom: 4px;
  animation: pubFadeRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.pub-premium-fcard {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-radius: 22px;
  padding: 22px 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background-image: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.72)),
    linear-gradient(125deg, rgba(139, 92, 246, 0.55), rgba(6, 182, 212, 0.45), rgba(99, 102, 241, 0.5));
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    var(--pub-prem-shadow-float);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease;
}

.pub-premium-fcard:hover {
  transform: translateY(-10px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 28px 60px -20px rgba(79, 70, 229, 0.32),
    0 64px 100px -40px rgba(6, 182, 212, 0.12);
}

.pub-premium-fcard__glow-edge {
  position: absolute;
  inset: -3px;
  border-radius: 24px;
  z-index: -1;
  background: conic-gradient(from 200deg, #8b5cf6, #06b6d4, #6366f1, #ec4899, #06b6d4, #8b5cf6);
  opacity: 0.5;
  filter: blur(10px);
  animation: pubBorderSpinSlow 14s linear infinite;
}

.pub-premium-fcard:nth-child(even) .pub-premium-fcard__glow-edge {
  animation-duration: 19s;
  animation-direction: reverse;
}

.pub-premium-fcard__metric {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4338ca;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 999px;
}

.pub-premium-fcard--asset .pub-premium-fcard__metric {
  color: #047857;
  border-color: rgba(16, 185, 129, 0.28);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.1));
}

.pub-premium-fcard--ship .pub-premium-fcard__metric {
  color: #b45309;
  border-color: rgba(251, 191, 36, 0.35);
}

.pub-premium-fcard__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.12), rgba(6, 182, 212, 0.1));
  color: var(--pub-indigo);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.pub-premium-fcard:hover .pub-premium-fcard__icon {
  transform: translateY(-5px) scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(99, 102, 241, 0.25));
}

.pub-premium-fcard__icon svg {
  width: 24px;
  height: 24px;
}

.pub-premium-fcard--asset .pub-premium-fcard__icon {
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.16), rgba(45, 212, 191, 0.1));
  color: #059669;
}

.pub-premium-fcard--ship .pub-premium-fcard__icon {
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.18), rgba(249, 115, 22, 0.1));
  color: #c2410c;
}

.pub-premium-fcard--iso .pub-premium-fcard__icon {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.12), rgba(99, 102, 241, 0.1));
  color: #0369a1;
}

.pub-premium-fcard h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--orq-dark);
  letter-spacing: -0.025em;
}

.pub-premium-fcard p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.52;
  color: var(--orq-muted);
}

/* — Product showcases — */
.pub-premium-showcases {
  position: relative;
}

.pub-premium-showcases::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
  margin: 0 var(--pub-section-pad-x);
  max-width: var(--pub-max);
  margin-left: auto;
  margin-right: auto;
}

.pub-showcase {
  position: relative;
  overflow: clip;
}

.pub-showcase + .pub-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7) 42%, transparent);
  mask-image: linear-gradient(180deg, transparent 0%, black 32%, transparent 100%);
}

.pub-showcase__ambient {
  pointer-events: none;
  position: absolute;
  inset: -35% -10%;
}

.pub-showcase-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  animation: pubBlobDrift 24s ease-in-out infinite;
}

.pub-showcase-blob--1 {
  width: min(60vw, 640px);
  height: min(60vw, 640px);
  top: -8%;
  right: -5%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.32), transparent 68%);
}

.pub-showcase-blob--2 {
  width: min(50vw, 520px);
  height: min(50vw, 520px);
  bottom: -12%;
  left: -15%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.24), transparent 65%);
  animation-delay: -8s;
}

.pub-showcase-blob--em1 {
  width: min(54vw, 580px);
  height: min(54vw, 580px);
  bottom: -20%;
  right: -18%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.3), transparent 68%);
}

.pub-showcase-blob--teal {
  width: min(44vw, 460px);
  height: min(44vw, 460px);
  top: -5%;
  left: -12%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.22), transparent 70%);
  animation-delay: -11s;
}

.pub-showcase-blob--or {
  width: min(56vw, 600px);
  height: min(56vw, 600px);
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.28), transparent 68%);
}

.pub-showcase-blob--pink {
  width: min(48vw, 500px);
  height: min(48vw, 500px);
  bottom: -18%;
  right: -10%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.24), transparent 66%);
  animation-delay: -6s;
}

.floating-card.pub-dashboard-preview,
.pub-dashboard-preview.floating-card {
  perspective: 1400px;
}

.pub-dashboard-preview {
  position: relative;
}

.pub-dashboard-preview__frame.glow-border,
.glow-border.pub-dashboard-preview__frame {
  position: relative;
  border-radius: 20px;
  padding: clamp(10px, 1.8vw, 14px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(248, 250, 252, 0.55)),
    linear-gradient(125deg, rgba(37, 99, 235, 0.45), rgba(124, 58, 237, 0.42), rgba(6, 182, 212, 0.4));
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  box-shadow:
    0 48px 100px -44px rgba(15, 23, 42, 0.45),
    0 22px 50px rgba(79, 70, 229, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
}

.glow-border--em {
  background-image: linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(236, 253, 245, 0.5)),
    linear-gradient(118deg, rgba(5, 150, 105, 0.45), rgba(20, 184, 166, 0.4), rgba(132, 204, 22, 0.35));
  box-shadow:
    0 48px 100px -42px rgba(6, 78, 59, 0.32),
    0 26px 50px rgba(20, 184, 166, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.74) inset;
}

.glow-border--pm {
  background-image: linear-gradient(148deg, rgba(255, 255, 255, 0.9), rgba(253, 242, 248, 0.45)),
    linear-gradient(118deg, rgba(234, 88, 12, 0.42), rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.36));
  box-shadow:
    0 48px 100px -42px rgba(157, 23, 77, 0.2),
    0 26px 50px rgba(234, 88, 12, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset;
}

.pub-dashboard-preview:hover .pub-dashboard-preview__frame {
  transform: perspective(1400px) rotateY(-2deg) rotateX(2deg) scale(1.015);
}

.pub-dashboard-preview__frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  animation: pubFloatSoft 7.5s ease-in-out infinite;
}

.pub-dashboard-preview:hover .pub-dashboard-preview__frame img {
  animation-duration: 5s;
}

.pub-showcase:hover .pub-showcase-blob {
  opacity: 0.95;
}

.pub-mesh-bg {
  position: relative;
  z-index: 1;
}

.pub-mesh-bg--itsm::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(rgba(99, 102, 241, 0.3) 0.65px, transparent 0.65px),
    radial-gradient(at 85% 20%, rgba(6, 182, 212, 0.12), transparent 50%),
    radial-gradient(at 10% 80%, rgba(124, 58, 237, 0.1), transparent 45%);
  background-size:
    20px 20px,
    100% 100%,
    100% 100%;
  pointer-events: none;
  z-index: 0;
}

.pub-mesh-bg--itam::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(rgba(16, 185, 129, 0.25) 0.65px, transparent 0.65px),
    radial-gradient(at 15% 12%, rgba(20, 184, 166, 0.12), transparent 48%);
  background-size: 21px 21px, 100% 100%;
  pointer-events: none;
  z-index: 0;
}

.pub-mesh-bg--pm::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(rgba(234, 88, 12, 0.15) 0.65px, transparent 0.65px),
    radial-gradient(at 70% 0%, rgba(236, 72, 153, 0.08), transparent 45%),
    radial-gradient(at 0% 100%, rgba(139, 92, 246, 0.1), transparent 50%);
  background-size: 21px 21px, 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: 0;
}

.pub-showcase__inner > * {
  position: relative;
  z-index: 1;
}

.pub-showcase__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: var(--pub-max);
  margin: 0 auto;
  padding: clamp(56px, 10vw, 116px) var(--pub-section-pad-x);
}

.pub-showcase--reverse .pub-showcase__visual {
  order: -1;
}

.pub-showcase__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6366f1;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.22);
}

.pub-showcase__eyebrow--em {
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
}

.pub-showcase__eyebrow--pm {
  color: #c2410c;
  background: rgba(251, 113, 133, 0.12);
  border-color: rgba(234, 88, 12, 0.3);
}

.pub-showcase__title {
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--orq-dark);
  margin: 16px 0 14px;
}

.pub-showcase__lead {
  margin: 0 0 20px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--orq-muted);
  max-width: 38ch;
}

.pub-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pub-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.2);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}

.pub-feature-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.45);
}

.pub-feature-chip svg {
  width: 16px;
  height: 16px;
  color: var(--pub-indigo);
  flex-shrink: 0;
}

.pub-feature-chip--em {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(240, 253, 250, 0.75);
}

.pub-feature-chip--em:hover {
  border-color: rgba(5, 150, 105, 0.45);
}

.pub-feature-chip--em svg {
  color: #059669;
}

.pub-feature-chip--pm {
  border-color: rgba(251, 146, 60, 0.4);
  background: rgba(255, 247, 237, 0.75);
}

.pub-feature-chip--pm:hover {
  border-color: rgba(234, 88, 12, 0.5);
}

.pub-feature-chip--pm svg {
  color: #ea580c;
}

.pub-feature-chip--ai {
  border-color: rgba(129, 140, 248, 0.4);
  background: rgba(238, 242, 255, 0.88);
}

.pub-feature-chip--ai svg {
  color: #6366f1;
}

.pub-btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  box-shadow:
    0 12px 32px -10px rgba(79, 70, 229, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.pub-btn-gradient:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 18px 40px -12px rgba(79, 70, 229, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.pub-btn-gradient--itsm {
  background: linear-gradient(102deg, var(--pub-itsm-a), var(--pub-itsm-b) 48%, var(--pub-itsm-c));
}

.pub-btn-gradient--itam {
  background: linear-gradient(102deg, var(--pub-itam-a), var(--pub-itam-b) 45%, var(--pub-itam-c));
  box-shadow:
    0 12px 32px -10px rgba(5, 150, 105, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.pub-btn-gradient--pm {
  background: linear-gradient(102deg, var(--pub-pm-a), var(--pub-pm-b) 42%, var(--pub-pm-c));
  box-shadow:
    0 12px 32px -10px rgba(234, 88, 12, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.pub-btn-gradient--ai {
  background: linear-gradient(102deg, #4f46e5, #a855f7 46%, #22d3ee);
  box-shadow:
    0 12px 32px -10px rgba(79, 70, 229, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.pub-btn-gradient--soft {
  background: linear-gradient(102deg, #64748b, #475569 45%, #334155);
  box-shadow:
    0 12px 28px -10px rgba(15, 23, 42, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.pub-floating-badge {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0f172a;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 12px 30px -12px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(99, 102, 241, 0.08);
  animation: pubBadgeBob 4.2s ease-in-out infinite;
}

.pub-floating-badge--p1 {
  top: 6%;
  right: -2%;
}

.pub-floating-badge--p2 {
  top: 38%;
  left: -6%;
  animation-delay: -1.4s;
}

.pub-floating-badge--p3 {
  bottom: 8%;
  right: 10%;
  animation-delay: -2.8s;
}

.pub-floating-badge--em {
  box-shadow:
    0 12px 30px -12px rgba(6, 78, 59, 0.25),
    0 0 0 1px rgba(16, 185, 129, 0.12);
}

.pub-floating-badge--lime {
  color: #3f6212;
  border-color: rgba(190, 242, 100, 0.6);
  background: linear-gradient(135deg, rgba(236, 252, 203, 0.95), rgba(255, 255, 255, 0.9));
}

.pub-floating-badge--teal {
  color: #115e59;
  border-color: rgba(45, 212, 191, 0.45);
  background: linear-gradient(135deg, rgba(204, 251, 241, 0.95), rgba(255, 255, 255, 0.9));
}

.pub-floating-badge--or {
  color: #9a3412;
  box-shadow:
    0 12px 30px -12px rgba(234, 88, 12, 0.25),
    0 0 0 1px rgba(251, 146, 60, 0.2);
}

.pub-floating-badge--pink {
  color: #9d174d;
  border-color: rgba(249, 168, 212, 0.55);
}

.pub-floating-badge--vio {
  color: #5b21b6;
}

.pub-floating-badge--cy {
  color: #0e7490;
}

.pub-floating-badge--ai-corner {
  top: 4%;
  right: 2%;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b21b6;
  background: linear-gradient(135deg, rgba(224, 231, 255, 0.95), rgba(255, 255, 255, 0.95));
  border-color: rgba(129, 140, 248, 0.45);
  animation-delay: -1s;
}

/* — User 360 orbit — */
.pub-user360--orbit {
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(99, 102, 241, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 80%, rgba(34, 211, 238, 0.12), transparent 50%),
    linear-gradient(180deg, #f4f6ff 0%, #f5fdfa 50%, #faf5ff 100%);
}

.pub-user360__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pub-user360-nebula {
  position: absolute;
  inset: -20% -30%;
  background:
    radial-gradient(circle at 30% 30%, rgba(129, 140, 248, 0.22), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(34, 211, 238, 0.15), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(192, 38, 211, 0.08), transparent 40%);
  animation: pubNebulaShift 18s ease-in-out infinite;
}

.pub-user360--orbit .pub-user360__inner {
  position: relative;
  z-index: 1;
}

.pub-user360--orbit .pub-user360__copy h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0.65rem 0 1rem;
  color: var(--orq-dark);
}

.pub-user360__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.pub-user360-orbit {
  position: absolute;
  inset: 4% 2% 8% 2%;
  pointer-events: none;
  z-index: 0;
}

.pub-user360-orbit__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(129, 140, 248, 0.22);
  aspect-ratio: 1;
  animation: pubRingFade 6.5s ease-in-out infinite;
}

.pub-user360-orbit__ring--1 {
  width: 92%;
  border-color: rgba(99, 102, 241, 0.28);
}

.pub-user360-orbit__ring--2 {
  width: 108%;
  border-color: rgba(34, 211, 238, 0.2);
  animation-delay: -2.2s;
  animation-duration: 8.5s;
}

.pub-user360-orbit__ring--3 {
  width: 124%;
  border-color: rgba(192, 38, 211, 0.12);
  animation-delay: -4s;
  animation-duration: 10.5s;
}

.pub-user360__glow--pulse {
  animation: pubGlowPulsePremium 5.5s ease-in-out infinite;
  background: radial-gradient(ellipse at 50% 45%, rgba(129, 140, 248, 0.45), transparent 62%);
}

.pub-user360__figure--glass {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.75), rgba(238, 242, 255, 0.45));
  border: 1px solid rgba(129, 140, 248, 0.22);
  box-shadow:
    0 40px 90px -40px rgba(67, 56, 202, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
}

.pub-user360__figure--glass:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 52px 100px -36px rgba(99, 102, 241, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.pub-user360__figure--glass .pub-user360__img {
  border-radius: 16px;
  animation: pubFloatSoft 8s ease-in-out infinite;
}

@media (max-width: 1100px) {
  .pub-premium-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .pub-showcase__inner {
    grid-template-columns: 1fr;
    padding-top: clamp(48px, 8vw, 80px);
    padding-bottom: clamp(48px, 8vw, 80px);
  }

  .pub-showcase--reverse .pub-showcase__visual {
    order: -1;
  }

  .pub-showcase__lead {
    max-width: none;
  }

  .pub-floating-badge--p1 {
    right: 2%;
  }

  .pub-floating-badge--p2 {
    left: 2%;
  }
}

@media (max-width: 640px) {
  .pub-premium-features__grid {
    grid-template-columns: 1fr;
  }

  .pub-floating-badge {
    display: none;
  }

  .pub-user360-nebula {
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pub-premium-fcard__glow-edge,
  .pub-animated-blob,
  .pub-showcase-blob,
  .pub-user360-nebula,
  .pub-user360-orbit__ring,
  .pub-user360__glow--pulse,
  .pub-dashboard-preview__frame img,
  .pub-floating-badge,
  .pub-user360__figure--glass .pub-user360__img {
    animation: none !important;
  }

  .pub-premium-features__grid {
    animation: none;
  }

  .pub-dashboard-preview:hover .pub-dashboard-preview__frame,
  .pub-premium-fcard:hover,
  .pub-user360__figure--glass:hover {
    transform: none;
  }
}

/* === ABOUT / LEGAL ARTICLES === */
.pub-about {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--pub-section-pad-y) var(--pub-section-pad-x);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.pub-about h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--orq-dark);
  margin: 0 0 1rem;
}

.pub-about h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--orq-dark);
}

.pub-about p {
  line-height: 1.7;
  color: var(--orq-muted);
  font-size: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .pub-integrations__circuit {
    opacity: 0.25;
  }

  .pub-integrations__stage {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }

  .pub-integrations__hub-area {
    position: relative;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin-top: 8px;
  }

  .pub-integrations-orbit {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 0 4px;
  }

  .pub-integration-node {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    max-width: none;
    width: 100%;
  }

  .pub-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .pub-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --pub-section-pad-y: 64px;
  }

  .pub-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 96px;
  }

  .pub-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .pub-hero__actions {
    justify-content: center;
  }

  .pub-hero__subcta {
    text-align: center;
  }

  .pub-hero__proof {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pub-hero__visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto 32px;
  }

  .pub-features {
    grid-template-columns: 1fr;
  }

  .pub-product,
  .pub-product--reverse {
    grid-template-columns: 1fr;
  }

  .pub-product--reverse .pub-product__text,
  .pub-product--reverse .pub-product__visual {
    order: unset;
  }

  .pub-product__visual {
    order: -1;
  }

  .pub-collage {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .pub-collage__card {
    position: relative !important;
    width: 100% !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }

  .pub-split-page {
    grid-template-columns: 1fr;
    padding: 0;
    margin: 24px var(--pub-section-pad-x) 48px;
  }

  .pub-split-aside {
    padding: 32px var(--pub-section-pad-x);
    border-radius: 0;
  }

  .pub-split-main {
    padding: 32px var(--pub-section-pad-x);
  }

  .pub-footer__grid,
  .pub-footer-glass {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pub-pricing__grid {
    grid-template-columns: 1fr;
  }

  .pub-form-row2 {
    grid-template-columns: 1fr;
  }

  .pub-hero h1 {
    font-size: clamp(2rem, 8vw, 2.2rem);
  }

  :root {
    --pub-section-pad-y: 56px;
    --pub-section-pad-x: 16px;
  }

  .pub-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .pub-hero__actions .pub-btn {
    width: 100%;
  }

  .pub-cta-band__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pub-cta-band__actions .pub-btn {
    width: 100%;
  }
}

/* === Landing homepage only: pricing cards side-by-side in one row (pricing page unchanged) === */
.pub-pricing-on-landing .pub-pricing-root--premium .pub-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--pub-max);
  gap: clamp(12px, 1.8vw, 1.35rem);
  margin-inline: auto;
}

@media (max-width: 1024px) {
  .pub-pricing-on-landing .pub-pricing-root--premium .pub-pricing__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.7rem, 1.6vw, 1.1rem);
  }
}

@media (max-width: 560px) {
  .pub-pricing-on-landing .pub-pricing-root--premium .pub-pricing__grid {
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 14px;
    margin-inline: calc(-1 * var(--pub-section-pad-x));
    padding-inline: var(--pub-section-pad-x);
    max-width: none;
    gap: 0.75rem;
  }

  .pub-pricing-on-landing .pub-pricing-card.pub-pcard {
    scroll-snap-align: start;
  }
}
