:root {
  --bg-dark: #050608;
  --bg-darker: #020203;
  --bg-elevated: #101119;
  --accent: #ff002b;
  --accent-soft: rgba(255, 0, 43, 0.2);
  --accent-soft-strong: rgba(255, 0, 43, 0.35);
  --text-primary: #ffffff;
  --text-muted: #a6a8b8;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1b1b25 0, #050608 55%, #000000 100%);
  color: var(--text-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.94), rgba(5, 6, 8, 0.86), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 14px;
  gap: 24px;
}

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

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: radial-gradient(circle at 10% 0, #ff3355 0, #ff002b 28%, #2b0a13 65%, #050608 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 16px 35px rgba(0, 0, 0, 0.7);
}

.brand-mark-top,
.brand-mark-bottom {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transform: translateY(-14%);
}

.brand-mark-bottom {
  border-color: rgba(0, 0, 0, 0.7);
  transform: translateY(30%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
}

.brand-tagline {
  font-size: 11px;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.nav-link {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-link-active {
  color: var(--text-primary);
  background: rgba(255, 0, 43, 0.14);
  border-color: rgba(255, 0, 43, 0.8);
}

.nav-cta {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #ff3355, #ff002b);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 16px 40px rgba(255, 0, 43, 0.45);
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(255, 0, 43, 0.6);
  background: linear-gradient(135deg, #ff4d66, #ff002b);
}

.hero {
  padding: 40px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.08;
  margin: 0 0 14px;
}

.hero-lead {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-size: 13px;
  padding: 10px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ff3355, #ff002b);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 42px rgba(255, 0, 43, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(255, 0, 43, 0.7);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-large {
  padding-inline: 26px;
  padding-block: 11px;
}

.btn-full {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
}

.hero-visual {
  position: relative;
  min-height: 260px;
}

.hero-image-layer {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.hero-image-main {
  background-image: url("https://images.pexels.com/photos/1181671/pexels-photo-1181671.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.hero-image-secondary {
  inset: 18% -14% -24% 22%;
  background-image: url("https://images.pexels.com/photos/1181467/pexels-photo-1181467.jpeg?auto=compress&cs=tinysrgb&w=1200");
  opacity: 0.85;
  mix-blend-mode: screen;
}

.hero-statistics {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, rgba(255, 0, 43, 0.45) 0, rgba(0, 0, 0, 0.96) 40%, rgba(0, 0, 0, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  font-size: 11px;
}

.hero-stat-number {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.hero-stat-label {
  color: var(--text-muted);
}

.services-marquee-shell {
  margin-top: 4px;
}

.services-marquee-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.services-marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top, rgba(255, 0, 43, 0.25) 0, rgba(5, 6, 8, 1) 40%);
}

.services-marquee::before,
.services-marquee::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 80px;
  pointer-events: none;
  z-index: 1;
}

.services-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.services-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.services-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-block: 10px;
  padding-inline: 26px;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.services-marquee-item {
  font-size: 13px;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.7);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section {
  padding: 40px 0;
}

.section-dark {
  background: radial-gradient(circle at top, rgba(255, 0, 43, 0.26) 0, #050608 46%, #000000 100%);
}

.section-cta {
  background: linear-gradient(135deg, #ff002b, #b3001b);
}

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

.section-cta-inner h2 {
  margin: 0 0 8px;
}

.section-cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  margin-bottom: 22px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 540px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pill-grid-large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pill-card {
  background: radial-gradient(circle at top left, rgba(255, 0, 43, 0.16) 0, var(--bg-elevated) 42%, #050608 100%);
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.pill-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.pill-card p {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.pill-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 13px;
}

.pill-list li + li {
  margin-top: 4px;
}

.pill-footnote {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-pill {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  background: rgba(0, 0, 0, 0.7);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cards-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(255, 0, 43, 0.25) 0, #050608 40%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
}

.case-image {
  height: 110px;
  background-image: url("https://images.pexels.com/photos/1181358/pexels-photo-1181358.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
}

.case-body {
  padding: 14px 14px 12px;
}

.case-body h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.case-meta {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--accent);
}

.case-copy {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--text-muted);
}

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

.case-tag {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.7);
}

.hero-condensed {
  padding-top: 32px;
}

.hero-condensed h1 {
  font-size: clamp(26px, 3.4vw, 32px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 26px;
  align-items: center;
}

.about-grid p {
  color: var(--text-muted);
  font-size: 14px;
}

.about-grid-secondary {
  display: grid;
  gap: 12px;
}

.about-stat {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.7);
}

.about-stat-number {
  display: block;
  font-size: 20px;
  font-weight: 600;
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.careers-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 26px;
  align-items: flex-start;
}

.careers-grid p {
  color: var(--text-muted);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
}

.contact-form {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(5, 6, 8, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.9);
}

.field {
  margin-bottom: 12px;
}

.field-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.field label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 6, 8, 0.96);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 13px;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 0, 43, 0.6);
}

.form-footnote {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
}

.contact-aside {
  display: grid;
  gap: 12px;
}

.highlight-text {
  font-size: 14px;
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 26px 0 20px;
  background: radial-gradient(circle at top, rgba(255, 0, 43, 0.2) 0, #050608 42%, #000000 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.6fr) minmax(0, 1.7fr);
  gap: 22px;
  margin-bottom: 18px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.footer-brand-name {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.footer-brand-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-heading {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.footer-copy {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: grid;
  gap: 4px;
}

.footer-link {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .cards-grid,
  .pill-grid,
  .pill-grid-large,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-grid,
  .careers-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    gap: 14px;
  }

  .main-nav {
    order: 2;
    width: 100%;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hero {
    padding-top: 30px;
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  height: 36px;   /* 👈 perfect navbar size */
  width: auto;
  object-fit: contain;
}

