:root {
  --bg: #071014;
  --bg-2: #0c171b;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --ink: #f7fbfc;
  --muted: #a8b5b9;
  --soft: #d9e7e9;
  --line: rgba(255, 255, 255, 0.13);
  --cyan: #45d7c7;
  --cyan-strong: #18b9ab;
  --steel: #78a7c7;
  --lime: #c9f46a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(69, 215, 199, 0.08), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(120, 167, 199, 0.23), transparent 24rem),
    radial-gradient(circle at 12% 42%, rgba(201, 244, 106, 0.08), transparent 22rem),
    var(--bg);
  background-size: 92px 92px, auto, auto, auto, auto;
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(7, 16, 20, 0.92) 62%, #071014);
}

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

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

p {
  color: var(--muted);
  line-height: 1.7;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 16, 20, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(69, 215, 199, 0.55);
  border-radius: 50%;
  background: #020708;
  overflow: hidden;
}

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

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #bfd0d4;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a,
.header-action,
.button {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.header-action {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(69, 215, 199, 0.72);
  border-radius: 7px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.header-action:hover {
  background: rgba(69, 215, 199, 0.13);
  box-shadow: 0 0 0 4px rgba(69, 215, 199, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 86px);
  padding: 76px 0 72px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(2.6rem, 6.4vw, 5.75rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 4.05rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.03rem;
  line-height: 1.32;
}

.hero-subtitle {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 7px;
  font-weight: 900;
}

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

.button.primary {
  color: #041012;
  background: var(--cyan);
  box-shadow: 0 18px 45px rgba(69, 215, 199, 0.22);
}

.button.primary:hover {
  background: #61eadb;
  box-shadow: 0 20px 55px rgba(69, 215, 199, 0.3);
}

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

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.075);
}

.button.large {
  min-height: 56px;
  padding: 0 26px;
  font-size: 1rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-row span,
.panel-footer span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #dff5f3;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(8, 20, 24, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -28% 20%;
  height: 210px;
  background: radial-gradient(circle, rgba(69, 215, 199, 0.28), transparent 62%);
  pointer-events: none;
}

.panel-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-header span,
.workflow-preview span,
.solution-list span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-header strong {
  color: var(--lime);
  font-size: 0.92rem;
}

.workflow-preview {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.workflow-preview article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.workflow-preview strong {
  color: #ffffff;
  font-size: 1.08rem;
}

.workflow-preview p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.panel-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.stats-band article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.stats-band strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.section-block {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 780px;
}

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

.info-card,
.benefit-grid article {
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.info-card:hover,
.benefit-grid article:hover {
  border-color: rgba(69, 215, 199, 0.34);
  background: var(--surface-strong);
  transform: translateY(-2px);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border: 1px solid rgba(69, 215, 199, 0.3);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(69, 215, 199, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
}

.info-card p,
.benefit-grid p,
.service-card p,
.solution-list p,
.steps p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 384px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.052);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  border-color: rgba(69, 215, 199, 0.38);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-2px);
}

.service-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(201, 244, 106, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.07);
}

.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #071014;
}

.service-card div {
  padding: 22px;
}

.service-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.solution-list article {
  min-height: 184px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(69, 215, 199, 0.09), transparent 46%),
    var(--surface);
}

.solution-list .wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.solution-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cyan);
}

.automation-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 20px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(201, 244, 106, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 244, 106, 0.12), transparent 46%),
    linear-gradient(135deg, rgba(13, 29, 34, 0.92), rgba(5, 12, 15, 0.98));
  box-shadow: var(--shadow);
}

.automation-copy h2 {
  max-width: 800px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.automation-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--soft);
  font-size: 1.04rem;
}

.automation-points {
  display: grid;
  gap: 12px;
}

.automation-points article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.automation-points strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #071014;
  background: var(--lime);
  font-size: 0.78rem;
}

.automation-points span {
  color: var(--soft);
  font-weight: 750;
  line-height: 1.45;
}

.process-section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(69, 215, 199, 0.12), rgba(120, 167, 199, 0.08)),
    rgba(5, 13, 16, 0.82);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 56px;
  align-items: start;
}

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

.process-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--soft);
}

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

.steps article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.steps span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--lime);
  font-weight: 900;
}

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

.example-grid article {
  display: flex;
  align-items: flex-end;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.075)),
    linear-gradient(135deg, rgba(120, 167, 199, 0.2), transparent 58%);
  font-weight: 800;
  line-height: 1.35;
}

.contact-section {
  padding: 84px 0 98px;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: clamp(28px, 6vw, 62px);
  border: 1px solid rgba(69, 215, 199, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(69, 215, 199, 0.2), transparent 45%),
    linear-gradient(135deg, rgba(13, 29, 34, 0.94), rgba(5, 12, 15, 0.98));
  box-shadow: var(--shadow);
}

.contact-box h2,
.contact-box p {
  max-width: 780px;
}

.contact-box p:not(.eyebrow) {
  color: var(--soft);
  font-size: 1.05rem;
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
  color: #8ea0a5;
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

  .reveal,
  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .process-layout,
  .automation-feature,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    gap: 42px;
  }

  .process-copy {
    position: static;
  }

  .card-grid,
  .benefit-grid,
  .example-grid,
  .service-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  body {
    background-size: 64px 64px, auto, auto, auto, auto;
  }

  .site-header {
    top: 10px;
    width: min(100% - 20px, 1160px);
    margin-top: 10px;
  }

  .brand-copy span {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
  }

  .section-shell,
  .site-footer {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    padding: 46px 0 48px;
  }

  h1 {
    font-size: clamp(2.34rem, 12.8vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.82rem, 9vw, 2.55rem);
  }

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

  .hero-panel {
    padding: 16px;
  }

  .panel-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .stats-band,
  .solution-list,
  .steps,
  .card-grid,
  .benefit-grid,
  .example-grid,
  .service-showcase {
    grid-template-columns: 1fr;
  }

  .stats-band article {
    padding: 20px;
  }

  .solution-list .wide {
    grid-column: auto;
  }

  .service-card,
  .service-card.featured {
    grid-column: auto;
    min-height: auto;
  }

  .service-card div {
    padding: 18px;
  }

  .section-block,
  .process-section,
  .contact-section {
    padding: 58px 0;
  }

  .info-card,
  .benefit-grid article,
  .solution-list article,
  .steps article,
  .example-grid article {
    min-height: auto;
  }

  .example-grid article {
    min-height: 118px;
  }
}
