/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #09090b;
  --surface: #161618;
  --surface2: #1c1c1f;
  --border: #27272a;
  --amber: #f97316;
  --amber-dim: rgba(249, 115, 22, 0.4);
  --amber-glow: rgba(249, 115, 22, 0.12);
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --text-dim: #52525b;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.accent { color: var(--amber); }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(to bottom, var(--bg) 60%, transparent);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--amber);
}

.hero-headline {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  margin-bottom: 28px;
  color: var(--text);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* === SECTION COMMON === */
.section-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--amber);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0;
}

/* === OPERATIONS === */
.operations {
  padding: 100px 48px;
  background: var(--bg);
}

.section-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.ops-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s ease;
}

.ops-card:hover {
  background: var(--surface2);
}

.ops-icon {
  margin-bottom: 20px;
}

.ops-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.ops-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === CLIENTS === */
.clients {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.clients-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.clients-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 24px;
}

.clients-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.client-numbers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.client-num {}

.cn-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.cn-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.clients-right {
  display: flex;
  justify-content: center;
}

.portal-graphic {
  width: 100%;
  max-width: 400px;
}

.portal-graphic svg {
  width: 100%;
  height: auto;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.manifesto-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--amber);
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  border: none;
  margin-bottom: 28px;
}

.manifesto-attr {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === CLOSING === */
.closing {
  padding: 100px 48px 120px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 700px;
}

.closing-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 560px;
}

.closing-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.detail-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--amber-glow);
  border: 1px solid var(--amber-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === FOOTER === */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-powered {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-inner { grid-template-columns: 1fr; gap: 48px; }
  .clients-right { display: none; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }
  .operations { padding: 60px 24px; }
  .ops-grid { grid-template-columns: 1fr; }
  .clients { padding: 60px 24px; }
  .manifesto { padding: 60px 24px; }
  .closing { padding: 60px 24px 80px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
