:root {
  color-scheme: dark;
  --ink: #07111f;
  --ink-soft: #0c1a2c;
  --paper: #f4f6f8;
  --white: #ffffff;
  --muted: #aab6c6;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(7, 17, 31, 0.16);
  --blue: #5c8dff;
  --violet: #8b5cf6;
  --coral: #ff806e;
  --lime: #d9ff4f;
  --shell: min(1440px, calc(100vw - 72px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 36px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(4, 11, 22, 0.82), rgba(4, 11, 22, 0.12));
  backdrop-filter: blur(10px);
  transition: height 300ms var(--ease), background 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(7, 17, 31, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.9rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-self: center;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #dfe7f2;
  font-size: 0.88rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #7d8a9d;
  font-size: 0.75rem;
  font-weight: 700;
}

.lang-button {
  padding: 5px 3px;
  border: 0;
  color: #7d8a9d;
  background: transparent;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 750;
  transition: color 220ms ease, background 220ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--lime);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: 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: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}

.hero-art {
  position: absolute;
  inset: 0;
}

.hero-art::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--ink) 0%, rgba(7, 17, 31, 0.97) 24%, rgba(7, 17, 31, 0.42) 61%, rgba(7, 17, 31, 0.08) 100%), linear-gradient(0deg, var(--ink) 0%, transparent 24%);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.93;
  animation: hero-reveal 1.4s var(--ease) both;
}

@keyframes hero-reveal {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 0.93; transform: scale(1); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  padding-top: 118px;
  padding-bottom: 78px;
}

.hero-copy {
  max-width: 870px;
  animation: copy-reveal 950ms 180ms var(--ease) both;
}

@keyframes copy-reveal {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 35px;
  color: #c9d4e2;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(217, 255, 79, 0.11);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(4.1rem, 7.3vw, 8.4rem);
  font-weight: 700;
  letter-spacing: -0.072em;
  line-height: 0.87;
}

.hero h1 > span {
  display: block;
}

.hero h1 .accent-line {
  width: max-content;
  padding-right: 0.08em;
  color: transparent;
  background: linear-gradient(90deg, #ffffff 4%, #86a9ff 42%, #ff8c77 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-intro {
  max-width: 580px;
  margin: 35px 0 0;
  color: #c2cedd;
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 56px;
  padding: 15px 22px;
  font-size: 0.92rem;
  font-weight: 750;
}

.button-primary {
  min-width: 270px;
  color: var(--ink);
  background: var(--lime);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(217, 255, 79, 0.15);
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link {
  color: #e3e9f1;
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 41px;
  display: flex;
  gap: 7px;
  scrollbar-width: none;
}

.hero-proof::-webkit-scrollbar {
  display: none;
}

.hero-proof span {
  padding: 7px 11px;
  color: #d4dce8;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.5);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 650;
}

.hero-index {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 36px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.section {
  padding-block: clamp(100px, 10vw, 168px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 55px;
  color: #425168;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker > span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--ink);
  font-size: 0.62rem;
  letter-spacing: 0;
}

.section-kicker-light {
  color: var(--muted);
}

.section-kicker-light > span:first-child {
  color: var(--white);
  border-color: var(--line);
}

.manifesto {
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  gap: clamp(50px, 8vw, 140px);
  align-items: end;
}

.manifesto h2,
.section-heading h2,
.process h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6.2vw, 7rem);
  font-weight: 690;
  letter-spacing: -0.066em;
  line-height: 0.96;
}

.manifesto h2 em,
.contact h2 em {
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.manifesto-copy {
  padding-bottom: 8px;
}

.manifesto-copy p {
  margin: 0 0 38px;
  color: #445267;
  font-size: 1.08rem;
  line-height: 1.72;
}

.arrow-link {
  gap: 50px;
  color: var(--ink);
}

.capability-strip {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: clamp(90px, 10vw, 150px);
  padding-top: 25px;
  border-top: 1px solid var(--line-dark);
  color: #526074;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.capability-strip i {
  height: 1px;
  background: var(--line-dark);
}

.services {
  color: var(--white);
  background: #0b1728;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 0.65fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 80px;
}

.section-heading .section-kicker {
  align-self: start;
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading .section-kicker > span:first-child {
  color: var(--white);
  border-color: var(--line);
}

.section-heading h2 {
  grid-column: 2;
  font-size: clamp(3rem, 5.5vw, 6.2rem);
}

.section-heading > p {
  max-width: 320px;
  margin: 0 0 8px;
  color: #99a8ba;
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 0.65fr;
  gap: 50px;
  min-height: 270px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  transition: color 250ms ease, padding 300ms var(--ease);
}

.service-card::before {
  position: absolute;
  z-index: 0;
  inset: 0 -28px;
  content: "";
  background: linear-gradient(90deg, rgba(92, 141, 255, 0.12), rgba(255, 128, 110, 0.05));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 300ms var(--ease);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-number {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #718096;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-number strong {
  color: var(--coral);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
}

.service-content h3 {
  grid-column: 1 / -1;
  margin: 0 0 26px;
  font-size: clamp(1.75rem, 2.5vw, 2.8rem);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.service-content p {
  margin: 0;
  color: #aab6c6;
  line-height: 1.72;
}

.service-content ul {
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d5dde8;
  font-size: 0.86rem;
  font-weight: 650;
}

.service-content li::before {
  margin-right: 10px;
  color: var(--coral);
  content: "/";
}

.service-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  justify-self: end;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  transition: color 250ms ease, background 250ms ease, transform 300ms var(--ease);
}

.service-card:hover .service-icon {
  color: var(--ink);
  background: var(--coral);
  transform: rotate(45deg);
}

.service-disclaimer {
  display: grid;
  grid-template-columns: .7fr 2fr;
  gap: 50px;
  margin-top: 42px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.service-disclaimer > span {
  color: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-disclaimer p {
  max-width: 880px;
  margin: 0;
  color: #8f9db0;
  font-size: .9rem;
  line-height: 1.7;
}

.process {
  position: relative;
  color: var(--white);
  background: var(--ink);
}

.process::before {
  position: absolute;
  top: 12%;
  right: -13vw;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(92, 141, 255, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 120px rgba(92, 141, 255, 0.1) inset;
  pointer-events: none;
}

.process-lead {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 0.65fr;
  gap: 50px;
  align-items: end;
}

.process-lead .section-kicker {
  align-self: start;
}

.process h2 {
  font-size: clamp(3.2rem, 5.7vw, 6.6rem);
}

.process-lead > p {
  margin: 0 0 8px;
  color: #9cabbc;
  line-height: 1.7;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 110px;
}

.process-step {
  padding-right: 36px;
}

.step-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.step-line span {
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(255, 255, 255, 0.16));
}

.step-line strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.66rem;
}

.process-step h3 {
  margin: 32px 0 16px;
  font-size: 1.4rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.process-step p {
  max-width: 250px;
  margin: 0;
  color: #8d9bae;
  font-size: 0.93rem;
  line-height: 1.65;
}

.delivery-note {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
  align-items: end;
  margin-top: 110px;
  padding: 45px;
  border: 1px solid var(--line);
  background: linear-gradient(115deg, rgba(92, 141, 255, 0.12), rgba(255, 128, 110, 0.05));
}

.delivery-note > p {
  max-width: 880px;
  margin: 0;
  font-size: clamp(1.45rem, 2.3vw, 2.45rem);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.delivery-tags {
  display: grid;
  gap: 10px;
}

.delivery-tags span {
  padding-bottom: 8px;
  color: #b9c4d2;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.delivery-options {
  position: relative;
  margin-top: clamp(110px, 12vw, 180px);
}

.delivery-options-head {
  display: grid;
  grid-template-columns: .7fr 1.35fr .65fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 62px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.delivery-options-head > span {
  align-self: start;
  color: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.delivery-options-head h3 {
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 6rem);
  font-weight: 680;
  letter-spacing: -.06em;
  line-height: .98;
}

.delivery-options-head > p {
  margin: 0 0 8px;
  color: #9cabbc;
  line-height: 1.7;
}

.delivery-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.delivery-option {
  position: relative;
  display: flex;
  min-height: 470px;
  padding: clamp(28px, 3.4vw, 48px);
  flex-direction: column;
  background: #0b1728;
  transition: background 240ms ease, transform 240ms var(--ease);
}

.delivery-option:hover {
  z-index: 1;
  background: #10233a;
  transform: translateY(-5px);
}

.delivery-option-web {
  background: linear-gradient(135deg, rgba(92,141,255,.2), rgba(11,23,40,.96) 64%);
}

.delivery-option-app {
  background: linear-gradient(135deg, rgba(139,92,246,.23), rgba(11,23,40,.96) 64%);
}

.delivery-option-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.delivery-option-top > span {
  max-width: 240px;
  color: #aeb9c8;
  font-size: .74rem;
  font-weight: 780;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.delivery-option-top strong {
  color: var(--lime);
  font-size: clamp(1.65rem, 2.8vw, 3.1rem);
  font-weight: 720;
  letter-spacing: -.055em;
  line-height: .95;
  text-align: right;
}

.delivery-option-time {
  margin: clamp(58px, 7vw, 96px) 0 16px !important;
  color: var(--white) !important;
  font-size: clamp(1.45rem, 2.2vw, 2.3rem) !important;
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: 1.1 !important;
}

.delivery-option > p {
  max-width: 620px;
  margin: 0;
  color: #9eacbd;
  line-height: 1.7;
}

.delivery-option ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
  color: #d8e0ea;
  font-size: .88rem;
  font-weight: 650;
}

.delivery-option li::before {
  margin-right: 10px;
  color: var(--coral);
  content: "✓";
}

.delivery-option > a {
  display: flex;
  min-height: 58px;
  margin-top: auto;
  padding: 16px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  color: var(--white);
  font-size: .86rem;
  font-weight: 760;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.delivery-option > a:hover,
.delivery-option > a:focus-visible {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.delivery-pricing-note {
  max-width: 1020px;
  margin: 28px 0 0;
  color: #73849a;
  font-size: .78rem;
  line-height: 1.7;
}

.technology {
  overflow: hidden;
  padding: 32px 0;
  color: var(--ink);
  border-block: 1px solid #c8cfda;
  background: var(--lime);
}

.technology-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  font-size: clamp(1.35rem, 2.3vw, 2.5rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  animation: ticker 30s linear infinite;
}

.technology-track i {
  color: var(--violet);
  font-style: normal;
  font-size: 0.8em;
}

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

.profilio-operator {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.profilio-operator::before {
  position: absolute;
  top: -260px;
  right: -210px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 130px rgba(92, 141, 255, 0.14) inset;
  pointer-events: none;
}

.operator-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}

.operator-brand-lockup {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 38px;
}

.operator-logo-link {
  display: flex;
  align-items: center;
  width: min(100%, 310px);
  min-height: 84px;
  padding: 16px 20px;
  border: 1px solid rgba(7, 17, 31, 0.1);
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 17, 31, 0.08);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.operator-logo-link:hover,
.operator-logo-link:focus-visible {
  border-color: rgba(92, 141, 255, 0.56);
  box-shadow: 0 24px 56px rgba(7, 17, 31, 0.13);
  transform: translateY(-3px);
}

.operator-logo {
  width: 100%;
  height: auto;
}

.operator-brand {
  display: inline-flex;
  margin: 0;
  padding: 9px 13px;
  color: var(--white);
  background: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.operator-heading h2 {
  margin: 0;
  font-size: clamp(3.35rem, 6.3vw, 7rem);
  font-weight: 690;
  letter-spacing: -0.066em;
  line-height: 0.96;
}

.operator-heading h2 em {
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.operator-content {
  padding-left: clamp(28px, 4vw, 62px);
  border-left: 1px solid var(--line-dark);
}

.operator-lead {
  margin: 0;
  color: #34445a;
  font-size: clamp(1.12rem, 1.55vw, 1.36rem);
  line-height: 1.72;
}

.operator-scope {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #58677b;
  font-size: 1rem;
  line-height: 1.75;
}

.operator-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 54px 0 0;
}

.operator-facts > div {
  min-height: 106px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}

.operator-facts dt {
  margin-bottom: 10px;
  color: #6b788a;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.operator-facts dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.operator-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding: 20px 22px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.operator-flow i {
  color: var(--lime);
  font-style: normal;
}

.operator-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 68px;
  margin-top: 26px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--violet);
  font-weight: 760;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.operator-link:hover,
.operator-link:focus-visible {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-3px);
}

.operator-page-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  margin-top: 12px;
  padding: 15px 22px;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 760;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.operator-page-link:hover,
.operator-page-link:focus-visible {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
  transform: translateY(-3px);
}

.operator-note {
  margin: 20px 0 0;
  color: #68768a;
  font-size: 0.8rem;
  line-height: 1.65;
}

.operator-ecosystem {
  position: relative;
  margin-top: clamp(72px, 8vw, 124px);
  padding-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.operator-ecosystem-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
  margin-bottom: 34px;
}

.operator-ecosystem-intro > p {
  margin: 0;
}

.operator-ecosystem-label {
  color: var(--violet);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operator-ecosystem-intro > p:last-child {
  max-width: 760px;
  color: #34445a;
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  line-height: 1.58;
}

.operator-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.operator-area {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  min-height: 246px;
  padding: 28px;
  border: 1px solid rgba(7, 17, 31, 0.11);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.045);
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, transform 240ms var(--ease);
}

.operator-area:hover,
.operator-area:focus-visible {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-5px);
}

.operator-area-index {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.operator-area h3 {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  line-height: 1.14;
}

.operator-area p {
  margin: 0;
  color: #5d6a7d;
  font-size: 0.92rem;
  line-height: 1.7;
  transition: color 240ms ease;
}

.operator-area:hover p,
.operator-area:focus-visible p {
  color: #cbd5e2;
}

.operator-area-arrow {
  color: var(--violet);
  font-size: 1.1rem;
  transition: color 240ms ease, transform 240ms var(--ease);
}

.operator-area:hover .operator-area-arrow,
.operator-area:focus-visible .operator-area-arrow {
  color: var(--lime);
  transform: translate(3px, -3px);
}

.contact {
  padding-bottom: 30px;
  color: var(--white);
  background: #101d31;
}

.contact-shell {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
  padding-bottom: 140px;
}

.contact-pretitle {
  margin: 0 0 28px;
  color: #aab6c6;
  font-size: 0.9rem;
}

.contact h2 {
  font-size: clamp(3.7rem, 7.2vw, 8rem);
}

.contact h2 em {
  color: var(--coral);
}

.contact-action > p {
  margin: 0 0 34px;
  color: #aab6c6;
  line-height: 1.72;
}

.contact-form {
  position: relative;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 17, 31, 0.36);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

.form-field {
  display: grid;
  gap: 9px;
  color: #dce4ee;
  font-size: 0.86rem;
  font-weight: 650;
}

.form-field small {
  color: #8190a4;
  font-size: 0.78rem;
  font-weight: 500;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: rgba(4, 11, 22, 0.48);
  font: inherit;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9daabd 50%), linear-gradient(135deg, #9daabd 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.form-field select option {
  color: var(--ink);
  background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--lime);
  background: rgba(4, 11, 22, 0.72);
  box-shadow: 0 0 0 3px rgba(217, 255, 79, 0.12);
}

.form-field input:user-invalid,
.form-field select:user-invalid,
.form-field textarea:user-invalid {
  border-color: var(--coral);
}

.form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin: 24px 0;
  color: #aab6c6;
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--lime);
}

.form-consent a,
.footer-links a:first-child {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-protection {
  margin: 14px 0 0;
  color: #7f90a5;
  font-size: 0.76rem;
  line-height: 1.5;
}

.captcha-wrap {
  min-height: 78px;
  margin: 24px 0 0;
}

.form-captcha-error {
  margin: 10px 0 0;
  color: var(--coral);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 78px;
  padding: 20px 24px;
  color: var(--ink);
  background: var(--coral);
  font-weight: 760;
  transition: background 220ms ease, transform 220ms var(--ease);
}

.contact-button:hover,
.contact-button:focus-visible {
  background: var(--lime);
  transform: translateY(-3px);
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: #dce4ee;
  font-size: 0.9rem;
}

.contact-direct a:hover {
  color: var(--lime);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 45px 0 10px;
  border-top: 1px solid var(--line);
  color: #8f9eb1;
  font-size: 0.78rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.site-footer address {
  justify-self: center;
  font-style: normal;
  line-height: 1.65;
}

.footer-legal {
  display: grid;
  justify-self: end;
  text-align: right;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom a {
  color: #d5dde8;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

/* Profilio operations page */
.profilio-page {
  background: var(--paper);
}

.profilio-page .desktop-nav a[aria-current="page"]::after {
  background: var(--lime);
  transform: scaleX(1);
}

.profilio-page-hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 196, 255, 0.22), transparent 25%),
    radial-gradient(circle at 70% 84%, rgba(211, 255, 40, 0.13), transparent 28%),
    linear-gradient(135deg, #07111f 0%, #0a213a 58%, #07111f 100%);
}

.profilio-page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 0%, black 48%, black 100%);
}

.profilio-page-hero::after {
  position: absolute;
  right: -180px;
  bottom: -360px;
  width: 720px;
  height: 720px;
  content: "";
  border: 1px solid rgba(217, 255, 79, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(92,141,255,.035), 0 0 0 160px rgba(92,141,255,.025);
}

.profilio-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(390px, 0.84fr);
  gap: clamp(60px, 8vw, 150px);
  align-items: center;
  min-height: 780px;
  padding-top: 132px;
  padding-bottom: 86px;
}

.profilio-page-kicker {
  margin: 0 0 28px;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.profilio-page-copy h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(4.4rem, 7.3vw, 8.4rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.profilio-page-copy h1 em,
.network-intro h2 em,
.system-intro h2 em,
.directory-intro h2 em,
.legal-intro h2 em {
  color: var(--coral);
  font-style: normal;
  font-weight: 430;
}

.profilio-page-lead {
  max-width: 760px;
  margin: 38px 0 0;
  color: #c0ccdb;
  font-size: clamp(1.06rem, 1.4vw, 1.28rem);
  line-height: 1.72;
}

.profilio-page-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.text-link-light {
  color: var(--white);
}

.text-link-light:hover,
.text-link-light:focus-visible {
  color: var(--lime);
}

.profilio-page-brand {
  align-self: end;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
}

.profilio-page-brand > a {
  display: grid;
  min-height: 250px;
  padding: 24px;
  place-items: center;
}

.profilio-page-brand img {
  width: min(100%, 430px);
  filter: brightness(0) invert(1);
}

.profilio-page-brand .profilio-operator-mark {
  width: min(100%, 430px);
  aspect-ratio: 1;
  object-fit: cover;
  filter: none;
}

.profilio-page-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.17);
}

.profilio-page-facts > div {
  min-width: 0;
  padding: 22px 18px;
  border-right: 1px solid rgba(255,255,255,.17);
}

.profilio-page-facts > div:last-child {
  border-right: 0;
}

.profilio-page-facts dt {
  margin-bottom: 7px;
  color: #8fa0b5;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.profilio-page-facts dd {
  overflow: hidden;
  margin: 0;
  color: var(--lime);
  font-size: clamp(1.15rem, 2.1vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.035em;
  text-overflow: ellipsis;
}

.profilio-page-facts dd[data-i18n] {
  font-size: clamp(.84rem, 1.25vw, 1.06rem);
  letter-spacing: -.02em;
  white-space: nowrap;
}

.operator-offer {
  background: var(--paper);
}

.operator-offer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: start;
}

.operator-offer-intro h2 {
  margin: 0;
  font-size: clamp(3.8rem, 6.7vw, 7.7rem);
  letter-spacing: -.07em;
  line-height: .91;
}

.operator-offer-intro h2 em {
  color: var(--violet);
  font-style: normal;
  font-weight: 430;
}

.operator-offer-intro > p {
  margin: 10px 0 0;
  color: #526174;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.78;
}

.offer-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(76px, 9vw, 130px);
}

.offer-path {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: clamp(30px, 3.4vw, 48px);
}

.offer-path-company {
  color: var(--white);
  background: var(--ink);
}

.offer-path-talent {
  color: var(--white);
  background: var(--violet);
}

.offer-path-partner {
  color: var(--ink);
  background: var(--coral);
}

.offer-path-label {
  min-height: 44px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.offer-path-company .offer-path-label,
.offer-path-talent .offer-path-label {
  color: var(--lime);
}

.offer-path h3 {
  margin: 56px 0 22px;
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -.055em;
  line-height: .98;
}

.offer-path > p {
  margin: 0;
  opacity: .78;
  font-size: .96rem;
  line-height: 1.72;
}

.offer-path ul {
  display: grid;
  gap: 13px;
  margin: 34px 0 40px;
  padding: 0;
  list-style: none;
}

.offer-path li {
  position: relative;
  padding-left: 22px;
  font-size: .84rem;
  line-height: 1.55;
}

.offer-path li::before {
  position: absolute;
  top: .52em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

.offer-path-actions {
  display: grid;
  gap: 16px;
  margin-top: auto;
}

.offer-path-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .82rem;
  font-weight: 760;
}

.offer-path-primary {
  min-height: 60px;
  padding: 16px 18px;
  border: 1px solid currentColor;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.offer-path-company .offer-path-primary,
.offer-path-talent .offer-path-primary {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.offer-path-partner .offer-path-primary {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.offer-path-primary:hover,
.offer-path-primary:focus-visible {
  transform: translateY(-3px);
}

.offer-path-actions a:not(.offer-path-primary) {
  width: max-content;
  max-width: 100%;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.project-network {
  background: var(--white);
}

.network-intro,
.system-intro,
.directory-intro,
.legal-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: start;
}

.network-intro h2,
.system-intro h2,
.directory-intro h2,
.legal-intro h2 {
  margin: 0;
  font-size: clamp(3.8rem, 6.7vw, 7.7rem);
  letter-spacing: -.07em;
  line-height: .91;
}

.network-intro > div,
.system-intro > div,
.directory-intro > div,
.legal-intro > p {
  padding-top: 10px;
}

.network-intro p,
.system-intro > div > p,
.directory-intro > div > p,
.legal-intro > p {
  margin: 0 0 22px;
  color: #526174;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.78;
}

.network-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(76px, 9vw, 130px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.network-steps article {
  position: relative;
  min-height: 330px;
  padding: 30px 30px 38px;
  border-right: 1px solid var(--line-dark);
  transition: color 260ms ease, background 260ms ease, transform 260ms var(--ease);
}

.network-steps article:last-child {
  border-right: 0;
}

.network-steps article:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-10px);
}

.network-steps article > span,
.legal-grid article > span {
  color: var(--violet);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.network-steps h3 {
  max-width: 210px;
  margin: 92px 0 18px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.network-steps p {
  margin: 0;
  color: #617085;
  font-size: .9rem;
  line-height: 1.7;
}

.network-steps article:hover p {
  color: #b9c6d6;
}

.operator-system {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(139, 92, 246, .14), transparent 31%),
    #e8edf2;
}

.system-intro {
  margin-bottom: clamp(76px, 9vw, 138px);
}

.system-note {
  max-width: 650px;
  padding: 18px 20px;
  border-left: 3px solid var(--coral);
  color: #273548 !important;
  background: rgba(255,255,255,.58);
  font-size: .86rem !important;
  line-height: 1.65 !important;
}

.operator-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(7,17,31,.18);
}

.operator-map-card {
  position: relative;
  min-height: 390px;
  padding: 32px 30px 38px;
  background: #f7f9fb;
  transition: color 240ms ease, background 240ms ease, transform 240ms var(--ease);
}

.operator-map-card::after {
  position: absolute;
  top: 50%;
  right: -17px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  content: "→";
  place-items: center;
  border: 1px solid rgba(7,17,31,.18);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-50%);
}

.operator-map-card:last-child::after {
  display: none;
}

.operator-map-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-7px);
}

.operator-map-number,
.operator-map-eyebrow,
.profilio-role-copy > span,
.operator-fit-copy > span,
.operator-resources > span {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.operator-map-number {
  color: #8995a5;
}

.operator-map-eyebrow {
  display: block;
  margin-top: 82px;
  color: var(--violet);
}

.operator-map-hub {
  color: var(--white);
  background: var(--violet);
}

.operator-map-hub .operator-map-number,
.operator-map-hub .operator-map-eyebrow {
  color: var(--lime);
}

.operator-map-card h3 {
  max-width: 390px;
  margin: 18px 0 16px;
  font-size: clamp(1.7rem, 2.45vw, 2.65rem);
  letter-spacing: -.052em;
  line-height: 1.02;
}

.operator-map-card p {
  max-width: 405px;
  margin: 0;
  color: #5e6d80;
  font-size: .91rem;
  line-height: 1.7;
}

.operator-map-hub p,
.operator-map-card:hover p {
  color: #c9d2df;
}

.profilio-role {
  display: grid;
  grid-template-columns: minmax(190px, .42fr) 1fr minmax(260px, .68fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  margin-top: 1px;
  padding: clamp(40px, 6vw, 78px);
  color: var(--white);
  background: #0b1d2c;
}

.profilio-role-mark {
  display: grid;
  aspect-ratio: 1;
  max-width: 220px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: #06172c;
}

.profilio-role-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profilio-role-copy > span,
.operator-fit-copy > span,
.operator-resources > span {
  color: var(--lime);
}

.profilio-role-copy h3,
.operator-fit-copy h3 {
  margin: 16px 0 18px;
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  letter-spacing: -.055em;
  line-height: .98;
}

.profilio-role-copy p,
.operator-fit-copy p {
  margin: 0;
  color: #aebbc9;
  line-height: 1.7;
}

.profilio-role-points {
  display: grid;
}

.profilio-role-points span,
.operator-fit-list span {
  position: relative;
  padding: 17px 12px 17px 28px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .88rem;
  font-weight: 700;
}

.profilio-role-points span::before,
.operator-fit-list span::before {
  position: absolute;
  top: 50%;
  left: 4px;
  color: var(--lime);
  content: "✓";
  transform: translateY(-50%);
}

.operator-fit {
  display: grid;
  grid-template-columns: 1.1fr .72fr auto;
  gap: clamp(36px, 6vw, 92px);
  align-items: end;
  margin-top: clamp(80px, 10vw, 145px);
  padding-top: 38px;
  border-top: 1px solid rgba(7,17,31,.24);
}

.operator-fit-copy > span {
  color: var(--violet);
}

.operator-fit-copy p {
  max-width: 680px;
  color: #526174;
}

.operator-fit-list span {
  border-color: rgba(7,17,31,.16);
}

.operator-fit-list span::before {
  color: var(--violet);
}

.operator-fit-cta {
  display: flex;
  min-width: 210px;
  min-height: 64px;
  padding: 18px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: var(--violet);
  font-size: .88rem;
  font-weight: 800;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.operator-fit-cta:hover,
.operator-fit-cta:focus-visible {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-4px);
}

.operator-resources {
  display: grid;
  grid-template-columns: minmax(220px, .48fr) 1fr;
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
  margin-top: 80px;
  padding: 30px 0 0;
  border-top: 1px solid rgba(7,17,31,.24);
}

.operator-resources > span {
  color: #6d7a8c;
}

.operator-resources > div {
  display: grid;
}

.operator-resources a {
  display: flex;
  min-height: 56px;
  padding: 15px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(7,17,31,.16);
  font-size: .91rem;
  font-weight: 750;
}

.operator-resources a:hover,
.operator-resources a:focus-visible {
  color: var(--violet);
}

.profilio-directory {
  background: #e8edf2;
}

.directory-intro {
  margin-bottom: clamp(80px, 10vw, 150px);
}

.directory-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  color: var(--ink) !important;
  font-size: .82rem !important;
}

.directory-status > span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #36c46b;
  box-shadow: 0 0 0 6px rgba(54,196,107,.14);
}

.landing-group {
  padding: 38px 0 66px;
  border-top: 1px solid rgba(7,17,31,.24);
}

.landing-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 0;
  cursor: pointer;
  list-style: none;
}

.landing-group[open] .landing-group-head {
  margin-bottom: 30px;
}

.landing-group-head::-webkit-details-marker {
  display: none;
}

.landing-group-head > div {
  display: flex;
  align-items: baseline;
  gap: 28px;
}

.landing-group-head span {
  color: var(--violet);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .72rem;
  font-weight: 800;
}

.landing-group-head h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
  letter-spacing: -.055em;
}

.landing-group-head > strong {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #9ca7b4;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -.06em;
}

.landing-group-head > strong::after {
  display: grid;
  width: 34px;
  height: 34px;
  content: "+";
  place-items: center;
  border: 1px solid rgba(7,17,31,.22);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.landing-group[open] .landing-group-head > strong::after {
  content: "−";
}

.landing-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(7,17,31,.15);
}

.landing-link {
  display: grid;
  grid-template-columns: minmax(78px, .24fr) 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 105px;
  padding: 20px 24px;
  background: #f5f7f9;
  transition: color 240ms ease, background 240ms ease, transform 240ms var(--ease);
}

.landing-link:hover,
.landing-link:focus-visible {
  z-index: 1;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-3px);
}

.landing-code {
  overflow-wrap: anywhere;
  color: var(--violet);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.landing-link > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.landing-link strong {
  font-size: 1rem;
  letter-spacing: -.02em;
}

.landing-link small {
  color: #748296;
  font-size: .76rem;
}

.landing-link:hover small,
.landing-link:focus-visible small {
  color: #9fadc0;
}

.landing-link i {
  color: var(--coral);
  font-style: normal;
}

.profilio-direct-views {
  display: grid;
  grid-template-columns: minmax(250px, .7fr) 1.3fr;
  gap: 50px;
  margin-top: 36px;
  padding: 34px;
  color: var(--white);
  background: var(--violet);
}

.profilio-direct-views > div:first-child > span {
  color: var(--lime);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profilio-direct-views p {
  max-width: 410px;
  margin: 15px 0 0;
  color: #e5dcff;
  line-height: 1.65;
}

.direct-view-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.24);
}

.direct-view-links a {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 118px;
  padding: 26px;
  background: #7047d5;
  transition: background 220ms ease;
}

.direct-view-links a:hover,
.direct-view-links a:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.direct-view-links small {
  color: #dbd0fa;
}

.direct-view-links a:hover small,
.direct-view-links a:focus-visible small {
  color: #526174;
}

.direct-view-links a > span {
  position: absolute;
  top: 20px;
  right: 22px;
}

.profilio-legal {
  color: var(--white);
  background: var(--ink);
}

.section-kicker-light {
  color: #aab7c8;
  border-color: var(--line);
}

.legal-intro h2 em {
  color: var(--lime);
}

.legal-intro > p {
  color: #a9b7c8;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(76px, 9vw, 130px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-grid article {
  min-height: 290px;
  padding: 28px 26px 35px;
  border-right: 1px solid var(--line);
}

.legal-grid article:last-child {
  border-right: 0;
}

.legal-grid article > span {
  color: var(--coral);
}

.legal-grid h3 {
  margin: 70px 0 16px;
  font-size: 1.25rem;
  letter-spacing: -.025em;
}

.legal-grid p {
  margin: 0;
  color: #97a7ba;
  font-size: .86rem;
  line-height: 1.7;
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.legal-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  color: #dce4ee;
  font-size: .86rem;
  font-weight: 720;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.legal-disclaimer {
  max-width: 880px;
  margin: 30px 0 100px;
  color: #73849a;
  font-size: .78rem;
  line-height: 1.7;
}

.profilio-page-footer {
  padding-bottom: 12px;
}

@media (max-width: 1120px) {
  .profilio-page-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .profilio-page-brand { width: min(100%, 700px); margin-bottom: 0; }
  .offer-paths { grid-template-columns: 1fr 1fr; }
  .offer-path:last-child { grid-column: 1 / -1; min-height: 480px; }
  .profilio-role { grid-template-columns: minmax(180px, .45fr) 1fr; }
  .profilio-role-points { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .operator-fit { grid-template-columns: 1fr 1fr; }
  .operator-fit-cta { grid-column: 1 / -1; }
  .network-steps,
  .legal-grid { grid-template-columns: 1fr 1fr; }
  .network-steps article:nth-child(2),
  .legal-grid article:nth-child(2) { border-right: 0; }
  .network-steps article:nth-child(-n+2),
  .legal-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .legal-grid article:nth-child(-n+2) { border-bottom-color: var(--line); }
}

@media (max-width: 820px) {
  .profilio-page-hero-grid { min-height: auto; padding-top: 150px; padding-bottom: 88px; }
  .profilio-page-copy h1 { font-size: clamp(3.7rem, 13.8vw, 7rem); }
  .operator-offer-intro,
  .network-intro,
  .system-intro,
  .directory-intro,
  .legal-intro { grid-template-columns: 1fr; gap: 38px; }
  .operator-offer-intro h2,
  .network-intro h2,
  .system-intro h2,
  .directory-intro h2,
  .legal-intro h2 { font-size: clamp(3.2rem, 11vw, 6rem); }
  .offer-paths { grid-template-columns: 1fr; }
  .offer-path,
  .offer-path:last-child { grid-column: auto; min-height: 540px; }
  .operator-map { grid-template-columns: 1fr; }
  .operator-map-card { min-height: 330px; }
  .operator-map-card::after { top: auto; right: 50%; bottom: -17px; content: "↓"; transform: translateX(50%); }
  .profilio-role { grid-template-columns: 1fr; }
  .profilio-role-mark { max-width: 170px; }
  .profilio-role-points { grid-column: auto; grid-template-columns: 1fr; }
  .operator-fit { grid-template-columns: 1fr; align-items: start; }
  .operator-fit-cta { grid-column: auto; }
  .operator-resources { grid-template-columns: 1fr; }
  .landing-list { grid-template-columns: 1fr; }
  .profilio-direct-views { grid-template-columns: 1fr; }
  .legal-links { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .profilio-page-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .profilio-page-brand > a { min-height: 180px; padding: 40px 26px; }
  .offer-path,
  .offer-path:last-child { min-height: 0; }
  .offer-path h3 { margin-top: 44px; }
  .operator-map-card { min-height: 0; padding: 28px 24px 44px; }
  .operator-map-eyebrow { margin-top: 56px; }
  .profilio-role { padding: 34px 24px; }
  .profilio-role-mark { max-width: 132px; }
  .operator-fit { gap: 28px; margin-top: 76px; }
  .operator-resources { margin-top: 60px; }
  .profilio-page-facts { grid-template-columns: 1fr; }
  .profilio-page-facts > div { display: flex; align-items: center; justify-content: space-between; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .profilio-page-facts > div:last-child { border-bottom: 0; }
  .network-steps,
  .legal-grid { grid-template-columns: 1fr; }
  .network-steps article,
  .network-steps article:nth-child(2),
  .legal-grid article,
  .legal-grid article:nth-child(2) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .legal-grid article,
  .legal-grid article:nth-child(2) { border-bottom-color: var(--line); }
  .network-steps article:last-child,
  .legal-grid article:last-child { border-bottom: 0; }
  .network-steps h3,
  .legal-grid h3 { margin-top: 48px; }
  .landing-group-head > div { gap: 14px; }
  .landing-group-head > strong { min-width: 52px; font-size: 1.2rem; }
  .landing-link { grid-template-columns: minmax(68px, .25fr) 1fr auto; gap: 14px; padding-inline: 16px; }
  .profilio-direct-views { padding: 26px 20px; }
  .direct-view-links { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  :root { --shell: min(100% - 48px, 1100px); }
  .site-header { padding-inline: 24px; }
  .desktop-nav { gap: 20px; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(4rem, 9vw, 7rem); }
  .manifesto-grid { grid-template-columns: 1.3fr 0.7fr; gap: 60px; }
  .section-heading,
  .service-card,
  .process-lead { grid-template-columns: 0.38fr 1.35fr 0.65fr; gap: 28px; }
  .service-content { column-gap: 32px; }
  .operator-grid { grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr); gap: 64px; }
  .contact-grid { grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 38px); }
  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
    padding-inline: 19px;
  }
  .brand-copy small { display: none; }
  .desktop-nav { display: none; }
  .header-actions { gap: 15px; }
  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0 10px;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
  }
  .menu-toggle > span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 220ms ease;
  }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu {
    position: static;
    grid-column: 1 / -1;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 30px 12px 42px;
    color: var(--white);
    background: #07111f;
  }
  body.menu-open .site-header {
    height: 100svh;
    grid-template-rows: 70px 1fr;
    align-content: start;
    background: #07111f;
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: baseline;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu nav span { color: #78879b; font-size: 0.68rem; }
  .mobile-menu nav strong { font-size: clamp(2rem, 9vw, 3.7rem); letter-spacing: -0.05em; }
  .mobile-email { margin-top: auto; color: #b8c4d2; font-size: 0.85rem; }
  .hero { min-height: 720px; }
  .hero-art::before { background: linear-gradient(90deg, rgba(7, 17, 31, 0.99) 0%, rgba(7, 17, 31, 0.88) 60%, rgba(7, 17, 31, 0.45) 100%), linear-gradient(0deg, var(--ink), transparent 36%); }
  .hero-art img { object-position: 64% center; opacity: 0.72; }
  .hero-grid { padding-top: 110px; padding-bottom: 110px; }
  .hero h1 { font-size: clamp(3.65rem, 14vw, 6.6rem); }
  .hero-intro { max-width: 500px; }
  .hero-proof { right: auto; bottom: 36px; left: 0; overflow-x: auto; width: 100%; }
  .hero-index { display: none; }
  .manifesto-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .manifesto h2,
  .contact h2 { font-size: clamp(3.2rem, 13vw, 6.3rem); }
  .manifesto-copy { max-width: 560px; }
  .capability-strip { grid-template-columns: 1fr 1fr; gap: 16px; }
  .capability-strip i { display: none; }
  .section-heading,
  .process-lead { grid-template-columns: 1fr; gap: 35px; }
  .operator-grid { grid-template-columns: 1fr; gap: 54px; }
  .operator-heading { max-width: 700px; }
  .operator-content { max-width: 720px; padding-left: 0; border-left: 0; }
  .operator-ecosystem-intro { grid-template-columns: 1fr; gap: 16px; }
  .operator-area-grid { grid-template-columns: 1fr; }
  .operator-area { min-height: 0; }
  .section-heading h2 { grid-column: 1; }
  .section-heading > p,
  .process-lead > p { max-width: 560px; }
  .service-card { grid-template-columns: 44px 1fr auto; gap: 20px; }
  .service-content { grid-template-columns: 1fr; gap: 26px; }
  .service-icon { width: 58px; height: 58px; }
  .service-disclaimer { grid-template-columns: 1fr; gap: 14px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 54px 28px; }
  .delivery-note { grid-template-columns: 1fr; }
  .delivery-options-head { grid-template-columns: 1fr; gap: 24px; }
  .delivery-options-head h3 { font-size: clamp(3rem, 10vw, 5.4rem); }
  .delivery-options-head > p { max-width: 620px; }
  .delivery-option-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer address { justify-self: end; text-align: right; }
  .footer-legal { justify-self: start; text-align: left; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  .brand-copy strong { font-size: 0.82rem; }
  .brand img { width: 36px; height: 36px; }
  .language-switch { font-size: 0.7rem; }
  .hero { height: auto; min-height: 780px; }
  .hero h1 { font-size: clamp(3.3rem, 16.5vw, 5.5rem); line-height: 0.9; }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .button-primary { min-width: 0; width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-proof span { white-space: nowrap; }
  .section { padding-block: 92px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .section-kicker { margin-bottom: 42px; }
  .manifesto h2,
  .section-heading h2,
  .process h2,
  .operator-heading h2,
  .contact h2 { font-size: clamp(2.85rem, 13.2vw, 4.5rem); }
  .capability-strip { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 68px 1fr; min-height: 0; padding-block: 34px; }
  .service-number { flex-direction: column; gap: 4px; }
  .service-icon { display: none; }
  .service-content h3 { font-size: 1.75rem; }
  .service-content p { font-size: 0.94rem; }
  .process-steps { grid-template-columns: 1fr; gap: 46px; margin-top: 75px; }
  .process-step { padding-right: 0; }
  .process-step p { max-width: 420px; }
  .delivery-note { margin-top: 75px; padding: 28px 24px; }
  .delivery-options { margin-top: 88px; }
  .delivery-options-head { margin-bottom: 38px; }
  .delivery-option { min-height: 0; padding: 28px 24px; }
  .delivery-option-top { flex-direction: column; }
  .delivery-option-top strong { text-align: left; }
  .delivery-option-time { margin-top: 52px !important; }
  .operator-facts { grid-template-columns: 1fr; }
  .operator-facts > div { min-height: 0; }
  .operator-flow { align-items: flex-start; flex-direction: column; }
  .operator-flow i { transform: rotate(90deg); }
  .operator-brand-lockup { align-items: flex-start; flex-direction: column; }
  .operator-logo-link { width: min(100%, 330px); }
  .operator-area { grid-template-columns: 28px minmax(0, 1fr) auto; padding: 24px 20px; }
  .contact-grid { padding-bottom: 90px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer address,
  .footer-legal { justify-self: start; text-align: left; }
  .footer-bottom { gap: 18px; flex-direction: column; }
  .footer-links { justify-content: space-between; }
}

@media (max-width: 380px) {
  .captcha-wrap { min-height: 62px; }
  .h-captcha { transform: scale(0.78); transform-origin: left top; }
}

/* Ongoing marketing preview */
.marketing-preview {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(139, 92, 246, .28), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0d1830 58%, #17113a 100%);
}

.marketing-preview::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 48%, transparent);
}

.marketing-preview .page-shell {
  position: relative;
}

.marketing-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: center;
}

.marketing-preview-label,
.marketing-page-kicker {
  margin: 0 0 26px;
  color: var(--coral);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.marketing-preview-copy h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(3.15rem, 5.5vw, 6.5rem);
  font-weight: 680;
  letter-spacing: -.065em;
  line-height: .96;
}

.marketing-preview-copy > p:not(.marketing-preview-label) {
  max-width: 670px;
  margin: 34px 0 38px;
  color: #b2bfd0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.marketing-preview-system {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(5, 13, 27, .58);
  box-shadow: 0 34px 90px rgba(0,0,0,.2);
  backdrop-filter: blur(16px);
}

.marketing-preview-system article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  min-height: 132px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.marketing-preview-system article:last-child {
  border-bottom: 0;
}

.marketing-preview-system article > span {
  color: var(--lime);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.marketing-preview-system article > div {
  display: grid;
  gap: 8px;
}

.marketing-preview-system strong {
  font-size: 1.18rem;
  letter-spacing: -.025em;
}

.marketing-preview-system small {
  max-width: 430px;
  color: #95a5b9;
  font-size: .86rem;
  line-height: 1.6;
}

.marketing-channel-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: clamp(72px, 8vw, 118px);
  border: 1px solid rgba(255,255,255,.14);
}

.marketing-channel-strip span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 15px;
  border-right: 1px solid rgba(255,255,255,.14);
  color: #d7dfeb;
  font-size: .74rem;
  font-weight: 720;
  text-align: center;
}

.marketing-channel-strip span:last-child {
  border-right: 0;
}

/* Ongoing marketing page */
.marketing-page {
  color: var(--ink);
  background: var(--paper);
}

.marketing-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 29%, rgba(92, 141, 255, .24), transparent 27%),
    radial-gradient(circle at 62% 76%, rgba(139, 92, 246, .17), transparent 32%),
    #07111f;
}

.marketing-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 10%, #000 62%, transparent 100%);
}

.marketing-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  gap: clamp(64px, 9vw, 150px);
  align-items: center;
  min-height: 760px;
  padding-top: 136px;
  padding-bottom: 82px;
}

.marketing-hero-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 7.6vw, 8rem);
  font-weight: 690;
  letter-spacing: -.072em;
  line-height: .9;
}

.marketing-hero-copy h1 em,
.marketing-section-intro h2 em,
.marketing-engagement-copy h2 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.marketing-hero-lead {
  max-width: 720px;
  margin: 34px 0 0;
  color: #b3c0d1;
  font-size: 1.08rem;
  line-height: 1.75;
}

.marketing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 38px;
}

.growth-loop {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(8, 20, 38, .72);
  box-shadow: 0 40px 110px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.growth-loop::after {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 96px;
  height: 96px;
  content: "↻";
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 2rem;
  font-weight: 800;
}

.growth-loop-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 2px 22px;
  border-bottom: 1px solid rgba(255,255,255,.13);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.growth-loop-head span { color: #8393aa; }
.growth-loop-head strong { color: var(--lime); }

.growth-loop ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.growth-loop li {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.growth-loop li > span {
  color: var(--coral);
  font-size: .7rem;
  font-weight: 800;
}

.growth-loop li div {
  display: grid;
  gap: 2px;
}

.growth-loop li strong {
  font-size: 1.05rem;
}

.growth-loop li small,
.growth-loop > p {
  color: #8fa0b6;
  font-size: .78rem;
}

.growth-loop > p {
  margin: 22px 90px 0 0;
  line-height: 1.6;
}

.marketing-channels {
  background: var(--paper);
}

.marketing-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: end;
}

.marketing-section-intro h2,
.marketing-engagement-copy h2 {
  margin: 0;
  font-size: clamp(3.3rem, 6vw, 7rem);
  font-weight: 680;
  letter-spacing: -.067em;
  line-height: .95;
}

.marketing-section-intro h2 em {
  color: var(--violet);
}

.marketing-section-intro > div,
.marketing-section-intro > p {
  max-width: 630px;
  color: #526174;
  font-size: 1rem;
  line-height: 1.72;
}

.marketing-section-intro > div p {
  margin: 0;
}

.marketing-section-intro > div p + p {
  margin-top: 20px;
}

.channel-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(72px, 8vw, 120px);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.channel-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #fff;
}

.channel-card::after {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: var(--violet);
}

.channel-card-community::after { background: var(--coral); }
.channel-card-reach::after { background: var(--blue); }
.channel-card-discovery::after { background: var(--lime); box-shadow: 0 0 0 1px rgba(7,17,31,.16); }

.channel-card-number {
  color: #8a97a8;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.channel-card-label {
  margin: 74px 0 12px;
  color: var(--violet);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.channel-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -.045em;
}

.channel-card > p:last-child {
  max-width: 520px;
  margin: 18px 0 0;
  color: #5c6b7e;
  line-height: 1.65;
}

.marketing-rhythm {
  color: var(--white);
  background: #101d31;
}

.marketing-section-intro-light h2 em {
  color: var(--coral);
}

.marketing-section-intro-light > p {
  color: #a9b7c8;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(76px, 9vw, 132px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rhythm-grid article {
  min-height: 310px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.rhythm-grid article:last-child { border-right: 0; }
.rhythm-grid article > span { color: var(--coral); font-size: .72rem; font-weight: 800; }
.rhythm-grid h3 { margin: 78px 0 18px; font-size: 1.35rem; letter-spacing: -.025em; }
.rhythm-grid p { margin: 0; color: #96a6b9; font-size: .88rem; line-height: 1.7; }

.rhythm-output {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border: 1px solid var(--line);
}

.rhythm-output > div {
  display: grid;
  gap: 18px;
  min-height: 126px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.rhythm-output > div:last-child { border-right: 0; }
.rhythm-output span { color: #788aa1; font-size: .69rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.rhythm-output strong { font-size: 1rem; }

.marketing-measure {
  background: #eef1f5;
}

.measure-layout {
  display: grid;
  grid-template-columns: minmax(380px, .85fr) minmax(0, 1.15fr);
  gap: clamp(52px, 8vw, 124px);
  align-items: stretch;
  margin-top: clamp(74px, 8vw, 120px);
}

.funnel-board {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 520px;
  padding: clamp(28px, 4vw, 54px);
  color: var(--white);
  background: var(--ink);
}

.funnel-stage {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  margin-inline: auto;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 800;
}

.funnel-stage small { font-size: .68rem; font-weight: 700; opacity: .64; }
.funnel-stage-reach { width: 100%; background: #eef2f7; }
.funnel-stage-interest { width: 84%; background: var(--blue); }
.funnel-stage-intent { width: 68%; background: var(--violet); color: var(--white); }
.funnel-stage-conversion { width: 52%; background: var(--lime); }

.measure-cards {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.measure-cards article {
  display: grid;
  grid-template-columns: 48px minmax(190px, .55fr) 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.measure-cards article > span { color: var(--violet); font-size: .7rem; font-weight: 800; }
.measure-cards h3 { margin: 0; font-size: 1.3rem; letter-spacing: -.03em; }
.measure-cards p { margin: 0; color: #5e6d80; font-size: .9rem; line-height: 1.7; }

.marketing-engagement {
  padding-bottom: 30px;
  color: var(--white);
  background: linear-gradient(135deg, #241552 0%, #40257e 58%, #182240 100%);
}

.marketing-engagement-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(450px, 1.08fr);
  gap: clamp(62px, 9vw, 140px);
  align-items: start;
}

.marketing-engagement-copy h2 em { color: var(--lime); }
.marketing-engagement-copy > p { max-width: 620px; margin: 32px 0 38px; color: #d0c8e8; line-height: 1.75; }

.engagement-scope {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7,17,31,.28);
}

.engagement-scope > div {
  padding: 30px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.engagement-scope > div:last-child { border-bottom: 0; }
.engagement-scope > div > span { color: var(--lime); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.engagement-scope ul { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; }
.engagement-scope li { position: relative; padding-left: 22px; color: #e0dbef; line-height: 1.55; }
.engagement-scope li::before { position: absolute; top: .65em; left: 0; width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--coral); }

.marketing-disclaimer {
  max-width: 940px;
  margin: 54px 0 104px;
  color: #a99fc6;
  font-size: .78rem;
  line-height: 1.75;
}

.marketing-page-footer {
  border-top-color: rgba(255,255,255,.18);
  color: #beb6d3;
}

@media (max-width: 1120px) {
  .marketing-preview-grid,
  .marketing-hero-grid,
  .marketing-engagement-grid { grid-template-columns: 1fr; }
  .marketing-preview-system,
  .growth-loop { width: min(100%, 760px); }
  .marketing-channel-strip { grid-template-columns: repeat(4, 1fr); }
  .marketing-channel-strip span:nth-child(4) { border-right: 0; }
  .marketing-channel-strip span:nth-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .marketing-channel-strip span:last-child { grid-column: span 2; }
  .marketing-hero-grid { padding-top: 150px; }
  .rhythm-grid { grid-template-columns: repeat(2, 1fr); }
  .rhythm-grid article:nth-child(2) { border-right: 0; }
  .rhythm-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .measure-layout { grid-template-columns: 1fr; }
  .funnel-board { min-height: 460px; }
}

@media (max-width: 820px) {
  .marketing-preview-grid { grid-template-columns: 1fr; }
  .marketing-preview-system { width: 100%; }
  .marketing-section-intro { grid-template-columns: 1fr; gap: 36px; }
  .marketing-section-intro h2,
  .marketing-engagement-copy h2 { font-size: clamp(3rem, 11vw, 5.5rem); }
  .channel-card-grid { grid-template-columns: 1fr; }
  .channel-card { min-height: 290px; }
  .measure-cards article { grid-template-columns: 44px 1fr; }
  .measure-cards article p { grid-column: 2; }
  .marketing-engagement-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .marketing-preview-copy h2 { font-size: clamp(2.85rem, 13vw, 4.5rem); }
  .marketing-preview-system article { grid-template-columns: 42px 1fr; min-height: 118px; padding: 22px 18px; }
  .marketing-channel-strip { grid-template-columns: 1fr 1fr; }
  .marketing-channel-strip span,
  .marketing-channel-strip span:nth-child(4) { border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
  .marketing-channel-strip span:nth-child(even) { border-right: 0; }
  .marketing-channel-strip span:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .marketing-hero { min-height: 0; }
  .marketing-hero-grid { min-height: 0; padding-top: 125px; padding-bottom: 88px; }
  .marketing-hero-copy h1 { font-size: clamp(3.35rem, 15.6vw, 5rem); }
  .marketing-hero-actions { align-items: stretch; flex-direction: column; }
  .marketing-hero-actions .text-link { align-self: flex-start; }
  .growth-loop { padding: 20px; }
  .growth-loop::after { width: 68px; height: 68px; font-size: 1.5rem; }
  .growth-loop li { grid-template-columns: 42px 1fr; }
  .channel-card { min-height: 0; padding: 28px 24px 38px; }
  .channel-card-label { margin-top: 52px; }
  .rhythm-grid { grid-template-columns: 1fr; }
  .rhythm-grid article,
  .rhythm-grid article:nth-child(2) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .rhythm-grid article:last-child { border-bottom: 0; }
  .rhythm-grid h3 { margin-top: 46px; }
  .rhythm-output { grid-template-columns: 1fr; }
  .rhythm-output > div { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .rhythm-output > div:last-child { border-bottom: 0; }
  .funnel-board { min-height: 400px; padding: 22px 14px; }
  .funnel-stage { padding-inline: 14px; }
  .funnel-stage small { display: none; }
  .funnel-stage-interest { width: 88%; }
  .funnel-stage-intent { width: 74%; }
  .funnel-stage-conversion { width: 60%; }
  .measure-cards article { gap: 18px; }
  .engagement-scope > div { padding: 26px 22px; }
}

@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; }
}
