

@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;600;700;800&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap&subset=latin,cyrillic');

:root {
  --base:          #F8F7F4;
  --surface:       #F0EDE8;
  --edge:          #E2DDD5;
  --graphite:      #1E2432;
  --graphite-light:#2A3040;
  --steel:         #50596B;
  --muted:         #6E6A62;
  --signal:        #C8850F;
  --signal-dark:   #A66D0A;
  --signal-50:     #FFFAF0;
  --signal-light:  #FFF3E0;
  --success:       #2D8659;

  --max-w: 1200px;
  --nav-h: 70px;
  --radius-card: 16px;
  --radius-btn:  12px;
  --shadow-card: 0 4px 24px rgba(30,36,50,0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  background-color: var(--base);
  color: var(--steel);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Onest', system-ui, sans-serif;
  color: var(--graphite);
  line-height: 1.15;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  background: none;
  border: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: rgba(200, 133, 15, 0.15);
  color: #1E2432;
}

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

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--signal);
  display: block;
}

.section-heading {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--graphite);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--signal);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--signal-dark);
  box-shadow: 0 8px 24px rgba(200, 133, 15, 0.2);
  transform: translateY(-2px);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

.btn-primary.btn-sm {
  padding: 10px 20px;
  font-size: 0.9375rem;
}

.btn-primary[disabled],
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--graphite);
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--edge);
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--signal);
  color: var(--signal);
  transform: translateY(-2px);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

.dot-grid {
  background-image: radial-gradient(circle, #d4d0c8 1px, transparent 1px);
  background-size: 24px 24px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

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

@keyframes ping {
  0%    { transform: scale(1); opacity: 1; }
  75%,100% { transform: scale(1.8); opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-blink {
  animation: blink 1s step-end infinite;
}

.live-ping {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.live-ping::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #34d399;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-ping::after {
  content: '';
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34d399;
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 280ms; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 350ms; }
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 420ms; }
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 490ms; }

.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  flex-shrink: 0;
}

a:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 4px;
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background-color: var(--base);
  transition: box-shadow 0.3s, background-color 0.3s, backdrop-filter 0.3s;
}

#site-header.scrolled {
  background-color: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 0 var(--edge);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: var(--graphite);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-accent {
  color: var(--signal);
}

.logo-dot {
  color: var(--muted);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9375rem;
  color: var(--steel);
  transition: color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
}

.nav-link:hover {
  color: var(--graphite);
}

.nav-lang {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.2s;
  text-decoration: none;
  padding: 8px 4px;
}

.nav-lang:hover {
  color: var(--graphite);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9375rem;
  color: var(--steel);
  transition: color 0.2s;
  padding: 8px 4px;
  cursor: pointer;
}

.dropdown-toggle:hover {
  color: var(--graphite);
}

.dropdown-toggle svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-toggle svg,
.nav-dropdown.open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--base);
  border: 1px solid var(--edge);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(30, 36, 50, 0.12);
  padding: 8px;
  width: 320px;
  opacity: 0;
  transform: translateX(-50%) translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 300;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background-color 0.15s;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: var(--signal-50);
}

.dropdown-item-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--graphite);
  transition: color 0.15s;
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--signal);
}

.dropdown-item-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 2px;
}

.nav-link:focus-visible,
.dropdown-toggle:focus-visible,
.dropdown-item:focus-visible,
.mobile-services-toggle:focus-visible,
.tech-badge:focus-visible,
.cat-card:focus-visible,
.faq-q:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 6px;
}

.dropdown-divider {
  border-top: 1px solid var(--edge);
  margin: 4px 0;
}

.dropdown-viewall {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--signal);
  transition: background-color 0.15s;
  text-decoration: none;
}

.dropdown-viewall:hover {
  background-color: var(--signal-50);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  color: var(--graphite);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: var(--base);
  border-top: 1px solid var(--edge);
  padding: 24px;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  color: var(--steel);
  font-size: 0.9375rem;
  transition: color 0.2s;
  text-decoration: none;
}

.mobile-nav-link:hover {
  color: var(--graphite);
}

.mobile-services-toggle {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  color: var(--steel);
  font-size: 0.9375rem;
}

.mobile-services-toggle svg {
  transition: transform 0.25s;
}

.mobile-services-toggle.open svg {
  transform: rotate(180deg);
}

.mobile-services-list {
  padding-left: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-services-list.open {
  max-height: 600px;
}

.mobile-services-list a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 0;
  font-size: 0.875rem;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-services-list a:hover {
  color: var(--signal);
}

.mobile-lang {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 10px 0;
  display: block;
  text-decoration: none;
}

.mobile-menu-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

.hero-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 112px;
  overflow: hidden;
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}

.hero-bg-glow-1 {
  position: absolute;
  top: 48px;
  right: 15%;
  width: 600px;
  height: 600px;
  background: rgba(200, 133, 15, 0.04);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-bg-glow-2 {
  position: absolute;
  bottom: -128px;
  left: 5%;
  width: 500px;
  height: 500px;
  background: rgba(30, 36, 50, 0.03);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-text {
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-h1 {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--graphite);
  white-space: pre-line;
}

.hero-sub {
  margin-top: 24px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--steel);
  max-width: 520px;
}

.hero-cta {
  margin-top: 32px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 16px;
}

.hero-cta-row .btn-primary,
.hero-cta-row .btn-secondary {
  flex-shrink: 0;
}

@media (max-width: 479.98px) {
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn-primary { width: 100%; justify-content: center; }
}

.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--steel);
  transition: color 0.2s, gap 0.2s;
}
.hero-cta-link svg { width: 18px; height: 18px; }
.hero-cta-link:hover { color: var(--signal); gap: 10px; }

.hero-cta .btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.hero-cta .btn-primary:hover svg {
  transform: translateX(3px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--edge);
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-proof-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--signal);
  letter-spacing: -0.02em;
}

.hero-proof-label {
  font-size: 0.875rem;
  color: var(--steel);
}

.terminal-wrap {
  position: relative;
  min-width: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.terminal {
  background: var(--graphite);
  border-radius: 20px;
  padding: 4px;
  box-shadow: 0 32px 80px rgba(30, 36, 50, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.7s;
  overflow: hidden;
  max-width: 100%;
}

.terminal:hover {
  box-shadow: 0 32px 80px rgba(30, 36, 50, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red    { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #28c840; }

.terminal-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  margin-left: 8px;
}

.terminal-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: rgba(52, 211, 153, 0.8);
}

.terminal-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  position: relative;
}

.terminal-live-dot::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #34d399;
  opacity: 0.5;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.terminal-body {
  padding: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  min-height: 340px;
  min-width: 0;
  overflow: hidden;
}

.terminal-cmd {
  color: rgba(255, 255, 255, 0.6);
}

.cursor {
  display: inline-block;
  width: 7px;
  height: 16px;
  background: rgba(200, 133, 15, 0.8);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

.cursor.hidden {
  display: none;
}

.terminal-divider {
  color: rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  user-select: none;
  margin-top: 12px;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}

.terminal-divider.visible {
  opacity: 1;
}

.terminal-rows {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.term-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.term-row.visible {
  opacity: 1;
  transform: translateX(0);
}

.term-row span:first-child {
  color: rgba(255, 255, 255, 0.8);
}

.term-val {
  color: #34d399;
  font-weight: 500;
}

.terminal-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.terminal-status.visible {
  opacity: 1;
  transform: translateY(0);
}

.terminal-status span:first-child {
  color: white;
  font-weight: 600;
}

.status-ok {
  color: var(--signal);
  font-size: 1.125rem;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(200, 133, 15, 0.4);
}

.terminal-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(200, 133, 15, 0.06);
  border-radius: 24px;
  filter: blur(80px);
  transform: scale(1.15);
  pointer-events: none;
}

.services-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--surface);
}

.services-header {
  max-width: 640px;
}

.services-grid {
  display: grid;
  gap: 20px;
  margin-top: 64px;
}

.service-card {
  background: var(--base);
  border: 1px solid var(--edge);
  border-radius: var(--radius-card);
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(200, 133, 15, 0.3);
  box-shadow: 0 16px 48px rgba(200, 133, 15, 0.05);
  transform: translateY(-4px);
}

.service-card-title {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--graphite);
  transition: color 0.2s;
}

.service-card:hover .service-card-title {
  color: var(--signal);
}

.service-card-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 6px;
}

.service-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--steel);
  margin-top: 16px;
}

.healthcare-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--signal-50);
  border: 1px solid rgba(200, 133, 15, 0.2);
  border-radius: 12px;
  width: fit-content;
  margin-top: 40px;
}

.healthcare-badge svg {
  width: 20px;
  height: 20px;
  color: var(--signal);
  flex-shrink: 0;
}

.healthcare-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--graphite);
}

.project-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--graphite);
  color: white;
  overflow: hidden;
}

.project-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.project-inner > * {
  min-width: 0;
}

.project-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--signal);
  display: block;
}

.project-h2 {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  color: white;
  margin-top: 12px;
}

.project-desc {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.project-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.project-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
}

.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: var(--signal);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
  text-decoration: none;
}

.project-cta:hover {
  color: white;
}

.project-cta svg {
  width: 16px;
  height: 16px;
}

.tab-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.tab-btn {
  padding: 10px 16px;
  border-radius: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.tab-btn:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.screenshot-frame {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
}

.screenshot-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}

.screenshot-titlebar-dots {
  display: flex;
  gap: 4px;
}

.screenshot-titlebar-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.screenshot-titlebar-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.screenshot-panel {
  display: none;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.screenshot-panel.active {
  display: block;
}

.screenshot-panel img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-overlay {
  position: absolute;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.02);
}

.overlay-inventory {
  top: 28%;
  left: 15%;
  right: 0;
  bottom: 0;
}

.overlay-dashboard {
  bottom: 0;
  left: 3%;
  width: 45%;
  height: 18%;
}

.overlay-ai {
  top: 15%;
  right: 0;
  width: 30%;
  bottom: 5%;
}

.testimonials-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--surface);
  overflow: hidden;
}

.testimonials-header {
  max-width: 640px;
}

.testimonials-inner {
  margin-top: 64px;
  display: grid;
  gap: 48px;
  align-items: start;
}

.quote-mark {
  width: 48px;
  height: 48px;
  color: rgba(200, 133, 15, 0.1);
  position: absolute;
  top: -16px;
  left: -8px;
}

.testimonial-quote-wrap {
  position: relative;
}

.testimonial-quote {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--graphite);
  padding-left: 8px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 133, 15, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--signal);
}

.testimonial-name {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--graphite);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 2px;
}

.testimonial-metric {
  margin-left: auto;
  border-left: 1px solid var(--edge);
  padding-left: 16px;
  text-align: right;
}

.testimonial-metric-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--signal);
}

.testimonial-metric-label {
  font-size: 0.6875rem;
  color: var(--muted);
  margin-top: 2px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}

.testimonial-dot {
  height: 6px;
  border-radius: 3px;
  background: var(--edge);
  transition: width 0.3s, background-color 0.3s;
  cursor: pointer;
  width: 16px;
  border: none;
}

.testimonial-dot.active {
  width: 40px;
  background: var(--signal);
}

.results-box {
  background: var(--base);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 32px;
}

.results-h3 {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--graphite);
}

.results-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.results-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.results-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--signal);
  line-height: 1;
  margin-top: 2px;
  min-width: 60px;
}

.results-label {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--steel);
}

.why-us-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.why-us-inner {
  display: grid;
  gap: 48px;
}

.why-us-header { }

.why-us-points {
  display: grid;
  gap: 32px;
}

.why-point {
  border-left: 2px solid var(--signal);
  padding: 8px 0 8px 24px;
  border-radius: 0 8px 8px 0;
  transition: background-color 0.3s;
}

.why-point:hover {
  background-color: rgba(255, 250, 240, 0.5);
}

.why-point-stat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--graphite);
  letter-spacing: -0.02em;
}

.why-point-label {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--steel);
  margin-top: 8px;
}

.how-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--surface);
}

.how-center {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.how-steps {
  display: grid;
  gap: 40px;
  margin-top: 64px;
}

.how-step {
  position: relative;
}

.how-step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200, 133, 15, 0.15);
  line-height: 1;
  transition: color 0.5s;
}

.how-step:hover .how-step-num {
  color: rgba(200, 133, 15, 0.3);
}

.how-step-title {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--graphite);
  margin-top: 12px;
}

.how-step-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--steel);
  margin-top: 12px;
}

.how-step-arrow {
  display: none;
  position: absolute;
  top: 32px;
  right: -24px;
  color: rgba(226, 221, 213, 0.6);
  font-size: 1.5rem;
}

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

.contact-inner {
  display: grid;
  gap: 48px;
}

.contact-info { }

.contact-team {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-team-name {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 600;
  color: var(--graphite);
  font-size: 1rem;
}

.contact-team-role {
  font-size: 0.875rem;
  color: var(--steel);
  margin-top: 2px;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: var(--steel);
  transition: color 0.2s;
  font-size: 0.9375rem;
  text-decoration: none;
}

.contact-email-link:hover {
  color: var(--signal);
}

.contact-email-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 40px;
}

.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--graphite);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--base);
  border: 1.5px solid var(--edge);
  border-radius: 12px;
  color: var(--graphite);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
  color: rgba(80, 89, 107, 0.7);
}

.form-input:focus, .form-input:focus-visible {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(200, 133, 15, 0.18);
}

.form-input.is-error {
  border-color: #d33b2c;
  background: #fdf5f4;
}

.form-input.is-error:focus {
  box-shadow: 0 0 0 3px rgba(211, 59, 44, 0.16);
}

.form-input.is-valid {
  border-color: var(--success);
}

.form-field-error {
  font-size: 0.8125rem;
  color: #c2271a;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-field-error::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #d33b2c;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}

textarea.form-input {
  resize: none;
}

select.form-input {
  cursor: pointer;
}

.form-honeypot {
  display: none !important;
}

.form-msg-success {
  font-size: 0.875rem;
  color: #1f6b46;
  background: #eaf6ef;
  border: 1px solid #bfe3cf;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  margin-top: 16px;
}

.form-msg-error {
  font-size: 0.875rem;
  color: #b21f12;
  background: #fdeceb;
  border: 1px solid #f3c6c1;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  margin-top: 16px;
}

.site-footer {
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 64px;
  padding-bottom: 64px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
  text-decoration: none;
}

.footer-brand .logo-accent {
  color: var(--signal);
}

.footer-brand .logo-dot {
  color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
  margin-top: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-lang {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem !important;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > *,
  .term-row,
  .terminal-status,
  .terminal-divider {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .cursor,
  .animate-blink,
  .live-ping::before,
  .terminal-live-dot::before {
    animation: none !important;
  }

  .terminal-divider { opacity: 1 !important; }
  .terminal-status  { opacity: 1 !important; }
}

@media (min-width: 768px) {

  .nav-links {
    display: flex;
  }

  .hamburger,
  .mobile-menu {
    display: none !important;
  }

  .hero-section {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .hero-sub {
    font-size: 1.25rem;
  }

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

  .project-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 64px;
  }

  .testimonials-inner {
    grid-template-columns: 1fr auto;
  }

  .results-box {
    width: 320px;
  }

  .why-us-inner {
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
  }

  .why-us-points {
    grid-template-columns: 1fr 1fr;
  }

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

  .how-step-arrow {
    display: block;
  }

  .contact-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-friction {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.email-proof-callout {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 24px;
  background: #fff;
  border: 1px solid rgba(200,133,15,0.28);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 720px;
}
.email-proof-medal {
  flex-shrink: 0;
  width: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 16px;
  background: linear-gradient(160deg, #1E2432, #2A3040);
  color: #fff;
  text-align: center;
}
.email-proof-score {
  font-family: var(--font-mono, monospace);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--signal);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.02em;
}
.email-proof-medal-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.email-proof-body {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.email-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--success);
  background: #eaf6ef;
  border: 1px solid #bfe3cf;
  padding: 3px 10px;
  border-radius: 999px;
}
.email-proof-badge svg { width: 13px; height: 13px; }
.email-proof-title {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 600;
  color: var(--graphite);
  font-size: 1.0625rem;
}
.email-proof-sub {
  font-size: 0.875rem;
  color: var(--steel);
  line-height: 1.6;
}
.email-proof-verify {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--signal-dark);
}
.email-proof-verify:hover { color: var(--signal); }
.email-proof-verify svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.email-proof-verify:hover svg { transform: translateX(3px); }
@media (max-width: 560px) {
  .email-proof-callout { flex-direction: column; }
  .email-proof-medal { width: 100%; flex-direction: row; gap: 12px; padding: 16px; justify-content: flex-start; }
}
.email-proof-sub a {
  color: var(--signal);
  text-decoration: underline;
  text-decoration-color: rgba(200,133,15,0.4);
}

.case-summary {
  font-size: 1.0625rem;
  color: var(--graphite);
  line-height: 1.75;
  padding-left: 14px;
  border-left: 3px solid var(--signal);
}

.contact-reply-time {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--muted);
}

.faq-section {
  padding: 72px 0 96px;
  background: var(--base);
}
.faq-header {
  max-width: 600px;
  margin-bottom: 36px;
}
.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--edge);
}
.faq-item:first-child {
  border-top: 1px solid var(--edge);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-display, sans-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--graphite);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--signal);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
details[open] .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 0 20px 0;
  font-size: 0.9375rem;
  color: var(--steel);
  line-height: 1.7;
  max-width: 680px;
}

.section { padding-top: 96px; padding-bottom: 96px; }
.section--tight { padding-top: 72px; padding-bottom: 72px; }
.section--surface { background: var(--surface); }
.section--dark { background: var(--graphite); color: rgba(255,255,255,0.82); }
.section-head { max-width: 680px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-intro {
  margin-top: 16px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--steel);
}
.section--dark .section-heading,
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .section-intro { color: rgba(255,255,255,0.72); }

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

.breadcrumb {
  padding: 20px 0 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--signal); }
.breadcrumb li[aria-current] { color: var(--graphite); }
.breadcrumb .sep { color: var(--edge); }

.page-hero {
  position: relative;
  padding-top: 56px;
  padding-bottom: 64px;
  overflow: hidden;
}
.page-hero .hero-bg-dots { opacity: 0.3; }
.page-hero-inner { position: relative; max-width: 760px; }
.page-hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--signal);
}
.page-hero-h1 {
  margin-top: 14px;
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--graphite);
}
.page-hero-sub {
  margin-top: 20px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--steel);
  max-width: 640px;
}
.page-hero-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.trust-strip {
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  background: var(--base);
  padding: 28px 0;
}
.trust-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.trust-strip-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: center;
}
.trust-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--steel);
  opacity: 0.85;
}
.trust-logo svg { width: 18px; height: 18px; color: var(--signal); }
.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}
.card-grid--2 { grid-template-columns: 1fr; }
.card-grid--3 { grid-template-columns: 1fr; }
.feature-card {
  background: var(--base);
  border: 1px solid var(--edge);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.section--surface .feature-card { background: var(--base); }
.feature-card:hover {
  border-color: rgba(200,133,15,0.3);
  box-shadow: 0 16px 48px rgba(200,133,15,0.05);
  transform: translateY(-4px);
}
.feature-card-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--signal-light);
  color: var(--signal-dark);
  margin-bottom: 18px;
}
.feature-card-icon svg { width: 22px; height: 22px; }
.feature-card-title {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--graphite);
}
.feature-card-desc {
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--steel);
}

.problem-card {
  background: var(--base);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--signal);
  border-radius: 12px;
  padding: 22px 24px;
}
.problem-card-q {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--graphite);
}
.problem-card-a {
  margin-top: 8px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--steel);
}

.cat-grid {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--base);
  border: 1px solid var(--edge);
  border-radius: var(--radius-card);
  padding: 32px;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.cat-card:hover {
  border-color: rgba(200,133,15,0.3);
  box-shadow: 0 16px 48px rgba(200,133,15,0.06);
  transform: translateY(-4px);
}
.cat-card-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--graphite);
  color: var(--signal);
  margin-bottom: 20px;
}
.cat-card-icon svg { width: 24px; height: 24px; }
.cat-card-title {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--graphite);
  transition: color 0.2s;
  overflow-wrap: break-word;
  word-break: break-word;
}
.cat-card:hover .cat-card-title { color: var(--signal); }
.cat-card-desc {
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--steel);
}
.cat-card-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-card-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: var(--steel);
  background: var(--surface);
  border: 1px solid var(--edge);
  padding: 4px 10px;
  border-radius: 100px;
}
.cat-card-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--signal);
}
.cat-card-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.cat-card:hover .cat-card-link svg { transform: translateX(3px); }

.subservice-groups {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}
.subservice-group {
  background: var(--base);
  border: 1px solid var(--edge);
  border-radius: var(--radius-card);
  padding: 28px;
}
.subservice-group h3 {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--graphite);
  margin-bottom: 16px;
}
.subservice-list { display: flex; flex-direction: column; gap: 12px; }
.subservice-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--steel);
}
.subservice-list svg {
  width: 18px; height: 18px;
  color: var(--signal);
  flex-shrink: 0;
  margin-top: 1px;
}

.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--graphite);
  background: var(--base);
  border: 1px solid var(--edge);
  padding: 8px 14px;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.tech-badge:hover {
  border-color: rgba(200,133,15,0.4);
  color: var(--signal-dark);
  transform: translateY(-2px);
}
.tech-badge .dot-mini {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal);
}

.process-list {
  margin-top: 56px;
  display: grid;
  gap: 0;
  counter-reset: step;
}
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 0 0 36px 0;
}
.process-step:last-child { padding-bottom: 0; }
.process-step::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--edge);
}
.process-step:last-child::before { display: none; }
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--base);
  border: 2px solid var(--signal);
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--signal);
  z-index: 1;
}
.section--dark .process-step-num { background: var(--graphite); }
.section--dark .process-step::before { background: rgba(255,255,255,0.12); }
.process-step-title {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--graphite);
  padding-top: 14px;
}
.section--dark .process-step-title { color: #fff; }
.process-step-desc {
  margin-top: 8px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--steel);
}
.section--dark .process-step-desc { color: rgba(255,255,255,0.72); }

.infra-diagram {
  margin-top: 56px;
  background: var(--graphite);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 64px rgba(30,36,50,0.25);
  overflow: hidden;
}
.infra-diagram svg { width: 100%; height: auto; display: block; }
.infra-node rect, .infra-node circle { transition: stroke 0.3s; }
.infra-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  fill: rgba(255,255,255,0.85);
}
.infra-label--muted { fill: rgba(255,255,255,0.45); }
.infra-flow {
  stroke-dasharray: 6 8;
  animation: dashflow 1.2s linear infinite;
}
@keyframes dashflow { to { stroke-dashoffset: -28; } }

.stat-band {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
.stat-block { text-align: left; }
.stat-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--signal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.section--dark .stat-num { color: var(--signal); }
.stat-label {
  margin-top: 10px;
  font-size: 0.9375rem;
  color: var(--steel);
  line-height: 1.5;
}
.section--dark .stat-label { color: rgba(255,255,255,0.7); }

.prose {
  max-width: 720px;
  margin-inline: auto;
}
.prose p { margin-top: 20px; font-size: 1.0625rem; line-height: 1.8; color: var(--steel); }
.prose h2 {
  margin-top: 48px;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--graphite);
}
.prose h3 {
  margin-top: 32px;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--graphite);
}
.prose ul, .prose ol { margin-top: 20px; padding-left: 4px; display: flex; flex-direction: column; gap: 12px; }
.prose ul li, .prose ol li {
  position: relative;
  padding-left: 28px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--steel);
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
}
.prose ol { counter-reset: li; }
.prose ol li { counter-increment: li; }
.prose ol li::before {
  content: counter(li);
  position: absolute;
  left: 0; top: 2px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--signal);
}
.prose strong { color: var(--graphite); font-weight: 600; }
.prose a { color: var(--signal-dark); text-decoration: underline; text-decoration-color: rgba(200,133,15,0.4); }
.prose blockquote {
  margin-top: 28px;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--signal);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--graphite);
}

.posts-grid {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--base);
  border: 1px solid var(--edge);
  border-radius: var(--radius-card);
  padding: 28px;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.post-card:hover {
  border-color: rgba(200,133,15,0.3);
  box-shadow: 0 16px 48px rgba(200,133,15,0.05);
  transform: translateY(-4px);
}
.post-card-tag {
  align-self: flex-start;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--signal-dark);
  background: var(--signal-light);
  padding: 4px 10px;
  border-radius: 100px;
}
.post-card-title {
  margin-top: 16px;
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1875rem;
  line-height: 1.3;
  color: var(--graphite);
  transition: color 0.2s;
  overflow-wrap: break-word;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card:hover .post-card-title { color: var(--signal); }
.post-card-excerpt {
  margin-top: 12px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--steel);
  flex-grow: 1;
}
.post-card-meta {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
}

.cta-band {
  background: var(--graphite);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,133,15,0.12), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p {
  position: relative;
  margin-top: 14px;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-inline: auto;
}
.cta-band-actions {
  position: relative;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cta-band .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.cta-band .btn-secondary:hover {
  border-color: var(--signal);
  color: var(--signal);
}

.team-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--base);
  border: 1px solid var(--edge);
  border-radius: var(--radius-card);
  padding: 32px;
}
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--graphite);
  color: var(--signal);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.team-name {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--graphite);
}
.team-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--signal-dark);
  margin-top: 4px;
}
.team-bio {
  margin-top: 14px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--steel);
}
.team-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.875rem;
}
.team-contact a { color: var(--steel); transition: color 0.2s; }
.team-contact a:hover { color: var(--signal); }

.cred-chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cred-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  line-height: 1.3;
  color: var(--graphite);
  background: var(--surface);
  border: 1px solid var(--edge);
  padding: 5px 10px;
  border-radius: 999px;
}
.cred-chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
}
.cred-chip--verified {
  color: var(--success);
  background: #eaf6ef;
  border-color: #bfe3cf;
}
.cred-chip--verified::before { background: var(--success); }

.signed-note {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--signal-50);
  border: 1px solid rgba(200,133,15,0.22);
  border-left: 3px solid var(--signal);
  border-radius: 12px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--steel);
}
.signed-note-sign {
  display: block;
  margin-top: 10px;
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  color: var(--graphite);
}

.netdiagram {
  margin: 0;
  background: linear-gradient(160deg, #1E2432, #232A3A);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.netdiagram-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.netdiagram-head .dot-mini { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); }
.netdiagram svg { width: 100%; height: auto; }
.netdiagram-caption {
  margin-top: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.nd-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; fill: rgba(255,255,255,0.85); }
.nd-sub { font-family: 'IBM Plex Mono', monospace; font-size: 9px; fill: rgba(255,255,255,0.5); }
.nd-node { fill: rgba(255,255,255,0.04); stroke: rgba(255,255,255,0.18); }
.nd-zone { fill: rgba(200,133,15,0.05); stroke: rgba(200,133,15,0.3); stroke-dasharray: 4 4; }
.nd-line { stroke: rgba(255,255,255,0.25); stroke-width: 1.5; fill: none; }
.nd-vpn { stroke: var(--signal); stroke-width: 2; stroke-dasharray: 6 5; fill: none; }
.nd-ico { stroke: var(--signal); stroke-width: 1.5; fill: none; }

.tech-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.tech-strip .tech-badge { background: var(--surface); }

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}
.case-meta-item { }
.case-meta-key {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.case-meta-val {
  margin-top: 4px;
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--graphite);
}
.responsibility-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
.responsibility-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--base);
  border: 1px solid var(--edge);
  border-radius: 12px;
  padding: 18px 20px;
}
.responsibility-item svg {
  width: 20px; height: 20px;
  color: var(--signal);
  flex-shrink: 0;
  margin-top: 2px;
}
.responsibility-item strong {
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 600;
  color: var(--graphite);
  font-size: 0.9375rem;
}
.responsibility-item p {
  margin-top: 4px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--steel);
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
.footer-col h4 {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-col--brand .footer-tagline { max-width: 260px; }

.note-callout {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--signal-50);
  border: 1px solid rgba(200,133,15,0.2);
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--steel);
}

@media (min-width: 768px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .subservice-groups { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(4, 1fr); }
  .responsibility-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
  .page-hero { padding-top: 72px; padding-bottom: 88px; }
  .trust-strip-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .cta-band { padding: 72px 56px; }
}

@media (min-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .posts-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .infra-flow { animation: none !important; }
}

html, body { overflow-x: clip; }

.prose img, .prose video, .prose iframe { max-width: 100%; height: auto; border-radius: 12px; }
.prose pre {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--graphite);
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  margin-top: 20px;
}
.prose code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9em;
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 6px;
}
.prose pre code { background: none; padding: 0; }
.prose table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.9rem;
}

@media (min-width: 600px) and (max-width: 767.98px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .subservice-groups { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .why-us-points { grid-template-columns: repeat(2, 1fr); }
  .responsibility-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding-inline: 18px; }

  .section { padding-top: 64px; padding-bottom: 64px; }
  .section--tight { padding-top: 48px; padding-bottom: 48px; }

  .hero-section { padding-top: 52px; padding-bottom: 72px; }
  .hero-proof { gap: 20px 28px; margin-top: 40px; }
  .hero-proof-num { font-size: 1.25rem; }
  .hero-cta { display: flex; flex-direction: column; gap: 12px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { width: 100%; }

  .page-hero { padding-top: 40px; padding-bottom: 48px; }

  .terminal-body { padding: 18px; min-height: 260px; font-size: 0.8125rem; }
  .terminal-header { padding: 10px 12px; }

  .feature-card,
  .post-card,
  .cat-card { padding: 22px; }

  .infra-diagram { padding: 20px; }

  .cta-band { padding: 40px 22px; border-radius: 18px; }
  .cta-band-actions { flex-direction: column; }
  .cta-band-actions .btn-primary,
  .cta-band-actions .btn-secondary { width: 100%; }

  .case-meta { gap: 18px; }

  .prose p, .prose ul li, .prose ol li { font-size: 1rem; }
  .prose h2 { font-size: 1.4rem; }
  .prose h3 { font-size: 1.15rem; }
}

@media (max-width: 360px) {
  .container { padding-inline: 16px; }
  .stat-band { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2rem; }
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 200;
  pointer-events: none;
}
.scroll-progress > span {
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--signal), #e0a23a);
  box-shadow: 0 0 12px rgba(200, 133, 15, 0.45);
  will-change: transform;
}

.fx-spotlight { position: relative; isolation: isolate; }
.fx-spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%),
              rgba(200, 133, 15, 0.10), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.fx-spotlight:hover::after { opacity: 1; }
.fx-spotlight > * { position: relative; z-index: 1; }

.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.btn-primary:hover::after { left: 150%; }

.nav-link, .dropdown-toggle { position: relative; }
.nav-link::after, .dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after,
.dropdown-toggle:hover::after,
.nav-dropdown.open .dropdown-toggle::after { transform: scaleX(1); }

@keyframes fxFloat1 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(22px, -20px, 0); }
}
@keyframes fxFloat2 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(-26px, 18px, 0); }
}
.hero-bg-glow-1 { animation: fxFloat1 15s ease-in-out infinite; will-change: transform; }
.hero-bg-glow-2 { animation: fxFloat2 19s ease-in-out infinite; will-change: transform; }

.reveal-stagger > * { will-change: opacity, transform; }

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none !important; }
  .fx-spotlight::after,
  .btn-primary::after { display: none !important; }
  .hero-bg-glow-1,
  .hero-bg-glow-2 { animation: none !important; }
  .nav-link::after,
  .dropdown-toggle::after { transition: none !important; }
}

.media-figure {
  margin: 56px auto 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--edge);
  background: var(--surface);
  box-shadow: 0 24px 64px rgba(30, 36, 50, 0.12);
}
.media-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.media-figure--inline { max-width: 760px; }
.media-figure figcaption {
  padding: 12px 18px;
  font-size: 0.8125rem;
  color: var(--muted);
  border-top: 1px solid var(--edge);
  text-align: center;
}
.section--dark .media-figure { border-color: rgba(255, 255, 255, 0.1); }

@media (max-width: 480px) {
  .media-figure { margin-top: 36px; border-radius: 14px; }
}
