
:root {
  --bg: #070707;
  --panel: #0d0d0d;
  --panel-soft: rgba(255,255,255,0.03);
  --text: #f4f4ef;
  --muted: rgba(244,244,239,0.72);
  --muted-2: rgba(244,244,239,0.46);
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #060606 0%, #0b0b0b 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
p { line-height: 1.82; color: var(--muted); }
b { color: var(--text); font-weight: 600; }

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

.pad { padding: 88px 0; }

.sticky {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7,7,7,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hstack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
}

.brand {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  transition: color 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--text);
  outline: none;
}

.hero { padding: 114px 0 70px; }
.hero h1 {
  margin: 0;
  font-size: clamp(56px, 10vw, 128px);
  line-height: 0.91;
  letter-spacing: -0.078em;
  font-weight: 650;
}
.hero p {
  margin: 22px 0 0;
  max-width: 860px;
  font-size: clamp(17px, 1.55vw, 20px);
}

.shimmer {
  color: rgba(255,255,255,0.72);
  background: linear-gradient(110deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.96) 48%, rgba(255,255,255,0.28) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 1.8s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 26px;
}

.section-note {
  margin: 0;
  max-width: 560px;
  font-size: 14px;
  color: var(--muted);
}

.divide {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.divide li { border-bottom: 1px solid var(--line); }

.entry {
  display: block;
  padding: 24px 0;
  transition: background 180ms ease, padding-left 180ms ease;
}

.entry:hover,
.entry:focus-visible {
  background: rgba(255,255,255,0.02);
  padding-left: 8px;
  outline: none;
}

.row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}

.title {
  font-size: clamp(24px, 2.75vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.meta {
  flex: 0 0 auto;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-2);
}

.copy {
  margin: 0;
  max-width: 84ch;
}

.stack {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.75;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
}

.actions { margin-top: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
  outline: none;
}

.h2,
#clients h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.products {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.about {
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about p {
  font-size: clamp(18px, 1.85vw, 28px);
  line-height: 1.65;
  margin: 0;
  color: var(--text);
}

.marquee {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee.fade::before,
.marquee.fade::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.marquee.fade::before {
  left: 0;
  background: linear-gradient(90deg, #070707 0%, rgba(7,7,7,0) 100%);
}

.marquee.fade::after {
  right: 0;
  background: linear-gradient(270deg, #070707 0%, rgba(7,7,7,0) 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-width: 100%;
  padding: 18px 0;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.marquee.subtle .marquee-track span {
  border: none;
  background: transparent;
  padding: 0 20px 0 0;
  min-height: 0;
  color: var(--muted);
  letter-spacing: 0.18em;
}

.pause-on-hover:hover .marquee-track,
.pause-on-hover:focus-within .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.loc {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
}

@media (max-width: 920px) {
  .pad { padding: 66px 0; }
  .hero { padding: 94px 0 58px; }
  .row,
  .section-head,
  .hstack {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  nav { gap: 12px; }
  .btn { width: 100%; }
  .cluster { width: 100%; }
  .marquee-track { animation-duration: 30s; }
}
