:root {
  --red: #d6001c;
  --red-dark: #9a0014;
  --red-light: #ff4d61;
  --black: #0b0b0f;
  --off-black: #111117;
  --white: #f9f6f3;
  --grey: #b6b1aa;
  --gradient: linear-gradient(120deg, rgba(214, 0, 28, 0.9), rgba(10, 10, 16, 0.9));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top left, rgba(214, 0, 28, 0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 77, 97, 0.15), transparent 45%),
    var(--black);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  padding: 32px 8vw 120px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(8, 8, 12, 0.95), rgba(20, 8, 12, 0.85));
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(214, 0, 28, 0.25), transparent 55%);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--red-light);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 520px;
  margin-bottom: 28px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(214, 0, 28, 0.35);
  background: var(--red-light);
}

.button.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button.small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  color: var(--grey);
}

.hero-highlights strong {
  color: var(--white);
  font-size: 1.2rem;
  display: block;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-card {
  position: absolute;
  bottom: -24px;
  right: 24px;
  background: rgba(17, 17, 23, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 16px;
  max-width: 240px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.section {
  padding: 96px 8vw;
}

.section-header {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--grey);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--off-black);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 12px;
}

.clients {
  background: linear-gradient(180deg, rgba(14, 14, 20, 0.95), rgba(7, 7, 10, 0.95));
}

.client-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-rows: auto 1fr;
}

.client-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.client-card div {
  padding: 20px;
  display: grid;
  gap: 6px;
}

.client-card h3 {
  font-family: "Space Grotesk", sans-serif;
}

.client-card span {
  color: var(--grey);
  font-size: 0.9rem;
}

.note {
  margin-top: 24px;
  color: var(--grey);
}

.team {
  background: linear-gradient(180deg, rgba(214, 0, 28, 0.08), transparent 60%);
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.team-card {
  background: var(--off-black);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

.team-card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 4px;
}

.role {
  color: var(--red-light);
  font-weight: 600;
  margin-bottom: 10px;
}

.capabilities .cap-card {
  padding: 20px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-weight: 600;
}

.contact {
  background: var(--gradient);
}

.contact-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.contact-card {
  background: rgba(8, 8, 12, 0.75);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 16px;
}

.footer {
  padding: 32px 8vw 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--grey);
  font-size: 0.9rem;
}

.footer img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  margin-right: 10px;
}

.footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-card {
    position: static;
    max-width: none;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 24px 6vw 80px;
  }

  .section {
    padding: 72px 6vw;
  }

  .team-card img {
    height: 220px;
  }
}
