@font-face {
  font-family: Sora;
  src: url("../fonts/Sora-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --space: #0b0f1a;
  --space-2: #141927;
  --space-3: #202638;
  --ink: #141927;
  --muted: #657086;
  --quiet: #929bae;
  --line: #dde1ea;
  --canvas: #f7f8fc;
  --white: #fff;
  --plasma: #5a3ff2;
  --plasma-light: #927dff;
  --ion: #20d7ce;
  --flare: #f83b68;
  --green: #42d19a;
  --amber: #ffc857;
  --gradient: linear-gradient(118deg, #927dff 0%, #5a3ff2 48%, #20d7ce 100%);
  --display: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  --body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  --container: 1280px;
  --shadow:
    0 24px 70px rgba(11, 15, 26, 0.13), 0 3px 14px rgba(11, 15, 26, 0.05);
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--space);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
::selection {
  background: rgba(116, 91, 255, 0.3);
}
:focus-visible {
  outline: 3px solid var(--ion);
  outline-offset: 4px;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--space);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.15s;
}
.skip-link:focus {
  transform: none;
}
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 132px 0;
}
.scroll-progress {
  position: fixed;
  z-index: 1200;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 96px;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition:
    height 0.25s var(--ease),
    background-color 0.25s,
    border-color 0.25s,
    backdrop-filter 0.25s;
}
.site-header.scrolled {
  height: 76px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(11, 15, 26, 0.79);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  position: relative;
  z-index: 3;
  width: 185px;
  display: flex;
}
.brand img {
  width: 100%;
  height: auto;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #c3c9d6;
  font-size: 14px;
  font-weight: 650;
}
.primary-nav > a:not(.nav-button) {
  position: relative;
  padding: 12px 0;
  transition: color 0.16s;
}
.primary-nav > a:not(.nav-button)::after {
  content: "";
  position: absolute;
  inset: auto 0 5px;
  height: 1px;
  background: var(--ion);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s var(--ease);
}
.primary-nav > a:not(.nav-button):hover {
  color: #fff;
}
.primary-nav > a:not(.nav-button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(182, 168, 255, 0.3);
  border-radius: 11px;
  background: rgba(116, 91, 255, 0.11);
  color: #fff;
  transition: 0.18s var(--ease);
}
.nav-button:hover {
  border-color: rgba(182, 168, 255, 0.55);
  background: rgba(116, 91, 255, 0.22);
  transform: translateY(-1px);
}
.nav-button span {
  color: var(--ion);
}
.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
.menu-toggle i {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: 0.18s;
}
.menu-toggle i:nth-of-type(1) {
  top: 14px;
}
.menu-toggle i:nth-of-type(2) {
  top: 21px;
}
.menu-toggle i:nth-of-type(3) {
  top: 28px;
}
.menu-toggle[aria-expanded="true"] i:nth-of-type(1) {
  top: 21px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] i:nth-of-type(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] i:nth-of-type(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Shared */
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #482dce;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow > i,
.kicker > i {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--plasma);
  box-shadow: 0 0 0 6px rgba(116, 91, 255, 0.12);
}
.kicker.light {
  color: #b6a8ff;
}
.kicker.light > i {
  background: var(--ion);
  box-shadow: 0 0 0 6px rgba(32, 215, 206, 0.1);
}
.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  transition: 0.18s var(--ease);
}
.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s;
}
.button:hover svg {
  transform: translateX(3px);
}
.button-primary {
  background: var(--plasma);
  color: #fff;
  box-shadow: 0 12px 32px rgba(90, 63, 242, 0.28);
}
.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 15%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 85%
  );
  transform: translateX(-140%);
  transition: transform 0.55s var(--ease);
}
.button-primary:hover {
  background: #482dce;
  box-shadow: 0 16px 38px rgba(90, 63, 242, 0.38);
  transform: translateY(-2px);
}
.button-primary:hover::before {
  transform: translateX(140%);
}
.button-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #dde1ea;
}
.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.mouse {
  position: relative;
  width: 18px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 9px;
}
.mouse i {
  position: absolute;
  top: 5px;
  left: 7px;
  width: 2px;
  height: 5px;
  border-radius: 2px;
  background: var(--ion);
  animation: scrollCue 1.6s ease-in-out infinite;
}

/* Hero */
.hero {
  position: relative;
  min-height: 995px;
  overflow: hidden;
  padding: 166px 0 38px;
  background:
    radial-gradient(
      circle at 72% 28%,
      rgba(90, 63, 242, 0.17),
      transparent 31%
    ),
    radial-gradient(
      circle at 17% 75%,
      rgba(248, 59, 104, 0.07),
      transparent 30%
    ),
    var(--space);
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(transparent, rgba(11, 15, 26, 0.75));
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(#000, transparent 88%);
  -webkit-mask-image: linear-gradient(#000, transparent 88%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  opacity: 0.18;
  animation: glowDrift 9s ease-in-out infinite alternate;
}
.hero-glow-one {
  top: 150px;
  right: 7%;
  width: 380px;
  height: 380px;
  background: var(--plasma);
}
.hero-glow-two {
  bottom: 20px;
  left: 22%;
  width: 270px;
  height: 270px;
  background: var(--ion);
  animation-duration: 12s;
  animation-direction: alternate-reverse;
}
.hero-beams {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  pointer-events: none;
}
.hero-beams path {
  fill: none;
  stroke: url(#beam);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.hero-beams path:nth-of-type(2) {
  opacity: 0.32;
  stroke-dasharray: 4 13;
}
.hero-beams .beam-pulse {
  stroke: var(--ion);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1 1500;
  animation: beamTravel 7s var(--ease) infinite;
  filter: drop-shadow(0 0 6px var(--ion));
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(430px, 0.84fr) minmax(620px, 1.16fr);
  gap: 65px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 42px;
}
.hero .eyebrow {
  margin-bottom: 27px;
  color: #b6a8ff;
}
.hero .eyebrow > i {
  background: var(--flare);
  box-shadow:
    0 0 0 6px rgba(248, 59, 104, 0.12),
    0 0 20px rgba(248, 59, 104, 0.5);
}
.hero .eyebrow > i::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(248, 59, 104, 0.5);
  border-radius: 50%;
  animation: signalPulse 2.4s ease-out infinite;
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.75rem, 5.25vw, 5.5rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.02;
}
.hero h1 span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-copy > p {
  max-width: 610px;
  margin: 28px 0 0;
  color: #c3c9d6;
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.62;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 27px;
  color: #929bae;
  font-size: 13px;
  font-weight: 550;
}
.hero-points span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-points b {
  color: var(--ion);
}

/* Hero UI */
.hero-product {
  position: relative;
  height: 630px;
  min-width: 0;
  perspective: 1400px;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-product::before {
  content: "";
  position: absolute;
  top: 120px;
  left: 50%;
  width: 560px;
  height: 400px;
  border-radius: 50%;
  background: rgba(90, 63, 242, 0.34);
  filter: blur(100px);
  transform: translateX(-50%);
}
.product-orbit {
  position: absolute;
  border: 1px solid rgba(146, 125, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.product-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ion);
  box-shadow: 0 0 18px var(--ion);
}
.orbit-a {
  inset: 62px -40px 52px 20px;
  animation: orbitFloat 12s ease-in-out infinite alternate;
}
.orbit-b {
  inset: 112px 26px 96px 80px;
  border-style: dashed;
  opacity: 0.5;
}
.float-pill {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: rgba(20, 25, 39, 0.86);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
  color: #c3c9d6;
  font-size: 10px;
  backdrop-filter: blur(14px);
  animation: pillFloat 5s ease-in-out infinite;
}
.float-pill b {
  display: block;
  color: #fff;
  font-size: 11px;
}
.pill-a {
  top: 20px;
  right: -20px;
}
.pill-b {
  right: -4px;
  bottom: 54px;
  animation-delay: -2.4s;
}
.pill-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  font-weight: 800;
}
.pill-icon.ion {
  background: rgba(32, 215, 206, 0.12);
  color: var(--ion);
}
.pill-icon.flare {
  background: rgba(248, 59, 104, 0.12);
  color: var(--flare);
}
.product-window {
  position: absolute;
  z-index: 3;
  top: 56px;
  left: 0;
  width: 720px;
  max-width: 100%;
  min-height: 516px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(247, 248, 252, 0.99);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.5),
    0 12px 30px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
}
.product-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.22),
    transparent 24%
  );
  pointer-events: none;
}
.window-bar {
  height: 43px;
  display: grid;
  grid-template-columns: 80px 1fr 54px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 10px;
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b7a;
}
.window-dots i:nth-child(2) {
  background: var(--amber);
}
.window-dots i:nth-child(3) {
  background: var(--green);
}
.address {
  justify-self: center;
  min-width: 205px;
  padding: 5px 14px;
  border: 1px solid #eef0f6;
  border-radius: 7px;
  background: var(--canvas);
  text-align: center;
}
.avatar-mini {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  background: var(--space-2);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}
.window-app {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 473px;
}
.window-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  background: var(--space);
}
.window-sidebar img {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
}
.window-sidebar span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: #929bae;
  font-size: 13px;
}
.window-sidebar .active {
  background: var(--plasma);
  color: #fff;
  box-shadow: 0 6px 18px rgba(90, 63, 242, 0.35);
}
.window-content {
  min-width: 0;
  padding: 21px 23px 20px;
}
.window-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.window-heading small {
  color: var(--plasma);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.window-heading h2 {
  margin: 3px 0 0;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.025em;
}
.ready {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(66, 209, 154, 0.11);
  color: #147a54;
  font-size: 9px;
  font-weight: 750;
}
.ready i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(66, 209, 154, 0.14);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 16px;
}
.metric-grid > div {
  position: relative;
  min-width: 0;
  padding: 12px 13px 11px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(11, 15, 26, 0.035);
}
.metric-grid span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.metric-grid strong {
  display: block;
  margin: 2px 0 0;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.04em;
}
.metric-grid strong em {
  font-size: 10px;
  font-style: normal;
}
.metric-grid small {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 7.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.metric-grid small b {
  color: #147a54;
}
.ring-metric::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -14px;
  width: 58px;
  height: 38px;
  border: 7px solid rgba(32, 215, 206, 0.18);
  border-top-color: var(--ion);
  border-radius: 50%;
  transform: rotate(-22deg);
}
.campaign-card {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 14px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}
.email-preview {
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--canvas);
  text-align: left;
}
.preview-logo {
  width: 42px;
  height: 5px;
  margin-bottom: 7px;
  border-radius: 4px;
  background: var(--space-2);
}
.preview-art {
  position: relative;
  height: 82px;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(150deg, #241b68, #765cf5 62%, #b6a8ff);
}
.preview-art i {
  position: absolute;
  top: 13px;
  right: 23px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #ffd782;
  box-shadow: 0 0 16px rgba(255, 215, 130, 0.7);
}
.preview-art b {
  position: absolute;
  width: 140px;
  height: 70px;
  border-radius: 50%;
  background: var(--ion);
  bottom: -38px;
  left: -15px;
  transform: rotate(-9deg);
}
.preview-art b:last-child {
  right: -26px;
  bottom: -43px;
  left: auto;
  background: #11182c;
  transform: rotate(12deg);
}
.email-preview h3 {
  margin: 8px 0 6px;
  font-family: var(--display);
  font-size: 9px;
}
.email-preview > span {
  display: block;
  height: 3px;
  margin: 4px 0;
  border-radius: 3px;
  background: var(--line);
}
.email-preview > span:nth-of-type(2) {
  width: 87%;
}
.email-preview > span:nth-of-type(3) {
  width: 70%;
}
.email-preview button {
  margin-top: 4px;
  padding: 4px 7px;
  border: 0;
  border-radius: 3px;
  background: var(--plasma);
  color: #fff;
  font-size: 6px;
}
.campaign-checks {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.campaign-checks > h3 {
  margin: 0 0 3px;
  font-size: 10px;
}
.campaign-checks > div {
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #eef0f6;
}
.campaign-checks > div > i {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 6px;
  background: rgba(66, 209, 154, 0.12);
  color: #147a54;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}
.campaign-checks b,
.campaign-checks small {
  display: block;
}
.campaign-checks b {
  font-size: 8px;
}
.campaign-checks small {
  color: var(--muted);
  font-size: 6.5px;
}
.send-demo {
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: auto;
  border: 0;
  border-radius: 8px;
  background: var(--plasma);
  color: #fff;
  font-size: 8.5px;
  font-weight: 750;
  box-shadow: 0 7px 16px rgba(90, 63, 242, 0.2);
  cursor: pointer;
  transition: 0.15s;
}
.send-demo:hover {
  background: #482dce;
  transform: translateY(-1px);
}
.send-demo:disabled {
  cursor: wait;
  opacity: 0.78;
}
.send-demo svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.send-demo.launching svg {
  animation: miniLaunch 0.8s var(--ease) forwards;
}
.send-status {
  min-height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 7px;
}
.send-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c3c9d6;
}
.send-status.working i {
  border: 1px solid var(--plasma);
  border-top-color: transparent;
  background: transparent;
  animation: spin 0.7s linear infinite;
}
.send-status.success {
  color: #147a54;
}
.send-status.success i {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(66, 209, 154, 0.12);
}
.hero-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 190px repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #c3c9d6;
  font-size: 11px;
  font-weight: 550;
}
.hero-strip > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-strip b {
  margin-right: 7px;
  color: #927dff;
  font-family: var(--mono);
  font-size: 9px;
}

/* Features */
.features {
  z-index: 2;
  border-radius: 38px 38px 0 0;
  background: var(--canvas);
}
.intro h2 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.8vw, 4.7rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.05;
}
.intro h2 em {
  color: var(--plasma);
  font-style: normal;
}
.split-intro {
  display: grid;
  grid-template-columns: 1.12fr 0.62fr;
  gap: 110px;
  align-items: end;
  margin-bottom: 72px;
}
.split-intro > p,
.product-intro > p {
  margin: 0 0 4px;
  color: #495369;
  font-size: 18px;
  line-height: 1.72;
}
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.feature-card {
  position: relative;
  min-height: 325px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(11, 15, 26, 0.03);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
}
.feature-card:hover {
  border-color: rgba(116, 91, 255, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.feature-card .number {
  color: var(--plasma);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
}
.feature-card h3 {
  position: relative;
  z-index: 2;
  max-width: 410px;
  margin: 17px 0 10px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
.feature-card > p {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0;
  color: #495369;
  font-size: 15px;
  line-height: 1.65;
}
.audience-card {
  grid-column: span 7;
  min-height: 390px;
  background: linear-gradient(145deg, #fff, #f5f2ff);
}
.audience-card > p {
  max-width: 325px;
}
.audience-map {
  position: absolute;
  right: -5px;
  bottom: 0;
  width: 55%;
  height: 80%;
}
.map-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(116, 91, 255, 0.25);
  border-radius: 22px;
  background: #fff;
  box-shadow:
    0 18px 45px rgba(90, 63, 242, 0.18),
    0 0 0 14px rgba(116, 91, 255, 0.04);
  transform: translate(-50%, -50%) rotate(-5deg);
}
.map-core img {
  width: 44px;
}
.person {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(11, 15, 26, 0.13);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  animation: personFloat 5s ease-in-out infinite;
}
.p1 {
  top: 8%;
  left: 8%;
  background: var(--plasma);
}
.p2 {
  top: 8%;
  right: 8%;
  background: #0bb8b1;
  animation-delay: -1.3s;
}
.p3 {
  bottom: 10%;
  left: 7%;
  background: var(--flare);
  animation-delay: -2.7s;
}
.p4 {
  right: 7%;
  bottom: 12%;
  background: var(--space-3);
  animation-delay: -3.7s;
}
.audience-map > b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(116, 91, 255, 0.2),
    rgba(116, 91, 255, 0.6),
    rgba(116, 91, 255, 0.2)
  );
  transform: translate(-50%, -50%) rotate(32deg);
}
.audience-map > b:last-child {
  transform: translate(-50%, -50%) rotate(-32deg);
}
.segment-card {
  grid-column: span 5;
  min-height: 390px;
  background: var(--space);
  color: #fff;
}
.segment-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(32, 215, 206, 0.1);
  filter: blur(15px);
}
.segment-card .number {
  color: var(--ion);
}
.segment-card > p {
  color: #c3c9d6;
}
.segment-list {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: grid;
  gap: 8px;
}
.segment-list > div {
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}
.segment-list > div:first-child {
  border-color: rgba(32, 215, 206, 0.22);
  background: rgba(32, 215, 206, 0.07);
}
.segment-list > div > i {
  grid-row: 1 / span 2;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: rgba(32, 215, 206, 0.13);
  color: var(--ion);
  font-style: normal;
}
.segment-list > div:first-child > i::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ion);
  box-shadow: 0 0 0 5px rgba(32, 215, 206, 0.12);
}
.segment-list b,
.segment-list small {
  display: block;
}
.segment-list b {
  font-size: 12px;
}
.segment-list small {
  color: #929bae;
  font-size: 9px;
}
.segment-list em {
  grid-row: 1 / span 2;
  color: #657086;
  font-style: normal;
}
.builder-card {
  grid-column: span 7;
  min-height: 375px;
}
.builder-card > p {
  max-width: 340px;
}
.builder-mini {
  position: absolute;
  right: 25px;
  bottom: 26px;
  width: 55%;
  height: 245px;
  display: grid;
  grid-template-columns: 74px 1fr 74px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #eef0f6;
  box-shadow: 0 14px 35px rgba(11, 15, 26, 0.1);
  font-size: 7px;
}
.builder-mini .tool-rail,
.builder-mini .settings {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 11px 8px;
  background: #fff;
}
.builder-mini .tool-rail > b,
.builder-mini .settings > b {
  font-size: 8px;
}
.builder-mini .tool-rail > span,
.builder-mini .settings > span {
  padding: 7px 5px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
}
.builder-mini main {
  width: 145px;
  min-height: 210px;
  margin: 18px auto;
  padding: 13px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(11, 15, 26, 0.1);
  text-align: center;
}
.builder-mini main small {
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.mini-image {
  display: block;
  height: 76px;
  margin: 9px 0;
  border-radius: 3px;
  background: linear-gradient(145deg, #332477, var(--plasma) 56%, var(--ion));
}
.builder-mini main > b {
  display: block;
  margin: 8px 0 6px;
  font-family: var(--display);
  font-size: 8px;
}
.builder-mini main > span {
  display: block;
  height: 2px;
  margin: 4px;
  border-radius: 3px;
  background: var(--line);
}
.builder-mini main button {
  margin-top: 6px;
  padding: 5px 7px;
  border: 0;
  border-radius: 3px;
  background: var(--plasma);
  color: #fff;
  font-size: 5px;
}
.builder-mini .settings i {
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.builder-mini .settings span {
  padding: 0;
  border: 0;
}
.check-card {
  grid-column: span 5;
  min-height: 375px;
  background: linear-gradient(145deg, #effffa, #fff 65%);
}
.preflight {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(66, 209, 154, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 34px rgba(11, 15, 26, 0.07);
}
.preflight > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: rgba(66, 209, 154, 0.14);
  color: #147a54;
  font-weight: 900;
}
.preflight b,
.preflight small {
  display: block;
}
.preflight b {
  font-size: 13px;
}
.preflight small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}
.templates-card {
  grid-column: span 7;
  min-height: 360px;
  color: #fff;
  background: linear-gradient(130deg, #482dce, #25176f 58%, var(--space));
}
.templates-card .number {
  color: #b6a8ff;
}
.templates-card > p {
  max-width: 345px;
  color: #d6d1f7;
}
.template-stack {
  position: absolute;
  right: 25px;
  bottom: 20px;
  width: 210px;
  height: 220px;
}
.template-stack > i {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 135px;
  height: 165px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  background: #1c1649;
  transform: rotate(10deg);
}
.template-stack > i:nth-child(2) {
  right: 45px;
  bottom: 28px;
  background: #30257e;
  transform: rotate(2deg);
}
.template-stack > i:nth-child(3) {
  right: 66px;
  bottom: 30px;
  padding: 18px;
  background: #fff;
  transform: rotate(-6deg);
}
.template-stack img {
  width: 25px;
}
.template-stack i span {
  display: block;
  height: 55px;
  margin-top: 14px;
  border-radius: 4px;
  background: var(--gradient);
}
.template-stack i b {
  display: block;
  width: 60%;
  height: 5px;
  margin-top: 12px;
  border-radius: 3px;
  background: #202638;
}
.template-stack small {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(11, 15, 26, 0.65);
  color: #dde1ea;
  font-size: 8px;
  backdrop-filter: blur(8px);
}
.builder-canvas {
  width: 145px;
  min-height: 210px;
  margin: 18px auto;
  padding: 13px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(11, 15, 26, 0.1);
  text-align: center;
}
.builder-canvas small {
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.builder-canvas > b {
  display: block;
  margin: 8px 0 6px;
  font-family: var(--display);
  font-size: 8px;
}
.builder-canvas > span {
  display: block;
  height: 2px;
  margin: 4px;
  border-radius: 3px;
  background: var(--line);
}
.builder-canvas button {
  margin-top: 6px;
  padding: 5px 7px;
  border: 0;
  border-radius: 3px;
  background: var(--plasma);
  color: #fff;
  font-size: 5px;
}
.results-card {
  grid-column: span 5;
  min-height: 360px;
}
.result-viz {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  height: 84px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--canvas);
}
.result-viz > span {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: conic-gradient(var(--plasma) 0 82%, var(--line) 82%);
}
.result-viz > span::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--canvas);
}
.result-viz b,
.result-viz small {
  display: block;
}
.result-viz b {
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.04em;
}
.result-viz small {
  color: var(--muted);
  font-size: 8px;
}
.result-viz > i {
  margin-left: auto;
  padding: 5px 7px;
  border-radius: 7px;
  background: rgba(66, 209, 154, 0.12);
  color: #147a54;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

/* Workflow */
.workflow {
  overflow: hidden;
  background: var(--space);
  color: #fff;
}
.workflow-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 8% 35%,
      rgba(248, 59, 104, 0.12),
      transparent 26%
    ),
    radial-gradient(circle at 92% 66%, rgba(32, 215, 206, 0.1), transparent 30%);
}
.workflow-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.14) 1px,
    transparent 1px
  );
  background-size: 38px 38px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 22%,
    #000 78%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 22%,
    #000 78%,
    transparent
  );
}
.workflow-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "kicker copy" "heading copy";
  align-items: end;
  margin-bottom: 86px;
}
.workflow-intro .kicker {
  grid-area: kicker;
}
.workflow-intro h2 {
  grid-area: heading;
}
.workflow-intro h2 span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.workflow-intro > p {
  grid-area: copy;
  max-width: 370px;
  margin: 0 0 8px;
  color: #c3c9d6;
  font-size: 17px;
  line-height: 1.7;
}
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps::before {
  content: "";
  position: absolute;
  top: 56px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--plasma),
    rgba(116, 91, 255, 0.35),
    var(--ion)
  );
}
.steps::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 53px;
  left: 9%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ion);
  box-shadow: 0 0 14px var(--ion);
  animation: flowTravel 8s linear infinite;
}
.steps li {
  position: relative;
  z-index: 3;
  padding: 0 24px;
  text-align: center;
}
.steps li > small {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}
.step-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 0 auto 23px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: var(--space-2);
  box-shadow: 0 0 0 10px var(--space);
  color: #b6a8ff;
  font-family: var(--display);
  font-size: 22px;
  transition: 0.22s var(--ease);
}
.steps li:hover .step-icon {
  border-color: rgba(32, 215, 206, 0.45);
  background: rgba(32, 215, 206, 0.08);
  color: var(--ion);
  transform: translateY(-4px);
}
.steps h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.02em;
}
.steps p {
  margin: 0;
  color: #929bae;
  font-size: 13px;
  line-height: 1.6;
}
.wordpress-foundation {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 74px;
  padding-top: 51px;
}
.wordpress-foundation > span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--plasma), rgba(116, 91, 255, 0.15));
}
.wordpress-foundation > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px 13px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}
.wordpress-foundation img {
  width: 36px;
}
.wordpress-foundation p {
  margin: 0;
}
.wordpress-foundation b,
.wordpress-foundation small {
  display: block;
}
.wordpress-foundation b {
  font-size: 12px;
}
.wordpress-foundation small {
  color: #929bae;
  font-size: 9px;
}

/* Showcase */
.inside {
  background: #fff;
}
.product-intro {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  grid-template-areas: "kicker copy" "heading copy";
  gap: 30px 100px;
  align-items: end;
  margin-bottom: 68px;
}
.product-intro .kicker {
  grid-area: kicker;
}
.product-intro h2 {
  grid-area: heading;
}
.product-intro > p {
  grid-area: copy;
}
.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 760px;
  margin: 0 auto 18px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--canvas);
}
.showcase-tabs button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s;
}
.showcase-tabs button span {
  color: #929bae;
  font-family: var(--mono);
  font-size: 9px;
}
.showcase-tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 5px 18px rgba(11, 15, 26, 0.08);
}
.showcase-tabs button[aria-selected="true"] span {
  color: var(--plasma);
}
.showcase-window {
  position: relative;
  min-height: 615px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--canvas);
  box-shadow: var(--shadow);
}
.showcase-window::before {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(116, 91, 255, 0.1);
  filter: blur(30px);
}
.showcase-bar {
  position: relative;
  z-index: 3;
  height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 42px;
  gap: 18px;
  align-items: center;
  padding: 0 23px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.93);
  font-size: 11px;
}
.showcase-bar > span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
}
.showcase-bar img {
  width: 28px;
}
.showcase-bar > small {
  color: var(--muted);
}
.showcase-bar > i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--space-2);
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}
.showcase-panel {
  position: relative;
  z-index: 2;
  min-height: 557px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 58px;
  align-items: center;
  padding: 52px 42px 50px 64px;
}
.showcase-panel[hidden] {
  display: none;
}
.showcase-panel.active {
  animation: panelIn 0.42s var(--ease) both;
}
.panel-copy > small {
  color: var(--plasma);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.panel-copy h3 {
  margin: 16px 0 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 680;
  letter-spacing: -0.05em;
  line-height: 1.08;
}
.panel-copy > p {
  margin: 0;
  color: #495369;
  font-size: 15px;
  line-height: 1.7;
}
.panel-copy ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #323a4e;
  font-size: 13px;
  font-weight: 650;
}
.panel-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.panel-copy li::before {
  content: "✓";
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 6px;
  background: rgba(116, 91, 255, 0.1);
  color: var(--plasma);
  font-size: 10px;
}
.panel-ui {
  position: relative;
  min-width: 0;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(11, 15, 26, 0.12);
  transform: rotateY(-2deg) rotateX(1deg);
}
.audience-ui > .ui-head,
.delivery-ui > .ui-head {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}
.audience-ui .ui-head p,
.delivery-ui .ui-head p {
  margin: 0;
}
.audience-ui .ui-head b,
.audience-ui .ui-head small,
.delivery-ui .ui-head b,
.delivery-ui .ui-head small {
  display: block;
}
.audience-ui .ui-head b,
.delivery-ui .ui-head b {
  font-size: 13px;
}
.audience-ui .ui-head small,
.delivery-ui .ui-head small {
  color: var(--muted);
  font-size: 9px;
}
.audience-ui .ui-head button {
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: var(--plasma);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}
.audience-ui > .filter-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 15px;
  border-bottom: 1px solid #eef0f6;
}
.audience-ui > .filter-row span,
.audience-ui > .filter-row i {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  font-size: 8px;
  font-style: normal;
}
.audience-ui > .filter-row .on {
  border-color: var(--plasma);
  background: rgba(116, 91, 255, 0.07);
  color: #482dce;
}
.audience-ui > .filter-row i {
  min-width: 90px;
  margin-left: auto;
}
.contact-table {
  padding: 0 15px;
}
.table-head,
.contact {
  display: grid;
  grid-template-columns: 2fr 0.8fr 1fr 0.7fr;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid #eef0f6;
}
.table-head {
  min-height: 37px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact {
  min-height: 70px;
  color: #495369;
  font-size: 8px;
}
.contact > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact > span > i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}
.contact .violet {
  background: var(--plasma);
}
.contact .teal {
  background: #0bb8b1;
}
.contact .coral {
  background: var(--flare);
}
.contact b,
.contact b small {
  display: block;
}
.contact b {
  color: #202638;
  font-size: 9px;
}
.contact b small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 500;
}
.contact > em {
  justify-self: start;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(66, 209, 154, 0.12);
  color: #147a54;
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
}
.contact > em.paused {
  background: rgba(255, 200, 87, 0.14);
  color: #8a5600;
}
.contact time {
  font-size: 7px;
}
.composer-ui > .ui-head {
  height: 53px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}
.composer-ui > .ui-head b {
  font-size: 11px;
}
.composer-ui > .ui-head small {
  margin-left: auto;
  color: var(--muted);
  font-size: 8px;
}
.composer-ui > .ui-head button {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 8px;
}
.composer-workspace {
  display: grid;
  grid-template-columns: 96px 1fr 105px;
  min-height: 357px;
  background: #eef0f6;
}
.composer-workspace .tool-rail,
.composer-workspace .style-rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 13px 10px;
  background: #fff;
}
.composer-workspace .tool-rail > b,
.composer-workspace .style-rail > b {
  margin-bottom: 5px;
  font-size: 9px;
}
.composer-workspace .tool-rail > span,
.composer-workspace .style-rail > span {
  padding: 8px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 7px;
}
.composer-workspace > main {
  width: 215px;
  min-height: 310px;
  margin: 23px auto;
  padding: 17px;
  background: #fff;
  box-shadow: 0 9px 26px rgba(11, 15, 26, 0.12);
  text-align: center;
}
.composer-workspace main > small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.canvas-art {
  height: 100px;
  margin-top: 12px;
  border-radius: 4px;
  background: linear-gradient(145deg, #332477, var(--plasma) 56%, var(--ion));
}
.composer-workspace main h4 {
  margin: 13px 0 9px;
  font-family: var(--display);
  font-size: 12px;
}
.composer-workspace main > i {
  display: block;
  height: 3px;
  margin: 5px auto;
  border-radius: 3px;
  background: var(--line);
}
.composer-workspace main > i:nth-of-type(2) {
  width: 88%;
}
.composer-workspace main > i:nth-of-type(3) {
  width: 72%;
}
.composer-workspace main button {
  margin-top: 10px;
  padding: 7px 11px;
  border: 0;
  border-radius: 5px;
  background: var(--plasma);
  color: #fff;
  font-size: 7px;
}
.composer-workspace .style-rail > span {
  padding: 0;
  border: 0;
}
.style-rail > i {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.style-rail > div {
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  font-size: 8px;
}
.delivery-ui > .ui-head {
  height: 72px;
}
.delivery-ui .ui-head > em {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(116, 91, 255, 0.1);
  color: #482dce;
  font-size: 9px;
  font-style: normal;
  font-weight: 750;
}
.delivery-ui .ui-head > em i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--plasma);
  box-shadow: 0 0 0 3px rgba(116, 91, 255, 0.12);
  animation: dotPulse 1.5s infinite;
}
.progress {
  position: relative;
  margin: 21px 20px 13px;
  height: 10px;
  border-radius: 999px;
  background: #eef0f6;
}
.progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient);
}
.progress > b {
  position: absolute;
  top: -7px;
  left: 72%;
  padding: 3px 5px;
  border-radius: 4px;
  background: var(--space-2);
  color: #fff;
  font-size: 7px;
  transform: translateX(-50%);
}
.delivery-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 14px 20px;
}
.delivery-stats > span {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
}
.delivery-stats small,
.delivery-stats b {
  display: block;
}
.delivery-stats small {
  color: var(--muted);
  font-size: 7px;
}
.delivery-stats b {
  margin-top: 2px;
  font-family: var(--display);
  font-size: 15px;
}
.delivery-log {
  margin: 0 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.delivery-log > div {
  min-height: 60px;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid #eef0f6;
}
.delivery-log > div:last-child {
  border: 0;
}
.delivery-log > div > i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: rgba(66, 209, 154, 0.12);
  color: #147a54;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}
.delivery-log > div > i.retry {
  background: rgba(255, 200, 87, 0.14);
  color: #8a5600;
}
.delivery-log p {
  margin: 0;
}
.delivery-log b,
.delivery-log small {
  display: block;
}
.delivery-log b {
  font-size: 8px;
}
.delivery-log small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 500;
}
.delivery-log time {
  color: var(--muted);
  font-size: 7px;
}

.email-canvas {
  width: 215px;
  min-height: 310px;
  margin: 23px auto;
  padding: 17px;
  background: #fff;
  box-shadow: 0 9px 26px rgba(11, 15, 26, 0.12);
  text-align: center;
}
.email-canvas > small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.email-canvas h4 {
  margin: 13px 0 9px;
  font-family: var(--display);
  font-size: 12px;
}
.email-canvas > i {
  display: block;
  height: 3px;
  margin: 5px auto;
  border-radius: 3px;
  background: var(--line);
}
.email-canvas > i:nth-of-type(2) {
  width: 88%;
}
.email-canvas > i:nth-of-type(3) {
  width: 72%;
}
.email-canvas button {
  margin-top: 10px;
  padding: 7px 11px;
  border: 0;
  border-radius: 5px;
  background: var(--plasma);
  color: #fff;
  font-size: 7px;
}

/* Manifesto */
.manifesto {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background: var(--space);
  color: #fff;
}
.manifesto::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 22%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(90, 63, 242, 0.18);
  filter: blur(120px);
}
.manifesto-lines {
  position: absolute;
  top: 50%;
  right: -5%;
  left: 48%;
  height: 150px;
  transform: translateY(-50%) skewY(-8deg);
}
.manifesto-lines i {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(116, 91, 255, 0.7),
    var(--ion),
    transparent
  );
}
.manifesto-lines i:nth-child(1) {
  top: 20px;
}
.manifesto-lines i:nth-child(2) {
  top: 72px;
  left: 10%;
  opacity: 0.55;
}
.manifesto-lines i:nth-child(3) {
  top: 120px;
  left: 23%;
  opacity: 0.3;
}
.manifesto-layout {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 300px;
  gap: 45px;
  align-items: center;
}
.manifesto-logo {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}
.manifesto-logo img {
  width: 45px;
}
.manifesto h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 6vw, 6.2rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
}
.manifesto h2 span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.manifesto-layout > div:last-child {
  position: relative;
  z-index: 2;
}
.manifesto-layout > div p {
  margin: 0 0 22px;
  color: #c3c9d6;
  font-size: 15px;
  line-height: 1.65;
}
.manifesto-layout > div a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.manifesto-layout > div a span {
  color: var(--ion);
}

/* Why */
.why {
  overflow: hidden;
  padding-bottom: 0;
  background: var(--canvas);
}
.why-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
}
.why-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.why-intro h2 {
  margin: 21px 0 20px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.2vw, 4.3rem);
  font-weight: 690;
  letter-spacing: -0.055em;
  line-height: 1.05;
}
.why-intro > p {
  max-width: 390px;
  margin: 0;
  color: #495369;
  font-size: 17px;
}
.why-list article {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  gap: 22px;
  align-items: start;
  padding: 35px 0;
  border-top: 1px solid var(--line);
}
.why-list article:last-child {
  border-bottom: 1px solid var(--line);
}
.why-list article > span {
  color: var(--plasma);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}
.why-list h3 {
  margin: -4px 0 8px;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.025em;
}
.why-list p {
  margin: 0;
  color: #495369;
  font-size: 14px;
  line-height: 1.65;
}
.why-list article > i {
  color: #929bae;
  font-style: normal;
  transition: 0.18s;
}
.why-list article:hover > i {
  color: var(--plasma);
  transform: translate(3px, -3px);
}
.ticker {
  width: 104%;
  margin-top: 120px;
  margin-left: -2%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--plasma);
  color: #fff;
  transform: rotate(-2deg);
}
.ticker > div {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 21px 17px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 650;
  white-space: nowrap;
}
.ticker i {
  color: var(--ion);
  font-style: normal;
}

/* Pilot & footer */
.pilot {
  overflow: hidden;
  padding: 150px 0 145px;
  background: var(--space);
  color: #fff;
}
.pilot-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(90, 63, 242, 0.2);
  filter: blur(130px);
  transform: translateX(-50%);
}
.pilot-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 475px;
  gap: 120px;
  align-items: center;
}
.pilot-copy h2 {
  margin: 22px 0 24px;
  font-family: var(--display);
  font-size: clamp(3.3rem, 5.8vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.99;
}
.pilot-copy h2 span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.pilot-copy > p {
  max-width: 610px;
  margin: 0;
  color: #c3c9d6;
  font-size: 18px;
  line-height: 1.7;
}
.pilot-copy ul {
  display: grid;
  gap: 12px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
  color: #c3c9d6;
  font-size: 14px;
}
.pilot-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pilot-copy li i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  background: rgba(32, 215, 206, 0.11);
  color: var(--ion);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}
.pilot-card {
  position: relative;
  padding: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}
.pilot-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(32, 215, 206, 0.14);
  filter: blur(25px);
}
.pilot-card > small {
  display: inline-block;
  padding: 6px 9px;
  border: 1px solid rgba(182, 168, 255, 0.2);
  border-radius: 7px;
  background: rgba(116, 91, 255, 0.1);
  color: #b6a8ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.pilot-card h3 {
  margin: 23px 0 10px;
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: -0.035em;
}
.pilot-card > p {
  margin: 0;
  color: #c3c9d6;
  font-size: 15px;
  line-height: 1.65;
}
.button-wide {
  width: 100%;
  margin-top: 28px;
}
.pilot-card .email-note {
  margin-top: 13px;
  color: #929bae;
  font-size: 10px;
}
.pilot-card .pilot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #929bae;
  font-size: 9px;
}
.pilot-card .pilot-meta span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}
.pilot-card .pilot-meta i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.site-footer {
  padding: 58px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #080b13;
  color: #929bae;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 60px;
  align-items: center;
  padding-bottom: 45px;
}
.footer-top > a:first-child {
  width: 205px;
}
.footer-top p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}
.footer-top p b {
  color: #dde1ea;
  font-weight: 600;
}
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.footer-email span {
  color: var(--ion);
  transition: 0.15s;
}
.footer-email:hover span {
  transform: translate(3px, -3px);
}
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 9px;
}
.footer-bottom a {
  color: #c3c9d6;
}
.footer-bottom a:hover {
  color: #fff;
}

/* Motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.js [data-delay="1"] {
  transition-delay: 0.09s;
}
.js [data-delay="2"] {
  transition-delay: 0.18s;
}
.js [data-delay="3"] {
  transition-delay: 0.27s;
}
.js [data-delay="4"] {
  transition-delay: 0.36s;
}
.js [data-reveal].visible {
  opacity: 1;
  transform: none;
}
@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translateY(-1px);
  }
  30% {
    opacity: 1;
  }
  70%,
  100% {
    opacity: 0;
    transform: translateY(7px);
  }
}
@keyframes glowDrift {
  to {
    transform: translate(40px, -25px) scale(1.1);
  }
}
@keyframes signalPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.45);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}
@keyframes beamTravel {
  to {
    stroke-dashoffset: -1500;
  }
}
@keyframes orbitFloat {
  to {
    transform: rotate(-15deg) scale(1.025);
  }
}
@keyframes pillFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes personFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes miniLaunch {
  0% {
    transform: none;
    opacity: 1;
  }
  55% {
    transform: translate(12px, -8px);
    opacity: 0;
  }
  56% {
    transform: translate(-7px, 5px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes flowTravel {
  0% {
    left: 9%;
    opacity: 0;
  }
  8%,
  92% {
    opacity: 1;
  }
  100% {
    left: 91%;
    opacity: 0;
  }
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(390px, 0.82fr) minmax(520px, 1.18fr);
    gap: 38px;
  }
  .product-window {
    width: 670px;
  }
  .pill-a {
    right: -6px;
  }
  .pill-b {
    right: -2px;
  }
  .hero h1 {
    font-size: clamp(3.45rem, 5.6vw, 4.65rem);
  }
  .pilot-layout {
    gap: 70px;
  }
  .manifesto-layout {
    grid-template-columns: 74px 1fr 250px;
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .section {
    padding: 105px 0;
  }
  .container {
    width: min(calc(100% - 40px), var(--container));
  }
  .primary-nav {
    gap: 20px;
  }
  .hero {
    min-height: 1340px;
    padding-top: 145px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-copy {
    max-width: 760px;
    padding-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(4rem, 8.6vw, 6.1rem);
  }
  .hero-copy > p {
    max-width: 680px;
  }
  .hero-product {
    width: min(780px, 100%);
    height: 620px;
    margin: 0 auto;
  }
  .product-window {
    left: 50%;
    width: 720px;
    transform: translateX(-50%) rotateY(-3deg) rotateX(1deg);
  }
  .pill-a {
    right: 0;
  }
  .pill-b {
    right: 4px;
  }
  .hero-strip {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero-strip > span {
    grid-column: 1/-1;
  }
  .split-intro,
  .product-intro {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 25px;
  }
  .product-intro .kicker,
  .product-intro h2,
  .product-intro > p {
    grid-area: auto;
  }
  .split-intro {
    margin-bottom: 54px;
  }
  .split-intro > p,
  .product-intro > p {
    max-width: 680px;
  }
  .feature-card {
    padding: 29px;
  }
  .workflow-intro {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 23px;
  }
  .workflow-intro .kicker,
  .workflow-intro h2,
  .workflow-intro > p {
    grid-area: auto;
  }
  .workflow-intro > p {
    max-width: 630px;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
  }
  .steps::before,
  .steps::after {
    display: none;
  }
  .steps li:nth-child(4) {
    grid-column: 1;
  }
  .steps li:nth-child(5) {
    grid-column: 2;
  }
  .showcase-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 42px;
  }
  .panel-copy {
    max-width: 720px;
  }
  .showcase-window {
    min-height: 950px;
  }
  .showcase-panel {
    min-height: 892px;
    align-content: start;
  }
  .panel-ui {
    width: 100%;
  }
  .manifesto-layout {
    grid-template-columns: 70px 1fr;
  }
  .manifesto-layout > div:last-child {
    grid-column: 2;
    max-width: 550px;
  }
  .manifesto-lines {
    left: 60%;
  }
  .why-layout {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 55px;
  }
  .pilot-layout {
    grid-template-columns: 1fr 410px;
    gap: 45px;
  }
}
@media (max-width: 820px) {
  .site-header {
    height: 78px;
  }
  .brand {
    width: 170px;
  }
  .menu-toggle {
    display: block;
  }
  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 100px 38px 55px;
    background: rgba(11, 15, 26, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.22s var(--ease);
  }
  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .primary-nav > a:not(.nav-button) {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: var(--display);
    font-size: 23px;
  }
  .nav-button {
    min-height: 52px;
    margin-top: 17px;
    padding-inline: 22px;
  }
  .hero {
    min-height: 1300px;
  }
  .hero h1 {
    font-size: clamp(3.5rem, 10vw, 5.2rem);
  }
  .audience-card,
  .segment-card,
  .builder-card,
  .check-card,
  .templates-card,
  .results-card {
    grid-column: span 12;
  }
  .audience-card {
    min-height: 410px;
  }
  .audience-card > p {
    max-width: 54%;
  }
  .templates-card > p {
    max-width: 55%;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps li:nth-child(4),
  .steps li:nth-child(5) {
    grid-column: auto;
  }
  .steps li:last-child {
    grid-column: 1/-1;
    max-width: 50%;
    justify-self: center;
  }
  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-intro {
    position: static;
  }
  .pilot-layout {
    grid-template-columns: 1fr;
  }
  .pilot-card {
    max-width: 560px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-email {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .footer-top p {
    grid-column: 1/-1;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .section {
    padding: 84px 0;
  }
  .features {
    border-radius: 25px 25px 0 0;
  }
  .hero {
    min-height: 1175px;
    padding-top: 125px;
  }
  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 4.25rem);
  }
  .hero-copy > p {
    font-size: 17px;
  }
  .hero-actions {
    max-width: 390px;
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .hero-product {
    height: 510px;
    margin-top: 10px;
    transform: scale(0.86);
    transform-origin: top center;
  }
  .product-window {
    top: 44px;
    width: 680px;
    max-width: none;
  }
  .pill-a {
    right: -9%;
  }
  .pill-b {
    right: -7%;
    bottom: 32px;
  }
  .orbit-a {
    inset: 40px -18% 36px;
  }
  .orbit-b {
    inset: 100px -5% 84px;
  }
  .hero-strip {
    margin-top: -20px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .intro h2,
  .pilot-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }
  .split-intro > p,
  .product-intro > p {
    font-size: 16px;
  }
  .feature-card {
    min-height: 345px;
    padding: 26px;
  }
  .feature-card h3 {
    font-size: 22px;
  }
  .audience-card {
    min-height: 520px;
  }
  .audience-card > p {
    max-width: none;
  }
  .audience-map {
    right: 4%;
    bottom: 0;
    width: 92%;
    height: 55%;
  }
  .segment-list,
  .preflight {
    right: 26px;
    bottom: 26px;
    left: 26px;
  }
  .builder-card {
    min-height: 545px;
  }
  .builder-card > p {
    max-width: none;
  }
  .builder-mini {
    right: 26px;
    bottom: 26px;
    left: 26px;
    width: auto;
    height: 250px;
  }
  .templates-card {
    min-height: 510px;
  }
  .templates-card > p {
    max-width: none;
  }
  .template-stack {
    right: 50%;
    bottom: 20px;
    transform: translateX(50%);
  }
  .result-viz {
    right: 25px;
    bottom: 28px;
    left: 25px;
  }
  .workflow-intro {
    margin-bottom: 55px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .steps li,
  .steps li:last-child {
    grid-column: auto;
    max-width: 420px;
    justify-self: center;
    padding-inline: 15px;
  }
  .wordpress-foundation {
    margin-top: 50px;
  }
  .showcase-tabs {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .showcase-tabs button {
    justify-content: flex-start;
    padding-inline: 18px;
  }
  .showcase-window {
    min-height: 930px;
    border-radius: 20px;
  }
  .showcase-bar > small {
    display: none;
  }
  .showcase-bar {
    grid-template-columns: 1fr 32px;
  }
  .showcase-panel {
    min-height: 872px;
    padding: 34px 20px;
  }
  .panel-copy h3 {
    font-size: 2.5rem;
  }
  .panel-ui {
    min-height: 360px;
    border-radius: 14px;
  }
  .table-head,
  .contact {
    grid-template-columns: 2fr 0.85fr;
  }
  .table-head span:nth-child(3),
  .table-head span:nth-child(4),
  .contact > span:nth-child(3),
  .contact > time {
    display: none;
  }
  .composer-workspace {
    grid-template-columns: 78px 1fr;
  }
  .style-rail {
    display: none !important;
  }
  .composer-workspace > main {
    width: 190px;
  }
  .delivery-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .manifesto {
    padding: 86px 0;
  }
  .manifesto-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .manifesto-layout > div:last-child {
    grid-column: auto;
  }
  .manifesto h2 {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }
  .manifesto-lines {
    left: 34%;
    opacity: 0.55;
  }
  .why-list article {
    grid-template-columns: 36px 1fr;
    gap: 15px;
  }
  .why-list article > i {
    display: none;
  }
  .ticker {
    margin-top: 85px;
  }
  .pilot {
    padding: 105px 0;
  }
  .pilot-copy > p {
    font-size: 16px;
  }
  .pilot-card {
    padding: 28px;
    border-radius: 20px;
  }
  .pilot-card .pilot-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .footer-email {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }
  .footer-top p {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 430px) {
  .hero {
    min-height: 1110px;
  }
  .hero h1 {
    font-size: 2.85rem;
  }
  .hero-product {
    width: 130%;
    height: 430px;
    margin-left: -15%;
    transform: scale(0.72);
  }
  .product-window {
    width: 660px;
  }
  .float-pill {
    display: none;
  }
  .hero-strip {
    margin-top: -5px;
  }
  .builder-mini {
    grid-template-columns: 65px 1fr;
  }
  .builder-mini .settings {
    display: none;
  }
  .manifesto h2 {
    font-size: 3.15rem;
  }
  .panel-copy h3 {
    font-size: 2.15rem;
  }
  .composer-workspace > main {
    width: 165px;
  }
}
@media (max-width: 680px) {
  .email-canvas {
    width: 190px;
  }
}
@media (max-width: 430px) {
  .email-canvas {
    width: 165px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .ticker > div {
    transform: none !important;
  }
}
@media (forced-colors: active) {
  .hero h1 span,
  .workflow-intro h2 span,
  .manifesto h2 span,
  .pilot-copy h2 span {
    color: LinkText;
    background: none;
  }
  .button,
  .feature-card,
  .panel-ui,
  .product-window {
    border: 1px solid CanvasText;
  }
}
