:root {
  --bg: #efedf2;
  --paper: #ffffff;
  --ink: #050507;
  --muted: #68646f;
  --line: rgba(5, 5, 7, 0.12);
  --lime: #c9ff00;
  --violet: #9b64f4;
  --cyan: #5de0d4;
  --rose: #ff7ea8;
  --shadow: 0 28px 90px rgba(15, 12, 24, 0.12);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 38px 28px 20px;
  position: relative;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 950;
  gap: 12px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  align-items: end;
  background: var(--ink);
  border-radius: 8px;
  display: inline-flex;
  gap: 3px;
  height: 34px;
  justify-content: center;
  padding: 7px;
  position: relative;
  width: 34px;
}

.brand-mark span {
  background: var(--paper);
  border-radius: 2px;
  display: block;
  width: 5px;
}

.brand-mark span:nth-child(1) {
  height: 14px;
}

.brand-mark span:nth-child(2) {
  background: var(--lime);
  height: 20px;
}

.brand-mark span:nth-child(3) {
  height: 10px;
}

.brand > span:last-child {
  font-size: 17px;
  line-height: 1;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 750;
}

.site-nav a {
  opacity: 0.86;
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--violet);
  opacity: 1;
}

.site-nav a.active::before {
  background: var(--violet);
  border-radius: 999px;
  content: "";
  height: 6px;
  left: -12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
}

.pill-link {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
}

.nav-toggle {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 42px;
  justify-content: center;
  padding: 10px;
  width: 46px;
}

.nav-toggle span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 0 auto;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 22px;
}

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

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

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

.hero {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.05fr 0.95fr;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 660px;
  overflow: hidden;
  padding: 60px 28px 82px;
  position: relative;
}

.hero-canvas {
  inset: 0;
  opacity: 0.46;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--violet);
  font-size: 13px;
  font-weight: 850;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 86px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 28px;
  max-width: 860px;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: 0;
  line-height: 1.05;
}

h3 {
  font-size: 20px;
  line-height: 1.18;
}

.hero-text {
  font-size: 18px;
  font-weight: 650;
  max-width: 640px;
}

.hero-actions,
.trust-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  gap: 12px;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:disabled,
.subscribe-form button:disabled {
  cursor: wait;
  opacity: 0.86;
}

.button span,
.subscribe-form button::after {
  background: currentColor;
  content: "";
  display: inline-block;
  height: 10px;
  mask: linear-gradient(#000 0 0) center / 100% 2px no-repeat, linear-gradient(#000 0 0) right center / 2px 100% no-repeat;
  transform: rotate(45deg);
  width: 10px;
}

.button.is-loading,
.subscribe-form button.is-loading {
  color: transparent;
  pointer-events: none;
  position: relative;
}

.button.is-loading span,
.subscribe-form button.is-loading::after {
  visibility: hidden;
}

.button.is-loading::before,
.subscribe-form button.is-loading::before {
  animation: button-loader 760ms linear infinite;
  border: 2px solid rgba(5, 5, 7, 0.2);
  border-top-color: var(--ink);
  border-radius: 999px;
  content: "";
  height: 18px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
}

.dark.is-loading::before {
  border-color: rgba(255, 255, 255, 0.28);
  border-top-color: var(--paper);
}

@keyframes button-loader {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.primary {
  background: var(--lime);
  border: 2px solid var(--ink);
  color: var(--ink);
  box-shadow: 0 10px 0 var(--ink);
}

.ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.dark {
  background: var(--ink);
  color: var(--paper);
}

.trust-row {
  gap: 34px;
  margin-top: 58px;
}

.trust-row span {
  color: #232027;
  font-size: 14px;
  font-weight: 850;
  position: relative;
}

.trust-row span::before {
  background: var(--ink);
  content: "";
  height: 11px;
  left: -16px;
  position: absolute;
  top: 5px;
  width: 5px;
}

.hero-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 520px;
}

.neo-card {
  background: radial-gradient(circle at 30% 20%, rgba(201, 255, 0, 0.18), transparent 28%), #050507;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
  color: var(--paper);
  height: 300px;
  padding: 34px;
  position: relative;
  transform: rotate(28deg);
  width: min(450px, 74vw);
}

.neo-card::before,
.neo-card::after {
  background: var(--lime);
  content: "";
  height: 82px;
  position: absolute;
  right: -72px;
  width: 112px;
  z-index: -1;
}

.neo-card::before {
  top: 84px;
}

.neo-card::after {
  opacity: 0.8;
  top: 178px;
  width: 86px;
}

.card-top {
  color: var(--lime);
  display: flex;
  font-size: 15px;
  font-weight: 850;
  justify-content: space-between;
}

.card-number {
  color: rgba(255, 255, 255, 0.78);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  margin-top: 24px;
}

.pixel-grid {
  bottom: -92px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(10, 22px);
  left: 34px;
  position: absolute;
}

.pixel-grid i {
  background: var(--violet);
  display: block;
  height: 22px;
  transform: rotate(12deg);
  width: 22px;
}

.pixel-grid i:nth-child(3n) {
  background: var(--lime);
}

.pixel-grid i:nth-child(5n) {
  background: #060508;
}

.signal-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  padding: 18px;
  position: absolute;
  right: 12px;
  top: 92px;
  width: 170px;
}

.signal-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.signal-panel strong {
  font-size: 36px;
  line-height: 1;
}

.signal-bars {
  align-items: end;
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(4, 1fr);
  height: 58px;
}

.signal-bars b {
  background: var(--violet);
  display: block;
}

.signal-bars b:nth-child(1) { height: 34%; }
.signal-bars b:nth-child(2) { height: 66%; background: var(--lime); }
.signal-bars b:nth-child(3) { height: 48%; }
.signal-bars b:nth-child(4) { height: 86%; background: var(--cyan); }

.intro-band,
.feature-strip,
.services-preview,
.distinction,
.page-hero,
.split-section,
.values-section,
.service-detail-grid,
.process-band,
.contact-layout,
.auth-layout {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 28px;
  padding-right: 28px;
}

.intro-band {
  background: var(--paper);
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 74px;
  padding-top: 74px;
}

.intro-band p {
  color: var(--muted);
  font-weight: 650;
  margin-bottom: 26px;
}

.feature-strip {
  background: var(--paper);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 80px;
}

.feature-strip article,
.service-card,
.service-detail-grid article,
.value-grid article,
.process-steps article,
.form-card,
.auth-card,
.contact-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 8, 14, 0.08);
  border-radius: 8px;
}

.feature-strip article {
  min-height: 230px;
  padding: 28px;
}

.feature-strip p,
.service-card p,
.service-detail-grid p,
.process-steps p,
.value-grid p {
  color: var(--muted);
  font-weight: 600;
}

.mini-visual {
  height: 92px;
  margin-bottom: 22px;
  position: relative;
}

.orbit::before,
.orbit::after,
.rings::before,
.rings::after {
  border: 2px solid var(--violet);
  border-radius: 999px;
  content: "";
  height: 66px;
  position: absolute;
  width: 66px;
}

.orbit::before { left: 12px; top: 12px; }
.orbit::after { border-color: var(--ink); left: 46px; opacity: 0.28; top: 4px; }

.sliders::before,
.sliders::after,
.ledger::before,
.ledger::after {
  background: repeating-linear-gradient(90deg, transparent 0 18px, var(--violet) 18px 30px);
  border: 1px dashed rgba(5, 5, 7, 0.25);
  content: "";
  height: 16px;
  left: 4px;
  position: absolute;
  top: 20px;
  width: 150px;
}

.sliders::after { background: var(--lime); top: 54px; width: 112px; }
.rings::before { height: 96px; width: 96px; }
.rings::after { background: var(--violet); height: 22px; left: 42px; top: 60px; width: 22px; }
.ledger::before { background: linear-gradient(90deg, var(--violet) 35%, var(--lime) 35% 48%, transparent 48%); top: 18px; width: 164px; }
.ledger::after { background: linear-gradient(90deg, var(--cyan) 30%, transparent 30%); top: 48px; width: 138px; }

.services-preview {
  padding-bottom: 86px;
  padding-top: 92px;
}

.client-path,
.scenario-section {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 28px;
  padding-right: 28px;
}

.client-path {
  background: var(--ink);
  color: var(--paper);
  padding-bottom: 96px;
  padding-top: 92px;
}

.client-path .section-heading {
  align-items: start;
}

.client-path .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.path-layout {
  display: grid;
  gap: 46px;
  grid-template-columns: 0.9fr 1.1fr;
}

.path-visual {
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.28) 49% 51%, transparent 51%),
    radial-gradient(circle at 50% 16%, var(--lime) 0 22px, transparent 23px),
    radial-gradient(circle at 50% 44%, var(--violet) 0 22px, transparent 23px),
    radial-gradient(circle at 50% 72%, var(--cyan) 0 22px, transparent 23px);
  min-height: 470px;
  position: relative;
}

.path-visual span {
  border: 1px dashed rgba(255, 255, 255, 0.28);
  display: block;
  height: 74px;
  position: absolute;
  width: 170px;
}

.path-visual span:nth-child(1) { left: 8%; top: 10%; }
.path-visual span:nth-child(2) { right: 10%; top: 30%; }
.path-visual span:nth-child(3) { left: 13%; top: 56%; }
.path-visual span:nth-child(4) { right: 16%; top: 76%; }

.path-visual b {
  background: repeating-linear-gradient(90deg, var(--paper) 0 10px, transparent 10px 24px);
  bottom: 24px;
  display: block;
  height: 42px;
  left: 50%;
  opacity: 0.55;
  position: absolute;
  transform: translateX(-50%);
  width: 260px;
}

.path-steps {
  display: grid;
  gap: 18px;
}

.path-steps article,
.scenario-grid article {
  border-radius: 8px;
  padding: 28px;
}

.path-steps article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.path-steps span {
  color: var(--lime);
  display: block;
  font-weight: 950;
  margin-bottom: 12px;
}

.path-steps p {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 650;
  margin-bottom: 0;
}

.scenario-section {
  padding-bottom: 96px;
  padding-top: 92px;
}

.scenario-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.scenario-grid article {
  background: var(--paper);
  border: 1px solid rgba(10, 8, 14, 0.08);
  min-height: 300px;
}

.scenario-tag {
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 24px;
  padding: 7px 12px;
  text-transform: uppercase;
}

.scenario-grid p {
  color: var(--muted);
  font-weight: 650;
}

.faq-section {
  background: var(--bg);
  margin: 0 auto;
  max-width: var(--max);
  padding: 92px 28px 100px;
}

.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.faq-grid details {
  background: var(--paper);
  border: 1px solid rgba(10, 8, 14, 0.08);
  border-radius: 8px;
  padding: 24px 26px;
}

.faq-grid summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
  padding-right: 34px;
  position: relative;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 999px;
  content: "";
  height: 28px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}

.faq-grid summary::before {
  background:
    linear-gradient(var(--ink), var(--ink)) center / 12px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 2px 12px no-repeat;
  content: "";
  height: 28px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  z-index: 1;
}

.faq-grid details[open] summary::before {
  background: linear-gradient(var(--ink), var(--ink)) center / 12px 2px no-repeat;
}

.faq-grid p {
  color: var(--muted);
  font-weight: 650;
  margin: 18px 0 0;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-heading h2,
.section-heading p {
  max-width: 760px;
}

.section-heading p {
  color: var(--muted);
  font-weight: 650;
}

.carousel-controls {
  display: flex;
  gap: 12px;
}

.carousel-controls button {
  background: var(--paper);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  height: 38px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 58px;
}

.carousel-controls button:hover {
  transform: translateY(-2px);
}

.carousel-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.carousel-controls button:last-child {
  background: var(--lime);
  border: 2px solid var(--ink);
}

.service-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-grid::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 366px;
  overflow: hidden;
  padding: 34px;
  scroll-snap-align: start;
  text-align: center;
}

.card-art {
  height: 150px;
  margin: 22px auto 34px;
  position: relative;
  width: 220px;
}

.cubes {
  background:
    linear-gradient(135deg, var(--lime), var(--violet)) 25px 55px / 50px 50px no-repeat,
    linear-gradient(135deg, var(--violet), #f3f1f7) 85px 15px / 50px 50px no-repeat,
    linear-gradient(135deg, var(--lime), #f3f1f7) 145px 55px / 50px 50px no-repeat,
    linear-gradient(135deg, var(--violet), var(--lime)) 85px 95px / 50px 50px no-repeat;
  transform: rotate(45deg);
}

.path::before {
  border: 2px dashed rgba(5, 5, 7, 0.25);
  content: "";
  height: 88px;
  left: 22px;
  position: absolute;
  top: 32px;
  width: 144px;
}

.path::after {
  background: var(--lime);
  box-shadow: -95px -8px 0 rgba(155, 100, 244, 0.18), -64px 40px 0 var(--paper);
  content: "";
  height: 72px;
  left: 118px;
  position: absolute;
  top: 42px;
  width: 86px;
}

.documents {
  background: repeating-linear-gradient(0deg, var(--violet) 0 9px, transparent 9px 22px);
  opacity: 0.72;
}

.documents::after {
  background: var(--lime);
  content: "";
  height: 12px;
  left: 112px;
  position: absolute;
  top: 96px;
  width: 92px;
}

.shield {
  background:
    radial-gradient(circle at 50% 34%, var(--lime) 0 25px, transparent 26px),
    linear-gradient(135deg, transparent 0 24%, var(--violet) 24% 26%, transparent 26% 74%, var(--violet) 74% 76%, transparent 76%),
    linear-gradient(180deg, rgba(5, 5, 7, 0.08), rgba(5, 5, 7, 0.02));
  clip-path: polygon(50% 2%, 92% 18%, 82% 76%, 50% 98%, 18% 76%, 8% 18%);
}

.pulse::before,
.pulse::after {
  content: "";
  position: absolute;
}

.pulse::before {
  border-bottom: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  height: 74px;
  left: 18px;
  top: 34px;
  width: 174px;
}

.pulse::after {
  background: linear-gradient(90deg, var(--violet) 0 16%, transparent 16% 28%, var(--lime) 28% 44%, transparent 44% 56%, var(--cyan) 56% 76%, transparent 76%);
  height: 78px;
  left: 30px;
  top: 32px;
  width: 170px;
}

.distinction {
  background: var(--paper);
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 100px;
  padding-top: 92px;
}

.distinction p {
  color: var(--muted);
  font-weight: 650;
  max-width: 640px;
}

.number-list {
  display: grid;
  gap: 16px 28px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.number-list li {
  align-items: center;
  display: flex;
  font-weight: 850;
  gap: 12px;
}

.number-list span,
.process-steps span,
.service-index {
  align-items: center;
  background: var(--lime);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.cosmic-chart {
  min-height: 430px;
  position: relative;
}

.cosmic-chart span,
.cosmic-chart b {
  border-radius: 999px;
  display: block;
  position: absolute;
}

.cosmic-chart span {
  background: var(--ink);
  height: 12px;
  left: calc(50% + (var(--x, 0) * 1px));
  top: calc(50% + (var(--y, 0) * 1px));
  width: 12px;
}

.cosmic-chart span:nth-child(1) { --x: -170; --y: -130; }
.cosmic-chart span:nth-child(2) { --x: -120; --y: -170; }
.cosmic-chart span:nth-child(3) { --x: -52; --y: -146; }
.cosmic-chart span:nth-child(4) { --x: 32; --y: -170; }
.cosmic-chart span:nth-child(5) { --x: 112; --y: -122; background: var(--lime); }
.cosmic-chart span:nth-child(6) { --x: 160; --y: -42; }
.cosmic-chart span:nth-child(7) { --x: 132; --y: 52; background: var(--violet); height: 24px; width: 24px; }
.cosmic-chart span:nth-child(8) { --x: 52; --y: 128; }
.cosmic-chart span:nth-child(9) { --x: -44; --y: 148; }
.cosmic-chart span:nth-child(10) { --x: -126; --y: 96; }
.cosmic-chart span:nth-child(11) { --x: -168; --y: 16; }
.cosmic-chart span:nth-child(12) { --x: -136; --y: -62; }
.cosmic-chart span:nth-child(n+13) {
  background: var(--violet);
  height: 9px;
  width: 9px;
}
.cosmic-chart span:nth-child(13) { --x: -34; --y: -20; }
.cosmic-chart span:nth-child(14) { --x: 0; --y: -24; background: var(--lime); }
.cosmic-chart span:nth-child(15) { --x: 32; --y: -6; }
.cosmic-chart span:nth-child(16) { --x: 4; --y: 20; background: var(--lime); }
.cosmic-chart span:nth-child(17) { --x: -28; --y: 10; }
.cosmic-chart span:nth-child(18) { --x: 46; --y: 22; background: var(--lime); }
.cosmic-chart b {
  background: var(--ink);
  height: 130px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
}

.page-hero {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.1fr 0.9fr;
  padding-bottom: 84px;
  padding-top: 76px;
}

.page-hero.compact {
  display: block;
  max-width: 980px;
  text-align: center;
}

.page-hero p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.page-hero .eyebrow {
  color: var(--violet);
}

.about-hero {
  align-items: end;
}

.split-section {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: 54px;
  grid-template-columns: 0.8fr 1.2fr;
  padding-bottom: 86px;
  padding-top: 86px;
}

.timeline-art {
  background:
    linear-gradient(90deg, transparent 0 49%, var(--ink) 49% 51%, transparent 51%),
    radial-gradient(circle at 50% 18%, var(--lime) 0 18px, transparent 19px),
    radial-gradient(circle at 50% 48%, var(--violet) 0 18px, transparent 19px),
    radial-gradient(circle at 50% 78%, var(--cyan) 0 18px, transparent 19px);
  min-height: 410px;
  position: relative;
}

.timeline-art span {
  border: 1px dashed rgba(5, 5, 7, 0.26);
  display: block;
  height: 70px;
  position: absolute;
  width: 150px;
}

.timeline-art span:nth-child(1) { left: 10%; top: 12%; }
.timeline-art span:nth-child(2) { right: 8%; top: 30%; }
.timeline-art span:nth-child(3) { left: 15%; top: 54%; }
.timeline-art span:nth-child(4) { right: 18%; top: 76%; }

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

.stats-grid div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.stats-grid strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 750;
}

.values-section,
.process-band {
  padding-bottom: 92px;
  padding-top: 92px;
}

.value-grid,
.process-steps,
.service-detail-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.value-grid article,
.process-steps article,
.service-detail-grid article {
  padding: 30px;
}

.service-detail-grid {
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 90px;
}

.service-detail-grid article {
  background: var(--paper);
  min-height: 340px;
}

.service-index {
  margin-bottom: 32px;
  width: 46px;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.check-list li {
  font-weight: 750;
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  background: var(--lime);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 10px;
}

.process-band {
  background: var(--ink);
  color: var(--paper);
}

.process-band p {
  color: rgba(255, 255, 255, 0.68);
}

.process-steps article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-layout {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.1fr 0.9fr;
  padding-bottom: 94px;
}

.form-card {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  padding: 32px;
}

.field-row {
  display: grid;
  gap: 8px;
}

.field-row.full {
  grid-column: 1 / -1;
}

.consent-row {
  align-items: start;
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 650;
  gap: 12px;
  grid-template-columns: 18px 1fr;
  line-height: 1.45;
  text-transform: none;
}

.consent-row.full {
  grid-column: 1 / -1;
}

.consent-row input {
  accent-color: var(--violet);
  height: 18px;
  margin: 2px 0 0;
  min-height: 18px;
  padding: 0;
  width: 18px;
}

.consent-row a,
.legal-content a,
.minimal-footer a {
  color: var(--violet);
  font-weight: 900;
}

label {
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: #f7f6f9;
  border: 1px solid rgba(5, 5, 7, 0.15);
  border-radius: 8px;
  min-height: 50px;
  padding: 13px 15px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(155, 100, 244, 0.16);
  outline: 0;
}

.form-card .button {
  justify-self: start;
}

.form-note {
  color: var(--violet);
  font-weight: 800;
  margin: 0;
}

.form-note.error {
  color: #c0183b;
  margin-top: 2px;
  padding: 4px 0;
  text-align: center;
}

.form-note.error.shake {
  animation: shake-error 360ms ease;
}

@keyframes shake-error {
  0%, 100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-7px);
  }

  40% {
    transform: translateX(7px);
  }

  60% {
    transform: translateX(-5px);
  }

  80% {
    transform: translateX(5px);
  }
}

.contact-panel {
  background: var(--ink);
  color: var(--paper);
  padding: 34px;
}

.contact-panel a {
  display: block;
  font-size: 20px;
  font-weight: 850;
  margin: 12px 0;
}

.small-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  margin-top: 30px;
}

.contact-art {
  background:
    radial-gradient(circle at 22% 52%, var(--violet) 0 20px, transparent 21px),
    radial-gradient(circle at 62% 32%, var(--lime) 0 38px, transparent 39px),
    linear-gradient(90deg, transparent 0 42%, rgba(255, 255, 255, 0.24) 42% 44%, transparent 44%),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(255, 255, 255, 0.18) 22px 23px);
  height: 220px;
  margin-bottom: 34px;
}

.auth-layout {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: calc(100vh - 170px);
  padding-bottom: 70px;
  padding-top: 62px;
}

.auth-visual {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  overflow: hidden;
  padding: 46px;
  position: relative;
}

.auth-visual::after {
  background: var(--lime);
  content: "";
  height: 160px;
  position: absolute;
  right: -34px;
  top: 110px;
  width: 220px;
}

.auth-visual h1 {
  font-size: clamp(40px, 5vw, 72px);
  position: relative;
  z-index: 1;
}

.portal-preview {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 14px;
  max-width: 540px;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.portal-preview span {
  background: rgba(255, 255, 255, 0.24);
  display: block;
  height: 14px;
}

.portal-preview span:nth-child(1) { width: 48%; }
.portal-preview span:nth-child(2) { background: var(--violet); width: 74%; }
.portal-preview span:nth-child(3) { background: var(--lime); width: 58%; }
.portal-preview div {
  background: repeating-linear-gradient(90deg, var(--paper) 0 10px, transparent 10px 28px);
  height: 120px;
  opacity: 0.6;
}

.signup-preview span:nth-child(2) { background: var(--cyan); }

.auth-card {
  align-self: center;
  display: grid;
  gap: 14px;
  padding: 36px;
}

.auth-card h2 {
  font-size: 42px;
  margin-bottom: 0;
}

.auth-card p {
  color: var(--muted);
  font-weight: 650;
}

.switch-link {
  text-align: center;
}

.switch-link a {
  color: var(--violet);
  font-weight: 900;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: 34px;
  grid-template-columns: 1.1fr 0.72fr 0.82fr 1.22fr;
  margin: 0 auto;
  max-width: 100%;
  padding: 76px max(28px, calc((100vw - var(--max)) / 2 + 28px)) 34px;
  position: relative;
}

.site-footer .brand-mark span {
  background: var(--ink);
}

.site-footer .brand-mark {
  background: var(--paper);
}

.site-footer .brand-mark span:nth-child(2) {
  background: var(--violet);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a {
  display: block;
  font-weight: 750;
  margin: 10px 0;
}

.site-footer h2 {
  font-size: 17px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 28px;
}

.footer-email {
  color: var(--paper) !important;
  font-weight: 900 !important;
  margin-top: 18px !important;
}

.footer-links a:hover,
.footer-email:hover {
  color: var(--lime) !important;
}

.subscribe-form {
  background: var(--paper);
  border-radius: 999px;
  display: flex;
  max-width: 460px;
  overflow: hidden;
  padding: 5px;
}

.subscribe-form input {
  background: transparent;
  border: 0;
  min-width: 0;
}

.subscribe-form input:focus {
  box-shadow: none;
}

.subscribe-form button {
  align-items: center;
  background: var(--lime);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  padding: 0 20px;
}

.footer-fine {
  font-size: 13px;
  margin: 12px 0 0;
  max-width: 430px;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-column: 1 / -1;
  padding-top: 28px;
}

.footer-disclaimer p {
  max-width: 980px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  text-align: center;
}

.minimal-footer {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  padding: 0 28px 28px;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

.site-modal {
  align-items: center;
  background: rgba(5, 5, 7, 0.68);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 200;
}

.site-modal.open {
  display: flex;
}

.site-modal__panel {
  background:
    radial-gradient(circle at 85% 8%, rgba(201, 255, 0, 0.32), transparent 22%),
    var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
  max-width: 540px;
  padding: 38px;
  position: relative;
  width: min(100%, 540px);
}

.site-modal__close {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
}

.site-modal__mark {
  align-items: end;
  background: var(--ink);
  border-radius: 8px;
  display: inline-flex;
  gap: 4px;
  height: 46px;
  justify-content: center;
  margin-bottom: 26px;
  padding: 9px;
  width: 46px;
}

.site-modal__mark span {
  background: var(--paper);
  border-radius: 2px;
  display: block;
  width: 6px;
}

.site-modal__mark span:nth-child(1) {
  height: 18px;
}

.site-modal__mark span:nth-child(2) {
  background: var(--lime);
  height: 28px;
}

.site-modal__mark span:nth-child(3) {
  height: 13px;
}

.site-modal h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 14px;
}

.site-modal p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  margin-bottom: 28px;
}

.legal-content {
  background: var(--paper);
  display: grid;
  gap: 26px;
  margin: 0 auto 90px;
  max-width: 980px;
  padding: 48px;
}

.legal-content article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.legal-content article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-content h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.legal-content p {
  color: var(--muted);
  font-weight: 650;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
    display: flex;
  }

  .site-nav {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 18px;
    left: 28px;
    padding: 24px;
    position: absolute;
    right: 28px;
    top: 88px;
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .intro-band,
  .distinction,
  .client-path,
  .page-hero,
  .split-section,
  .scenario-section,
  .contact-layout,
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .path-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-art {
    min-height: 470px;
  }

  .feature-strip,
  .value-grid,
  .scenario-grid,
  .faq-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .auth-layout {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 24px 18px 12px;
  }

  .brand {
    font-size: 14px;
  }

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

  .hero,
  .intro-band,
  .feature-strip,
  .services-preview,
  .distinction,
  .client-path,
  .faq-section,
  .page-hero,
  .split-section,
  .values-section,
  .scenario-section,
  .service-detail-grid,
  .process-band,
  .contact-layout,
  .auth-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

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

  .neo-card {
    height: 240px;
    padding: 24px;
    transform: rotate(18deg);
    width: 300px;
  }

  .pixel-grid {
    gap: 5px;
    grid-template-columns: repeat(10, 14px);
  }

  .pixel-grid i {
    height: 14px;
    width: 14px;
  }

  .signal-panel {
    right: 0;
    top: 12px;
  }

  .feature-strip,
  .value-grid,
  .scenario-grid,
  .faq-grid,
  .process-steps,
  .service-detail-grid,
  .number-list,
  .stats-grid,
  .form-card {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-basis: 100%;
  }

  .subscribe-form {
    border-radius: 8px;
    flex-direction: column;
  }

  .subscribe-form button {
    min-height: 48px;
  }

  .legal-content {
    padding: 30px 18px;
  }

  .auth-visual {
    min-height: 460px;
    padding: 30px;
  }
}
