@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Instrument+Sans:ital,wght@0,300;0,400;0,500;1,300&family=JetBrains+Mono:wght@300;400;500&display=swap');

:root {
  --ink: #111111;
  --paper: #FFFFFF;
  --charcoal: #111111;
  --slate: #444444;
  --amber: #1A56DB;
  --amber-light: #3B82F6;
  --teal: #059669;
  --teal-light: #10B981;
  --fog: #9CA3AF;
  --rule: #E8E8E8;
  --card-bg: #F7F7F7;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 52px;
  background: rgba(244, 241, 235, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  text-decoration: none;
}

.nav-logo span { color: var(--amber); }

.nav-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-left: 10px;
}

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

.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--amber); }

.nav-cta {
  background: var(--charcoal) !important;
  color: var(--paper) !important;
  padding: 8px 18px;
  border-radius: 2px;
}

.nav-cta:hover { background: var(--amber) !important; color: var(--charcoal) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 52px 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,130,10,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--teal);
  display: inline-block;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.hero-title .accent { color: var(--amber); }
.hero-title .thin { font-weight: 400; }

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-sub strong { font-weight: 500; color: var(--charcoal); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--paper);
  padding: 14px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover { background: var(--amber); color: var(--charcoal); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--slate);
  padding: 14px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid var(--rule);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--amber); color: var(--amber); }

/* Hero right — animated data viz */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.data-card {
  background: var(--charcoal);
  border-radius: 4px;
  padding: 24px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.data-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 8px;
}

.data-card-value {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--amber-light);
}

.data-card-sub {
  font-size: 12px;
  color: var(--fog);
  margin-top: 4px;
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-top: 12px;
}

.bar {
  flex: 1;
  background: rgba(240,160,48,0.25);
  border-radius: 2px 2px 0 0;
  transition: height 0.4s;
}

.bar.active { background: var(--amber-light); }

.hero-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-card-sm {
  background: var(--card-bg);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 18px;
}

.hero-card-sm-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.hero-card-sm-val {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
}

.hero-card-sm-desc {
  font-size: 12px;
  color: var(--fog);
  margin-top: 2px;
}

/* ── MARQUEE TICKER ── */
.ticker {
  background: var(--charcoal);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 24s linear infinite;
}

.ticker-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticker-item span { color: var(--amber); }

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

/* ── SECTION BASE ── */
section { padding: 100px 52px; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--teal);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--paper);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}

.service-card:hover { background: var(--card-bg); }

.service-icon {
  width: 44px; height: 44px;
  background: var(--charcoal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26,122,110,0.08);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(26,122,110,0.15);
}

.service-price {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.06em;
}

/* ── INDUSTRIES ── */
.industries-section { background: var(--charcoal); }

.industries-section .section-label { color: var(--amber); }
.industries-section .section-label::before { background: var(--amber); }
.industries-section .section-title { color: var(--paper); }
.industries-section .section-sub { color: var(--fog); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.industry-card {
  background: var(--charcoal);
  padding: 32px 28px;
  transition: background 0.2s;
}

.industry-card:hover { background: rgba(255,255,255,0.04); }

.industry-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.industry-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 8px;
}

.industry-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--fog);
}

/* ── HOW IT WORKS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rule);
  border-radius: 4px;
  overflow: hidden;
}

.process-step {
  background: var(--paper);
  padding: 36px 28px;
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(212,130,10,0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--slate);
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  transition: transform 0.2s, border-color 0.2s;
  display: block;
}

.blog-card:hover { transform: translateY(-3px); border-color: var(--amber); }

.blog-card-header {
  background: var(--charcoal);
  padding: 28px 24px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.blog-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--paper);
  line-height: 1.3;
}

.blog-body {
  padding: 20px 24px;
}

.blog-excerpt {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fog);
}

/* ── CTA ── */
.cta-section {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--card-bg);
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.cta-input:focus { border-color: var(--amber); }
.cta-input::placeholder { color: var(--fog); }

.cta-btn {
  background: var(--charcoal);
  color: var(--paper);
  padding: 14px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

.cta-btn:hover { background: var(--amber); color: var(--charcoal); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 40px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.footer-logo span { color: var(--amber); }

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--amber); }

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(154,163,174,0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-tag { display: none; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-right { display: none; }
  section { padding: 72px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; gap: 40px; }
  footer { flex-direction: column; text-align: center; }
}
