:root {
  --crimson: #990B26;
  --crimson-600: #B31330;
  --coral: #D83548;
  --coral-400: #E85A6A;
  --bg: #0A0A0E;
  --bg-raised: #111117;
  --bg-elevated: #17171F;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #EDEDF2;
  --text-muted: #9A9AA8;
  --text-dim: #6A6A78;
  --radius: 14px;
  --maxw: 1240px;
  --shadow-glow: 0 0 80px -10px rgba(216, 53, 72, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Background aurora / grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(153, 11, 38, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 110%, rgba(216, 53, 72, 0.10), transparent 60%);
  pointer-events: none;
  z-index: -2;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== HEADER ========== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(10, 10, 14, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
header.scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 34px; height: 34px; display: block; }
.brand-mark .lg-a { fill: var(--coral); }
.brand-mark .lg-b { fill: var(--crimson-600); }
.brand-word {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.brand-word span { color: var(--coral); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
  margin-right: 12px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--coral) 100%);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(216, 53, 72, 0.6);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 40px -10px rgba(216, 53, 72, 0.75); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral-400); }

/* ========== HERO (landing) ========== */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 0px);
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.02);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 10px var(--coral);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

h1.hero-title {
  font-size: clamp(42px, 5.6vw, 72px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-top: 24px;
}
.hero-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--coral) 0%, var(--crimson-600) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 560px;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 44px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat .lbl {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
  max-width: 160px;
}

/* Hero visual — logo collage */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(153, 11, 38, 0.18), rgba(216, 53, 72, 0.06));
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.hero-logo-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(216,53,72,0.35), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(153,11,38,0.3), transparent 55%);
}
.hero-mark {
  position: absolute;
  inset: 18%;
  z-index: 2;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
  width: 64%;
  height: 64%;
}
.hero-mark .lg-a { fill: rgba(255, 255, 255, 0.78); }
.hero-mark .lg-b { fill: #ffffff; }
.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 1;
}
.stage-badge {
  position: absolute;
  z-index: 3;
  padding: 8px 14px;
  background: rgba(10, 10, 14, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  backdrop-filter: blur(10px);
}
.stage-badge.top-left { top: 22px; left: 22px; }
.stage-badge.top-right { top: 22px; right: 22px; color: var(--coral); border-color: rgba(216,53,72,0.4); }
.stage-badge.bot-left { bottom: 22px; left: 22px; }
.stage-badge.bot-right { bottom: 22px; right: 22px; }

/* ========== PAGE HERO (subpages) ========== */
.page-hero {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  max-width: 780px;
}
.page-hero h1 {
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.032em;
  margin-top: 20px;
}
.page-hero h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--coral-400);
}
.page-hero p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
}

/* ========== SECTIONS ========== */
section.block { padding: 100px 0; position: relative; }
.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
h2.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
h2.section-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--coral-400);
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(216,53,72,0.12), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.service-card:hover { border-color: rgba(216,53,72,0.35); transform: translateY(-2px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(153,11,38,0.25), rgba(216,53,72,0.12));
  border: 1px solid rgba(216,53,72,0.25);
  display: grid;
  place-items: center;
  color: var(--coral-400);
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

/* ========== APPROACH — timeline ========== */
.approach-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.approach-step {
  padding: 22px 26px;
  border-left: 2px solid var(--line);
  position: relative;
  transition: border-color .3s, background .3s;
  border-radius: 0 12px 12px 0;
}
.approach-step::before {
  content: '';
  position: absolute;
  left: -7px; top: 26px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--line-strong);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.approach-step:hover {
  border-left-color: var(--coral);
  background: rgba(216,53,72,0.04);
}
.approach-step:hover::before {
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(216,53,72,0.18);
}
.approach-step .num {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.approach-step h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.approach-step p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ========== DIFFERENTIATORS ========== */
.diff-section {
  background: linear-gradient(180deg, transparent, rgba(153,11,38,0.04), transparent);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.diff {
  padding: 28px 22px;
  text-align: left;
  border-top: 1px solid var(--line-strong);
  position: relative;
}
.diff::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 40px; height: 2px;
  background: var(--coral);
}
.diff .d-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.diff h4 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.diff p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ========== FOOTPRINT ========== */
.footprint-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}
.fp-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
}
.fp-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.fp-panel-head h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.fp-panel-head .count {
  font-size: 11px;
  color: var(--coral-400);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.country, .industry {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,0.015);
  position: relative;
  transition: border-color .3s, transform .3s, background .3s;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
}
.country:hover, .industry:hover {
  border-color: rgba(216,53,72,0.4);
  transform: translateY(-1px);
  background: rgba(216,53,72,0.04);
}
.country::after {
  content: '';
  position: absolute;
  top: 14px; right: 14px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 8px rgba(216,53,72,0.8);
}
.country .c-code {
  font-size: 10px;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.14em;
  min-width: 24px;
}
.country .c-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
}
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.industry .ind-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(153,11,38,0.3), rgba(216,53,72,0.12));
  border: 1px solid rgba(216,53,72,0.25);
  display: grid; place-items: center;
  color: var(--coral-400);
  flex-shrink: 0;
}
.industry .ind-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  line-height: 1.25;
}

/* ========== CTA BAND ========== */
.cta-band {
  padding: 100px 0 120px;
}
.cta-card {
  padding: 72px 56px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at top left, rgba(216,53,72,0.25), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(153,11,38,0.35), transparent 55%),
    linear-gradient(180deg, #15070B, #0A0A0E);
  border: 1px solid var(--line-strong);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 720px;
  margin: 0 auto;
}
.cta-card h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--coral-400);
}
.cta-card p {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-card .hero-cta { justify-content: center; margin-top: 36px; }

/* ========== STICKY CTA (floating) ========== */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta .btn-primary {
  padding: 14px 24px;
  font-size: 14px;
  box-shadow: 0 12px 40px -8px rgba(216, 53, 72, 0.65), 0 0 0 1px rgba(216,53,72,0.3);
}

/* ========== FOOTER ========== */
footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand-block {
  max-width: 420px;
}
.footer-brand-block p {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 14px;
  line-height: 1.6;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer-contact a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--coral-400); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero { padding: 130px 0 80px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footprint-panels { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .nav { padding: 14px 20px; gap: 12px; }
  .nav-links { display: none; }
  .nav .btn { padding: 10px 16px; font-size: 13px; }
  .hero { padding: 110px 0 70px; }
  .hero-meta { gap: 28px; }
  .page-hero { padding: 130px 0 60px; }
  section.block { padding: 70px 0; }
  .services-grid, .diff-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 70px 0 90px; }
  .cta-card { padding: 52px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .sticky-cta { bottom: 16px; right: 16px; left: 16px; }
  .sticky-cta .btn-primary { width: 100%; justify-content: center; }
}
