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

.pf-synex-nav-shell,
.pf-synex-nav-shell *,
.pf-site-footer,
.pf-site-footer * {
  box-sizing: border-box;
}

.pf-synex-nav-shell {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
  padding: 22px clamp(12px, 2vw, 40px) 0;
  font-family: Inter, Arial, sans-serif;
  color: #0b1020;
  pointer-events: none;
}

.pf-synex-nav {
  position: relative;
  width: 100%;
  max-width: 1860px;
  margin: 0 auto;
  pointer-events: auto;
}

.pf-synex-nav-inner {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 0 18px 0 12px;
  border: 1px solid transparent;
  border-radius: 24px;
  transition: background 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.pf-synex-nav-shell.is-scrolled .pf-synex-nav-inner,
.pf-synex-nav-shell.is-open .pf-synex-nav-inner {
  border-color: rgba(12, 18, 34, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 70px rgba(21, 25, 43, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pf-synex-logo {
  position: relative;
  display: flex;
  align-items: center;
  width: 306px;
  min-width: 306px;
  height: 80px;
  transform: translateX(-22px);
}

.pf-synex-logo img {
  position: absolute;
  left: 0;
  width: 416px;
  height: auto;
  display: block;
}

.pf-synex-logo-light { display: none; }
.pf-synex-logo-dark { display: block; }

.pf-synex-links,
.pf-synex-actions {
  display: flex;
  align-items: center;
}

.pf-synex-links {
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.pf-synex-actions { gap: 10px; }

.pf-synex-link,
.pf-synex-pill,
.pf-synex-menu-btn,
.pf-synex-mega-link {
  font: 700 15px/1 Inter, Arial, sans-serif;
  letter-spacing: 0;
  text-decoration: none;
}

.pf-synex-link {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  color: currentColor;
  border-radius: 999px;
  opacity: 0.92;
  transition: opacity 220ms ease, background 220ms ease;
}

.pf-synex-link:hover {
  opacity: 1;
  background: rgba(14, 24, 48, 0.06);
}

.pf-synex-link span,
.pf-synex-pill span,
.pf-synex-menu-text span {
  display: block;
  white-space: nowrap;
}

.pf-synex-pill,
.pf-synex-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  color: #0b1020;
  border: 1px solid rgba(11, 16, 32, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 14px 30px rgba(11, 16, 32, 0.08);
  transition: transform 220ms ease, background 220ms ease;
}

.pf-synex-pill { min-width: 96px; padding: 0 20px; }
.pf-synex-menu-btn { gap: 12px; min-width: 124px; padding: 0 18px; cursor: pointer; }
.pf-synex-pill:hover,
.pf-synex-menu-btn:hover { transform: translateY(-1px); }

.pf-synex-menu-icon {
  position: relative;
  width: 24px;
  height: 14px;
}

.pf-synex-menu-icon::before,
.pf-synex-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 320ms ease, top 320ms ease;
}

.pf-synex-menu-icon::before { top: 2px; }
.pf-synex-menu-icon::after { top: 10px; }
.pf-synex-nav-shell.is-open .pf-synex-menu-icon::before { top: 6px; transform: rotate(45deg); }
.pf-synex-nav-shell.is-open .pf-synex-menu-icon::after { top: 6px; transform: rotate(-45deg); }

.pf-synex-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-14px) scale(.985);
  transform-origin: top center;
  transition: opacity 260ms ease, visibility 260ms ease, transform 360ms ease;
}

.pf-synex-nav-shell.is-open .pf-synex-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.pf-synex-mega-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr .9fr;
  gap: 16px;
  padding: 16px;
  color: #0b1020;
  border: 1px solid rgba(11, 16, 32, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(13, 18, 35, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.pf-synex-feature-card {
  min-height: 260px;
  padding: 24px;
  color: #fff;
  text-decoration: none;
  border-radius: 22px;
  background: linear-gradient(135deg, #3154ff, #080c1a);
}

.pf-synex-feature-label,
.pf-synex-mega-label {
  margin-bottom: 14px;
  font: 800 11px/1 Inter, Arial, sans-serif;
  text-transform: uppercase;
}

.pf-synex-feature-title { margin: 48px 0 14px; color: #fff; font: 700 30px/1.05 Inter, Arial, sans-serif; }
.pf-synex-feature-copy { margin: 0; color: rgba(255,255,255,.78); font: 500 14px/1.5 Inter, Arial, sans-serif; }
.pf-synex-mega-col { padding: 18px 8px; }
.pf-synex-mega-label { color: #7d8495; }

.pf-synex-mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 10px;
  color: #0b1020;
  border-bottom: 1px solid rgba(11,16,32,.08);
}

.pf-synex-mega-link small { display: block; margin-top: 5px; color: #7d8495; font-size: 11px; font-weight: 500; }
.pf-synex-mega-arrow { font-size: 18px; }
.pf-synex-backdrop { position: fixed; inset: 0; z-index: 9998; background: rgba(5,8,18,.34); opacity: 0; visibility: hidden; transition: 260ms ease; }
.pf-synex-nav-shell.is-open + .pf-synex-backdrop { opacity: 1; visibility: visible; }

.pf-progressive-blur {
  position: fixed;
  inset: auto 0 0;
  z-index: 9997;
  width: 100%;
  height: 96px;
  overflow: clip;
  pointer-events: none;
  transform: rotate(180deg);
}
.pf-progressive-blur-panel { position: absolute; inset: 0; }
.pf-progressive-blur .pf-blur-1 { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); mask: linear-gradient(#000 0 12%, transparent 32%); -webkit-mask: linear-gradient(#000 0 12%, transparent 32%); }
.pf-progressive-blur .pf-blur-2 { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); mask: linear-gradient(transparent 4%, #000 18% 30%, transparent 48%); -webkit-mask: linear-gradient(transparent 4%, #000 18% 30%, transparent 48%); }
.pf-progressive-blur .pf-blur-3 { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); mask: linear-gradient(transparent 18%, #000 34% 46%, transparent 64%); -webkit-mask: linear-gradient(transparent 18%, #000 34% 46%, transparent 64%); }
.pf-progressive-blur .pf-blur-4 { backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); mask: linear-gradient(transparent 34%, #000 50% 62%, transparent 80%); -webkit-mask: linear-gradient(transparent 34%, #000 50% 62%, transparent 80%); }
.pf-progressive-blur .pf-blur-5 { backdrop-filter: blur(1px); -webkit-backdrop-filter: blur(1px); mask: linear-gradient(transparent 50%, #000 66% 78%, transparent 96%); -webkit-mask: linear-gradient(transparent 50%, #000 66% 78%, transparent 96%); }
.pf-progressive-blur .pf-blur-6 { backdrop-filter: blur(.5px); -webkit-backdrop-filter: blur(.5px); mask: linear-gradient(transparent 66%, #000 84% 94%, transparent 100%); -webkit-mask: linear-gradient(transparent 66%, #000 84% 94%, transparent 100%); }

.pf-scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: #0b1020;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(8, 12, 24, .22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.pf-scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.pf-scroll-top svg { width: 18px; height: 18px; }

.pf-site-footer {
  margin-top: 40px;
  padding: 12px;
  color: #000;
  background: #f7f8fa;
  font-family: Inter, Arial, sans-serif;
}

/* The creator CTA has no phone media, so preserve breathing room before the footer. */
.cta-section {
  padding-bottom: 120px !important;
}

.pf-footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 112px;
  width: 100%;
  padding: 64px 32px 28px;
  overflow-x: clip;
  overflow-y: visible;
  background: #fff;
  border-radius: 24px;
}

.pf-footer-component { display: flex; flex-direction: column; gap: 38px; width: 100%; }
.pf-footer-main { display: grid; grid-template-columns: 1fr .5fr; gap: 24px; }
.pf-footer-group { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.pf-footer-label { font-size: 14px; font-weight: 700; }
.pf-footer-links { display: flex; flex-direction: column; gap: 4px; }
.pf-footer-link { color: #474747; font-size: 13px; font-weight: 500; line-height: 1.45; text-decoration: none; }
.pf-footer-link:hover { color: #000; }
.pf-footer-secondary { display: flex; flex-direction: column; align-items: flex-end; gap: 24px; }
.pf-footer-social { display: flex; justify-content: flex-end; gap: 16px; }
.pf-footer-social a { display: flex; align-items: center; justify-content: center; }
.pf-footer-social img { display: block; width: 24px; height: 24px; object-fit: contain; }
.pf-footer-agency { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.pf-footer-agency-label { color: #111; font-size: 13px; line-height: 1.4; }
.pf-footer-agency-button { display: flex; align-items: center; justify-content: center; min-width: 145px; min-height: 54px; padding: 0 24px; color: #fff; background: linear-gradient(#0d1530, #080c1a); border-radius: 16px; box-shadow: 0 22px 33px #00000040, inset 0 1px #ffffff1f; font-size: 13px; font-weight: 600; line-height: 1; text-decoration: none; }
.pf-footer-trusted { display: flex; flex-direction: column; gap: 12px; }
.pf-footer-trusted p { margin: 0; color: rgba(15,15,15,.42); font-size: 12px; }
.pf-footer-logos { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.pf-footer-logos img { width: 36px; height: 36px; object-fit: contain; filter: grayscale(1); opacity: .55; }
.pf-footer-logos img:last-child { border-radius: 50%; }
.pf-footer-legal { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.pf-footer-terms { display: flex; flex-wrap: wrap; gap: 28px; }
.pf-footer-terms a,
.pf-footer-copyright { color: #6b6b6b; font-size: 12px; font-weight: 500; text-decoration: none; }
.pf-footer-copyright { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.pf-footer-divider { width: 1px; height: 18px; background: #b6b6b6; }
.pf-footer-brand { margin-right: auto; color: #000; font: 500 20vw/1 'Plus Jakarta Sans', Inter, Arial, sans-serif; letter-spacing: -.05em; white-space: nowrap; text-shadow: none; }
.pf-footer-mark { margin-left: .015em; font-size: .5em; font-weight: 600; vertical-align: super; }

@media (max-width: 1100px) {
  .pf-synex-links { display: none; }
  .pf-synex-logo { margin-right: auto; }
}

@media (max-width: 767px) {
  .pf-synex-nav-shell { padding: 12px 12px 0; }
  .pf-synex-nav-inner { min-height: 62px; padding: 0 10px 0 8px; border-radius: 18px; }
  .pf-synex-logo { width: 197px; min-width: 197px; height: 46px; transform: translateX(-22px); }
  .pf-synex-logo img { width: 192px; }
  .pf-synex-actions { position: absolute; right: 10px; top: 8px; z-index: 5; }
  .pf-synex-pill { display: none; }
  .pf-synex-menu-btn { width: 52px; min-width: 52px; height: 46px; padding: 0; border-radius: 14px; }
  .pf-synex-menu-text { display: none; }
  .pf-synex-mega { top: calc(100% + 8px); }
  .pf-synex-mega-inner { grid-template-columns: 1fr; max-height: calc(100vh - 100px); overflow-y: auto; border-radius: 22px; }
  .pf-synex-feature-card { min-height: 180px; }
  .pf-synex-feature-title { margin-top: 24px; font-size: 26px; }

  .cta-section { padding-bottom: 84px !important; }
  .pf-site-footer { padding: 8px; }
  .pf-footer-wrap { gap: 46px; padding: 40px 20px 20px; border-radius: 18px; }
  .pf-footer-main { display: flex; flex-direction: column; gap: 28px; }
  .pf-footer-secondary { align-items: flex-start; }
  .pf-footer-social { justify-content: flex-start; }
  .pf-footer-agency { width: 100%; align-items: flex-start; }
  .pf-footer-agency-button { width: 100%; }
  .pf-footer-logos { flex-wrap: nowrap; gap: 10px; }
  .pf-footer-logos img { width: 22px; height: 22px; }
  .pf-footer-legal { flex-direction: column; align-items: flex-start; gap: 14px; }
  .pf-footer-terms { gap: 14px 18px; }
  .pf-footer-brand {
    max-width: calc(100% + 12px);
    font-size: 20vw;
    transform: translateX(-22px);
  }
}
