/* ─── Variables ─────────────────────────────────────────── */
:root {
  --bg:        #121417;
  --bg-2:      #1a1c21;
  --bg-3:      #22252d;
  --fg:        #e4e6ea;
  --fg-2:      #a0a4ae;
  --fg-3:      #6a6e7a;
  --accent:    #c6f74a;
  --accent-dim: rgba(198, 247, 74, 0.12);
  --lime-text: #d4f75a;
  --border:    rgba(255,255,255,0.08);
  --radius:    10px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

/* ─── Typography ────────────────────────────────────────── */
.font-head { font-family: var(--font-head); }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(198,247,74,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 48px;
}

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

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-3);
  font-weight: 400;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  border: 1px solid var(--border);
}

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

.hero-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(18,20,23,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198,247,74,0.2);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--lime-text);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

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

/* ─── Manifesto ─────────────────────────────────────────── */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.manifesto-statement {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.manifesto-body {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ─── Capabilities ──────────────────────────────────────── */
.capabilities {
  padding: 100px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.capabilities-inner { max-width: 1200px; margin: 0 auto; }

.cap-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 56px;
}

.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cap-card {
  background: var(--bg-2);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cap-card-main {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
}

.cap-icon-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--border);
  flex-shrink: 0;
  margin-bottom: 24px;
}

.cap-icon-sm { aspect-ratio: 16/8; }

.cap-card-main .cap-icon-wrap {
  width: 340px;
  margin-bottom: 0;
}

.cap-img { width: 100%; height: 100%; object-fit: cover; }

.cap-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cap-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
  margin-bottom: 24px;
}

.cap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cap-list li {
  font-size: 13px;
  color: var(--fg-3);
  padding-left: 18px;
  position: relative;
}

.cap-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── Clients ───────────────────────────────────────────── */
.clients {
  padding: 80px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.clients-inner { max-width: 1200px; margin: 0 auto; }

.clients-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: center;
  margin-bottom: 48px;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.client-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 40px;
  background: var(--bg-3);
}

.client-icon {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.client-name {
  font-size: 13px;
  color: var(--fg-2);
  font-weight: 400;
}

/* ─── Closing ───────────────────────────────────────────── */
.closing {
  padding: 100px 48px;
  background: var(--bg);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.closing-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  padding: 40px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-3);
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-3);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-sub { max-width: 100%; }
  .hero-visual { order: -1; }

  .cap-card-main { flex-direction: column; grid-column: span 1; }
  .cap-card-main .cap-icon-wrap { width: 100%; }
  .cap-grid { grid-template-columns: 1fr; }
  .cap-card-main { grid-column: span 1; }

  .closing-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 20px; }
  .manifesto { padding: 72px 20px; }
  .capabilities { padding: 72px 20px; }
  .clients { padding: 56px 20px; }
  .closing { padding: 72px 20px; }
  .site-footer { padding: 32px 20px; }

  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }

  .cap-grid { gap: 1px; }
  .cap-card { padding: 32px 24px; }
}