:root {
  --bg: #05040a;
  --ink: #f7f2ff;
  --ink-soft: #ded9e8;
  --muted: #9f9aa8;
  --faint: #716d78;
  --nav-link: #b8b4c0;
  --violet: #f7f2ff;
  --violet-base: #f7f2ff;
  --violet-light: #ffffff;
  --violet-deep: #d8d4e1;
  --violet-dark: #b8b4c0;
  --blue: #d8d4e1;
  --cyan: #c7c3cf;
  --green: #f7f2ff;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-dark: rgba(255, 255, 255, 0.015);
  --hairline: rgba(255, 255, 255, 0.08);
  --gutter: clamp(18px, 5vw, 56px);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body::selection {
  background: rgba(247, 242, 255, 0.24);
  color: var(--ink);
}

a {
  color: #f7f2ff;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

section,
header {
  scroll-margin-top: 96px;
}

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.nav {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(5, 4, 10, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 18px var(--gutter);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Lato", "Manrope", system-ui, sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 900;
  gap: 0;
  letter-spacing: 0;
  line-height: 1;
  text-transform: lowercase;
}

.brand:hover {
  color: var(--ink);
}

.brand__chip {
  display: none;
}

.brand--small {
  color: #f0ebfa;
  font-size: 24px;
}

.brand--small .brand__chip {
  box-shadow: none;
  height: 10px;
  width: 10px;
}

.nav__links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(16px, 3vw, 38px);
  justify-content: flex-end;
}

.nav__links a {
  color: var(--nav-link);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__links .nav__cta {
  background: var(--ink);
  border-radius: 999px;
  color: #05040a;
  font-weight: 700;
  padding: 10px 20px;
}

.nav__links .nav__cta:hover {
  background: #fff;
  color: #05040a;
}

.hero {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(78px, 13vh, 132px) var(--gutter) clamp(56px, 9vh, 96px);
  position: relative;
  text-align: left;
}

.hero::before,
.hero::after {
  border-top: 2px solid rgba(247, 242, 255, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
  right: -12vw;
  transform: rotate(-4deg);
}

.hero::before {
  height: 170px;
  top: 42px;
  width: min(720px, 54vw);
}

.hero::after {
  bottom: 92px;
  height: 240px;
  width: min(840px, 62vw);
}

.hero__glow {
  animation: zFloat 9s ease-in-out infinite;
  background: radial-gradient(circle at 50% 48%, rgba(247, 242, 255, 0.16), transparent 62%);
  filter: blur(70px);
  height: min(640px, 75vh);
  left: 50%;
  opacity: 0.58;
  pointer-events: none;
  position: absolute;
  top: 46%;
  width: min(900px, 120vw);
}

.hero__inner {
  max-width: 1240px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero__layout {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
}

.hero__content {
  min-width: 0;
}

.hero__visual {
  min-width: 0;
  position: relative;
}

.hero__visual::before {
  background: radial-gradient(circle, rgba(247, 242, 255, 0.14), transparent 64%);
  content: "";
  filter: blur(42px);
  inset: 8%;
  position: absolute;
}

.hero__eyebrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #d8d4e1;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 34px;
  padding: 8px 18px;
  text-transform: uppercase;
}

.hero__eyebrow span {
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(247, 242, 255, 0.42);
  height: 7px;
  width: 7px;
}

.hero__title {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2.65rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 720px;
  text-wrap: balance;
}

.hero__tagline {
  color: #e7e2ee;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 22px 0 0;
}

.hero__summary {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 18px 0 0;
  max-width: 680px;
}

.hero__tagline span,
.section__header h2 span,
.is-violet {
  color: #fff;
}

.is-blue {
  color: #d8d4e1;
}

.hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 38px;
}

.hero__signals {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px auto 0;
  max-width: 980px;
}

.hero__signals div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 18px;
  text-align: left;
}

.hero__signals strong,
.hero__signals span {
  display: block;
}

.hero__signals strong {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero__signals span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.product-console {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.024)),
    linear-gradient(135deg, rgba(247, 242, 255, 0.055), rgba(247, 242, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.product-console::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
}

.product-console::after {
  border-top: 1px solid rgba(247, 242, 255, 0.08);
  border-radius: 50%;
  content: "";
  height: 150px;
  pointer-events: none;
  position: absolute;
  right: -110px;
  top: 48px;
  transform: rotate(-8deg);
  width: 420px;
}

.product-console__topbar,
.product-console__body,
.product-console__footer {
  position: relative;
  z-index: 1;
}

.product-console__topbar {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 16px 18px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  background: #77727f;
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.window-dots span:first-child {
  background: #f7f2ff;
}

.window-dots span:nth-child(2) {
  background: #b8b4c0;
}

.window-dots span:nth-child(3) {
  background: #77727f;
}

.console-tabs {
  display: flex;
  gap: 8px;
}

.console-tabs span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #b3aec2;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  padding: 8px 10px;
  text-transform: uppercase;
}

.console-tabs .is-active {
  background: rgba(247, 242, 255, 0.09);
  border-color: rgba(247, 242, 255, 0.26);
  color: var(--ink);
}

.product-console__body {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.35fr) minmax(138px, 0.65fr);
  padding: 18px;
}

.console-main,
.status-card {
  background: rgba(8, 6, 15, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.console-main {
  padding: 18px;
}

.console-header {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.console-header span,
.scope-stack span,
.status-card span {
  color: #9c94ad;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.console-header strong {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.scope-stack {
  display: grid;
  gap: 10px;
}

.scope-stack div {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px;
}

.scope-stack strong {
  color: #e8e2f6;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
}

.workflow-map {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: auto 1fr auto 1fr auto;
  margin-top: 18px;
}

.workflow-map span {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #f0ebfa;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 9px 11px;
}

.workflow-map i {
  background: linear-gradient(90deg, rgba(247, 242, 255, 0.08), rgba(247, 242, 255, 0.62));
  display: block;
  height: 1px;
}

.console-side {
  display: grid;
  gap: 14px;
}

.status-card {
  display: grid;
  min-height: 134px;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.status-card strong {
  align-self: end;
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.05;
}

.status-card em {
  background: conic-gradient(from 30deg, rgba(247, 242, 255, 0.92), rgba(247, 242, 255, 0.12), rgba(247, 242, 255, 0.7));
  border-radius: 50%;
  bottom: -34px;
  height: 92px;
  opacity: 0.85;
  position: absolute;
  right: -26px;
  width: 92px;
}

.status-card--blue em {
  background: conic-gradient(from 30deg, rgba(216, 212, 225, 0.82), rgba(216, 212, 225, 0.1), rgba(216, 212, 225, 0.62));
}

.product-console__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.product-console__footer span {
  background: rgba(255, 255, 255, 0.036);
  color: #b3aec2;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 15px 10px;
  text-align: center;
  text-transform: uppercase;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 58px;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.button--primary {
  background: linear-gradient(135deg, #fff, #d8d4e1);
  box-shadow: 0 16px 50px rgba(247, 242, 255, 0.16);
  color: #05040a;
  padding: 18px 46px;
}

.button--primary:hover {
  color: #05040a;
  transform: translateY(-3px) scale(1.02);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e4dcf6;
  padding: 18px 40px;
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.marquee {
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.marquee__track {
  animation: zMarquee 22s linear infinite;
  display: flex;
  width: max-content;
}

.marquee__group {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 38px;
  padding-right: 38px;
}

.marquee span {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee strong {
  color: rgba(247, 242, 255, 0.54);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.section {
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(70px, 12vh, 130px) var(--gutter);
}

.section__header {
  margin-bottom: 60px;
  max-width: 720px;
}

.section__header--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 840px;
  text-align: center;
}

.eyebrow {
  color: #f7f2ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.section__header h2 {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.section-lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 24px 0 0;
  max-width: 760px;
}

.service-grid,
.work-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.service-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-dark));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  overflow: hidden;
  padding: 38px 32px 34px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: rgba(247, 242, 255, 0.28);
  transform: translateY(-6px);
}

.service-card__num {
  color: rgba(247, 242, 255, 0.18);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 16px;
}

.service-card__icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #f7f2ff;
  display: flex;
  height: 56px;
  justify-content: center;
  margin-bottom: 24px;
  width: 56px;
}

.service-card__icon svg {
  height: 22px;
  width: 22px;
}

.service-card__icon--agency {
  background: rgba(255, 255, 255, 0.048);
  border-color: rgba(255, 255, 255, 0.13);
  color: #ded9e8;
}

.service-card__icon--support {
  background: rgba(255, 255, 255, 0.048);
  border-color: rgba(255, 255, 255, 0.13);
  color: #ded9e8;
}

.service-card__icon--ai {
  background: rgba(255, 255, 255, 0.048);
  border-color: rgba(255, 255, 255, 0.13);
  color: #ded9e8;
}

.service-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.service-card__chips span {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: #d8d4e1;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 8px 10px;
  white-space: nowrap;
}

.service-card h3 {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 12px;
}

.service-card p:last-child,
.work-item p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.engagements {
  padding-top: clamp(42px, 8vh, 92px);
}

.package-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.package-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(247, 242, 255, 0.055), rgba(247, 242, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  min-height: 360px;
  padding: 32px;
}

.package-card__price {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 22px;
}

.package-card h3 {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 14px;
}

.package-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.package-card__meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.package-card__meta div {
  background: rgba(8, 6, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 8px;
  padding: 12px;
}

.package-card__meta span,
.package-card__meta strong {
  display: block;
}

.package-card__meta span {
  color: #9c94ad;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.package-card__meta strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.package-card ul {
  color: #ded9e8;
  display: grid;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.package-card li {
  align-items: center;
  display: flex;
  gap: 10px;
}

.package-card li::before {
  background: #f7f2ff;
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  height: 7px;
  width: 7px;
}

.section-note {
  color: #877f99;
  font-size: 14px;
  line-height: 1.55;
  margin: 22px auto 0;
  max-width: 760px;
  text-align: center;
}

.focused-services {
  padding-top: clamp(44px, 8vh, 86px);
}

.tech-stack {
  padding-top: clamp(44px, 8vh, 86px);
}

.stack-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stack-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, rgba(247, 242, 255, 0.042), rgba(247, 242, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  display: grid;
  min-height: 260px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.stack-card::after {
  background: rgba(247, 242, 255, 0.18);
  content: "";
  height: 1px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 80px;
}

.stack-card span {
  color: #f7f2ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.stack-card h3 {
  align-self: end;
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.13;
  margin: 52px 0 14px;
}

.stack-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.answer-hub {
  padding-top: clamp(44px, 8vh, 86px);
}

.answer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}

.answer-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, rgba(247, 242, 255, 0.04), rgba(247, 242, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  min-height: 245px;
  padding: 28px;
}

.answer-card h3 {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 16px;
}

.answer-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  margin: 0;
}

.service-link-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.service-link-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, rgba(247, 242, 255, 0.045), rgba(247, 242, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  display: grid;
  min-height: 210px;
  padding: 26px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-link-card:hover {
  border-color: rgba(247, 242, 255, 0.26);
  color: inherit;
  transform: translateY(-4px);
}

.service-link-card span {
  color: #f7f2ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.service-link-card strong {
  color: var(--ink);
  display: block;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 12px;
}

.service-link-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.service-hero {
  overflow: hidden;
  padding: clamp(74px, 12vh, 124px) var(--gutter) clamp(56px, 9vh, 92px);
  position: relative;
}

.service-hero__inner {
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.breadcrumb {
  color: #b3aec2;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
}

.breadcrumb:hover {
  color: var(--ink);
}

.service-hero .hero__eyebrow {
  margin-bottom: 26px;
}

.service-hero h1 {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  max-width: 960px;
  text-wrap: balance;
}

.service-hero__lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
  margin: 24px 0 0;
  max-width: 760px;
}

.service-hero__facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  margin-top: 42px;
  max-width: 960px;
}

.service-hero__facts div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 18px;
}

.service-hero__facts strong,
.service-hero__facts span {
  display: block;
}

.service-hero__facts strong {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 8px;
}

.service-hero__facts span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.detail-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(247, 242, 255, 0.048), rgba(247, 242, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 30px;
}

.detail-card--wide {
  grid-column: 1 / -1;
}

.detail-card__label {
  color: #f7f2ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 34px;
  text-transform: uppercase;
}

.detail-card h2,
.detail-card h3 {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 14px;
}

.detail-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  margin: 0;
}

.detail-card ul {
  color: #ded9e8;
  display: grid;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.detail-card li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.detail-card li::before {
  background: #f7f2ff;
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  height: 7px;
  margin-top: 7px;
  width: 7px;
}

.page-cta {
  padding-top: clamp(40px, 7vh, 78px);
}

.page-cta__inner {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(247, 242, 255, 0.065), rgba(247, 242, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(28px, 5vw, 44px);
}

.page-cta h2 {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 12px;
}

.page-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

.work {
  padding-top: clamp(40px, 7vh, 80px);
}

.process {
  padding-top: clamp(44px, 8vh, 86px);
}

.delivery-flow {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, rgba(247, 242, 255, 0.045), rgba(247, 242, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  margin-bottom: 28px;
  padding: 18px;
}

.delivery-flow div {
  align-items: center;
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 82px;
}

.delivery-flow span {
  color: #f7f2ff;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.delivery-flow strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.delivery-flow i {
  background: linear-gradient(90deg, rgba(247, 242, 255, 0.12), rgba(247, 242, 255, 0.62));
  display: block;
  height: 1px;
}

.process-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.process-step {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, rgba(247, 242, 255, 0.044), rgba(247, 242, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  min-height: 245px;
  padding: 28px;
}

.process-step__num {
  color: #f7f2ff;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 44px;
}

.process-step h3 {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 14px;
}

.process-step p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.support-lanes {
  padding-top: clamp(48px, 8vh, 90px);
}

.lane-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.lane-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, rgba(247, 242, 255, 0.044), rgba(247, 242, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  min-height: 300px;
  padding: 30px;
}

.lane-card__label {
  color: #f7f2ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 42px;
  text-transform: uppercase;
}

.lane-card h3 {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 14px;
}

.lane-card p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.work-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(247, 242, 255, 0.044), rgba(247, 242, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  min-height: 270px;
  padding: 30px;
}

.work-item__type {
  color: #f7f2ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 42px;
  text-transform: uppercase;
}

.work-item h3 {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 14px;
}

.about {
  padding: clamp(50px, 8vh, 90px) var(--gutter);
}

.about__inner {
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
}

.about .eyebrow {
  margin-bottom: 24px;
}

.about__statement {
  color: var(--ink-soft);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.28;
  margin: 0;
  text-wrap: pretty;
}

.faq {
  max-width: 1080px;
  padding-top: clamp(54px, 9vh, 100px);
}

.faq-grid {
  display: grid;
  gap: 0;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  padding: 28px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.faq-item h3 {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
  margin: 0;
}

.faq-item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  margin: 0;
}

.contact {
  overflow: hidden;
  padding: clamp(80px, 14vh, 160px) var(--gutter);
  position: relative;
}

.contact__glow {
  background: radial-gradient(circle at center, rgba(247, 242, 255, 0.13), transparent 62%);
  bottom: -45%;
  filter: blur(60px);
  height: 700px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  width: min(1000px, 130vw);
}

.contact__inner {
  margin: 0 auto;
  max-width: 980px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.contact h2 {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  text-transform: uppercase;
}

.contact__copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 26px auto 42px;
  max-width: 500px;
}

.quote-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 0 auto;
  max-width: 820px;
}

.quote-form__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.field {
  color: #ded9e8;
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.field--full {
  width: 100%;
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  min-width: 0;
  outline: none;
  padding: 16px 18px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  width: 100%;
}

.field input,
.field select {
  min-height: 56px;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #ded9e8 50%),
    linear-gradient(135deg, #ded9e8 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.field select option {
  background: #120d21;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(247, 242, 255, 0.58);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #877f99;
}

.quote-form button {
  background: linear-gradient(135deg, #fff, #d8d4e1);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 50px rgba(247, 242, 255, 0.16);
  color: #05040a;
  cursor: pointer;
  flex: 0 1 auto;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  min-height: 58px;
  padding: 18px 40px;
  transition: box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.quote-form button:hover {
  transform: translateY(-2px);
}

.quote-form input:disabled,
.quote-form select:disabled,
.quote-form textarea:disabled,
.quote-form button:disabled {
  cursor: not-allowed;
  opacity: 0.78;
}

.quote-form__status {
  color: #ded9e8;
  flex-basis: 100%;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  min-height: 22px;
  text-align: center;
}

.quote-form__status.is-error {
  color: #ffb4c8;
}

.quote-form__trap {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.contact__fallback {
  color: #877f99;
  font-size: 14px;
  margin: 22px 0 0;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 36px var(--gutter);
}

.footer p {
  color: var(--faint);
  font-size: 14px;
  margin: 0;
}

.footer__right {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: flex-end;
}

.footer__social {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer__social a {
  color: #b3aec2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.footer__social a:hover {
  color: var(--ink);
}

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

@keyframes zHue {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes zFloat {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15) rotate(8deg);
  }
}

@keyframes zMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 480px) {
  .hero__title {
    font-size: 3.25rem;
  }

  .hero__tagline {
    font-size: 1.55rem;
  }
}

@media (min-width: 720px) {
  .hero__title {
    font-size: 3.85rem;
  }

  .service-hero h1 {
    font-size: 4.1rem;
  }

  .hero__tagline {
    font-size: 1.85rem;
  }

  .hero__summary {
    font-size: 1.1rem;
  }

  .section__header h2 {
    font-size: 4.25rem;
  }

  .about__statement {
    font-size: 2.8rem;
  }

  .contact h2 {
    font-size: 6.2rem;
  }

  .contact__copy {
    font-size: 1.2rem;
  }

  .marquee span {
    font-size: 2.625rem;
  }
}

@media (min-width: 1080px) {
  .hero__title {
    font-size: 4.6rem;
  }

  .service-hero h1 {
    font-size: 5.2rem;
  }

  .hero__tagline {
    font-size: 2.1rem;
  }

  .contact h2 {
    font-size: 8rem;
  }
}

@media (min-width: 1440px) {
  .hero__title {
    font-size: 5.05rem;
  }
}

@media (max-width: 960px) {
  .hero {
    text-align: center;
  }

  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__summary {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__signals {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__visual {
    margin: 0 auto;
    max-width: 620px;
    width: 100%;
  }

  .stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .delivery-flow {
    grid-template-columns: 1fr;
  }

  .delivery-flow i {
    height: 24px;
    justify-self: center;
    width: 1px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 68px;
  }

  .nav {
    justify-content: center;
  }

  .nav__links {
    justify-content: center;
    width: 100%;
  }

  .button {
    width: min(100%, 270px);
  }

  .hero__signals {
    grid-template-columns: 1fr;
  }

  .product-console__topbar,
  .product-console__body {
    grid-template-columns: 1fr;
  }

  .product-console__topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .console-tabs {
    flex-wrap: wrap;
  }

  .workflow-map {
    grid-template-columns: 1fr;
  }

  .workflow-map i {
    height: 18px;
    justify-self: center;
    width: 1px;
  }

  .page-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-cta .button {
    justify-self: center;
  }

  .quote-form__grid {
    grid-template-columns: 1fr;
  }

  .stack-grid {
    grid-template-columns: 1fr;
  }

  .quote-form button {
    width: 100%;
  }

  .footer {
    justify-content: center;
    text-align: center;
  }

  .footer__right {
    justify-content: center;
  }

  .faq-item {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
