:root {
  color-scheme: light;
  --green: #76e84a;
  --green-strong: #58cd31;
  --green-soft: #e4ffd8;
  --violet: #775cff;
  --violet-soft: #e7e2ff;
  --ink: #111318;
  --paper: #f7f8f4;
  --surface: #ffffff;
  --surface-2: #eef1eb;
  --text: #343842;
  --muted: #6a716c;
  --line: rgba(17, 19, 24, 0.12);
  --line-strong: rgba(17, 19, 24, 0.22);
  --glass: rgba(255, 255, 255, 0.74);
  --shadow-sm: 0 12px 32px rgba(17, 19, 24, 0.08);
  --shadow-md: 0 28px 70px rgba(17, 19, 24, 0.13);
  --shadow-xl: 0 48px 120px rgba(17, 19, 24, 0.18);
  --container: min(1220px, calc(100% - 40px));
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --header-height: 82px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #0d0f13;
  --surface: #15181e;
  --surface-2: #1c2027;
  --text: #d8ddd8;
  --muted: #9da69f;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --glass: rgba(21, 24, 30, 0.78);
  --shadow-sm: 0 14px 38px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 30px 80px rgba(0, 0, 0, 0.38);
  --shadow-xl: 0 54px 130px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(118, 232, 74, 0.08), transparent 28rem),
    radial-gradient(circle at 96% 18%, rgba(119, 92, 255, 0.09), transparent 30rem),
    var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--green);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 116px 0;
}

.section-compact {
  padding: 78px 0;
}

.surface-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.dark-section {
  margin-bottom: 110px;
  color: white;
  background: #111318;
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: white;
}

.dark-section .lead,
.dark-section .muted {
  color: rgba(255, 255, 255, 0.68);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--green);
  font-weight: 800;
  transform: translateY(-170%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5 {
  color: #f8faf7;
}

h1 {
  font-size: clamp(3.4rem, 6vw, 7.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 5rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 760;
}

h4 {
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

p {
  margin: 0;
}

.lead {
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  margin-top: 27px;
  line-height: 1.65;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--ink);
  font: 800 0.76rem/1 "Manrope", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

html[data-theme="dark"] .kicker {
  color: #f8faf7;
}

.kicker::before {
  content: "";
  width: 24px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--violet));
}

.section-heading {
  max-width: 850px;
}

.section-heading .lead {
  max-width: 680px;
  margin-top: 24px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .lead {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 800 0.94rem/1 "Manrope", sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(119, 92, 255, 0.45);
  outline-offset: 4px;
}

.btn-primary {
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 15px 38px rgba(118, 232, 74, 0.22);
}

.btn-primary:hover {
  background: #83f05b;
  box-shadow: 0 18px 44px rgba(118, 232, 74, 0.31);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}

html[data-theme="dark"] .btn-dark {
  color: var(--ink);
  background: #fff;
}

.btn-outline {
  border-color: var(--line-strong);
  background: transparent;
}

.btn-outline:hover {
  background: var(--surface);
}

.btn-white {
  color: var(--ink);
  background: #fff;
}

.btn-text {
  min-height: auto;
  padding: 0;
  border-radius: 0;
}

.btn .arrow {
  transition: transform 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  font-size: 0.82rem;
  font-weight: 700;
}

.tag.accent {
  color: var(--ink);
  border-color: transparent;
  background: var(--green);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 9px 0;
}

.nav-shell {
  min-height: 66px;
  padding: 0 10px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: 0 7px 26px rgba(17, 19, 24, 0.05);
}

.site-header.is-scrolled .nav-shell {
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font: 800 1.34rem/1 "Manrope", sans-serif;
  letter-spacing: -0.05em;
}

html[data-theme="dark"] .brand {
  color: #fff;
}

.brand-mark {
  position: relative;
  width: 37px;
  height: 37px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .brand-mark {
  background: #fff;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  border-radius: 999px;
  transform: rotate(-34deg);
}

.brand-mark::before {
  left: 10px;
  top: 9px;
  height: 25px;
  background: var(--green);
}

.brand-mark::after {
  right: 9px;
  top: 5px;
  height: 20px;
  background: var(--violet);
}

.brand-dot {
  color: var(--green-strong);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link,
.nav-dropdown>button {
  padding: 18px 0;
  border: 0;
  color: var(--text);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-dropdown>button:hover {
  color: var(--ink);
}

html[data-theme="dark"] .nav-link:hover,
html[data-theme="dark"] .nav-link[aria-current="page"],
html[data-theme="dark"] .nav-dropdown>button:hover {
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown>button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown>button svg {
  width: 13px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover>button svg,
.nav-dropdown:focus-within>button svg {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  left: 50%;
  top: calc(100% - 4px);
  width: min(760px, 76vw);
  padding: 18px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-feature {
  min-height: 230px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  color: white;
  background:
    radial-gradient(circle at 80% 15%, rgba(118, 232, 74, 0.42), transparent 34%),
    linear-gradient(145deg, #181b22, #282d37);
}

.dropdown-feature h3 {
  color: white;
  font-size: 1.5rem;
}

.dropdown-feature p {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.dropdown-feature span {
  color: var(--green);
  font: 800 0.8rem/1 "Manrope";
}

.dropdown-group {
  padding: 10px;
}

.dropdown-group h4 {
  margin-bottom: 10px;
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dropdown-group a {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 650;
}

.dropdown-group a:hover {
  color: var(--ink);
  background: var(--surface-2);
}

html[data-theme="dark"] .dropdown-group a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
  background: var(--surface-2);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .moon {
  display: none;
}

html[data-theme="dark"] .theme-toggle .sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle .moon {
  display: block;
}

.menu-toggle {
  display: none;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-toggle.is-open span {
  opacity: 0;
}

.menu-toggle.is-open::before {
  transform: rotate(45deg);
}

.menu-toggle.is-open::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 86px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 76%);
  opacity: 0.35;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 66px;
  align-items: center;
}

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

.hero-title-accent {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  left: -1%;
  right: -2%;
  bottom: 5%;
  height: 18%;
  z-index: -1;
  border-radius: 999px;
  background: var(--green);
  transform: rotate(-1deg);
}

.hero .lead {
  max-width: 690px;
  margin-top: 27px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(118, 232, 74, 0.13);
}

.system-stage {
  position: relative;
  min-height: 570px;
  perspective: 1000px;
}

.system-stage::before {
  content: "";
  position: absolute;
  inset: 10% 4% 6% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 232, 74, 0.24), rgba(119, 92, 255, 0.12) 44%, transparent 71%);
  filter: blur(10px);
  animation: pulse 7s ease-in-out infinite;
}

.stage-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(445px, 92%);
  min-height: 440px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 34px;
  color: white;
  background: linear-gradient(145deg, rgba(17, 19, 24, 0.93), rgba(38, 43, 53, 0.91));
  box-shadow: var(--shadow-xl);
  transform: translate(-50%, -50%) rotateY(-8deg) rotateX(4deg);
  overflow: hidden;
}

.stage-panel::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -90px;
  top: -100px;
  border-radius: 44% 56% 56% 44% / 41% 42% 58% 59%;
  background: linear-gradient(145deg, var(--green), #4bd8aa, var(--violet));
  box-shadow: inset -28px -26px 70px rgba(17, 19, 24, 0.25);
  animation: morph 9s ease-in-out infinite;
}

.stage-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 3px 20px;
}

.stage-dots {
  display: flex;
  gap: 6px;
}

.stage-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.stage-dots i:first-child {
  background: var(--green);
}

.stage-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 750;
}

.stage-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(118, 232, 74, 0.16);
}

.stage-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
}

.stage-intro {
  min-height: 116px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.stage-intro small {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.stage-intro strong {
  display: block;
  max-width: 270px;
  margin-top: 17px;
  font: 800 1.4rem/1.18 "Manrope";
  letter-spacing: -0.04em;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.metric-card {
  min-height: 117px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.metric-card small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-card strong {
  display: block;
  margin-top: 20px;
  color: white;
  font: 800 1.65rem/1 "Manrope";
}

.metric-card strong em {
  color: var(--green);
  font-size: 0.76rem;
  font-style: normal;
}

.metric-bars {
  height: 35px;
  margin-top: 13px;
  display: flex;
  align-items: end;
  gap: 5px;
}

.metric-bars i {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: rgba(255, 255, 255, 0.13);
}

.metric-bars i:nth-child(1) {
  height: 32%;
}

.metric-bars i:nth-child(2) {
  height: 48%;
}

.metric-bars i:nth-child(3) {
  height: 42%;
}

.metric-bars i:nth-child(4) {
  height: 66%;
  background: var(--violet);
}

.metric-bars i:nth-child(5) {
  height: 90%;
  background: var(--green);
}

.stage-pill {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font: 800 0.8rem/1 "Manrope";
  animation: drift 6s ease-in-out infinite;
}

html[data-theme="dark"] .stage-pill {
  color: #fff;
}

.stage-pill small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font: 700 0.64rem/1 "Inter";
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stage-pill.one {
  left: -2%;
  top: 14%;
}

.stage-pill.two {
  right: -2%;
  top: 28%;
  animation-delay: 0.8s;
}

.stage-pill.three {
  left: 5%;
  bottom: 0%;
  animation-delay: 1.4s;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 74%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 10px;
  white-space: nowrap;
}

.marquee-group b {
  color: var(--ink);
  font: 800 0.8rem/1 "Manrope";
  letter-spacing: 0.06em;
}

html[data-theme="dark"] .marquee-group b {
  color: #fff;
}

.marquee-group i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.editorial-sticky {
  position: sticky;
  top: 130px;
}

.editorial-sticky .lead {
  margin-top: 24px;
}

.editorial-stack {
  display: grid;
  gap: 16px;
}

.editorial-card {
  position: relative;
  min-height: 250px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.editorial-card.dark {
  color: white;
  background: var(--ink);
}

.editorial-card.dark h3 {
  color: white;
}

.editorial-card.gradient {
  background: linear-gradient(145deg, rgba(119, 92, 255, 0.14), rgba(118, 232, 74, 0.22));
}

.editorial-card .number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--ink);
  background: var(--green);
  font: 800 0.8rem/1 "Manrope";
}

.editorial-card h3 {
  margin-top: 44px;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.editorial-card p {
  max-width: 610px;
  margin-top: 16px;
  color: var(--muted);
}

.editorial-card.dark p {
  color: rgba(255, 255, 255, 0.62);
}

.editorial-card .card-link {
  position: absolute;
  left: 32px;
  bottom: 29px;
  font-weight: 800;
}

.card-orbit {
  position: absolute;
  right: -40px;
  top: -35px;
  width: 220px;
  height: 220px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.15;
}

.card-orbit::before,
.card-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.card-orbit::before {
  inset: 36px;
  border: 1px solid currentColor;
}

.card-orbit::after {
  width: 24px;
  height: 24px;
  left: 18px;
  top: 86px;
  background: var(--green);
  opacity: 1;
}

.services-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 17px;
}

.service-card {
  position: relative;
  min-height: 315px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.service-card:nth-child(1),
.service-card:nth-child(6) {
  grid-column: span 7;
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
  grid-column: span 5;
}

.service-card:nth-child(3),
.service-card:nth-child(4) {
  grid-column: span 6;
}

.service-card.dark {
  color: white;
  background: var(--ink);
}

.service-card.dark h3 {
  color: white;
}

.service-card.violet {
  background: linear-gradient(145deg, rgba(119, 92, 255, 0.17), rgba(119, 92, 255, 0.04));
}

.service-card.green {
  background: linear-gradient(145deg, rgba(118, 232, 74, 0.25), rgba(118, 232, 74, 0.04));
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--ink);
  background: var(--green);
  font: 800 0.9rem/1 "Manrope";
}

.service-card.violet .service-icon {
  color: white;
  background: var(--violet);
}

.service-card h3 {
  margin-top: 36px;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

.service-card p {
  max-width: 610px;
  margin-top: 15px;
  color: var(--muted);
}

.service-card.dark p {
  color: rgba(255, 255, 255, 0.62);
}

.service-card .tag-row {
  margin-top: 24px;
  padding-bottom: 48px;
}

.service-card.dark .tag {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.05);
}

.service-card .card-link {
  position: absolute;
  left: 26px;
  bottom: 25px;
  font-weight: 800;
}

.platform-band {
  position: relative;
  overflow: hidden;
  color: white;
  margin-bottom: 116px;
  background: var(--ink);
}

.platform-band::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -190px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 92, 255, 0.36), transparent 68%);
}

.platform-band::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -220px;
  bottom: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 232, 74, 0.2), transparent 70%);
}

.platform-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.platform-band .kicker,
.platform-band h2 {
  color: white;
}

.platform-band .lead {
  color: rgba(255, 255, 255, 0.66);
}

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

.platform-chip {
  min-height: 48px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.055);
  font: 750 0.86rem/1 "Manrope";
  transition: transform 0.2s ease, background 0.2s ease;
}

.platform-chip:hover {
  transform: translateY(-3px);
  background: rgba(118, 232, 74, 0.1);
}

.platform-chip.primary {
  color: var(--ink);
  border-color: transparent;
  background: var(--green);
}

.wordPress-feature {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.wp-copy {
  padding: clamp(38px, 5.5vw, 76px);
}

.wp-copy .lead {
  margin-top: 22px;
}

.check-grid {
  margin: 30px 0 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.check-item i {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #2c751a;
  background: rgba(118, 232, 74, 0.23);
  font-style: normal;
  font-size: 0.75rem;
}

.wp-visual {
  position: relative;
  min-height: 565px;
  padding: 35px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--violet);
}

.wp-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 28% 25%, rgba(255, 255, 255, 0.25), transparent 28%), radial-gradient(circle at 78% 78%, rgba(118, 232, 74, 0.52), transparent 31%);
}

.console {
  position: relative;
  width: min(510px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 26px;
  color: white;
  background: rgba(17, 19, 24, 0.88);
  box-shadow: 0 42px 90px rgba(17, 19, 24, 0.32);
  transform: rotate(-4deg);
}

.console-top {
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.console-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff7676;
}

.console-top i:nth-child(2) {
  background: #ffd167;
}

.console-top i:nth-child(3) {
  background: var(--green);
}

.console-body {
  padding: 22px;
}

.console-line {
  height: 9px;
  margin-bottom: 11px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.11);
}

.console-line:nth-child(1) {
  width: 53%;
  background: var(--green);
}

.console-line:nth-child(2) {
  width: 82%;
}

.console-line:nth-child(3) {
  width: 69%;
}

.console-line:nth-child(4) {
  width: 91%;
}

.console-line:nth-child(5) {
  width: 63%;
  background: rgba(119, 92, 255, 0.78);
}

.console-metrics {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.console-metrics div {
  min-height: 90px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.7rem;
}

.console-metrics b {
  display: block;
  margin-top: 20px;
  color: var(--green);
  font: 800 1.25rem/1 "Manrope";
}

.outcome-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.outcome-card {
  min-height: 270px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.outcome-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green);
  background: var(--ink);
  font: 800 1rem/1 "Manrope";
}

.outcome-card h3 {
  margin-top: 42px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.outcome-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 85px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 130px;
}

.process-copy .lead {
  margin-top: 22px;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.process-number {
  color: var(--violet);
  font: 800 1rem/1 "Manrope";
}

.process-step p {
  max-width: 670px;
  margin-top: 10px;
  color: var(--muted);
}

.cta-wrap {
  padding: 0 0 116px;
}

.cta-panel {
  position: relative;
  min-height: 470px;
  padding: clamp(44px, 7vw, 88px);
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  border-radius: 44px;
  color: white;
  background: var(--ink);
}

.cta-panel h2 {
  max-width: 800px;
  color: white;
}

.cta-panel p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.66);
}

.cta-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-art {
  justify-self: end;
  position: relative;
  width: 300px;
  height: 300px;
}

.cta-blob {
  position: absolute;
  inset: 0;
  border-radius: 44% 56% 40% 60% / 53% 45% 55% 47%;
  background: linear-gradient(145deg, var(--green), #50daa7, var(--violet));
  box-shadow: inset -27px -25px 62px rgba(17, 19, 24, 0.27), 0 35px 90px rgba(119, 92, 255, 0.22);
  animation: morph 10s ease-in-out infinite;
}

.cta-ring {
  position: absolute;
  inset: 27px -35px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.cta-card {
  position: absolute;
  left: -26px;
  bottom: 20px;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transform: rotate(16deg);
}

.site-footer {
  padding: 28px 0 44px;
}

.footer-grid {
  padding: 58px 0;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 52px;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  max-width: 370px;
  margin-top: 18px;
  color: var(--muted);
}

.footer-col h4 {
  margin-bottom: 18px;
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 0.89rem;
}

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

html[data-theme="dark"] .footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Inner page hero */
.page-hero {
  position: relative;
  padding: 178px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -170px;
  top: 70px;
  width: 560px;
  height: 560px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 92, 255, 0.2), transparent 68%);
}

.page-hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 70px;
  align-items: end;
}

.page-hero h1 {
  font-size: clamp(3.3rem, 6vw, 6.5rem);
}

.page-hero .lead {
  max-width: 690px;
  margin-top: 27px;
}

.page-hero-aside {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.page-hero-aside strong {
  display: block;
  color: var(--ink);
  font: 800 1.02rem/1.25 "Manrope";
}

html[data-theme="dark"] .page-hero-aside strong {
  color: #fff;
}

.page-hero-aside p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero-aside .tag-row {
  margin-top: 20px;
}

.page-hero-aside img {
  border-radius: 26px;
}

.statement-panel {
  padding: clamp(38px, 6vw, 70px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  border-radius: 40px;
  color: white;
  background: var(--ink);
}

.statement-panel h2 {
  color: white;
}

.statement-panel p {
  color: rgba(255, 255, 255, 0.65);
}

.statement-label {
  color: var(--green);
  font: 800 0.8rem/1 "Manrope";
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.principles-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.principle-card {
  min-height: 295px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: var(--surface);
}

.principle-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(118, 232, 74, 0.2), transparent);
}

.principle-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(119, 92, 255, 0.16), transparent);
}

.principle-card span {
  color: var(--violet);
  font: 800 0.78rem/1 "Manrope";
}

.principle-card h3 {
  margin-top: 50px;
  font-size: 1.7rem;
}

.principle-card p {
  margin-top: 15px;
  color: var(--muted);
}

.capability-map {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.capability-group {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
}

.capability-group h3 {
  font-size: 1.55rem;
}

.capability-group p {
  margin-top: 12px;
  color: var(--muted);
}

.capability-list {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.partner-row {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.partner-card {
  padding: 24px;
  border-top: 1px solid #ffffff1f;
}

.partner-card b {
  display: block;
  font: 800 1rem/1.25 "Manrope";
}

html[data-theme="dark"] .partner-card b {
  color: #fff;
}

.partner-card p {
  margin-top: 10px;
  font-size: 0.88rem;
}

/* Service parent page */
.service-hero {
  position: relative;
  padding: 170px 0 98px;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.service-hero::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -210px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 92, 255, 0.46), transparent 68%);
}

.service-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.service-hero h1 {
  color: white;
  font-size: clamp(3.5rem, 6.6vw, 7rem);
}

.service-hero .lead {
  max-width: 700px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.68);
}

.service-hero .kicker {
  color: white;
}

.service-hero .tag {
  color: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.service-hero .tag-row {
  margin-top: 28px;
}

.service-orbital {
  position: relative;
  min-height: 470px;
}

.service-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 285px;
  height: 285px;
  border-radius: 44% 56% 58% 42% / 44% 39% 61% 56%;
  background: linear-gradient(145deg, var(--green), #4adfa6, var(--violet));
  box-shadow: inset -28px -26px 70px rgba(17, 19, 24, 0.24), 0 50px 110px rgba(119, 92, 255, 0.24);
  transform: translate(-50%, -50%);
  animation: morph 9s ease-in-out infinite, float-centered 6s ease-in-out infinite;
}

.orbit-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.orbit-line::before,
.orbit-line::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.orbit-line::before {
  left: 29px;
  top: 58px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(118, 232, 74, 0.13);
}

.orbit-line::after {
  right: 38px;
  bottom: 38px;
  background: var(--violet);
  box-shadow: 0 0 0 7px rgba(119, 92, 255, 0.14);
}

.orbit-card {
  position: absolute;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(15px);
  color: white;
  font: 800 0.78rem/1 "Manrope";
}

.orbit-card small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.48);
  font: 700 0.63rem/1 "Inter";
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-card.a {
  left: 1%;
  top: 17%;
}

.orbit-card.b {
  right: 0;
  top: 29%;
}

.orbit-card.c {
  left: 8%;
  bottom: 8%;
}

.anchor-nav {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(16px);
}

.anchor-nav .container {
  display: flex;
  justify-content: center;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.anchor-nav .container::-webkit-scrollbar {
  display: none;
}

.anchor-nav a {
  padding: 18px 0;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 750;
}

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

html[data-theme="dark"] .anchor-nav a:hover {
  color: #fff;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: start;
}

.service-summary {
  position: sticky;
  top: 150px;
}

.service-summary .lead {
  margin-top: 22px;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.benefit-card {
  min-height: 225px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--surface);
}

.benefit-card span {
  color: var(--violet);
  font: 800 0.78rem/1 "Manrope";
}

.benefit-card h3 {
  margin-top: 42px;
  font-size: 1.35rem;
}

.benefit-card p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.89rem;
}

.service-section-list {
  display: grid;
  gap: 24px;
}

.service-group {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
}

.service-group.featured {
  color: white;
  background: var(--ink);
}

.service-group.featured h2,
.service-group.featured h3 {
  color: white;
}

.service-group-copy p {
  margin-top: 15px;
  color: var(--muted);
}

.service-group.featured .service-group-copy p {
  color: rgba(255, 255, 255, 0.63);
}

.service-group-index {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--ink);
  background: var(--green);
  font: 800 0.78rem/1 "Manrope";
}

.inner-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.inner-service {
  min-height: 48px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: var(--paper);
  font-size: 0.83rem;
  font-weight: 700;
}

.inner-service::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.service-group.featured .inner-service {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--ink);
  font: 760 1.05rem/1.35 "Manrope";
  list-style: none;
}

html[data-theme="dark"] summary {
  color: #fff;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--violet);
  font-size: 1.5rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 790px;
  padding: 0 0 26px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes morph {

  0%,
  100% {
    border-radius: 44% 56% 58% 42% / 44% 39% 61% 56%;
  }

  50% {
    border-radius: 60% 40% 42% 58% / 53% 59% 41% 47%;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.78;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes float-centered {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) rotate(-2deg);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-15px) rotate(3deg);
  }
}

@media (max-width: 1080px) {

  .hero-layout,
  .page-hero-layout,
  .service-hero-layout,
  .editorial-grid,
  .platform-layout,
  .wordPress-feature,
  .process-layout,
  .cta-panel,
  .statement-panel,
  .service-intro-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .system-stage {
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .page-hero-aside {
    max-width: 600px;
  }

  .editorial-sticky,
  .process-copy,
  .service-summary {
    position: static;
  }

  .services-grid .service-card {
    grid-column: span 6;
  }

  .platform-layout {
    gap: 46px;
  }

  .wp-visual {
    min-height: 470px;
  }

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

  .cta-art {
    justify-self: start;
    width: 240px;
    height: 240px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

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

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

  .service-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  :root {
    --container: min(100% - 28px, 720px);
  }

  .section {
    padding: 88px 0;
  }

  .section-compact {
    padding: 66px 0;
  }

  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    min-height: 61px;
  }

  .nav-main {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 105px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }

  .nav-main.is-open {
    transform: none;
  }

  .nav-link,
  .nav-dropdown>button {
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    font: 800 1.45rem/1.15 "Manrope";
    text-align: left;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    padding: 0 0 12px;
    display: none;
    grid-template-columns: 1fr;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .nav-dropdown.is-open .dropdown-panel {
    display: grid;
  }

  .dropdown-feature {
    display: none;
  }

  .dropdown-group {
    padding: 0;
  }

  .dropdown-group h4 {
    margin: 10px 0 5px;
  }

  .dropdown-group a {
    padding-left: 0;
  }

  .nav-main>.btn {
    margin-top: 15px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding: 132px 0 76px;
  }

  .page-hero {
    padding: 143px 0 82px;
  }

  .service-hero {
    padding: 140px 0 82px;
  }

  .system-stage {
    min-height: 500px;
  }

  .services-grid .service-card {
    grid-column: 1 / -1;
  }

  .service-card {
    min-height: 300px;
  }

  .check-grid,
  .service-benefits,
  .inner-services {
    grid-template-columns: 1fr;
  }

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

  .service-group {
    padding: 28px;
  }

  .anchor-nav {
    top: 80px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .system-stage {
    min-height: 415px;
    transform: scale(0.86);
    transform-origin: top center;
    margin-bottom: -55px;
  }

  .stage-panel {
    min-height: 420px;
  }

  .stage-pill {
    padding: 11px 12px;
    font-size: 0.7rem;
  }

  .editorial-card {
    min-height: 300px;
    padding: 24px;
  }

  .editorial-card .card-link {
    left: 24px;
    bottom: 24px;
  }

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

  .process-step {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .wp-copy {
    padding: 36px 24px;
  }

  .wp-visual {
    min-height: 395px;
    padding: 20px;
  }

  .console-metrics {
    grid-template-columns: 1fr;
  }

  .console-metrics div {
    min-height: 70px;
  }

  .console-metrics b {
    margin-top: 10px;
  }

  .cta-panel {
    padding: 38px 24px;
    border-radius: 30px;
  }

  .cta-art {
    width: 205px;
    height: 205px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .partner-row {
    grid-template-columns: 1fr;
  }

  .service-orbital {
    min-height: 390px;
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -50px;
  }

  .service-group {
    padding: 24px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Complete site additions */
.nav-dropdown.is-current>button {
  color: var(--ink);
}

html[data-theme="dark"] .nav-dropdown.is-current>button {
  color: #fff;
}

.dropdown-panel-wide {
  width: min(800px, 78vw);
}

.nav-contact-link {
  display: none;
}

.section-actions {
  margin-top: 30px;
}

.section-actions.center {
  text-align: center;
}

.stage-tags {
  margin-top: 15px;
}

.stage-tags .tag {
  color: white;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
}

.footer-spotlight {
  margin-bottom: 70px;
  padding: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(118, 232, 74, .1), rgba(119, 92, 255, .13));
}

.footer-spotlight h2 {
  max-width: 760px;
  color: white;
  font-size: clamp(2rem, 4vw, 4rem);
}

.footer-spotlight .kicker {
  color: white;
}

.footer-grid-full {
  grid-template-columns: 1.4fr .75fr 1fr 1fr .75fr;
}

.footer-email {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
}

.lifecycle-line {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.lifecycle-line article {
  padding: 28px 24px 0 0;
}

.lifecycle-line span {
  color: var(--green);
  font: 800 .78rem/1 Manrope;
}

.lifecycle-line h3 {
  margin-top: 28px;
  color: white;
  font-size: 1.4rem;
}

.lifecycle-line p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
}

.services-directory-hero {
  overflow: hidden;
}

.capability-radar {
  position: relative;
  min-height: 430px;
}

.radar-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring.r1 {
  width: 150px;
  height: 150px;
}

.radar-ring.r2 {
  width: 280px;
  height: 280px;
}

.radar-ring.r3 {
  width: 410px;
  height: 410px;
}

.radar-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 102px;
  height: 102px;
  display: grid;
  place-items: center;
  border-radius: 33px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--green), #54dba6, var(--violet));
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -50%) rotate(-8deg);
  font: 800 3rem/1 Manrope;
}

.radar-label {
  position: absolute;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font: 800 .78rem/1 Manrope;
}

.radar-label.a {
  left: 8%;
  top: 17%;
}

.radar-label.b {
  right: 2%;
  top: 28%;
}

.radar-label.c {
  right: 15%;
  bottom: 9%;
}

.radar-label.d {
  left: 7%;
  bottom: 21%;
}

.service-directory {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.directory-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  transition: transform .25s ease, box-shadow .25s ease;
}

.directory-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.directory-card>a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.directory-card.ink {
  color: white;
  background: var(--ink);
}

.directory-card.ink h3 {
  color: white;
}

.directory-card.ink p {
  color: rgba(255, 255, 255, .66);
}

.directory-card.ink .tag {
  color: rgba(255, 255, 255, .75);
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .06);
}

.directory-card.green {
  background: var(--green);
}

.directory-card.green .tag {
  color: var(--ink);
  border-color: rgba(17, 19, 24, .15);
  background: rgba(255, 255, 255, .3);
}

.directory-card.violet {
  color: white;
  background: var(--violet);
}

.directory-card.violet h3 {
  color: white;
}

.directory-card.violet p {
  color: rgba(255, 255, 255, .73);
}

.directory-card.violet .tag {
  color: white;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
}

.directory-top {
  display: flex;
  justify-content: space-between;
  font: 800 .8rem/1 Manrope;
}

.directory-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.directory-card h3 {
  margin-top: 58px;
  font-size: 1.7rem;
}

.directory-card p {
  margin-top: 16px;
  color: var(--muted);
}

.directory-card .tag-row {
  margin-top: 24px;
}

.service-path {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.path-questions {
  display: grid;
  gap: 12px;
}

.path-question {
  padding: 23px;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 5px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.path-question span {
  grid-row: span 2;
  color: var(--violet);
  font: 800 .8rem/1 Manrope;
}

.path-question strong {
  color: var(--ink);
  font: 800 1.15rem/1.2 Manrope;
}

.path-question small {
  color: var(--muted);
}

html[data-theme="dark"] .path-question strong {
  color: white;
}

.service-hero .hero-actions {
  margin-top: 30px;
}

.btn-ghost {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, .25);
}

.service-group-copy h2 {
  margin-top: 25px;
}

.browser-art {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 31px;
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
}

.browser-bar {
  height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}

.browser-bar span {
  margin-left: auto;
  color: rgba(255, 255, 255, .45);
  font-size: .72rem;
}

.browser-canvas {
  padding: 30px;
}

.wire-nav {
  width: 65%;
  height: 13px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .12);
}

.wire-hero {
  margin-top: 42px;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(118, 232, 74, .9), rgba(119, 92, 255, .85));
}

.wire-hero b {
  display: block;
  color: var(--ink);
  font: 800 2.1rem/1.05 Manrope;
}

.wire-hero span {
  display: block;
  width: 70%;
  height: 10px;
  margin-top: 18px;
  border-radius: 99px;
  background: rgba(17, 19, 24, .25);
}

.wire-hero span+span {
  width: 48%;
  margin-top: 9px;
}

.wire-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.wire-grid i {
  height: 105px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
}

.floating-note {
  position: absolute;
  padding: 12px 15px;
  border-radius: 14px;
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow-md);
  font: 800 .75rem/1 Manrope;
}

.floating-note.note-a {
  right: -25px;
  top: 90px;
}

.floating-note.note-b {
  left: -30px;
  bottom: 45px;
  background: var(--green);
}

.web-intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 75px;
}

.decision-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.decision-board article {
  min-height: 190px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.decision-board span {
  color: var(--violet);
  font: 800 .75rem/1 Manrope;
}

.decision-board h3 {
  margin-top: 35px;
  font-size: 1.3rem;
}

.decision-board p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .88rem;
}

.compact-service-list {
  display: grid;
  gap: 24px;
}

.compact-service {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
}

.compact-service-head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
}

.compact-service-head>span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: var(--green);
  font: 800 .78rem/1 Manrope;
}

.compact-service-head p {
  margin-top: 11px;
  color: var(--muted);
}

.service-chip-cloud {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.service-chip-cloud span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-size: .82rem;
  font-weight: 700;
}

.horizontal-process {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.horizontal-process article {
  padding: 25px;
  border-top: 1px solid var(--line-strong);
}

.horizontal-process span {
  color: var(--violet);
  font: 800 .76rem/1 Manrope;
}

.horizontal-process h3 {
  margin-top: 42px;
  font-size: 1.35rem;
}

.horizontal-process p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .88rem;
}

.commerce-art {
  position: relative;
  min-height: 470px;
}

.commerce-product {
  position: absolute;
  left: 3%;
  top: 6%;
  width: 260px;
  min-height: 340px;
  padding: 24px;
  border-radius: 32px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-xl);
  transform: rotate(-5deg);
}

.commerce-product span {
  font: 800 .72rem/1 Manrope;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.product-shape {
  width: 150px;
  height: 165px;
  margin: 35px auto 25px;
  border-radius: 42% 58% 48% 52%;
  background: linear-gradient(145deg, var(--green), #4fd8b1, var(--violet));
  box-shadow: inset -25px -25px 50px rgba(17, 19, 24, .2);
}

.commerce-product strong {
  display: block;
  font: 800 1.4rem/1.15 Manrope;
}

.commerce-flow {
  position: absolute;
  left: 49%;
  top: 48%;
  width: 130px;
  display: flex;
  gap: 16px;
}

.commerce-flow i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(118, 232, 74, .14);
}

.commerce-checkout {
  position: absolute;
  right: 0;
  bottom: 7%;
  width: 250px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 25px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(15px);
}

.commerce-checkout small {
  color: rgba(255, 255, 255, .5);
}

.commerce-checkout b {
  display: block;
  margin-top: 12px;
  color: white;
  font: 800 1.15rem/1.3 Manrope;
}

.commerce-checkout span {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 10px;
  border-radius: 99px;
  color: var(--ink);
  background: var(--green);
  font: 800 .68rem/1 Manrope;
}

.commerce-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.commerce-pillar {
  min-height: 380px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
}

.commerce-pillar:nth-child(2) {
  background: var(--green);
}

.commerce-pillar:nth-child(3) {
  color: white;
  background: var(--violet);
}

.commerce-pillar:nth-child(3) h2 {
  color: white;
}

.commerce-pillar>span {
  margin-bottom: auto;
  color: var(--violet);
  font: 800 .75rem/1 Manrope;
}

.commerce-pillar:nth-child(2)>span,
.commerce-pillar:nth-child(3)>span {
  color: var(--ink);
}

.commerce-pillar h2 {
  font-size: 2rem;
}

.commerce-pillar p {
  margin-top: 18px;
  color: var(--muted);
}

.commerce-pillar:nth-child(2) p {
  color: rgba(17, 19, 24, .7);
}

.commerce-pillar:nth-child(3) p {
  color: rgba(255, 255, 255, .72);
}

.split-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.split-tags {
  margin-top: 25px;
}

.workflow-stack {
  display: grid;
  gap: 12px;
}

.workflow-stack article {
  padding: 22px;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 5px 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.workflow-stack span {
  grid-row: span 2;
  color: var(--violet);
  font: 800 .78rem/1 Manrope;
}

.workflow-stack strong {
  color: var(--ink);
  font: 800 1.05rem/1.2 Manrope;
}

.workflow-stack small {
  color: var(--muted);
}

html[data-theme="dark"] .workflow-stack strong {
  color: white;
}

.platform-copy {
  margin-top: 24px;
}

.wp-hero-console {
  max-width: 470px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, .07);
  box-shadow: var(--shadow-xl);
}

.wp-console-head {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .55);
  font-size: .75rem;
}

.wp-console-head i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(118, 232, 74, .12);
}

.wp-console-body {
  padding: 28px;
}

.wp-core {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 40px;
  color: white;
  background: linear-gradient(145deg, #21759b, #111318);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .28);
  font: 800 4rem/1 Manrope;
}

.wp-status {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.wp-status span {
  color: rgba(255, 255, 255, .65);
}

.wp-status span i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.wp-status strong {
  color: white;
  font-size: .84rem;
}

.wp-service-spectrum {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}

.wp-spectrum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.wp-spectrum-grid article {
  padding: 25px;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.wp-spectrum-grid span {
  color: var(--violet);
  font: 800 .74rem/1 Manrope;
}

.wp-spectrum-grid h3 {
  margin-top: 40px;
  font-size: 1.25rem;
}

.wp-spectrum-grid p {
  margin-top: 11px;
  color: var(--muted);
  font-size: .87rem;
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 55px;
  align-items: center;
}

.diagnostic-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
}

.diagnostic-steps {
  margin-top: 30px;
  display: grid;
  gap: 11px;
}

.diagnostic-steps span {
  padding: 14px 16px;
  border-radius: 13px;
  background: var(--paper);
  font-weight: 700;
}

.diagnostic-steps span::before {
  content: '✓';
  margin-right: 10px;
  color: var(--green-strong);
}

.wp-tech-cloud {
  min-height: 360px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 12px;
}

.wp-tech-cloud span {
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-weight: 750;
}

.white-label-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.white-label-teaser .lead {
  margin-top: 20px;
  max-width: 780px;
}

.migration-map {
  position: relative;
  min-height: 430px;
}

.migration-node {
  position: absolute;
  width: 230px;
  padding: 24px;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-xl);
  color: var(--ink);
}

.migration-node small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .66rem;
}

.migration-node strong {
  display: block;
  margin-top: 18px;
  font: 800 1.35rem/1.2 Manrope;
}

.migration-node.source {
  left: 0;
  top: 30px;
  transform: rotate(-4deg);
}

.migration-node.target {
  right: 0;
  bottom: 25px;
  transform: rotate(4deg);
  background: var(--green);
}

.migration-route {
  position: absolute;
  left: 35%;
  top: 47%;
  width: 210px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.migration-route::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, .25);
}

.migration-route i {
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 7px rgba(119, 92, 255, .15);
}

.migration-route span {
  position: absolute;
  top: 25px;
  color: rgba(255, 255, 255, .55);
  font-size: .7rem;
  white-space: nowrap;
}

.migration-badge {
  position: absolute;
  right: 15%;
  top: 16%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 99px;
  background: rgba(255, 255, 255, .07);
  font: 800 .72rem/1 Manrope;
}

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

.migration-principles article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--surface);
}

.migration-principles span {
  color: var(--violet);
  font: 800 .76rem/1 Manrope;
}

.migration-principles h3 {
  margin-top: 48px;
  font-size: 1.28rem;
}

.migration-principles p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .87rem;
}

.migration-checklist-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 65px;
  align-items: center;
}

.migration-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.migration-checklist span {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  font-weight: 700;
}

.migration-checklist span::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

.brand-board {
  position: relative;
  min-height: 460px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 32px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
}

.brand-board-title {
  color: white;
  font: 800 3.4rem/1 Manrope;
  letter-spacing: -.07em;
}

.brand-board-title span {
  color: var(--green);
}

.brand-swatch {
  position: absolute;
  border-radius: 50%;
}

.brand-swatch.green {
  width: 170px;
  height: 170px;
  right: 10%;
  top: 18%;
  background: var(--green);
}

.brand-swatch.violet {
  width: 105px;
  height: 105px;
  right: 3%;
  top: 49%;
  background: var(--violet);
}

.brand-type {
  position: absolute;
  left: 30px;
  bottom: 32px;
}

.brand-type small {
  color: rgba(255, 255, 255, .5);
}

.brand-type strong {
  display: block;
  margin-top: 12px;
  color: white;
  font: 800 1.8rem/1.1 Manrope;
}

.brand-post {
  position: absolute;
  right: 24px;
  bottom: 28px;
  width: 190px;
  height: 130px;
  padding: 18px;
  border-radius: 22px;
  color: var(--ink);
  background: white;
  transform: rotate(5deg);
  box-shadow: var(--shadow-md);
}

.brand-post i {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--green), var(--violet));
}

.brand-post b {
  font: 800 .9rem/1.2 Manrope;
}

.creative-manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.creative-word {
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  font: 800 clamp(4rem, 10vw, 9rem)/.8 Manrope;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.creative-tabs-static {
  display: grid;
  gap: 24px;
}

.creative-panel {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 50px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
}

.creative-panel.reverse {
  grid-template-columns: 1.3fr .7fr;
}

.creative-panel.reverse>div:first-child {
  order: 2;
}

.creative-panel p {
  margin-top: 15px;
  color: var(--muted);
}

.content-ecosystem {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.ecosystem-orbit {
  position: relative;
  min-height: 430px;
}

.eco-core,
.eco-node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font: 800 .78rem/1 Manrope;
}

.eco-core {
  left: 50%;
  top: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  color: var(--ink);
  background: linear-gradient(145deg, var(--green), var(--violet));
}

.eco-node {
  width: 92px;
  height: 92px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}


.cube-stage {
  position: relative;
  min-height: 470px;
  perspective: 900px;
}

.cube {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 190px;
  height: 190px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(-24deg) rotateY(35deg);
  animation: cube-spin 14s linear infinite;
}

.face {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: linear-gradient(145deg, rgba(118, 232, 74, .75), rgba(119, 92, 255, .55));
  backdrop-filter: blur(6px);
}

.face.front {
  transform: translateZ(95px)
}

.face.back {
  transform: rotateY(180deg) translateZ(95px)
}

.face.right {
  transform: rotateY(90deg) translateZ(95px)
}

.face.left {
  transform: rotateY(-90deg) translateZ(95px)
}

.face.top {
  transform: rotateX(90deg) translateZ(95px)
}

.face.bottom {
  transform: rotateX(-90deg) translateZ(95px)
}

.cube-shadow {
  position: absolute;
  left: 50%;
  bottom: 35px;
  width: 250px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .35);
  filter: blur(25px);
  transform: translateX(-50%);
}

.cube-label {
  position: absolute;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  font: 800 .72rem/1 Manrope;
}

.cube-label.a {
  left: 3%;
  top: 20%
}

.cube-label.b {
  right: 4%;
  top: 32%
}

.cube-label.c {
  left: 15%;
  bottom: 10%
}

@keyframes cube-spin {
  to {
    transform: translate(-50%, -50%) rotateX(336deg) rotateY(395deg)
  }
}

.three-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.three-use-grid {
  display: grid;
  gap: 12px;
}

.three-use-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.three-use-grid span {
  color: var(--violet);
  font: 800 .72rem/1 Manrope;
}

.three-use-grid p {
  margin-top: 15px;
  color: var(--muted);
}

.three-gallery-section {
  overflow: hidden;
}

.abstract-gallery {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  gap: 14px;
}

.gallery-piece {
  position: relative;
  min-height: 370px;
  border-radius: 28px;
  overflow: hidden;
}

.gallery-piece::before {
  content: '';
  position: absolute;
  inset: 0;
}

.gallery-piece span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 9px 12px;
  border-radius: 99px;
  color: white;
  background: rgba(17, 19, 24, .5);
  backdrop-filter: blur(10px);
  font: 800 .72rem/1 Manrope;
}

.g1::before {
  background: radial-gradient(circle at 35% 35%, #fff 0 5%, transparent 6%), linear-gradient(145deg, #1f2530, #775cff)
}

.g2::before {
  background: repeating-linear-gradient(45deg, #76e84a 0 18px, #111318 18px 36px)
}

.g3::before {
  background: conic-gradient(from 30deg, #775cff, #76e84a, #f7f8f4, #775cff)
}

.g4::before {
  background: radial-gradient(circle at 50% 70%, #76e84a, transparent 30%), linear-gradient(#090a0d, #343842)
}

.growth-dashboard {
  max-width: 500px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 30px;
  background: rgba(255, 255, 255, .07);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.growth-top {
  padding: 18px 21px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
}

.growth-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.growth-chart {
  padding: 20px 25px 0
}

.growth-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.growth-metrics span {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .1)
}

.growth-metrics span:last-child {
  border-right: 0
}

.growth-metrics small {
  display: block;
  color: rgba(255, 255, 255, .45)
}

.growth-metrics b {
  display: block;
  margin-top: 10px;
  color: white;
  font-size: .85rem
}

.growth-loop {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.growth-loop-core {
  padding: 40px;
  border-radius: 50px;
  background: linear-gradient(145deg, var(--green), #55ddae);
  color: var(--ink);
}

.growth-loop-core>span {
  font: 800 .75rem/1 Manrope;
  letter-spacing: .15em
}

.growth-loop-core h2 {
  margin-top: 70px;
  color: var(--ink)
}

.growth-loop-core p {
  margin-top: 18px;
  color: rgba(17, 19, 24, .7)
}

.growth-loop-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.growth-loop-items article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.growth-loop-items span {
  color: var(--violet);
  font: 800 .74rem/1 Manrope
}

.growth-loop-items h3 {
  margin-top: 35px;
  font-size: 1.28rem
}

.growth-loop-items p {
  margin-top: 11px;
  color: var(--muted);
  font-size: .87rem
}

.measurement-board {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 65px;
  align-items: center
}

.measurement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px
}

.measurement-grid span {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  font-weight: 750
}

.measurement-grid span::before {
  content: '↗';
  margin-right: 10px;
  color: var(--green-strong)
}

.partner-stack-visual {
  position: relative;
  min-height: 470px;
}

.partner-sheet {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 350px;
  height: 250px;
  border-radius: 30px;
  transform: translate(-50%, -50%);
}

.partner-sheet.back {
  background: var(--violet);
  transform: translate(-50%, -50%) rotate(12deg)
}

.partner-sheet.middle {
  background: var(--green);
  transform: translate(-50%, -50%) rotate(-8deg)
}

.partner-sheet.front {
  padding: 30px;
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow-xl)
}

.partner-sheet.front small {
  display: block;
  color: #747a75;
  text-transform: uppercase;
  letter-spacing: .1em
}

.partner-sheet.front strong {
  display: block;
  margin-top: 65px;
  font: 800 2rem/1.1 Manrope
}

.partner-sheet.front span {
  display: block;
  margin-top: 18px;
  color: #6a716c
}

.confidential-badge {
  position: absolute;
  right: 3%;
  bottom: 10%;
  padding: 12px 15px;
  border-radius: 99px;
  color: var(--ink);
  background: var(--green);
  box-shadow: var(--shadow-md);
  font: 800 .72rem/1 Manrope
}

.white-label-model {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}

.model-cards {
  display: grid;
  gap: 12px
}

.model-cards article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface)
}

.model-cards span {
  color: var(--violet);
  font: 800 .74rem/1 Manrope
}

.model-cards h3 {
  margin-top: 30px;
  font-size: 1.3rem
}

.model-cards p {
  margin-top: 12px;
  color: var(--muted)
}

.agency-workflow {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 45px
}

.agency-workflow-track {
  display: grid;
  gap: 15px
}

.agency-workflow-track article {
  padding: 25px;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 7px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface)
}

.agency-workflow-track span {
  grid-row: span 2;
  color: var(--violet);
  font: 800 .74rem/1 Manrope
}

.agency-workflow-track p {
  color: var(--muted)
}

.agency-note {
  padding: 34px;
  border-radius: 30px;
  color: var(--ink);
  background: var(--green)
}

.agency-note strong {
  font: 800 1.7rem/1.1 Manrope
}

.agency-note p {
  margin-top: 18px;
  color: rgba(17, 19, 24, .7)
}

.fit-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center
}

.fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px
}

.fit-tags span {
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 99px;
  color: white;
  background: rgba(255, 255, 255, .06);
  font-weight: 750
}

.contact-hero {
  padding-bottom: 75px
}

.contact-direct {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface)
}

.contact-direct>span {
  display: block;
  color: var(--violet);
  font: 800 .72rem/1 Manrope;
  text-transform: uppercase;
  letter-spacing: .1em
}

.contact-direct>a {
  display: block;
  margin: 12px 0 8px;
  color: var(--ink);
  font: 800 1.35rem/1.2 Manrope
}

.contact-direct p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .88rem
}

.contact-direct p:last-child {
  margin-bottom: 0
}

html[data-theme="dark"] .contact-direct>a {
  color: white
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 35px;
  align-items: start
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--surface)
}

.form-head p {
  margin-top: 15px;
  color: var(--muted)
}

.form-grid {
  margin: 34px 0 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.form-grid label {
  display: grid;
  gap: 8px
}

.form-grid label.full {
  grid-column: 1/-1
}

.form-grid label>span {
  color: var(--ink);
  font-size: .82rem;
  font-weight: 750
}

html[data-theme="dark"] .form-grid label>span {
  color: white
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: var(--paper);
  outline: none
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(119, 92, 255, .12)
}

.form-status {
  margin-top: 15px;
  color: var(--muted);
  font-size: .85rem
}

.form-status.is-error {
  color: #b33f3f;
  font-weight: 650
}

html[data-theme="dark"] .form-status.is-error {
  color: #ff9b9b
}

.contact-aside {
  display: grid;
  gap: 14px
}

.contact-route {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface)
}

.contact-route span {
  color: var(--violet);
  font: 800 .75rem/1 Manrope
}

.contact-route h3 {
  margin-top: 38px;
  font-size: 1.35rem
}

.contact-route p {
  margin-top: 12px;
  color: var(--muted)
}

.contact-prep {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.contact-prep article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper)
}

.contact-prep h3 {
  font-size: 1.25rem
}

.contact-prep p {
  margin-top: 13px;
  color: var(--muted);
  font-size: .88rem
}

.legal-hero {
  padding: 170px 0 80px;
  border-bottom: 1px solid var(--line)
}

.legal-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem)
}

.legal-hero .lead {
  max-width: 780px;
  margin-top: 24px
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 780px);
  gap: 80px;
  align-items: start
}

.legal-nav {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 5px
}

.legal-nav a {
  padding: 11px 13px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 700
}

.legal-nav a:hover {
  color: var(--ink);
  background: var(--surface)
}

html[data-theme="dark"] .legal-nav a:hover {
  color: white
}

.legal-content {
  display: grid;
  gap: 45px
}

.legal-content section {
  scroll-margin-top: 120px
}

.legal-content h2 {
  font-size: 2rem
}

.legal-content p {
  margin-top: 16px;
  color: var(--muted)
}

.legal-content a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px
}

.not-found {
  min-height: 100vh;
  padding: 170px 0 90px;
  display: grid;
  align-items: center
}

.not-found-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center
}

.not-found .lead {
  max-width: 650px;
  margin-top: 25px
}

.broken-orbit {
  position: relative;
  min-height: 430px
}

.broken-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(145deg, var(--green), var(--violet));
  box-shadow: var(--shadow-xl);
  transform: translate(-50%, -50%);
  font: 800 3rem/1 Manrope
}

.broken-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  height: 170px;
  border: 1px dashed var(--line-strong);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-20deg)
}

.broken-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%
}

.broken-dot.a {
  left: 16%;
  top: 32%;
  background: var(--green)
}

.broken-dot.b {
  right: 17%;
  bottom: 24%;
  background: var(--violet)
}

@media (max-width:1080px) {
  .footer-grid-full {
    grid-template-columns: 1.2fr repeat(2, 1fr)
  }

  .footer-grid-full .footer-brand {
    grid-column: 1/-1
  }

  .directory-card {
    grid-column: span 6
  }

  .service-path,
  .web-intro-grid,
  .split-feature,
  .wp-service-spectrum,
  .diagnostic-layout,
  .migration-checklist-layout,
  .creative-manifesto,
  .content-ecosystem,
  .three-intro,
  .growth-loop,
  .measurement-board,
  .white-label-model,
  .agency-workflow,
  .fit-grid,
  .contact-layout {
    grid-template-columns: 1fr
  }

  .commerce-pillars {
    grid-template-columns: 1fr
  }

  .commerce-pillar {
    min-height: 300px
  }

  .migration-principles {
    grid-template-columns: repeat(2, 1fr)
  }

  .creative-word {
    writing-mode: horizontal-tb;
    transform: none
  }

  .abstract-gallery {
    grid-template-columns: repeat(2, 1fr)
  }

  .white-label-teaser {
    grid-template-columns: 1fr
  }

  .contact-prep {
    grid-template-columns: 1fr
  }

  .legal-layout {
    grid-template-columns: 1fr
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap
  }

  .not-found-layout {
    grid-template-columns: 1fr
  }

  .lifecycle-line {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:880px) {
  .nav-contact-link {
    display: flex
  }

  .footer-spotlight {
    align-items: flex-start;
    flex-direction: column
  }

  .footer-grid-full {
    grid-template-columns: 1fr 1fr
  }

  .directory-card {
    grid-column: 1/-1
  }

  .service-path {
    gap: 40px
  }

  .capability-radar {
    min-height: 350px
  }

  .radar-ring.r3 {
    width: 330px;
    height: 330px
  }

  .horizontal-process,
  .migration-principles {
    grid-template-columns: 1fr 1fr
  }

  .service-hero .hero-actions {
    display: flex;
    flex-wrap: wrap
  }

  .creative-panel,
  .creative-panel.reverse {
    grid-template-columns: 1fr
  }

  .creative-panel.reverse>div:first-child {
    order: 0
  }

  .growth-loop-items {
    grid-template-columns: 1fr
  }

  .contact-layout {
    gap: 20px
  }

  .lifecycle-line {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:560px) {
  .footer-grid-full {
    grid-template-columns: 1fr
  }

  .footer-spotlight {
    padding: 30px
  }

  .lifecycle-line,
  .horizontal-process,
  .migration-principles,
  .decision-board,
  .wp-spectrum-grid,
  .abstract-gallery {
    grid-template-columns: 1fr
  }

  .service-directory {
    display: block
  }

  .directory-card {
    margin-bottom: 15px
  }

  .capability-radar {
    transform: scale(.82);
    transform-origin: center
  }

  .compact-service {
    padding: 24px
  }

  .compact-service-head {
    grid-template-columns: 1fr
  }

  .commerce-art,
  .migration-map,
  .partner-stack-visual {
    transform: scale(.82);
    transform-origin: top center;
    margin-bottom: -70px
  }

  .migration-checklist,
  .measurement-grid {
    grid-template-columns: 1fr
  }

  .creative-panel {
    padding: 24px
  }

  .ecosystem-orbit {
    transform: scale(.8);
    transform-origin: center
  }

  .gallery-piece {
    min-height: 270px
  }

  .growth-metrics {
    grid-template-columns: 1fr
  }

  .growth-metrics span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .form-grid label.full {
    grid-column: auto
  }

  .contact-form {
    padding: 25px
  }

  .legal-hero {
    padding-top: 140px
  }

  .not-found {
    padding-top: 140px
  }

  .lifecycle-line {
    grid-template-columns: 1fr
  }
}

.not-found {
  overflow: hidden;
}

@media (max-width: 880px) {
  .nav-main {
    z-index: 90;
  }
}

@media (max-width: 880px) {
  .nav-shell {
    backdrop-filter: none;
    background: var(--paper);
  }

  .brand,
  .nav-actions {
    position: relative;
    z-index: 100;
  }
}

@media (max-width: 880px) {
  .dropdown-panel-wide {
    width: 100%;
  }

  .nav-dropdown:hover .dropdown-panel,
  .nav-dropdown:focus-within .dropdown-panel,
  .nav-dropdown.is-open .dropdown-panel {
    transform: none;
  }
}

/* Layout repair pass: prevent content collisions and keep shared components responsive. */
.editorial-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.editorial-card .card-link {
  position: static;
  margin-top: auto;
  padding-top: 28px;
}

.console-line,
.console-line:nth-child(1),
.console-line:nth-child(2),
.console-line:nth-child(3),
.console-line:nth-child(4),
.console-line:nth-child(5) {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 38px;
  margin-bottom: 10px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.075);
}

.console-line:last-of-type {
  margin-bottom: 0;
}

.console-line b,
.console-line span,
.console-line em {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.console-line b {
  color: var(--green);
  font: 800 0.72rem/1 "Manrope", sans-serif;
}

.console-line span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.console-line em {
  justify-self: end;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
}

.console-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.console-metrics div {
  min-width: 0;
}

.console-metrics b {
  max-width: 100%;
  font-size: clamp(0.78rem, 1.6vw, 1.15rem);
  line-height: 1.15;
  white-space: nowrap;
}

.footer-spotlight {
  border-color: var(--line);
}

.footer-spotlight>div {
  min-width: 0;
}

.footer-spotlight h2,
.footer-spotlight .kicker {
  color: var(--ink);
}

html[data-theme="dark"] .footer-spotlight h2,
html[data-theme="dark"] .footer-spotlight .kicker {
  color: #fff;
}

.footer-spotlight .btn {
  flex: 0 0 auto;
}

@media (max-width: 560px) {
  .editorial-card {
    min-height: 320px;
  }

  .console-line {
    grid-template-columns: 22px minmax(0, 1fr) auto;
    padding-inline: 9px;
  }

  .footer-spotlight .btn {
    width: 100%;
  }
}

/* Secure PHP contact form states */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important
}

.form-alert {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: .9rem;
  line-height: 1.55
}

.form-alert.success {
  border-color: rgba(67, 165, 64, .38);
  background: rgba(118, 232, 74, .1);
  color: var(--ink)
}

.form-alert.error {
  border-color: rgba(210, 73, 73, .4);
  background: rgba(210, 73, 73, .08);
  color: var(--ink)
}

html[data-theme="dark"] .form-alert.success,
html[data-theme="dark"] .form-alert.error {
  color: white
}

.form-grid .is-invalid {
  border-color: #c94d4d !important;
  box-shadow: 0 0 0 3px rgba(201, 77, 77, .1) !important
}

.field-error {
  display: block;
  color: #b33f3f;
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.4
}

html[data-theme="dark"] .field-error {
  color: #ff9b9b
}

.form-consent {
  margin-top: 2px
}

.check-row {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 11px !important;
  align-items: flex-start;
  color: var(--muted) !important;
  font-size: .82rem !important;
  font-weight: 500 !important;
  line-height: 1.5
}

.check-row input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--violet)
}

.check-row a {
  text-decoration: underline;
  text-underline-offset: 3px
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: .72
}

.kicker-light {
  color: white !important
}

.ecosystem-orbit {
  position: relative;
  min-height: 430px;
}

.eco-core,
.eco-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-align: center;
  font: 800 .78rem/1 "Manrope", sans-serif;
}

.eco-core {
  left: 50%;
  top: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  color: var(--ink);
  background: linear-gradient(145deg, var(--green), var(--violet));
}

.eco-node {
  width: 92px;
  height: 92px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.eco-node.n1 {
  left: 8%;
  top: 12%;
}

.eco-node.n2 {
  left: 42%;
  top: 0;
}

.eco-node.n3 {
  right: 20%;
  top: 1%;
}

.eco-node.n4 {
  right: 3%;
    bottom: 18%;
}

.eco-node.n5 {
  left: 12%;
  bottom: 5%;
}


/* CONNECTOR LINES */

.eco-line {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;

  height: 1px;
  background: rgba(17, 19, 24, 0.18);

  transform-origin: left center;
  pointer-events: none;
}

/* Brand idea → Website */
.line-website {
  width: 235px;
  transform: rotate(-146deg);
}

/* Brand idea → Campaign */
.line-campaign {
  width: 185px;
  transform: rotate(-98deg);
}

/* Brand idea → Social */
.line-social {
  width: 205px;
  transform: rotate(-48deg);
}

/* Brand idea → eBook */
.line-ebook {
  width: 225px;
  transform: rotate(22deg);
}

/* Brand idea → Presentation */
.line-presentation {
  width: 230px;
  transform: rotate(145deg);
}


/* DARK MODE */

html[data-theme="dark"] .eco-line {
  background: rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
}

/* Light mode */
.brand-logo-light {
  display: block;
}

.brand-logo-dark {
  display: none;
}

/* Dark mode */
[data-theme="dark"] .brand-logo-light {
  display: none;
}

[data-theme="dark"] .brand-logo-dark {
  display: block;
}