@font-face {
  font-family: "Pixelify Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/pixelify-sans-latin-variable.woff2") format("woff2");
}

.pf-landing {
  --landing-canvas: var(--pf-dark-canvas, #0a0a0a);
  --landing-surface: var(--pf-dark-surface, #171717);
  --landing-surface-hover: var(--pf-dark-surface-raised, #242424);
  --landing-text: var(--pf-dark-text, #fafafa);
  --landing-muted: var(--pf-dark-muted, rgba(250, 250, 250, 0.62));
  --landing-faint: var(--pf-dark-faint, rgba(250, 250, 250, 0.4));
  --landing-rule: var(--pf-dark-rule, rgba(250, 250, 250, 0.1));
  --landing-rule-strong: var(--pf-dark-rule-strong, rgba(250, 250, 250, 0.18));
  --landing-accent: var(--pf-accent, #1558ff);
  --landing-accent-hover: var(--pf-accent-hover, #2b69ff);
  --landing-focus: var(--pf-focus, #4b7cff);
  --landing-container: 1360px;
  --landing-content: 1180px;
  min-height: 100vh;
  padding-top: 88px;
  overflow-x: clip;
  overflow-y: visible;
  color: var(--landing-text);
  background: var(--landing-canvas);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  isolation: isolate;
}

body:has(.pf-landing.is-visible) {
  background: var(--landing-canvas, #0a0a0a);
}

body:has(.pf-landing.is-visible) .aurora-backdrop {
  display: none;
}

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

.pf-landing a,
.pf-landing button {
  font: inherit;
}

.pf-landing a {
  color: inherit;
  text-decoration: none;
}

.pf-landing button {
  margin: 0;
}

.pf-landing button,
.pf-landing a {
  -webkit-tap-highlight-color: transparent;
}

.pf-landing :focus-visible {
  outline: 2px solid var(--landing-focus);
  outline-offset: 3px;
}

.pf-landing-grid {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(250, 250, 250, 0.1) 48px 49px),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(250, 250, 250, 0.1) 48px 49px);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 38%, transparent 62%, #000 100%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 38%, transparent 62%, #000 100%);
}

.pf-landing-grid-top {
  inset: 86px 0 auto;
  height: 360px;
}

.pf-site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(10, 10, 10, 0);
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.pf-site-header.is-scrolled {
  border-color: var(--landing-rule);
  background: rgba(10, 10, 10, 0.18);
}

.pf-site-nav {
  position: relative;
  width: min(100%, 1505px);
  min-height: 88px;
  margin-inline: auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pf-brand-button,
.pf-desktop-nav a,
.pf-desktop-nav button,
.pf-nav-login,
.pf-menu-button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--landing-text);
  background: var(--landing-surface);
  transition:
    background 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

.pf-brand-button:hover,
.pf-desktop-nav a:hover,
.pf-desktop-nav button:hover,
.pf-nav-login:hover,
.pf-menu-button:hover {
  border-color: var(--landing-rule-strong);
  background: var(--landing-surface-hover);
  transform: translateY(-1px);
}

.pf-brand-button {
  flex: 0 0 auto;
  min-width: 52px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.pf-brand-button img {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 6px;
}

.pf-brand-button > span {
  padding-right: 10px;
  font-size: 0.94rem;
  font-weight: 600;
}

.pf-desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pf-desktop-nav a,
.pf-desktop-nav button,
.pf-nav-login {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 500;
}

.pf-nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pf-button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--landing-rule-strong);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.pf-button:hover {
  transform: translateY(-1px);
}

.pf-button:active {
  transform: translateY(0);
}

.pf-button-light {
  border-color: #fafafa;
  color: #0a0a0a;
  background: #fafafa;
}

.pf-button-light:hover {
  border-color: #e9e9e9;
  background: #e9e9e9;
}

.pf-button-dark {
  color: var(--landing-text);
  background: var(--landing-surface);
}

.pf-button-dark:hover {
  border-color: rgba(250, 250, 250, 0.3);
  background: var(--landing-surface-hover);
}

.pf-menu-button {
  padding: 0 14px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pf-mobile-menu {
  position: absolute;
  top: calc(100% - 8px);
  right: 18px;
  left: 18px;
  z-index: 5;
  padding: 8px;
  border: 1px solid var(--landing-rule-strong);
  border-radius: 10px;
  background: #111;
}

.pf-mobile-menu:not([hidden]) {
  display: grid;
}

.pf-mobile-menu a,
.pf-mobile-menu button {
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  color: var(--landing-text);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  text-align: left;
}

.pf-mobile-menu a:hover,
.pf-mobile-menu button:hover {
  background: var(--landing-surface-hover);
}

.pf-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  margin-top: -88px;
  padding: 140px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#premium-silk-hero-root {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  overflow: hidden;
  place-items: center;
  pointer-events: none;
}

.pf-hero-silk-frame {
  flex: 0 0 auto;
}

.pf-hero-silk-frame canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.pf-hero > :not(#premium-silk-hero-root) {
  position: relative;
  z-index: 1;
}

#premium-hero-gradual-blur-root {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.pf-reference-row,
.pf-hero-copy {
  z-index: 2;
}

@media (forced-colors: active) {
  #premium-silk-hero-root {
    display: none;
  }
}

.pf-reference-row {
  position: relative;
  top: 13px;
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  color: var(--landing-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pf-reference-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pf-reference-row b {
  color: var(--landing-text);
  font-weight: 500;
}

.pf-hero-copy {
  position: relative;
  top: 13px;
  width: min(100%, 1340px);
  text-align: center;
}

.pf-hero-copy h1 {
  width: min(100%, 1360px);
  margin: 0;
  margin-inline: auto;
  color: var(--landing-text);
  font-size: clamp(3.8rem, 6.35vw, 6.9rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.pf-hero-line {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
}

.pf-hero-line + .pf-hero-line {
  margin-top: 0.06em;
}

.pf-hero-line > span {
  min-width: 0;
}

.pf-decrypted-word-shell,
.pf-decrypted-word {
  display: inline-block;
  font-family: "Pixelify Sans", "SFMono-Regular", Consolas, monospace;
  font-weight: 600;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.pf-decrypted-word-shell {
  min-width: 8.2ch;
  text-align: left;
}

.pf-decrypted-word-encrypted {
  color: rgba(250, 250, 250, 0.58);
}

.pf-mono-display {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 400;
  letter-spacing: -0.07em;
}

.pf-hero-copy > p {
  max-width: 760px;
  margin: 32px auto 0;
  color: var(--landing-muted);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.48;
}

.pf-action-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pf-section-inner {
  width: min(100%, var(--landing-container));
  margin-inline: auto;
  padding-inline: clamp(24px, 6vw, 96px);
}

.pf-proof-section,
.pf-workflow-section,
.pf-pricing-section {
  position: relative;
  border-top: 1px solid var(--landing-rule);
  scroll-margin-top: 88px;
}

.pf-proof-section {
  min-height: 850px;
  padding-block: clamp(120px, 12vw, 176px) 110px;
}

.pf-proof-section::after {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 600px;
  content: "";
  pointer-events: none;
  opacity: 0.4;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(250, 250, 250, 0.09) 48px 49px),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(250, 250, 250, 0.09) 48px 49px);
}

.pf-proof-section::after {
  top: 90px;
  right: 0;
  -webkit-mask-image: linear-gradient(#000, transparent);
  mask-image: linear-gradient(#000, transparent);
}

.pf-proof-statement {
  max-width: 1130px;
  margin: 0;
  color: var(--landing-text);
  font-size: clamp(3.2rem, 5.35vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.pf-proof-statement .pf-mono-display {
  letter-spacing: -0.09em;
}

.pf-proof-grid {
  margin-top: clamp(96px, 10vw, 150px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px;
}

.pf-proof-item {
  min-width: 0;
}

.pf-proof-index {
  display: block;
  color: var(--landing-accent);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(2.8rem, 4.4vw, 4.4rem);
  letter-spacing: -0.08em;
  line-height: 1;
}

.pf-proof-item h3 {
  margin: 32px 0 0;
  color: var(--landing-text);
  font-size: 1.05rem;
  font-weight: 500;
}

.pf-proof-item p {
  max-width: 330px;
  margin: 12px 0 0;
  color: var(--landing-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.pf-text-link {
  width: fit-content;
  margin-top: 96px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--landing-text);
  font-size: 1rem;
  font-weight: 500;
  text-underline-offset: 5px;
}

.pf-text-link:hover {
  text-decoration: underline;
}

.pf-workflow-section {
  padding-block: 128px 148px;
}

.pf-section-heading {
  max-width: 850px;
}

.pf-kicker {
  margin: 0;
  color: var(--landing-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.pf-section-heading h2,
.pf-pricing-heading h2 {
  margin: 26px 0 0;
  color: var(--landing-text);
  font-size: clamp(2.8rem, 4.6vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.pf-workflow-split-text {
  max-width: 100%;
}

.pf-workflow-split-text .split-word {
  display: inline-block;
}

.pf-section-heading > p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--landing-muted);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.55;
}

.pf-product-grid {
  margin-top: 72px;
  padding-bottom: 112px;
  border-bottom: 1px solid var(--landing-rule);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.pf-product-column {
  min-width: 0;
}

.pf-product-frame {
  position: relative;
  height: 310px;
  overflow: hidden;
  border: 1px solid var(--landing-rule);
  border-radius: 12px;
  padding: 26px;
  color: var(--landing-text);
  background: #151515;
}

.pf-border-glow-layer {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: block;
}

.pf-product-border-glow {
  width: 100%;
  height: 100%;
}

.pf-product-border-glow .border-glow-inner {
  min-height: 100%;
}

.pf-product-frame::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, #151515);
}

.pf-demo-topbar {
  min-height: 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--landing-rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--landing-faint);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
}

.pf-demo-input {
  min-height: 148px;
  margin-top: 22px;
  border: 1px solid var(--landing-rule-strong);
  border-radius: 8px;
  padding: 20px;
  color: rgba(250, 250, 250, 0.86);
  background: #1b1b1b;
  font-size: 0.95rem;
  line-height: 1.55;
}

.pf-demo-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--landing-faint);
  font-size: 0.78rem;
}

.pf-demo-meta strong {
  color: var(--landing-text);
  font-weight: 500;
}

.pf-suggestion {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--landing-rule);
  border-radius: 7px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--landing-faint);
}

.pf-suggestion.is-selected {
  border-color: rgba(21, 88, 255, 0.55);
  color: var(--landing-text);
  background: rgba(21, 88, 255, 0.08);
}

.pf-checkbox {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: var(--landing-text);
  background: var(--landing-accent);
  font-size: 0.7rem;
}

.pf-suggestion:not(.is-selected) .pf-checkbox {
  background: transparent;
}

.pf-suggestion > span:last-child {
  display: grid;
  gap: 4px;
}

.pf-suggestion strong {
  font-size: 0.83rem;
  font-weight: 500;
}

.pf-suggestion small {
  color: var(--landing-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.pf-result-tabs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pf-result-tabs b {
  color: var(--landing-text);
  font-weight: 500;
}

.pf-result-block {
  margin-top: 18px;
}

.pf-result-block > span {
  color: var(--landing-accent);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.pf-result-block p {
  margin: 7px 0 0;
  color: rgba(250, 250, 250, 0.82);
  font-size: 0.84rem;
  line-height: 1.45;
}

.pf-result-actions {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--landing-rule);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.76rem;
}

.pf-result-actions span {
  color: var(--landing-muted);
}

.pf-result-actions strong {
  border-radius: 6px;
  padding: 9px 12px;
  color: #0a0a0a;
  background: #fafafa;
  font-weight: 600;
}

.pf-product-copy {
  padding-top: 28px;
}

.pf-step-number {
  color: var(--landing-accent);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.pf-product-copy h3 {
  margin: 10px 0 0;
  color: var(--landing-text);
  font-size: 1.25rem;
  font-weight: 500;
}

.pf-product-copy p {
  max-width: 360px;
  margin: 10px 0 0;
  color: var(--landing-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.pf-pricing-section {
  padding-block: 136px;
}

.pf-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 96px;
}

.pf-pricing-details {
  border-top: 1px solid var(--landing-rule-strong);
  padding-top: 30px;
}

.pf-price {
  margin: 0;
  color: var(--landing-text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(3.2rem, 5vw, 5rem);
  letter-spacing: -0.08em;
  line-height: 1;
}

.pf-price span {
  display: block;
  margin-top: 12px;
  color: var(--landing-muted);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.pf-pricing-details > p:not(.pf-price) {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--landing-muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.pf-pricing-details ul {
  margin: 30px 0 34px;
  padding: 0;
  border-top: 1px solid var(--landing-rule);
  list-style: none;
}

.pf-pricing-details li {
  padding: 14px 0;
  border-bottom: 1px solid var(--landing-rule);
  color: rgba(250, 250, 250, 0.82);
  font-size: 0.96rem;
  line-height: 1.45;
}

.pf-final-cta {
  position: relative;
  min-height: 780px;
  padding: 120px 24px;
  border-top: 1px solid var(--landing-rule);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.pf-final-grid {
  inset: 0;
  height: auto;
  opacity: 0.42;
  -webkit-mask-image: radial-gradient(circle at center, transparent 0 34%, #000 72%);
  mask-image: radial-gradient(circle at center, transparent 0 34%, #000 72%);
}

.pf-final-content {
  width: min(100%, 1100px);
  text-align: center;
}

.pf-final-content h2 {
  margin: 0;
  color: var(--landing-text);
  font-size: clamp(3.6rem, 6vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.pf-final-content h2 span {
  display: block;
}

.pf-final-content p {
  max-width: 720px;
  margin: 34px auto 0;
  color: var(--landing-muted);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.5;
}

.pf-site-footer {
  position: relative;
  min-height: 680px;
  border-top: 1px solid var(--landing-rule);
  background: var(--landing-canvas);
}

.pf-footer-inner {
  width: min(100%, var(--landing-container));
  min-height: 680px;
  margin-inline: auto;
  padding: 88px clamp(24px, 5vw, 76px) 36px;
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-template-rows: auto 1fr auto auto;
  column-gap: 54px;
}

.pf-footer-brand .pf-brand-button {
  min-width: 60px;
  min-height: 60px;
  border: 0;
  padding: 6px;
  background: transparent;
}

.pf-footer-brand .pf-brand-button img {
  width: 48px;
  height: 48px;
}

.pf-footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 36px;
}

.pf-footer-columns section {
  min-width: 0;
}

.pf-footer-columns h2 {
  margin: 0 0 24px;
  color: var(--landing-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pf-footer-columns a,
.pf-footer-columns button {
  width: fit-content;
  min-height: 34px;
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  color: rgba(250, 250, 250, 0.9);
  background: transparent;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.25;
  text-align: left;
}

.pf-footer-columns a:hover,
.pf-footer-columns button:hover {
  color: var(--landing-accent-hover);
}

.pf-footer-notes {
  grid-column: 2;
  align-self: end;
  padding-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.pf-footer-notes p {
  margin: 0;
  color: var(--landing-faint);
  font-size: 0.76rem;
  line-height: 1.5;
}

.pf-footer-notes strong {
  color: var(--landing-muted);
  font-weight: 500;
}

.pf-footer-bottom {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--landing-rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--landing-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pf-motion-ready .pf-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 480ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pf-motion-ready .pf-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .pf-brand-button > span {
    display: none;
  }

  .pf-site-nav {
    padding-inline: 18px;
  }

  .pf-hero {
    padding-top: 132px;
  }

  .pf-hero-copy h1 {
    font-size: clamp(3.7rem, 7.2vw, 5.9rem);
  }

  .pf-proof-grid {
    gap: 30px;
  }

  .pf-product-frame {
    height: 300px;
    padding: 20px;
  }

  .pf-footer-inner {
    grid-template-columns: 70px 1fr;
    column-gap: 32px;
  }

  .pf-footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 52px;
  }
}

@media (max-width: 900px) {
  .pf-desktop-nav,
  .pf-nav-login {
    display: none;
  }

  .pf-menu-button {
    display: inline-flex;
  }

  .pf-hero {
    min-height: 760px;
    padding-top: 112px;
  }

  .pf-reference-row {
    margin-bottom: 46px;
  }

  .pf-hero-copy h1 {
    font-size: clamp(3.15rem, 7.2vw, 4.2rem);
    line-height: 0.94;
  }

  .pf-hero-line {
    flex-wrap: wrap;
    gap: 0.08em 0.18em;
  }

  .pf-proof-grid,
  .pf-product-grid {
    grid-template-columns: 1fr;
  }

  .pf-proof-grid {
    margin-top: 88px;
  }

  .pf-proof-item {
    padding-bottom: 36px;
    border-bottom: 1px solid var(--landing-rule);
  }

  .pf-proof-item p {
    max-width: 620px;
  }

  .pf-product-grid {
    gap: 72px;
  }

  .pf-product-frame {
    height: 340px;
  }

  .pf-pricing-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .pf-pricing-layout {
    gap: 60px;
  }

  .pf-footer-inner {
    grid-template-columns: 1fr;
  }

  .pf-footer-columns,
  .pf-footer-notes {
    grid-column: 1;
  }

  .pf-footer-brand {
    margin-bottom: 54px;
  }
}

@media (max-width: 720px) {
  .pf-site-nav {
    min-height: 76px;
    padding: 14px 16px;
  }

  .pf-nav-actions > .pf-button {
    min-height: 46px;
    padding-inline: 13px;
    font-size: 0.82rem;
  }

  .pf-hero {
    min-height: 720px;
    padding: 96px 18px 72px;
  }

  .pf-reference-row {
    margin-bottom: 40px;
    flex-direction: column;
    gap: 10px;
  }

  .pf-hero-copy h1 {
    font-size: clamp(2.65rem, 10.8vw, 4rem);
    letter-spacing: -0.05em;
    line-height: 1;
  }

  .pf-hero-line {
    flex-wrap: wrap;
  }

  .pf-hero-copy > p {
    margin-top: 36px;
    font-size: 1.05rem;
  }

  .pf-action-row {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .pf-action-row .pf-button {
    width: 100%;
  }

  .pf-section-inner {
    padding-inline: 18px;
  }

  .pf-proof-section {
    min-height: auto;
    padding-block: 90px 80px;
  }

  .pf-proof-statement {
    font-size: clamp(2.65rem, 12vw, 3.8rem);
  }

  .pf-proof-index {
    font-size: 3.1rem;
  }

  .pf-text-link {
    margin-top: 64px;
  }

  .pf-workflow-section {
    padding-block: 88px 96px;
  }

  .pf-product-grid {
    margin-top: 54px;
    padding-bottom: 84px;
  }

  .pf-product-frame {
    height: 318px;
  }

  .pf-pricing-section {
    padding-block: 94px;
  }

  .pf-pricing-layout {
    gap: 48px;
  }

  .pf-pricing-details {
    min-width: 0;
  }

  .pf-final-cta {
    min-height: 680px;
    padding-inline: 18px;
  }

  .pf-final-content h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .pf-footer-inner {
    padding: 72px 18px 28px;
  }

  .pf-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 24px;
  }

  .pf-footer-notes {
    grid-template-columns: 1fr;
  }

  .pf-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .pf-site-nav {
    padding-inline: 14px;
  }

  .pf-brand-button {
    min-width: 48px;
    min-height: 48px;
  }

  .pf-brand-button img {
    width: 36px;
    height: 36px;
  }

  .pf-nav-actions > .pf-button {
    padding-inline: 11px;
    font-size: 0.78rem;
  }

  .pf-menu-button {
    width: 46px;
    min-height: 46px;
  }

  .pf-mobile-menu {
    right: 14px;
    left: 14px;
  }

  .pf-hero {
    padding-inline: 18px;
  }

  .pf-hero-copy h1 {
    font-size: clamp(2.55rem, 10.7vw, 3.2rem);
  }

}

@media (max-width: 390px) {
  .pf-nav-actions > .pf-button {
    display: none;
  }

  .pf-hero {
    padding-inline: 16px;
  }

  .pf-section-inner {
    padding-inline: 16px;
  }

  .pf-hero-copy h1 {
    font-size: clamp(2.45rem, 10.4vw, 3rem);
  }

  .pf-decrypted-word-shell {
    flex-basis: 100%;
    min-width: 0;
    margin-top: 0.12em;
    text-align: center;
  }

  .pf-product-frame {
    height: 302px;
    padding: 17px;
  }

  .pf-footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 360px) {
  .pf-hero-copy h1 {
    font-size: 2.35rem;
  }

  .pf-proof-statement {
    font-size: 2.75rem;
  }

  .pf-product-frame {
    height: 294px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pf-landing *,
  .pf-landing *::before,
  .pf-landing *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .pf-motion-ready .pf-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .pf-landing {
    border-color: CanvasText;
  }

  .pf-button,
  .pf-brand-button,
  .pf-desktop-nav a,
  .pf-desktop-nav button,
  .pf-nav-login,
  .pf-menu-button,
  .pf-product-frame {
    border: 1px solid CanvasText;
  }
}
