:root {
  --bg: #050706;
  --surface: #0b0f0d;
  --surface-soft: #111614;
  --line: rgba(222, 255, 240, 0.12);
  --line-strong: rgba(156, 255, 210, 0.3);
  --text: #f4fbf7;
  --muted: #9aa8a0;
  --mint: #77f3bd;
  --mint-strong: #39dd9a;
  --graphite: #171c19;
  --shadow: rgba(0, 0, 0, 0.38);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 10%, rgba(119, 243, 189, 0.09), transparent 28rem),
    linear-gradient(180deg, #050706 0%, #080b0a 48%, #050706 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(18px);
}

.site-header::before {
  position: fixed;
  inset: 0 0 auto;
  height: 76px;
  pointer-events: none;
  content: "";
  background: rgba(5, 7, 6, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateX(calc((100vw - min(1180px, calc(100vw - 32px))) / -2));
  width: 100vw;
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: clamp(138px, 15vw, 176px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(119, 243, 189, 0.12));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-link {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.language-link:hover {
  border-color: var(--line-strong);
  color: var(--mint);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.primary-button {
  background: var(--mint);
  color: #06110c;
  box-shadow: 0 14px 30px rgba(57, 221, 154, 0.18);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 48px;
  min-height: calc(100vh - 76px);
  padding: 90px 0 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 98px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-lead,
.section-intro p,
.cta-layout p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.audit-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.audit-points span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(119, 243, 189, 0.055);
  color: #d8e6df;
  font-size: 13px;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span,
.pill-list li,
.tool-grid span,
.improvement-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #d8e6df;
}

.hero-proof span {
  padding: 9px 12px;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, rgba(119, 243, 189, 0.1), rgba(255, 255, 255, 0.02) 38%, rgba(9, 12, 11, 0.9));
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: 0 26px 90px var(--shadow);
}

.orbital-grid {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(119, 243, 189, 0.18);
  border-radius: 50%;
  animation: rotateGrid 24s linear infinite;
}

.orbital-grid::before,
.orbital-grid::after {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(119, 243, 189, 0.12);
  border-radius: 50%;
  content: "";
}

.orbital-grid::after {
  inset: 33%;
  background: rgba(119, 243, 189, 0.08);
  box-shadow: 0 0 70px rgba(119, 243, 189, 0.18);
}

.dashboard-panel,
.pipeline-card,
.ai-card,
.map-node {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 10, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.growth-map {
  position: absolute;
  inset: 34px;
}

.growth-map::before,
.growth-map::after {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(119, 243, 189, 0.42), transparent);
}

.growth-map::before {
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
}

.growth-map::after {
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(119, 243, 189, 0.34), transparent);
}

.map-node {
  z-index: 1;
  display: grid;
  gap: 8px;
  width: min(260px, 46%);
  padding: 17px;
}

.map-node span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.map-node strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
}

.node-main {
  top: 50%;
  left: 50%;
  width: min(330px, 70%);
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 70% 30%, rgba(119, 243, 189, 0.16), transparent 46%),
    rgba(8, 12, 10, 0.9);
  transform: translate(-50%, -50%);
}

.node-main strong {
  color: var(--mint);
  font-size: 20px;
}

.map-node:nth-child(2) {
  top: 20px;
  left: 0;
}

.map-node:nth-child(3) {
  top: 38px;
  right: 0;
}

.map-node:nth-child(4) {
  bottom: 38px;
  left: 0;
}

.map-node:nth-child(5) {
  right: 0;
  bottom: 20px;
}

.panel-main {
  inset: 78px 42px auto;
  padding: 22px;
}

.panel-topline,
.pipeline-card,
.ai-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-topline {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.live-dot {
  color: var(--mint);
}

.live-dot::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  box-shadow: 0 0 16px var(--mint);
}

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

.metric-grid div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.metric-grid strong {
  font-size: 28px;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 132px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.chart-bars span {
  flex: 1;
  min-width: 18px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--mint), rgba(119, 243, 189, 0.16));
  animation: pulseBar 2.8s ease-in-out infinite;
}

.pipeline-card {
  left: 34px;
  right: 34px;
  bottom: 56px;
  padding: 16px;
  color: #dce8e2;
  font-size: 13px;
}

.pipeline-card i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), transparent);
}

.ai-card {
  right: 24px;
  bottom: 154px;
  min-width: 210px;
  padding: 16px;
}

.ai-card span {
  color: var(--muted);
}

.ai-card strong {
  color: var(--mint);
}

.audit-band,
.process-band,
.cta-section {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.audit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.64fr);
  gap: 48px;
  padding: 86px 0;
  align-items: start;
}

.lead-form,
.contact-form,
.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 10, 0.78);
}

.lead-form,
.contact-form {
  display: grid;
  gap: 16px;
}

label,
legend {
  color: #dfe9e4;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080b0a;
  color: var(--text);
  outline: 0;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(119, 243, 189, 0.08);
}

fieldset {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

input[type="checkbox"],
input[type="radio"] {
  width: 17px;
  min-height: 17px;
  margin: 0;
  accent-color: var(--mint);
}

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

.radio-grid legend {
  grid-column: 1 / -1;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.legal-note {
  margin: -4px 0 0;
  color: rgba(154, 168, 160, 0.82);
  font-size: 12px;
  line-height: 1.5;
}

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

.content-section,
.contact-section {
  padding: 104px 0;
}

.faq-section {
  padding: 0 0 104px;
}

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

.section-heading h2 {
  margin-bottom: 0;
}

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

.fit-section {
  padding-bottom: 0;
}

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

.fit-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.fit-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.service-card p,
.process-list p,
.info-block p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.card-index {
  display: block;
  margin-bottom: 54px;
  color: var(--mint);
  font-weight: 800;
}

.muted-card {
  background: linear-gradient(180deg, rgba(119, 243, 189, 0.12), rgba(255, 255, 255, 0.02));
}

.process-band {
  padding: 98px 0;
}

.process-band .section-heading {
  display: block;
  margin-bottom: 52px;
}

.process-band .section-heading h2 {
  max-width: 820px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-list article {
  min-height: 270px;
  padding: 28px 28px 0 0;
  border-right: 1px solid var(--line);
}

.process-list article:last-child {
  border-right: 0;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 72px;
  color: var(--mint);
  font-weight: 800;
}

.roadmap-section {
  padding-bottom: 0;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.roadmap-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--surface);
}

.roadmap-card-accent {
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(119, 243, 189, 0.12), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.roadmap-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.roadmap-card p {
  color: var(--muted);
  line-height: 1.65;
}

.roadmap-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap-card li {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: #d8e6df;
  font-size: 13px;
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.8fr);
  gap: 62px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 116px;
}

.stacked-info {
  display: grid;
  gap: 14px;
}

.info-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.pill-list,
.tool-grid,
.improvement-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.pill-list li,
.tool-grid span,
.improvement-grid span {
  padding: 10px 12px;
  font-size: 13px;
}

.tool-grid,
.improvement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tool-grid span,
.improvement-grid span {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-radius: 8px;
  text-align: center;
}

.cta-section {
  padding: 74px 0;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-layout h2 {
  max-width: 760px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  gap: 20px;
  margin-top: 34px;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.contact-card a {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--mint);
  font-weight: 700;
}

.contact-stat {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(119, 243, 189, 0.08);
}

.contact-stat span {
  color: var(--muted);
  font-size: 13px;
}

.contact-stat strong {
  display: block;
  margin: 8px 0;
  color: var(--mint);
  font-size: 32px;
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.dark-button {
  width: 100%;
  min-height: 50px;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-main,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-main {
  max-width: 560px;
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a:hover {
  color: var(--mint);
}

.legal-page {
  padding: 84px 0 104px;
}

.legal-content {
  max-width: 860px;
  overflow-wrap: anywhere;
}

.legal-content h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 72px);
}

.legal-content h2 {
  margin: 44px 0 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

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

@keyframes rotateGrid {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseBar {
  50% {
    opacity: 0.62;
    transform: scaleY(0.92);
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero,
  .audit-layout,
  .difference-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .service-grid,
  .fit-grid,
  .process-list,
  .roadmap-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list article:nth-child(2) {
    border-right: 0;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(1180px, calc(100% - 24px));
  }

  .site-header {
    min-height: 68px;
  }

  .site-header::before {
    height: 68px;
  }

  .header-cta {
    display: none;
  }

  .language-link {
    min-width: 38px;
    min-height: 40px;
  }

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

  .brand-logo {
    width: 45vw;
    max-width: 132px;
  }

  .hero {
    gap: 32px;
    padding-top: 48px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-lead,
  .section-intro p,
  .cta-layout p {
    font-size: 16px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .growth-map {
    inset: 16px;
  }

  .growth-map::before,
  .growth-map::after {
    opacity: 0.35;
  }

  .map-node,
  .node-main {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .growth-map {
    display: grid;
    align-content: center;
    gap: 10px;
  }

  .map-node {
    padding: 12px;
  }

  .map-node strong {
    font-size: 14px;
  }

  .panel-main {
    inset: 42px 16px auto;
    padding: 16px;
  }

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

  .metric-grid div {
    padding: 12px;
  }

  .metric-grid strong {
    font-size: 24px;
  }

  .chart-bars {
    height: 86px;
  }

  .pipeline-card {
    left: 16px;
    right: 16px;
    bottom: 28px;
    flex-wrap: wrap;
  }

  .pipeline-card i {
    min-width: 32px;
  }

  .ai-card {
    right: 16px;
    bottom: 114px;
    left: 16px;
    min-width: 0;
  }

  .audit-layout,
  .content-section,
  .process-band,
  .contact-section {
    padding: 68px 0;
  }

  .service-grid,
  .fit-grid,
  .process-list,
  .roadmap-grid,
  .faq-grid,
  .tool-grid,
  .improvement-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-card ul {
    grid-template-columns: 1fr;
  }

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

  .card-index,
  .process-list span {
    margin-bottom: 28px;
  }

  .process-list article,
  .process-list article:nth-child(2) {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list article:last-child {
    border-bottom: 0;
  }

  .cta-layout,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
