:root {
  --bg-0: #050816;
  --bg-1: #070b1c;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --muted-2: rgba(255, 255, 255, 0.56);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.52);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.32);
  --primary: #6d5efc;
  --primary-2: #2bd7ff;
  --accent: #a855f7;
  --good: rgba(43, 215, 255, 0.22);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at 18% 12%, rgba(109, 94, 252, 0.24), transparent 46%),
    radial-gradient(circle at 85% 22%, rgba(43, 215, 255, 0.2), transparent 44%),
    radial-gradient(circle at 70% 85%, rgba(168, 85, 247, 0.14), transparent 46%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  color: var(--text);
  text-rendering: optimizeLegibility;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(5, 8, 22, 0.92);
  color: var(--text);
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 100;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 8, 22, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-layout {
  height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 18px;
}

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

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.brand-wordmark {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}

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

.brand-name {
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  color: var(--muted-2);
  font-size: 12.5px;
  letter-spacing: 0.01em;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13.5px;
  min-width: 0;
  overflow: hidden;
}

.header-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.lang-link,
.contact-link,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.lang-link:hover,
.contact-link:hover,
  transform: translateY(-1px);
  border-color: rgba(43, 215, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.header-cta {
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: rgba(5, 8, 22, 0.96);
  box-shadow: 0 18px 60px rgba(109, 94, 252, 0.24);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 70px rgba(43, 215, 255, 0.18);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 72px);
}

.eyebrow {
  margin-bottom: 14px;
  color: rgba(43, 215, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.hero-title {
  margin: 0 0 10px;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-lead {
  max-width: 42rem;
  font-size: 19px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 0;
}

.trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  padding-bottom: 6px;
}

.trust-item {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
  font-size: 13px;
  letter-spacing: -0.01em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.section-lead {
  max-width: 58rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 0;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: rgba(5, 8, 22, 0.96);
  box-shadow: 0 18px 60px rgba(109, 94, 252, 0.24);
}

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

.button:focus-visible,
.inline-link:focus-visible,
.link-card:focus-visible,
.header-nav a:focus-visible,
.lang-link:focus-visible,
.contact-link:focus-visible,
.header-cta:focus-visible,
  outline: 2px solid rgba(43, 215, 255, 0.6);
  outline-offset: 2px;
}

.workflow-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 18% 12%, rgba(109, 94, 252, 0.26), transparent 52%),
    radial-gradient(circle at 82% 22%, rgba(43, 215, 255, 0.18), transparent 54%),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  min-height: 480px;
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.workflow-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(43, 215, 255, 0.32), rgba(109, 94, 252, 0.32));
  opacity: 0.35;
  filter: blur(14px);
  z-index: 0;
}

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

.workflow-top {
  display: grid;
  gap: 4px;
  padding-bottom: 6px;
}

.workflow-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.workflow-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workflow-block {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 8, 22, 0.44);
  padding: 14px 14px;
}

.workflow-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 850;
}

.workflow-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.workflow-track {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
}

.track-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.track-arrow {
  color: rgba(43, 215, 255, 0.9);
  font-weight: 900;
  opacity: 0.8;
}

.workflow-output {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
  letter-spacing: -0.01em;
}

.workflow-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(43, 215, 255, 0.78);
  box-shadow: 0 0 28px rgba(43, 215, 255, 0.3);
}

.status-text {
  font-size: 13px;
}

.section {
  padding: 82px 0;
}

.section-surface {
  background: radial-gradient(circle at 22% 18%, rgba(109, 94, 252, 0.12), transparent 52%),
    radial-gradient(circle at 85% 64%, rgba(43, 215, 255, 0.1), transparent 52%),
    rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

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

.info-card,
.mini-card {
  padding: 20px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.mini-card {
  padding: 18px 18px;
}

.info-card h3,
.mini-card h3 {
  margin: 0 0 10px;
}

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

.workflow-node {
  padding: 16px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.workflow-node.accent {
  border-color: rgba(43, 215, 255, 0.22);
  background: radial-gradient(circle at 20% 20%, rgba(43, 215, 255, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

.node-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.92);
}

.node-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 13px;
}

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

.project-card {
  display: grid;
  gap: 6px;
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.project-card:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 94, 252, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.anchor-sink {
  height: 1px;
  overflow: hidden;
}

.footer-brandline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}

.footer-name {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.64);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

.card {
  min-height: 210px;
  padding: 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 215, 255, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(109, 94, 252, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

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

.tag {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.tag-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tag-link:hover {
  border-color: rgba(43, 215, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

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

.feature {
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.feature-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.92);
}

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

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(43, 215, 255, 0.12);
  border: 1px solid rgba(43, 215, 255, 0.22);
  font-weight: 900;
  font-size: 12px;
}

.step-text {
  font-weight: 850;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

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

.service {
  padding: 20px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.service.featured {
  border-color: rgba(109, 94, 252, 0.28);
  background: radial-gradient(circle at 20% 20%, rgba(109, 94, 252, 0.18), transparent 56%),
    rgba(255, 255, 255, 0.03);
}

.service-tier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(43, 215, 255, 0.12);
  border: 1px solid rgba(43, 215, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}

.timeline-text {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
  letter-spacing: -0.01em;
  text-align: right;
}

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

.link-card {
  display: grid;
  gap: 6px;
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 94, 252, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.link-title {
  font-weight: 850;
  letter-spacing: -0.02em;
}

.link-desc {
  color: var(--muted);
  line-height: 1.6;
}

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

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  border-radius: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 20% 20%, rgba(109, 94, 252, 0.2), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(43, 215, 255, 0.16), transparent 50%),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.cta-lead {
  margin: 14px 0 0;
  color: var(--muted);
}

.inline-link {
  color: rgba(43, 215, 255, 0.86);
  border-bottom: 1px solid rgba(43, 215, 255, 0.28);
}

.inline-link:hover {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-2);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.not-found {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  padding: 60px 0;
}

.not-found-card {
  width: min(720px, calc(100% - 40px));
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  text-align: center;
}

.not-found-title {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 54px);
  letter-spacing: -0.05em;
}

.not-found-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.not-found-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

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

  .contact-link {
    display: none;
  }

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

  .cards-grid,
  .tag-grid,
  .link-grid,
  .feature-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .workflow-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .timeline-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-text {
    text-align: left;
  }

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

  .cta-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 34px;
  }

  .cards-grid,
  .tag-grid,
  .link-grid,
  .feature-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .workflow-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-layout {
    column-gap: 10px;
  }

  .lang-link,
  .header-cta {
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
