:root {
  color-scheme: light;
  --ink: #201927;
  --text: #4e4858;
  --muted: #766f80;
  --paper: #f8f4fb;
  --surface: rgba(255, 255, 255, .78);
  --line: rgba(77, 58, 94, .15);
  --purple: #7a45a0;
  --purple-dark: #573071;
  --purple-soft: #efe5f6;
  --shadow: 0 22px 70px rgba(55, 38, 72, .12);
  --glow-x: 50%;
  --glow-y: 10%;
  --scroll: 0;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.wp-toolbar .topbar {
  top: 32px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(218, 201, 232, .9), transparent 31rem),
    radial-gradient(circle at 92% 18%, rgba(238, 228, 246, .72), transparent 24rem),
    linear-gradient(180deg, #fbf8fd 0%, var(--paper) 48%, #f6f1f8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: -18vmax;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(122, 69, 160, .16), transparent 18rem),
    conic-gradient(from calc(var(--scroll) * 1deg) at 50% 42%, transparent, rgba(122, 69, 160, .06), transparent 28%, rgba(255, 255, 255, .14), transparent 62%);
  filter: blur(12px);
  opacity: .9;
  transform: translate3d(0, calc(var(--scroll) * -8px), 0);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(122, 69, 160, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 69, 160, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .48), transparent 62%);
  opacity: .32;
}

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

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 10px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 253, .82);
  backdrop-filter: blur(18px);
  transition: min-height .24s ease, background .24s ease, box-shadow .24s ease;
}

.topbar.is-scrolled {
  min-height: 76px;
  background: rgba(251, 248, 253, .92);
  box-shadow: 0 14px 42px rgba(55, 38, 72, .08);
}

.brand img {
  width: min(254px, 52vw);
  transition: transform .24s ease;
}

.brand:hover img {
  transform: translateY(-1px) scale(1.015);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.nav ul,
.footer ul {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav li,
.footer li {
  display: contents;
}

.nav a:hover,
.nav a[aria-current="page"],
.nav .current-menu-item > a,
.nav .current_page_item > a {
  color: var(--ink);
}

.portal-link {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--ink) !important;
  box-shadow: 0 10px 28px rgba(55, 38, 72, .08);
}

.nav a {
  position: relative;
}

.nav a:not(.portal-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after,
.nav .current-menu-item > a::after,
.nav .current_page_item > a::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .8);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero-shell,
.section,
.closer,
.page-hero,
.legal {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(58px, 8vw, 104px) 0 clamp(46px, 7vw, 86px);
}

.hero-copy {
  transform: translate3d(0, calc(var(--scroll) * -14px), 0);
}

.kicker {
  margin: 0 0 12px;
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.3vw, 86px);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.05;
}

.hero-copy p,
.page-hero p:not(.kicker),
.section-title p:not(.kicker),
.note,
.legal p {
  color: var(--text);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.button:focus-visible,
.nav a:focus-visible,
.support-grid a:focus-visible {
  outline: 3px solid rgba(122, 69, 160, .28);
  outline-offset: 4px;
}

.button.primary {
  color: #fff;
  background: linear-gradient(180deg, #8c59ae, var(--purple));
  box-shadow: 0 16px 34px rgba(122, 69, 160, .2);
}

.button.primary:hover {
  background: var(--purple-dark);
  box-shadow: 0 20px 44px rgba(122, 69, 160, .26);
}

.button.quiet {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
}

.operator-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .64);
  box-shadow: var(--shadow);
}

.operator-panel::before,
.pricing-board::before,
.legal::before,
.closer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .55) 44%, transparent 58%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity .24s ease, transform .72s ease;
}

.operator-panel:hover::before,
.pricing-board:hover::before,
.legal:hover::before,
.closer:hover::before {
  opacity: .72;
  transform: translateX(42%);
}

.operator-panel div {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.operator-panel .service-pulse {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 18px 20px 0;
  border-bottom: 0;
}

.service-pulse span {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(122, 69, 160, .14), rgba(122, 69, 160, .72), rgba(122, 69, 160, .14));
  transform-origin: left center;
  animation: soft-signal 3.8s ease-in-out infinite;
}

.service-pulse span:nth-child(2) {
  animation-delay: .35s;
}

.service-pulse span:nth-child(3) {
  animation-delay: .7s;
}

.service-pulse span:nth-child(4) {
  animation-delay: 1.05s;
}

.operator-panel div:last-child {
  border-bottom: 0;
}

.operator-panel div:not(.service-pulse) > span {
  display: block;
  margin-bottom: 8px;
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.operator-panel strong {
  display: block;
  font-size: 21px;
  line-height: 1.25;
}

.section {
  padding: clamp(46px, 7vw, 82px) 0;
  border-top: 1px solid var(--line);
}

.section-title {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-title.compact {
  max-width: 680px;
}

.pricing-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.pricing-board::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(122, 69, 160, .7), transparent);
  opacity: .54;
}

.price-plan {
  position: relative;
  display: grid;
  gap: 24px;
  padding: clamp(26px, 3.5vw, 38px);
  border-right: 1px solid var(--line);
  transition: background .2s ease, transform .2s ease;
}

.price-plan:last-child {
  border-right: 0;
}

.price-plan.preferred {
  background: linear-gradient(180deg, rgba(244, 236, 250, .95), rgba(255, 255, 255, .42));
}

.price-plan:hover {
  background: rgba(255, 255, 255, .58);
}

.price-plan header p {
  margin: 10px 0 0;
}

.price-plan strong {
  font-size: 56px;
  line-height: 1;
}

.price-plan header span {
  color: var(--muted);
  font-weight: 900;
}

.badge {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-plan dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.price-plan dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.price-plan dt {
  color: var(--muted);
}

.price-plan dd {
  margin: 0;
  font-weight: 900;
}

.note {
  max-width: 820px;
  margin: 20px 0 0;
}

.signal-band {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-band p {
  flex: 1 1 320px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
}

.signal-band span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
}

.service-lines {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-lines.wide {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.service-lines div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.service-lines strong {
  font-size: 22px;
}

.service-lines span {
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
}

.feature-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.feature-cloud span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 850;
  transition: background .18s ease, border-color .18s ease;
}

.feature-cloud span:hover {
  border-color: rgba(122, 69, 160, .26);
  background: rgba(255, 255, 255, .94);
}

.metric-strip,
.support-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.metric-strip div,
.support-grid a {
  padding: 26px;
  border-right: 1px solid var(--line);
  transition: background .18s ease;
}

.support-grid a:hover,
.metric-strip div:hover {
  background: rgba(255, 255, 255, .58);
}

.metric-strip div:last-child,
.support-grid a:last-child {
  border-right: 0;
}

.metric-strip strong {
  display: block;
  font-size: 34px;
}

.metric-strip span,
.support-grid span {
  color: var(--muted);
  font-weight: 850;
}

.support-grid {
  grid-template-columns: repeat(3, 1fr);
}

.support-grid a {
  display: grid;
  gap: 20px;
}

.support-grid strong {
  font-size: 28px;
  line-height: 1.15;
}

@keyframes soft-signal {
  0%,
  100% {
    opacity: .34;
    transform: scaleX(.72);
  }

  45%,
  55% {
    opacity: .9;
    transform: scaleX(1);
  }
}

.page-hero {
  padding: clamp(58px, 8vw, 104px) 0 clamp(38px, 6vw, 70px);
}

.page-hero.narrow,
.legal {
  max-width: 860px;
}

.legal {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(48px, 8vw, 90px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.legal a {
  color: var(--purple-dark);
  font-weight: 900;
}

.legal > *:last-child {
  margin-bottom: 0;
}

.legal h2,
.legal h3 {
  margin-top: 1.5em;
}

.legal ul,
.legal ol {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.closer {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(48px, 8vw, 90px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.closer h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.footer {
  display: grid;
  gap: 15px;
  justify-items: center;
  padding: 32px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  font-weight: 850;
}

.footer p {
  margin: 0;
}

@media (max-width: 920px) {
  html.wp-toolbar .topbar {
    top: 46px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 76px 14px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 12px 8px;
  }

  .hero-shell,
  .pricing-board,
  .split,
  .metric-strip,
  .support-grid,
  .closer {
    grid-template-columns: 1fr;
  }

  .signal-band {
    align-items: flex-start;
  }

  .price-plan,
  .price-plan:last-child,
  .metric-strip div,
  .metric-strip div:last-child,
  .support-grid a,
  .support-grid a:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-plan:last-child,
  .metric-strip div:last-child,
  .support-grid a:last-child {
    border-bottom: 0;
  }

  .closer {
    display: grid;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 76px;
    padding: 8px 14px;
  }

  .brand img {
    width: 190px;
  }

  .hero-shell,
  .section,
  .closer,
  .page-hero,
  .legal,
  .service-lines.wide,
  .signal-band {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .actions,
  .button {
    width: 100%;
  }

  .operator-panel,
  .pricing-board,
  .metric-strip,
  .support-grid,
  .closer,
  .legal {
    border-radius: 22px;
  }

  .service-lines div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .hero-copy > *,
  .motion-ready .operator-panel {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: translateY(12px);
    transition: transform .7s cubic-bezier(.2, .8, .2, 1);
  }

  .motion-ready .hero-copy > *:nth-child(2) {
    transition-delay: .08s;
  }

  .motion-ready .hero-copy > *:nth-child(3) {
    transition-delay: .16s;
  }

  .motion-ready .hero-copy > *:nth-child(4) {
    transition-delay: .24s;
  }

  .motion-ready .operator-panel {
    transition-delay: .18s;
  }

  .motion-ready .hero-copy.is-visible > *,
  .motion-ready .operator-panel.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .motion-ready .reveal.is-visible {
    transform: translateY(0);
  }

  .motion-ready .price-plan.reveal:nth-child(2),
  .motion-ready .service-lines .reveal:nth-child(2),
  .motion-ready .feature-cloud .reveal:nth-child(4n + 2) {
    transition-delay: .08s;
  }

  .motion-ready .price-plan.reveal:nth-child(3),
  .motion-ready .service-lines .reveal:nth-child(3),
  .motion-ready .feature-cloud .reveal:nth-child(4n + 3) {
    transition-delay: .16s;
  }

  .motion-ready .feature-cloud .reveal:nth-child(4n) {
    transition-delay: .24s;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@-moz-document url-prefix() {
  body::before {
    display: none;
  }

  body::after {
    opacity: .18;
    mask-image: none;
  }

  .topbar {
    backdrop-filter: none;
    background: rgba(250, 249, 252, .96);
  }

  .aurora,
  .network-visual,
  .support-visual {
    filter: none;
  }
}
