:root {
  color-scheme: dark;
  --bg: #02050d;
  --bg-soft: #060a15;
  --panel: rgba(14, 20, 36, .78);
  --panel-strong: rgba(17, 24, 44, .92);
  --line: rgba(151, 174, 255, .15);
  --line-strong: rgba(121, 94, 255, .48);
  --text: #f8fbff;
  --muted: #9aa8bf;
  --muted-2: #6f7a91;
  --cyan: #14d9ff;
  --blue: #2e7dff;
  --violet: #8a42ff;
  --magenta: #c84cff;
  --green: #31d8a2;
  --shadow: 0 24px 70px rgba(0, 0, 0, .45);
  --glow: 0 0 30px rgba(35, 154, 255, .24), 0 0 46px rgba(132, 67, 255, .18);
  --radius: 8px;
  --radius-lg: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 58% 7%, rgba(73, 61, 255, .18), transparent 26rem),
    radial-gradient(circle at 83% 17%, rgba(18, 215, 255, .14), transparent 22rem),
    linear-gradient(180deg, #03040b 0%, #02050d 48%, #030712 100%);
  background-color: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(111, 123, 255, .55) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(14, 217, 255, .34) 0 1px, transparent 1.7px);
  background-position: 10% 4%, 88% 9%;
  background-size: 225px 225px, 310px 310px;
  opacity: .26;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 1px) 0 0 / 100% 54px,
    linear-gradient(90deg, rgba(255,255,255,.025), transparent 1px) 0 0 / 54px 100%;
  mask-image: radial-gradient(circle at 56% 12%, black, transparent 42%);
  opacity: .3;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(var(--container), calc(100% - clamp(48px, 10vw, 150px)));
  margin-inline: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(2, 5, 13, .82);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 150px;
}

.brand-orb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,.9), transparent 18%),
    radial-gradient(circle at 50% 52%, #8fd8ff 0 18%, #625cff 38%, rgba(52, 68, 105, .75) 70%);
  filter: blur(2.2px);
  opacity: .8;
  box-shadow: 0 0 18px rgba(37, 194, 255, .5);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-blur {
  display: inline-block;
  width: 118px;
  height: 18px;
  border-radius: 99px;
  color: transparent;
  background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(151,167,195,.72));
  filter: blur(4px);
  opacity: .86;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #f4f6ff;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav > a,
.nav-drop-trigger {
  position: relative;
  padding: 14px 0;
  white-space: nowrap;
}

.desktop-nav > a::after,
.nav-drop-trigger::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transition: left .22s ease, right .22s ease;
}

.desktop-nav > a:hover::after,
.nav-dropdown:hover .nav-drop-trigger::after,
.nav-drop-trigger:focus-visible::after {
  left: 0;
  right: 0;
}

.nav-dropdown {
  position: relative;
}

.nav-drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.nav-drop-trigger svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% - 4px);
  left: -18px;
  min-width: 178px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 9, 20, .96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 11px;
  border-radius: 6px;
  color: var(--muted);
}

.dropdown-panel a:hover {
  color: var(--text);
  background: rgba(69, 88, 255, .15);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.header-actions .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.btn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 16px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover,
.glow-card:hover,
.circle-btn:hover,
.send-btn:hover,
.socials button:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.btn svg,
.link-button::after,
.footer-link::after {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: linear-gradient(135deg, #8f3cff 0%, #266fff 55%, #10d9f8 100%);
  box-shadow: 0 10px 30px rgba(41, 120, 255, .32);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .025);
}

.btn-dark,
.btn-outline {
  border-color: rgba(139, 154, 255, .18);
  background: rgba(8, 12, 24, .78);
}

.btn-black {
  min-width: 212px;
  background: #050914;
  border-color: rgba(255, 255, 255, .16);
}

.tiny-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 12%, transparent 13%),
    linear-gradient(135deg, var(--violet), #3420ff);
  box-shadow: 0 0 18px rgba(151, 77, 255, .9);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 7px;
  background: rgba(255, 255, 255, .04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

body[data-weworkweb-mockup="1"] {
  --mockup-bar-offset: 82px;
}

body[data-weworkweb-mockup="1"] .site-header {
  top: var(--mockup-bar-offset);
  margin-top: var(--mockup-bar-offset);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.5vw, 30px) 0 clamp(18px, 2.8vw, 34px);
}

.section-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 21%, rgba(137, 48, 255, .42), transparent 4px),
    radial-gradient(circle at 91% 31%, rgba(137, 48, 255, .34), transparent 3px),
    radial-gradient(circle at 84% 12%, rgba(32, 209, 255, .16), transparent 14rem),
    radial-gradient(circle at 63% 18%, rgba(84, 70, 255, .2), transparent 16rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(390px, .95fr) minmax(370px, 1.05fr);
  gap: clamp(28px, 3.4vw, 44px);
  align-items: center;
}

.hero-copy {
  padding-top: 2px;
}

.agency-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  padding: 6px 13px;
  border: 1px solid rgba(132, 121, 255, .32);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(55, 61, 118, .54), rgba(14, 18, 43, .8));
  color: #e9ecff;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: inset 0 0 20px rgba(112, 73, 255, .18), 0 0 24px rgba(48, 99, 255, .14);
}

.agency-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bdcff;
  box-shadow: 0 0 12px #2bdcff;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(42px, 4.6vw, 54px);
  line-height: .96;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(92deg, #22d8ff 0%, #4779ff 42%, #a647ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  margin: 12px 0 6px;
  color: #fff;
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 850;
}

.hero-text {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.hero-actions .btn {
  min-height: 39px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-row svg {
  width: 18px;
  height: 18px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  fill: none;
  stroke: #98e8ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-hero {
  position: relative;
  min-height: 318px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.dashboard-shell {
  position: relative;
  width: min(365px, 86vw);
  min-height: 244px;
  padding: 34px 14px 14px;
  border: 1px solid rgba(86, 133, 255, .6);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(35, 42, 104, .92), rgba(8, 13, 36, .92)),
    radial-gradient(circle at 72% 0, rgba(142, 64, 255, .45), transparent 18rem);
  box-shadow:
    0 0 0 1px rgba(66, 224, 255, .08) inset,
    0 0 34px rgba(28, 128, 255, .62),
    0 28px 92px rgba(36, 31, 126, .45);
  transform: rotateX(4deg) rotateY(-9deg);
  animation: floatPanel 7s ease-in-out infinite;
}

.window-dots {
  position: absolute;
  top: 15px;
  left: 18px;
  display: flex;
  gap: 7px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #13d6ff, #8756ff);
  box-shadow: 0 0 13px rgba(25, 210, 255, .65);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.metric-panel,
.automation-panel,
.lines-panel,
.radar-panel {
  min-height: 92px;
  border: 1px solid rgba(91, 119, 255, .26);
  border-radius: 8px;
  background: rgba(6, 11, 31, .68);
  box-shadow: inset 0 0 24px rgba(82, 104, 255, .08);
}

.metric-panel,
.automation-panel {
  padding: 12px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  color: #e4e9ff;
  font-size: 10px;
  font-weight: 750;
}

.panel-title span {
  color: rgba(116, 122, 180, .8);
}

.metric-panel strong,
.automation-panel strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.metric-panel small,
.automation-panel small {
  color: var(--muted-2);
  font-size: 10px;
}

.chart-line {
  width: 100%;
  height: 48px;
  margin-top: 6px;
}

.chart-fill {
  fill: url(#chartGradient);
}

.chart-stroke {
  fill: none;
  stroke: #1ed6ff;
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 7px rgba(35, 213, 255, .85));
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 42px;
  margin-top: 6px;
}

.mini-bars span {
  width: 34px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(141, 69, 255, .75), rgba(49, 23, 94, .2));
}

.mini-bars span:nth-child(1) { height: 22px; }
.mini-bars span:nth-child(2) { height: 39px; }
.mini-bars span:nth-child(3) { height: 28px; }

.lines-panel {
  position: relative;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 14px;
}

.lines-panel span,
.lines-panel b {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(92, 110, 255, .7), rgba(65, 227, 255, .42), transparent);
}

.lines-panel span:nth-child(2) { width: 72%; opacity: .54; }
.lines-panel span:nth-child(3) { width: 55%; opacity: .42; }
.lines-panel span:nth-child(4) { width: 84%; opacity: .3; }
.lines-panel b {
  width: 48%;
  height: 8px;
  background: linear-gradient(90deg, #7d48ff, #2ad7ff);
}

.radar-panel {
  position: relative;
  overflow: hidden;
}

.radar-core,
.radar-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-core {
  width: 18px;
  height: 18px;
  background: #24d9ff;
  box-shadow: 0 0 24px #2c72ff, 0 0 50px rgba(129, 64, 255, .9);
}

.radar-ring {
  border: 1px solid rgba(48, 212, 255, .22);
}

.ring-one { width: 70px; height: 70px; }
.ring-two { width: 116px; height: 116px; }
.ring-three {
  width: 168px;
  height: 168px;
  border-color: rgba(134, 69, 255, .32);
}

.radar-panel::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  left: 50%;
  top: 50%;
  background: linear-gradient(90deg, rgba(42, 213, 255, .8), transparent);
  transform-origin: left center;
  animation: radarSweep 4s linear infinite;
}

.ai-card {
  position: absolute;
  right: 2px;
  top: 66px;
  width: 108px;
  padding: 22px 12px 15px;
  border: 1px solid rgba(95, 121, 255, .55);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(23, 31, 76, .96), rgba(9, 14, 34, .96));
  box-shadow: 0 0 34px rgba(39, 149, 255, .34);
  text-align: center;
  transform: translateX(26px);
}

.ai-orbit {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border: 1px solid rgba(57, 210, 255, .55);
  border-radius: 50%;
  color: #9cebff;
  font-size: 26px;
  font-weight: 900;
  box-shadow: inset 0 0 25px rgba(23, 211, 255, .16), 0 0 28px rgba(45, 120, 255, .4);
}

.ai-card p {
  margin: 0;
  color: #d5dbf1;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-platform {
  position: absolute;
  bottom: 13px;
  left: 50%;
  width: min(550px, 94vw);
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(33, 220, 255, .24), transparent 58%),
    radial-gradient(ellipse at center, rgba(143, 45, 255, .42), transparent 64%);
  filter: blur(1px);
  transform: translateX(-50%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 14px 0 20px;
}

.glow-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.glow-card:hover {
  border-color: rgba(38, 216, 255, .38);
  background: rgba(18, 25, 48, .88);
}

.feature-card {
  min-height: 84px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.feature-card h3,
.step-card h3,
.work-card h3,
.price-card h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
}

.feature-card p,
.step-card p,
.price-card p,
.section-intro p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.feature-icon,
.step-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(16, 24, 53, .86);
  box-shadow: inset 0 0 25px rgba(37, 91, 255, .2);
}

.feature-icon::before,
.feature-icon::after,
.step-icon::before,
.step-icon::after {
  content: "";
  position: absolute;
}

.monitor-icon::before {
  inset: 9px 7px 14px;
  border: 3px solid #1ecfff;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(30, 207, 255, .75);
}

.monitor-icon::after {
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 3px;
  border-radius: 3px;
  background: #6d48ff;
}

.bolt-icon::before,
.bolt-small-icon::before {
  width: 20px;
  height: 32px;
  left: 13px;
  top: 7px;
  background: linear-gradient(180deg, #e15aff, #813cff);
  clip-path: polygon(55% 0, 18% 48%, 52% 48%, 30% 100%, 82% 38%, 48% 38%);
  filter: drop-shadow(0 0 10px rgba(201, 67, 255, .8));
}

.search-icon::before {
  width: 18px;
  height: 18px;
  left: 9px;
  top: 9px;
  border: 4px solid #18d5ff;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(24, 213, 255, .75);
}

.search-icon::after {
  width: 15px;
  height: 4px;
  right: 8px;
  bottom: 10px;
  border-radius: 4px;
  background: #18d5ff;
  transform: rotate(45deg);
}

.bars-icon::before {
  left: 9px;
  bottom: 9px;
  width: 7px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(180deg, #26dfff, #654aff);
  box-shadow: 13px -8px 0 #7450ff, 26px -17px 0 #21cfff;
}

.split-section {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 26px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(21px, 1.8vw, 26px);
  line-height: 1.08;
}

.section-intro .btn {
  margin-top: 14px;
  min-height: 34px;
  padding-inline: 13px;
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(138px, 1fr));
  gap: 12px;
}

.step-card {
  position: relative;
  min-height: 138px;
  padding: 18px 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  text-align: center;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: rgba(7, 12, 24, .9);
  transform: translateY(-50%);
  z-index: 1;
}

.step-card:not(:last-child)::before {
  content: "›";
  position: absolute;
  right: -12px;
  top: 50%;
  z-index: 2;
  color: rgba(255, 255, 255, .72);
  font-size: 20px;
  transform: translateY(-54%);
}

.step-card > span {
  position: absolute;
  top: 13px;
  left: 15px;
  color: #18cfff;
  font-size: 15px;
  font-weight: 800;
}

.step-icon {
  margin: 17px auto 11px;
  background: transparent;
}

.rocket-icon::before {
  width: 18px;
  height: 30px;
  left: 14px;
  top: 7px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, #2ce4ff, #6b48ff);
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(36, 208, 255, .75);
}

.wand-icon::before {
  width: 28px;
  height: 7px;
  left: 8px;
  top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #33d4ff, #8d42ff);
  transform: rotate(-42deg);
  box-shadow: 0 0 13px rgba(141, 66, 255, .7);
}

.wand-icon::after {
  width: 6px;
  height: 6px;
  right: 8px;
  top: 8px;
  background: #fff;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.target-icon::before,
.target-icon::after {
  border-radius: 50%;
  border: 3px solid #6f54ff;
}

.target-icon::before {
  inset: 10px;
  box-shadow: 0 0 13px rgba(111, 84, 255, .78);
}

.target-icon::after {
  inset: 18px;
  border-color: #1bd7ff;
}

.growth-icon::before {
  left: 9px;
  bottom: 8px;
  width: 6px;
  height: 13px;
  border-radius: 3px;
  background: #21d9ff;
  box-shadow: 11px -8px 0 #6a55ff, 22px -17px 0 #b148ff;
}

.growth-icon::after {
  right: 9px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-top: 3px solid #b148ff;
  border-right: 3px solid #b148ff;
  transform: rotate(-12deg);
}

.carousel-shell {
  position: relative;
  min-width: 0;
}

.carousel-controls {
  position: absolute;
  right: 0;
  top: -34px;
  display: flex;
  gap: 8px;
}

.circle-btn,
.send-btn,
.socials button {
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: #c8d1ec;
  background: rgba(15, 20, 36, .86);
  transition: .18s ease;
}

.circle-btn svg,
.send-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-row,
.testimonial-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(184px, 1fr);
  gap: 13px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.work-row::-webkit-scrollbar,
.testimonial-row::-webkit-scrollbar {
  display: none;
}

.work-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 17 / 11;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  scroll-snap-align: start;
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .96;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(2, 5, 13, .92));
}

.work-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.work-meta h3 {
  flex: 1 1 82px;
  min-width: 0;
}

.work-meta span {
  flex: 0 1 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(4, 9, 20, .72);
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.1;
  box-shadow: inset 22px 0 20px rgba(20, 217, 255, .34);
}

.pricing {
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.price-card {
  position: relative;
  min-height: 188px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.price-featured {
  border-color: rgba(132, 79, 255, .9);
  box-shadow: inset 0 0 42px rgba(98, 58, 255, .12), 0 0 32px rgba(95, 68, 255, .2);
}

.popular {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8d45ff, #2ad7ff);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}

.price {
  margin: 12px 0 12px;
  color: #fff;
  font-size: clamp(27px, 2.4vw, 32px);
  font-weight: 900;
}

.price small {
  color: var(--muted);
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
  font-weight: 650;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #d7dff0;
  font-size: 12px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2bd6ff;
}

.link-button {
  grid-column: 2 / -1;
  justify-self: center;
  margin-top: 8px;
  border: 0;
  color: #9d72ff;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}

.link-button::after {
  content: "→";
  margin-left: 8px;
}

.testimonial-card {
  min-height: 158px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  scroll-snap-align: start;
}

.stars {
  color: #3e8bff;
  font-size: 13px;
  letter-spacing: .08em;
}

.testimonial-card p {
  margin: 8px 0 12px;
  color: #dbe2f2;
  font-size: 13px;
  line-height: 1.42;
}

.person {
  display: grid;
  grid-template-columns: 36px auto;
  column-gap: 10px;
  align-items: center;
}

.person .avatar {
  grid-row: span 2;
}

.person b {
  font-size: 11px;
}

.person small {
  color: var(--muted);
  font-size: 10px;
}

.avatar {
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.75) 0 11%, transparent 12%),
    radial-gradient(circle at 50% 80%, rgba(25, 34, 60, .82) 0 21%, transparent 22%),
    linear-gradient(135deg, #ffc58a, #955cff);
  box-shadow: 0 0 15px rgba(55, 134, 255, .25);
}

.avatar-two { background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.75) 0 11%, transparent 12%), radial-gradient(circle at 50% 80%, rgba(25,34,60,.82) 0 21%, transparent 22%), linear-gradient(135deg, #6ee7c9, #3977ff); }
.avatar-three { background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.75) 0 11%, transparent 12%), radial-gradient(circle at 50% 80%, rgba(25,34,60,.82) 0 21%, transparent 22%), linear-gradient(135deg, #ffd86b, #9b4dff); }
.avatar-four { background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.75) 0 11%, transparent 12%), radial-gradient(circle at 50% 80%, rgba(25,34,60,.82) 0 21%, transparent 22%), linear-gradient(135deg, #ff9cba, #20d6ff); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.faq-item button {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 0;
  color: var(--text);
  background: transparent;
  font-size: 12px;
  font-weight: 850;
  text-align: left;
}

.faq-item button span {
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 auto;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  inset: 6px 0 auto;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .18s ease;
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .22s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 14px;
}

.cta {
  padding: 14px 0 12px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
  align-items: center;
  min-height: 140px;
  padding: clamp(24px, 3vw, 34px) clamp(24px, 4vw, 42px);
  border: 1px solid rgba(66, 215, 255, .36);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(149, 54, 255, .96), rgba(36, 111, 255, .96) 46%, rgba(8, 211, 219, .96)),
    linear-gradient(90deg, transparent, rgba(255,255,255,.16));
  box-shadow: 0 0 44px rgba(34, 124, 255, .28);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.14) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(60deg, rgba(255,255,255,.1) 1px, transparent 1px) 0 0 / 42px 42px;
  opacity: .28;
}

.cta-panel > * {
  position: relative;
}

.cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(24px, 2.45vw, 30px);
  line-height: 1.06;
}

.cta p {
  max-width: 670px;
  margin: 9px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  line-height: 1.45;
}

.cta-side {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 12px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack .avatar {
  width: 34px;
  height: 34px;
  margin-right: -8px;
}

.site-footer {
  padding: 0 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr .75fr .75fr .75fr 1.45fr;
  gap: 34px;
  padding: 24px 0 26px;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-grid p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.footer-grid h3 {
  margin: 0 0 10px;
  color: #f6f8ff;
  font-size: 11px;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-grid a:hover {
  color: var(--text);
}

.socials {
  display: flex;
  gap: 9px;
}

.socials button {
  border-radius: 6px;
  color: #d9e3ff;
  font-size: 12px;
  font-weight: 900;
}

.newsletter {
  position: relative;
}

.newsletter label {
  display: block;
}

.newsletter input,
.modal-card input,
.modal-card textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  outline: none;
  color: var(--text);
  background: rgba(255,255,255,.045);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.newsletter input {
  height: 38px;
  padding: 0 48px 0 15px;
  font-size: 11px;
}

.newsletter input:focus,
.modal-card input:focus,
.modal-card textarea:focus {
  border-color: rgba(33, 216, 255, .65);
  box-shadow: 0 0 0 3px rgba(33, 216, 255, .12);
}

.send-btn {
  position: absolute;
  right: 8px;
  bottom: 6px;
  border-radius: 7px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  color: var(--muted-2);
  font-size: 10px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 24px;
}

.footer-link {
  padding: 0;
  border: 0;
  color: var(--muted-2);
  background: transparent;
  font-size: 10px;
}

.footer-link:hover {
  color: var(--text);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  max-width: calc(100% - 32px);
  padding: 13px 18px;
  border: 1px solid rgba(33, 216, 255, .35);
  border-radius: 999px;
  background: rgba(6, 10, 24, .92);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--glow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.contact-modal {
  width: min(520px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 12px;
  color: var(--text);
  background: transparent;
}

.contact-modal::backdrop {
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(53, 207, 255, .25);
  border-radius: 12px;
  background:
    radial-gradient(circle at 78% 0, rgba(140, 63, 255, .3), transparent 16rem),
    rgba(6, 10, 24, .98);
  box-shadow: var(--shadow), var(--glow);
}

.modal-card h2 {
  margin: 0;
  padding-right: 34px;
  font-size: 25px;
  line-height: 1.14;
}

.modal-card p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.55;
}

.modal-card label {
  display: grid;
  gap: 8px;
  color: #dce6ff;
  font-size: 13px;
  font-weight: 750;
}

.modal-card input,
.modal-card textarea {
  padding: 12px 13px;
  resize: vertical;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  color: var(--text);
  background: rgba(255,255,255,.04);
}

.modal-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

@keyframes floatPanel {
  0%, 100% { transform: rotateX(4deg) rotateY(-9deg) translateY(0); }
  50% { transform: rotateX(4deg) rotateY(-9deg) translateY(-8px); }
}

@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (min-width: 861px) {
  .split-section {
    padding: 18px 0 22px;
  }

  .step-card {
    min-height: 138px;
  }

  .step-card h3 {
    font-size: 12px;
  }

  .step-card p {
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.35;
  }

  .step-icon {
    width: 36px;
    height: 36px;
    margin: 20px auto 10px;
  }

  .work-row,
  .testimonial-row {
    grid-auto-columns: calc((100% - 30px) / 4);
    gap: 10px;
  }

  .price-card {
    min-height: 188px;
  }

  .price-card p {
    margin-top: 8px;
    font-size: 11px;
    white-space: normal;
  }

  .price-card li {
    padding-left: 20px;
    line-height: 1.25;
  }

  .testimonial-card {
    min-height: 158px;
  }

  .testimonial-card p {
    display: block;
  }

  .faq-item button {
    min-height: 48px;
  }

  .cta-panel {
    min-height: 140px;
  }

  .footer-grid {
    min-height: 150px;
  }

  .footer-grid p {
    display: block;
  }
}

@media (max-width: 960px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .ai-hero {
    min-height: 390px;
  }

  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .steps-track {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    overflow-x: auto;
    padding: 2px 2px 10px;
  }

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

@media (max-width: 860px) {
  body[data-weworkweb-mockup="1"] {
    --mockup-bar-offset: 86px;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    z-index: 29;
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(5, 9, 20, .98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .18s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a,
  .mobile-resource-toggle {
    padding: 12px;
    border: 0;
    border-radius: 7px;
    color: #eef3ff;
    background: transparent;
    font-weight: 750;
    text-align: left;
  }

  .mobile-nav a:hover,
  .mobile-resource-toggle:hover {
    background: rgba(69, 88, 255, .15);
  }

  .mobile-resource-panel {
    display: none;
    padding-left: 10px;
  }

  .mobile-resource-panel.is-open {
    display: grid;
  }

  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 8px;
  }

  .mobile-actions .btn {
    width: 100%;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 26px;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 1;
  }

  .ai-card {
    right: 50%;
    top: auto;
    bottom: 24px;
    transform: translateX(50%);
  }

  .dashboard-shell {
    width: min(420px, 100%);
    transform: none;
  }

  .service-grid,
  .pricing-grid,
  .faq-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (min-width: 681px) and (max-width: 860px) {
  .service-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

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

@media (max-width: 640px) {
  body[data-weworkweb-mockup="1"] {
    --mockup-bar-offset: 112px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 62px;
  }

  .brand {
    min-width: 0;
  }

  .brand-blur {
    width: 102px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .mobile-nav {
    left: 18px;
    right: 18px;
  }

  .hero-actions,
  .proof-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .section-intro .btn,
  .btn-black {
    width: 100%;
  }

  .ai-hero {
    min-height: 0;
    align-content: start;
    gap: 14px;
    padding: 4px 0 0;
  }

  .dashboard-shell {
    width: min(342px, 100%);
    min-height: 292px;
    padding: 36px 12px 14px;
    border-radius: 14px;
  }

  .dashboard-grid {
    gap: 10px;
  }

  .metric-panel,
  .automation-panel {
    padding: 12px;
  }

  .metric-panel strong,
  .automation-panel strong {
    font-size: 24px;
  }

  .ai-card {
    position: relative;
    inset: auto;
    width: min(100%, 300px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin: 4px auto 0;
    padding: 13px 15px;
    text-align: left;
    transform: none;
  }

  .ai-orbit {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    margin: 0;
    font-size: 22px;
  }

  .ai-card p {
    font-size: 11px;
  }

  .hero-platform {
    display: none;
  }

  .feature-card {
    grid-template-columns: 44px 1fr;
    min-height: auto;
    padding: 16px;
  }

  .steps-track {
    grid-template-columns: minmax(0, 1fr);
    overflow: visible;
    padding: 0;
    gap: 10px;
  }

  .step-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 13px;
    row-gap: 4px;
    align-items: center;
    padding: 14px;
    text-align: left;
  }

  .step-card:not(:last-child)::before,
  .step-card:not(:last-child)::after {
    display: none;
  }

  .step-card > span {
    position: static;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    font-size: 13px;
  }

  .step-icon {
    grid-column: 1;
    grid-row: 2;
    width: 34px;
    height: 34px;
    margin: 0;
  }

  .step-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .step-card p {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
  }

  .work-row,
  .testimonial-row {
    grid-auto-columns: minmax(260px, 88%);
  }

  .carousel-controls {
    position: static;
    justify-content: flex-end;
    margin-bottom: 10px;
  }

  .popular {
    position: static;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
  }

  .cta-panel {
    gap: 22px;
    padding: 24px;
  }

  .cta-side {
    justify-items: stretch;
  }

  .trust-row {
    align-items: flex-start;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-bottom span:last-child {
    flex-wrap: wrap;
    gap: 14px;
  }

  .toast {
    width: calc(100% - 32px);
    border-radius: 12px;
    text-align: center;
  }

  .modal-card {
    max-height: calc(100svh - 32px);
    overflow: auto;
    padding: 22px;
  }

  .modal-card h2 {
    font-size: 22px;
  }
}

@media (max-width: 960px) {
  section.container.split-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .pricing > .link-button {
    grid-column: 1 / -1;
  }
}

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