/* PowerSellApp Blue Creative Landing */

:root {
  --blue-950: #061635;
  --blue-900: #082154;
  --blue-800: #0a2f7a;
  --blue-700: #0a4bd8;
  --blue-600: #0b63f6;
  --blue-500: #1683ff;
  --blue-300: #7fc7ff;
  --cyan: #20d4ff;
  --orange: #ff5722;
  --yellow: #f4ba09;
  --white: #ffffff;
  --ink: #101828;
  --muted: #667085;
  --line: rgba(255, 255, 255, .16);
  --soft: #f4f8ff;
  --shadow-blue: 0 24px 80px rgba(11, 99, 246, .24);
  --shadow-soft: 0 18px 50px rgba(16, 24, 40, .12);
  --container: 1180px;
  --radius-xl: 34px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--blue-950);
  line-height: 1.55;
  overflow-x: hidden;
}

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

img,
video {
  max-width: 100%;
}

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

.ps-bg-orb {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .58;
  pointer-events: none;
  animation: orbMove 12s ease-in-out infinite alternate;
}

.ps-orb-1 {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 80px;
  background: rgba(32, 212, 255, .34);
}

.ps-orb-2 {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 360px;
  background: rgba(11, 99, 246, .45);
  animation-delay: -3s;
}

.ps-orb-3 {
  width: 300px;
  height: 300px;
  left: 40%;
  bottom: 0;
  background: rgba(255, 87, 34, .22);
  animation-delay: -6s;
}

@keyframes orbMove {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(30px, -35px, 0) scale(1.08); }
}

.ps-nav {
  position: fixed;
  z-index: 100;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - 32px));
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--white);
  background: rgba(6, 22, 53, .58);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ps-nav.is-scrolled {
  background: rgba(255, 255, 255, .92);
  color: var(--blue-950);
  border-color: rgba(11, 99, 246, .14);
  box-shadow: 0 18px 50px rgba(16, 24, 40, .12);
}

.ps-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  overflow: hidden;
}

.ps-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.ps-mini-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ps-mini-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: currentColor;
  font-size: .92rem;
  font-weight: 800;
  opacity: .88;
}

.ps-mini-nav a:hover {
  background: rgba(11, 99, 246, .12);
  opacity: 1;
}

.ps-nav-cta,
.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: -0.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.ps-nav-cta {
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff7b45);
  box-shadow: 0 18px 38px rgba(255, 87, 34, .28);
}

.ps-btn {
  min-height: 56px;
  padding: 0 24px;
}

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

.ps-btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff7b45);
  box-shadow: 0 18px 38px rgba(255, 87, 34, .28);
}

.ps-btn-primary:hover {
  box-shadow: 0 24px 52px rgba(255, 87, 34, .34);
}

.ps-btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .10);
}

.ps-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(32, 212, 255, .22), transparent 28%),
    radial-gradient(circle at 90% 28%, rgba(11, 99, 246, .50), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 46%, #020816);
}

.ps-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  opacity: .55;
  pointer-events: none;
}

.ps-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.ps-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid rgba(127, 199, 255, .30);
  border-radius: 999px;
  color: #d9f1ff;
  background: rgba(127, 199, 255, .10);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ps-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(32, 212, 255, .12);
}

.ps-hero h1,
.ps-section-head h2,
.ps-flow-copy h2,
.ps-video-copy h2,
.ps-demo-copy h2,
.ps-final-cta h2 {
  margin: 18px 0;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: .94;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.ps-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.ps-live-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
  max-width: 650px;
}

.ps-live-strip div {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.ps-live-strip strong,
.ps-live-strip span {
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
}

.ps-live-strip small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .66);
  font-weight: 800;
}

.ps-hero-stage {
  position: relative;
  min-height: 620px;
}

.ps-device-card {
  position: absolute;
  inset: 42px 20px auto 20px;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .38);
  padding: 16px;
  transform-style: preserve-3d;
}

.ps-device-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .74);
}

.ps-device-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .38);
}

.ps-device-top b {
  margin-left: 8px;
  font-size: .88rem;
}

.ps-video-wrap {
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .10);
}

.ps-video-wrap video {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  opacity: .96;
}

.ps-device-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.ps-device-metrics div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
}

.ps-device-metrics small {
  display: block;
  color: rgba(255, 255, 255, .60);
  font-weight: 800;
}

.ps-device-metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
}

.ps-floating-card {
  position: absolute;
  z-index: 4;
  width: 210px;
  padding: 16px;
  border-radius: 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
  font-weight: 900;
  animation: floatCard 4.6s ease-in-out infinite;
}

.ps-floating-card strong {
  display: block;
  margin-top: 4px;
  color: #d9f1ff;
  font-size: .88rem;
}

.ps-float-a {
  left: -8px;
  top: 116px;
}

.ps-float-b {
  right: -4px;
  top: 252px;
  animation-delay: -1.5s;
}

.ps-float-c {
  left: 64px;
  bottom: 54px;
  animation-delay: -2.8s;
}

@keyframes floatCard {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -16px, 0); }
}

.ps-dot {
  display: inline-flex;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: #30e38a;
  box-shadow: 0 0 0 8px rgba(48, 227, 138, .12);
}

.ps-pulse {
  display: inline-flex;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(32, 212, 255, .45);
  animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(32, 212, 255, .45); }
  100% { box-shadow: 0 0 0 16px rgba(32, 212, 255, 0); }
}

.ps-badge {
  display: inline-flex;
  margin-right: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--yellow);
  font-size: .78rem;
}

.ps-logo-strip {
  padding: 28px 0;
  background: var(--white);
}

.ps-logo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-weight: 850;
}

.ps-logo-content div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ps-logo-content b {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--blue-800);
  background: var(--soft);
}

.ps-section {
  padding: 110px 0;
  background: var(--white);
}

.ps-section-head {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.ps-section-head .ps-kicker,
.ps-flow-copy .ps-kicker,
.ps-video-copy .ps-kicker,
.ps-demo-copy .ps-kicker,
.ps-final-cta .ps-kicker {
  color: var(--blue-800);
  border-color: rgba(11, 99, 246, .18);
  background: rgba(11, 99, 246, .08);
}

.ps-section-head h2,
.ps-flow-copy h2,
.ps-video-copy h2,
.ps-demo-copy h2,
.ps-final-cta h2 {
  color: var(--blue-950);
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
}

.ps-section-head p,
.ps-flow-copy p,
.ps-video-copy p,
.ps-demo-copy p,
.ps-final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.ps-platform {
  background:
    radial-gradient(circle at 50% 0, rgba(11, 99, 246, .10), transparent 28%),
    var(--white);
}

.ps-command-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ps-command-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 30px;
  border-radius: 32px;
  background: var(--soft);
  border: 1px solid rgba(11, 99, 246, .10);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ps-command-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(11, 99, 246, .18);
}

.ps-command-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(11, 99, 246, .10);
}

.ps-command-card.ps-featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(32, 212, 255, .20), rgba(255, 255, 255, .02)),
    linear-gradient(135deg, var(--blue-800), var(--blue-600));
}

.ps-command-card.ps-featured p,
.ps-command-card.ps-featured span {
  color: rgba(255, 255, 255, .76);
}

.ps-command-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(11, 99, 246, .14);
  font-size: 1.55rem;
}

.ps-command-card h3,
.ps-timeline-item h3,
.ps-use-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.ps-command-card p,
.ps-timeline-item p,
.ps-use-card p {
  margin: 0;
  color: var(--muted);
}

.ps-command-card span {
  position: absolute;
  left: 30px;
  bottom: 28px;
  z-index: 2;
  color: var(--blue-700);
  font-weight: 950;
}

.ps-flow {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 30%, rgba(32, 212, 255, .20), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.ps-flow-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
  align-items: center;
}

.ps-flow-copy h2,
.ps-flow-copy p {
  color: var(--white);
}

.ps-flow-copy p {
  color: rgba(255, 255, 255, .74);
  margin-bottom: 28px;
}

.ps-flow-copy .ps-kicker {
  color: #d9f1ff;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .10);
}

.ps-timeline {
  display: grid;
  gap: 18px;
  counter-reset: timeline;
}

.ps-timeline-item {
  position: relative;
  padding: 24px 24px 24px 92px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px);
}

.ps-timeline-item span {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--blue-950);
  background: var(--cyan);
  font-weight: 950;
}

.ps-timeline-item p {
  color: rgba(255, 255, 255, .70);
}

.ps-video-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 84% 22%, rgba(11, 99, 246, .14), transparent 28%),
    var(--soft);
}

.ps-video-layout {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 48px;
  align-items: center;
}

.ps-video-card {
  overflow: hidden;
  border-radius: 36px;
  background: var(--blue-950);
  box-shadow: var(--shadow-blue);
  border: 1px solid rgba(11, 99, 246, .18);
}

.ps-video-toolbar {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
}

.ps-video-toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
}

.ps-video-toolbar b {
  margin-left: 8px;
  font-size: .9rem;
}

.ps-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #000;
}

.ps-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.ps-check-grid div {
  padding: 16px;
  border-radius: 18px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(11, 99, 246, .12);
  box-shadow: 0 12px 30px rgba(11, 99, 246, .08);
  font-weight: 900;
}

.ps-check-grid div::before {
  content: "✓";
  color: var(--orange);
  margin-right: 8px;
}

.ps-use-cases {
  background: var(--white);
}

.ps-use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ps-use-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 28px;
  color: var(--blue-950);
  background:
    linear-gradient(180deg, rgba(11, 99, 246, .08), rgba(11, 99, 246, .02)),
    var(--white);
  border: 1px solid rgba(11, 99, 246, .12);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, border-color .25s ease;
}

.ps-use-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: rgba(11, 99, 246, .32);
}

.ps-use-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 16px;
  color: var(--white);
  background: var(--blue-600);
  font-weight: 950;
}

.ps-demo-section {
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(32, 212, 255, .26), transparent 26%),
    linear-gradient(135deg, var(--blue-950), #020816);
}

.ps-demo-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.ps-demo-copy h2,
.ps-demo-copy p {
  color: var(--white);
}

.ps-demo-copy p {
  color: rgba(255, 255, 255, .72);
}

.ps-demo-copy .ps-kicker {
  color: #d9f1ff;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .10);
}

.ps-demo-panel {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.ps-demo-panel div {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px);
}

.ps-demo-panel strong,
.ps-demo-panel span {
  display: block;
}

.ps-demo-panel span {
  color: rgba(255, 255, 255, .68);
}

.ps-form {
  padding: 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .94);
  color: var(--blue-950);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .30);
  border: 1px solid rgba(255, 255, 255, .22);
}

.ps-form-head h3 {
  margin: 0 0 4px;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.ps-form-head p {
  margin: 0 0 24px;
  color: var(--muted);
}

.ps-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ps-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .92rem;
  color: var(--blue-900);
  font-weight: 900;
}

.ps-form input,
.ps-form select,
.ps-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid #d7e3ff;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ps-form textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.ps-form input:focus,
.ps-form select:focus,
.ps-form textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 5px rgba(11, 99, 246, .12);
  transform: translateY(-1px);
}

.ps-form input.ps-error,
.ps-form select.ps-error,
.ps-form textarea.ps-error {
  border-color: #d93025;
  box-shadow: 0 0 0 5px rgba(217, 48, 37, .12);
}

.ps-form-submit {
  width: 100%;
  margin-top: 6px;
}

.ps-form-submit[disabled] {
  opacity: .72;
  cursor: wait;
}

.ps-form-privacy {
  margin: 16px 0 0;
  font-size: .82rem;
  color: var(--muted);
}

.ps-form-message {
  margin-top: 14px;
  font-size: .92rem;
  font-weight: 900;
}

.ps-form-message.is-error {
  color: #d93025;
}

.ps-form-message.is-success {
  color: #188038;
}

.hp-wrap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ps-faq-section {
  padding: 100px 0;
  background: var(--soft);
}

.ps-faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.ps-faq-list details {
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(11, 99, 246, .10);
  box-shadow: 0 12px 34px rgba(11, 99, 246, .08);
}

.ps-faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  list-style: none;
  color: var(--blue-950);
  font-weight: 950;
}

.ps-faq-list summary::-webkit-details-marker {
  display: none;
}

.ps-faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.ps-final-cta {
  padding: 110px 0;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0, rgba(32, 212, 255, .30), transparent 28%),
    linear-gradient(135deg, var(--blue-900), var(--blue-950));
}

.ps-final-cta .ps-kicker {
  margin: 0 auto;
  color: #d9f1ff;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .10);
}

.ps-final-cta h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
}

.ps-final-cta p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, .72);
}

.ps-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, .62);
  background: #020816;
}

.ps-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ps-footer a {
  color: var(--white);
}

.ps-whatsapp-float {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 42px rgba(37, 211, 102, .35);
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .22s;
}

.delay-3 {
  transition-delay: .32s;
}

@media (max-width: 1060px) {
  .ps-mini-nav {
    display: none;
  }

  .ps-nav {
    grid-template-columns: auto auto;
  }

  .ps-hero-layout,
  .ps-flow-layout,
  .ps-video-layout,
  .ps-demo-layout {
    grid-template-columns: 1fr;
  }

  .ps-hero-stage {
    min-height: 560px;
  }

  .ps-command-grid,
  .ps-use-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .ps-container {
    width: min(100% - 28px, var(--container));
  }

  .ps-nav {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 64px;
  }

  .ps-brand {
    min-width: 46px;
    height: 46px;
  }

  .ps-brand img {
    width: 38px;
    height: 38px;
  }

  .ps-nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: .9rem;
  }

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

  .ps-hero h1,
  .ps-section-head h2,
  .ps-flow-copy h2,
  .ps-video-copy h2,
  .ps-demo-copy h2,
  .ps-final-cta h2 {
    font-size: clamp(2.28rem, 12vw, 3.7rem);
  }

  .ps-hero-actions,
  .ps-btn {
    width: 100%;
  }

  .ps-hero-actions {
    display: grid;
  }

  .ps-live-strip,
  .ps-command-grid,
  .ps-use-grid,
  .ps-form-grid,
  .ps-check-grid {
    grid-template-columns: 1fr;
  }

  .ps-hero-stage {
    min-height: 520px;
  }

  .ps-device-card {
    inset: 30px 0 auto 0;
  }

  .ps-floating-card {
    width: 188px;
    font-size: .9rem;
  }

  .ps-float-a {
    left: -2px;
    top: 100px;
  }

  .ps-float-b {
    right: -2px;
    top: 234px;
  }

  .ps-float-c {
    left: 24px;
    bottom: 34px;
  }

  .ps-logo-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .ps-section,
  .ps-video-section,
  .ps-demo-section,
  .ps-faq-section,
  .ps-final-cta {
    padding: 76px 0;
  }

  .ps-form {
    padding: 22px;
    border-radius: 28px;
  }

  .ps-footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
