:root {
  --color-neon: #aff958;
  --color-purple: #7c00ff;
  --color-paper: #ecefe8;
  --color-ink: #111110;
  --color-muted: #9fa49b;
  --color-line: rgba(236, 239, 232, 0.16);
  --color-line-strong: rgba(236, 239, 232, 0.24);
  --color-card: rgba(20, 20, 18, 0.82);
  --color-card-strong: #181816;
  --color-glass: rgba(236, 239, 232, 0.07);
  --color-light-line: rgba(17, 17, 16, 0.12);
  --gradient-brand: linear-gradient(135deg, var(--color-neon), var(--color-purple));
  --shadow-neon: 0 18px 56px rgba(175, 249, 88, 0.18);
  --shadow-purple: 0 18px 64px rgba(124, 0, 255, 0.24);
  --font-display: "Space Grotesk", "Sora", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --header-height: 78px;
  --radius: 8px;
  --ease: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #111110 0%, #0b0b0a 48%, #111110 100%),
    var(--color-ink);
  color: var(--color-paper);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--color-neon);
  color: var(--color-ink);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform var(--ease);
}

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

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

.section,
.marketplace,
.why,
.contact {
  padding: 112px 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(175, 249, 88, 0.13), transparent 29%),
    linear-gradient(295deg, rgba(124, 0, 255, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(236, 239, 232, 0.035), transparent 54%),
    var(--color-ink);
}

.section-light {
  background:
    linear-gradient(180deg, rgba(236, 239, 232, 0.98), rgba(236, 239, 232, 0.92)),
    var(--color-paper);
  color: var(--color-ink);
}

.grid-surface {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(236, 239, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 239, 232, 0.08) 1px, transparent 1px),
    repeating-linear-gradient(135deg, rgba(175, 249, 88, 0.045) 0 1px, transparent 1px 16px);
  background-size: 68px 68px, 68px 68px, 100% 100%;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.48) 62%, transparent 100%);
}

.grid-surface-soft {
  opacity: 0.32;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(11, 11, 10, 0.86);
  border-bottom: 1px solid rgba(236, 239, 232, 0.12);
  backdrop-filter: blur(22px);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
}

.brand-mark span {
  display: block;
  border-radius: 7px;
  background: var(--color-neon);
  box-shadow: 0 0 24px rgba(175, 249, 88, 0.34);
}

.brand-mark span:nth-child(2) {
  background: var(--color-purple);
  transform: translateY(7px);
  box-shadow: 0 0 22px rgba(124, 0, 255, 0.3);
}

.brand-mark span:nth-child(3) {
  grid-column: 1 / 3;
  background: var(--gradient-brand);
}

.brand-name {
  font-size: 0.95rem;
  color: var(--color-paper);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(236, 239, 232, 0.16);
  border-radius: var(--radius);
  background: rgba(236, 239, 232, 0.06);
}

.language-button {
  min-width: 36px;
  min-height: 32px;
  border-radius: 6px;
  background: transparent;
  color: rgba(236, 239, 232, 0.66);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}

.language-button:hover,
.language-button:focus-visible {
  color: var(--color-paper);
}

.language-button.is-active {
  background: var(--gradient-brand);
  color: var(--color-ink);
  box-shadow: 0 10px 26px rgba(175, 249, 88, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(236, 239, 232, 0.72);
  font-size: 0.94rem;
}

.nav-links a {
  position: relative;
  transition: color var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-paper);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(236, 239, 232, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-paper);
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-120%);
  transition: transform 360ms ease;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-neon), #d6ff98);
  color: var(--color-ink);
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  background: #c7ff7f;
  box-shadow: 0 20px 58px rgba(175, 249, 88, 0.26);
}

.btn-secondary {
  border-color: rgba(236, 239, 232, 0.22);
  color: var(--color-paper);
  background: rgba(236, 239, 232, 0.075);
}

.btn-secondary:hover {
  border-color: var(--color-purple);
  background: rgba(124, 0, 255, 0.18);
  box-shadow: var(--shadow-purple);
}

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.hero {
  min-height: calc(100svh - var(--header-height) - 42px);
  padding: 36px 0 30px;
  display: flex;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 52px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-neon);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 3.55rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  font-size: 3.35rem;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  font-weight: 850;
}

.hero-text,
.section-heading p,
.section-lead {
  color: rgba(236, 239, 232, 0.78);
  font-size: 1.05rem;
}

.section-light .section-heading p,
.section-light .section-lead {
  color: rgba(17, 17, 16, 0.68);
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-points li {
  min-height: 38px;
  display: flex;
  align-items: center;
  flex: 1 1 152px;
  padding: 9px 12px;
  border: 1px solid rgba(236, 239, 232, 0.12);
  border-radius: var(--radius);
  background: rgba(236, 239, 232, 0.055);
  color: rgba(236, 239, 232, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-right: 8px;
  border-radius: 3px;
  background: var(--gradient-brand);
  box-shadow: 0 0 18px rgba(175, 249, 88, 0.34);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(236, 239, 232, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(236, 239, 232, 0.12), rgba(236, 239, 232, 0.025)),
    linear-gradient(135deg, rgba(175, 249, 88, 0.12), rgba(124, 0, 255, 0.16)),
    #111110;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.4), var(--shadow-purple);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-visual::before {
  inset: 0;
  border: 1px solid rgba(175, 249, 88, 0.24);
  border-radius: inherit;
}

.hero-visual::after {
  inset: 1px;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(236, 239, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 239, 232, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(160deg, #000 0%, transparent 72%);
}

.performance-console > * {
  position: relative;
  z-index: 1;
}

.console-topbar,
.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(236, 239, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(17, 17, 16, 0.74);
  backdrop-filter: blur(16px);
}

.console-topbar {
  min-height: 48px;
  padding: 0 14px 0 16px;
  color: rgba(236, 239, 232, 0.76);
  font-size: 0.82rem;
  font-weight: 900;
}

.console-topbar strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-neon);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.console-topbar strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 16px rgba(175, 249, 88, 0.78);
}

.console-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr 0.86fr;
  gap: 12px;
  margin-top: 12px;
}

.console-card {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(236, 239, 232, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(236, 239, 232, 0.095), rgba(236, 239, 232, 0.028)),
    rgba(17, 17, 16, 0.78);
  backdrop-filter: blur(18px);
}

.console-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(175, 249, 88, 0.09), transparent 45%, rgba(124, 0, 255, 0.12));
  opacity: 0.78;
}

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

.console-card-main {
  grid-row: span 2;
  min-height: 264px;
  display: grid;
  align-content: space-between;
  border-color: rgba(175, 249, 88, 0.3);
  background:
    linear-gradient(145deg, rgba(175, 249, 88, 0.14), rgba(124, 0, 255, 0.13)),
    rgba(17, 17, 16, 0.88);
}

.console-label,
.metric-card span,
.console-footer span {
  color: rgba(236, 239, 232, 0.56);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-card-main h3 {
  max-width: 340px;
  margin: 10px 0 22px;
  color: var(--color-paper);
  font-size: 1.72rem;
  line-height: 1.05;
}

.chart-line {
  position: relative;
  height: 82px;
  margin-top: 8px;
  border-bottom: 1px solid rgba(236, 239, 232, 0.13);
}

.chart-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-neon), var(--color-purple));
  transform: skewY(-10deg);
  box-shadow: 0 0 26px rgba(175, 249, 88, 0.35);
}

.chart-line span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-paper);
  box-shadow: 0 0 18px rgba(236, 239, 232, 0.52);
}

.chart-line span:nth-child(1) {
  left: 5%;
  top: 58px;
}

.chart-line span:nth-child(2) {
  left: 28%;
  top: 39px;
}

.chart-line span:nth-child(3) {
  left: 51%;
  top: 51px;
}

.chart-line span:nth-child(4) {
  left: 72%;
  top: 27px;
}

.chart-line span:nth-child(5) {
  left: 92%;
  top: 16px;
}

.bar-stack {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 54px;
  margin-top: 16px;
}

.bar-stack span {
  flex: 1;
  height: var(--bar-height);
  min-height: 18px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--color-neon), rgba(124, 0, 255, 0.78));
}

.metric-card {
  display: grid;
  align-content: space-between;
}

.metric-card strong {
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.08;
}

.metric-card small {
  color: rgba(236, 239, 232, 0.58);
  font-weight: 800;
}

.metric-card.accent-green {
  border-color: rgba(175, 249, 88, 0.36);
}

.metric-card.accent-purple {
  border-color: rgba(124, 0, 255, 0.42);
}

.channel-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.channel-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 6px;
  border: 1px solid rgba(236, 239, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(17, 17, 16, 0.72);
  color: rgba(236, 239, 232, 0.74);
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
}

.console-footer {
  min-height: 48px;
  margin-top: 12px;
  padding: 0 16px;
}

.console-footer strong {
  color: var(--color-neon);
  font-size: 0.86rem;
  text-align: right;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 900px;
}

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

.service-card,
.ops-card,
.proof-item,
.contact-form {
  border-radius: var(--radius);
}

.service-card {
  position: relative;
  min-height: 318px;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(236, 239, 232, 0.085), rgba(236, 239, 232, 0.018)),
    var(--color-ink);
  border: 1px solid rgba(17, 17, 16, 0.12);
  color: var(--color-paper);
  box-shadow: inset 0 1px 0 rgba(236, 239, 232, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background:
    linear-gradient(135deg, rgba(175, 249, 88, 0.095), transparent 35%),
    linear-gradient(315deg, rgba(124, 0, 255, 0.13), transparent 42%);
  transition: opacity 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(175, 249, 88, 0.46);
  background:
    linear-gradient(145deg, rgba(175, 249, 88, 0.13), rgba(124, 0, 255, 0.12)),
    var(--color-ink);
  box-shadow: 0 28px 70px rgba(17, 17, 16, 0.22), 0 0 0 1px rgba(175, 249, 88, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  transform: scaleX(1);
  box-shadow: 0 0 28px rgba(175, 249, 88, 0.42);
}

.service-card p,
.ops-card p,
.proof-item p,
.site-footer p {
  margin-bottom: 0;
  color: rgba(236, 239, 232, 0.72);
}

.service-icon {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(175, 249, 88, 0.14), rgba(124, 0, 255, 0.14)),
    rgba(236, 239, 232, 0.05);
  border: 1px solid rgba(175, 249, 88, 0.34);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.service-icon::before,
.service-icon::after {
  content: "";
  display: block;
  border-radius: 4px;
}

.icon-market::before {
  width: 21px;
  height: 21px;
  border: 3px solid var(--color-neon);
  box-shadow: 10px 8px 0 -3px var(--color-purple);
}

.icon-ads::before {
  width: 24px;
  height: 24px;
  border: 3px solid var(--color-purple);
  border-right-color: var(--color-neon);
  transform: rotate(45deg);
}

.icon-dev::before {
  width: 24px;
  height: 16px;
  border: 3px solid var(--color-neon);
  border-top-color: var(--color-purple);
}

.icon-social::before {
  width: 8px;
  height: 8px;
  background: var(--color-neon);
  box-shadow: 12px 0 0 var(--color-purple), 6px 12px 0 rgba(236, 239, 232, 0.86);
}

.icon-seo::before {
  width: 24px;
  height: 24px;
  border: 3px solid var(--color-neon);
  border-radius: 50%;
  box-shadow: 9px 9px 0 -5px var(--color-purple);
}

.icon-data::before {
  width: 5px;
  height: 24px;
  background: var(--color-neon);
  box-shadow: 9px -7px 0 var(--color-purple), 18px -2px 0 rgba(236, 239, 232, 0.88);
}

.marketplace-grid,
.why-grid,
.contact-grid,
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.marketplace h2,
.why h2,
.contact h2 {
  max-width: 680px;
}

.marketplace h3 {
  margin-top: 34px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(236, 239, 232, 0.84);
  font-weight: 650;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--color-neon), var(--color-purple));
}

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

.ops-card {
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(236, 239, 232, 0.1), rgba(236, 239, 232, 0.03)),
    rgba(17, 17, 16, 0.66);
  border: 1px solid rgba(236, 239, 232, 0.14);
  box-shadow: inset 0 1px 0 rgba(236, 239, 232, 0.06);
  transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.ops-card:nth-child(2),
.ops-card:nth-child(3) {
  margin-top: 28px;
}

.ops-card:hover {
  transform: translateY(-5px);
  border-color: rgba(175, 249, 88, 0.38);
  background: linear-gradient(145deg, rgba(175, 249, 88, 0.12), rgba(124, 0, 255, 0.12));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.ops-index,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  color: var(--color-ink);
  background: linear-gradient(135deg, var(--color-neon), #d8ffa0);
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item {
  position: relative;
  min-height: 278px;
  padding: 26px;
  border: 1px solid var(--color-light-line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.26)),
    rgba(236, 239, 232, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 49px;
  right: -17px;
  width: 18px;
  height: 2px;
  background: var(--color-purple);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item p,
.proof-item p {
  color: rgba(17, 17, 16, 0.68);
}

.why {
  background:
    linear-gradient(110deg, rgba(124, 0, 255, 0.18), transparent 38%),
    linear-gradient(250deg, rgba(175, 249, 88, 0.09), transparent 34%),
    linear-gradient(180deg, #111110, #151514);
}

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

.proof-item {
  min-height: 176px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(236, 239, 232, 0.09), rgba(236, 239, 232, 0.035)),
    rgba(17, 17, 16, 0.72);
  border: 1px solid rgba(236, 239, 232, 0.14);
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.proof-item p {
  color: rgba(236, 239, 232, 0.7);
}

.proof-item:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 0, 255, 0.5);
  background:
    linear-gradient(145deg, rgba(124, 0, 255, 0.16), rgba(175, 249, 88, 0.08)),
    rgba(17, 17, 16, 0.76);
}

.contact {
  background:
    linear-gradient(135deg, rgba(175, 249, 88, 0.2), transparent 34%),
    linear-gradient(315deg, rgba(124, 0, 255, 0.13), transparent 36%),
    var(--color-paper);
}

.contact .btn-primary {
  margin-top: 14px;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  font-style: normal;
}

.contact-info a,
.contact-info span {
  color: rgba(17, 17, 16, 0.74);
  font-weight: 700;
}

.contact-info a:hover {
  color: var(--color-purple);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(236, 239, 232, 0.08), rgba(236, 239, 232, 0.02)),
    var(--color-ink);
  color: var(--color-paper);
  border: 1px solid rgba(17, 17, 16, 0.18);
  box-shadow: 0 30px 80px rgba(17, 17, 16, 0.28);
}

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

.form-row label {
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(236, 239, 232, 0.78);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(236, 239, 232, 0.18);
  border-radius: var(--radius);
  background: rgba(236, 239, 232, 0.08);
  color: var(--color-paper);
  padding: 14px 15px;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.form-row textarea {
  resize: vertical;
  min-height: 136px;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--color-neon);
  background: rgba(236, 239, 232, 0.11);
  box-shadow: 0 0 0 4px rgba(175, 249, 88, 0.12);
  outline: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.turnstile-wrap {
  min-height: 65px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.turnstile-wrap iframe {
  max-width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--color-neon);
  font-weight: 800;
}

.site-footer {
  position: static;
  padding: 62px 0 26px;
  background: #0b0b0a;
  border-top: 1px solid var(--color-line);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 44px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-nav,
.social-links {
  display: grid;
  gap: 12px;
}

.footer-nav a,
.social-links a {
  color: rgba(236, 239, 232, 0.72);
  transition: color var(--ease), transform var(--ease);
}

.footer-nav a:hover,
.social-links a:hover {
  color: var(--color-neon);
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
}

.footer-bottom p {
  margin: 0;
  color: rgba(236, 239, 232, 0.54);
  font-size: 0.92rem;
}

.site-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
}

.site-credit .credit-heart {
  color: var(--color-neon);
  text-shadow: 0 0 16px rgba(175, 249, 88, 0.42);
}

.site-credit a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-paper);
  font-weight: 850;
  transition: color var(--ease), text-shadow var(--ease);
}

.site-credit a span {
  color: rgba(236, 239, 232, 0.54);
  font-size: 0.84rem;
  font-weight: 700;
}

.site-credit a:hover,
.site-credit a:focus-visible {
  color: var(--color-neon);
  text-shadow: 0 0 18px rgba(175, 249, 88, 0.24);
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero-grid,
  .marketplace-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .timeline-item::after {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

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

  .section,
  .marketplace,
  .why,
  .contact {
    padding: 82px 0;
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .console-topbar,
  .console-footer,
  .console-card {
    backdrop-filter: none;
  }

  .hero-visual {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34), 0 16px 44px rgba(124, 0, 255, 0.16);
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 20px;
    padding: 22px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: rgba(17, 17, 16, 0.96);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.34);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    gap: 14px;
    font-size: 1.05rem;
  }

  .nav-panel .btn {
    width: 100%;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .language-button {
    flex: 1;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 46px;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-visual {
    min-height: auto;
  }

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

  .console-card-main {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 240px;
  }

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

  .ops-board,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ops-card:nth-child(2),
  .ops-card:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .brand-name {
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding: 28px 0 22px;
  }

  .hero-grid {
    gap: 18px;
  }

  .contact .btn-primary,
  .hero-actions,
  .contact-form .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-text,
  .section-heading p,
  .section-lead {
    font-size: 1rem;
  }

  .hero-points {
    display: none;
  }

  .services-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline-item,
  .contact-form {
    padding: 22px;
  }

  .service-card {
    min-height: auto;
  }

  .hero-visual {
    padding: 12px;
  }

  .console-topbar,
  .console-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
  }

  .console-topbar {
    min-height: 40px;
    flex-direction: row;
    align-items: center;
    padding: 0 12px;
  }

  .console-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .console-card,
  .console-card-main {
    min-height: 76px;
    padding: 12px;
  }

  .console-card-main {
    grid-column: 1 / 3;
    min-height: 126px;
  }

  .console-card:nth-of-type(n + 4),
  .channel-row,
  .console-footer {
    display: none;
  }

  .console-card-main h3 {
    font-size: 1.08rem;
    margin: 7px 0 8px;
  }

  .chart-line {
    height: 38px;
  }

  .bar-stack {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .btn::after {
    display: none;
  }

  .btn:hover,
  .service-card:hover,
  .ops-card:hover,
  .proof-item:hover,
  .footer-nav a:hover,
  .social-links a:hover {
    transform: none;
  }

  .service-card:hover {
    box-shadow: inset 0 1px 0 rgba(236, 239, 232, 0.08);
  }

  .ops-card:hover {
    box-shadow: inset 0 1px 0 rgba(236, 239, 232, 0.06);
  }
}

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

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