:root {
  --bg: #0a0d11;
  --bg-soft: #10161d;
  --panel: rgba(18, 24, 31, 0.84);
  --panel-strong: #151d25;
  --text: #f7f3ea;
  --muted: #b8b1a4;
  --line: rgba(226, 181, 92, 0.16);
  --accent: #d8a23a;
  --accent-soft: #f3d18a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 162, 58, 0.18), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(243, 209, 138, 0.12), transparent 24%),
    linear-gradient(180deg, #06080b 0%, #0a0d11 35%, #090d12 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

.bg-orb,
.bg-grid {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.22;
}

.orb-one {
  top: -10vw;
  left: -8vw;
  background: radial-gradient(circle, rgba(216, 162, 58, 0.85), rgba(216, 162, 58, 0));
}

.orb-two {
  right: -12vw;
  top: 26vh;
  background: radial-gradient(circle, rgba(43, 82, 151, 0.65), rgba(43, 82, 151, 0));
}

.bg-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 75%);
  opacity: 0.16;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.site-footer,
.trust-strip,
.hero,
.service-card,
.feature-list article,
.industry-grid span,
.process-grid article,
.testimonials-grid blockquote,
.contact-banner {
  backdrop-filter: blur(16px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 12, 16, 0.78);
  box-shadow: var(--shadow);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(243, 209, 138, 0.35);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(216, 162, 58, 0.2), rgba(216, 162, 58, 0.05));
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong,
.section-heading h2,
.hero h1,
.contact-banner h2 {
  font-family: "Outfit", sans-serif;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--accent-soft);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--accent), #b57a1b);
  color: #15110a;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(216, 162, 58, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  margin-top: 28px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(216, 162, 58, 0.03)),
    rgba(11, 15, 20, 0.78);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
  line-height: 0.95;
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.split-copy p,
.contact-banner p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.08rem;
  margin: 20px 0 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-metrics article {
  padding: 16px 18px;
  border: 1px solid rgba(243, 209, 138, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.hero-metrics strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  color: var(--accent-soft);
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-width: 188px;
  padding: 15px 22px;
  border: 1px solid transparent;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #b97d1a);
  color: #181109;
}

.button-secondary {
  background: transparent;
  border-color: rgba(243, 209, 138, 0.3);
  color: var(--text);
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 0 16px rgba(216, 162, 58, 0.55);
}

.hero-panel {
  position: relative;
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(216, 162, 58, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(23, 31, 40, 0.95), rgba(12, 17, 22, 0.96));
  border: 1px solid rgba(243, 209, 138, 0.12);
  overflow: hidden;
}

.hero-image-frame,
.inline-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(243, 209, 138, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.hero-image-frame::after,
.inline-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 11, 0.04), rgba(5, 8, 11, 0.44));
  pointer-events: none;
}

.hero-image-frame {
  height: 260px;
  margin-bottom: 18px;
}

.inline-image-card {
  margin-top: 28px;
  box-shadow: var(--shadow);
}

.hero-image-frame img,
.inline-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-image-card img {
  min-height: 280px;
}

.hero-card {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(243, 209, 138, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.hero-card strong {
  font-size: 1.2rem;
}

.card-secondary {
  position: absolute;
  right: 22px;
  top: 300px;
  max-width: 210px;
}

.hero-grid {
  display: grid;
  gap: 16px;
  margin-top: 110px;
}

.hero-grid article,
.service-card,
.feature-list article,
.process-grid article,
.testimonials-grid blockquote,
.contact-banner,
.trust-strip,
.site-footer {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-grid article {
  padding: 18px;
  border-radius: 18px;
  animation: rise 700ms ease both;
}

.hero-grid article:nth-child(2) {
  animation-delay: 120ms;
}

.hero-grid article:nth-child(3) {
  animation-delay: 220ms;
}

.stat {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-soft);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 22px 0 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
}

.trust-strip div {
  padding: 18px;
  background: rgba(14, 18, 24, 0.9);
  text-align: center;
  color: var(--muted);
}

.section {
  margin-top: 84px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.contact-banner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
}

.section-heading p {
  margin-top: 16px;
}

.narrow {
  max-width: 640px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.service-card,
.feature-list article,
.industry-grid span,
.process-grid article,
.testimonials-grid blockquote {
  border-radius: 22px;
}

.service-card {
  position: relative;
  padding: 24px;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.service-card:hover,
.feature-list article:hover,
.process-grid article:hover,
.testimonials-grid blockquote:hover,
.industry-grid span:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 209, 138, 0.28);
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(216, 162, 58, 0.12);
  color: var(--accent-soft);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.service-card h3,
.feature-list h3,
.process-grid h3 {
  margin-top: 0;
  font-family: "Outfit", sans-serif;
}

.service-card p,
.feature-list p,
.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

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

.feature-list article {
  padding: 24px;
  transition: transform 200ms ease, border-color 200ms ease;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.industry-grid span {
  display: block;
  padding: 20px 18px;
  text-align: center;
  color: var(--accent-soft);
  background: rgba(17, 22, 28, 0.82);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.process-grid,
.testimonials-grid,
.site-footer {
  display: grid;
  gap: 18px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.process-grid article {
  padding: 24px;
  transition: transform 200ms ease, border-color 200ms ease;
}

.process-grid span {
  color: var(--accent-soft);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.testimonials-grid blockquote {
  margin: 0;
  padding: 24px;
  line-height: 1.8;
  color: var(--text);
  transition: transform 200ms ease, border-color 200ms ease;
}

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

.assurance-strip article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(243, 209, 138, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.assurance-strip h3 {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
}

.assurance-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 84px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at right center, rgba(216, 162, 58, 0.18), transparent 30%),
    rgba(14, 19, 25, 0.9);
}

.site-footer {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  margin-top: 28px;
  padding: 28px;
  border-radius: 28px;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
}

.site-footer a,
.site-footer span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero,
  .split-section,
  .services-grid,
  .industry-grid,
  .process-grid,
  .testimonials-grid,
  .assurance-strip,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    align-items: start;
  }

  .hero-panel,
  .split-copy {
    grid-column: span 2;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    padding-top: 12px;
  }

  .site-header {
    position: static;
    border-radius: 28px;
    padding: 16px;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.92rem;
  }

  .hero,
  .services-grid,
  .feature-list,
  .industry-grid,
  .process-grid,
  .testimonials-grid,
  .assurance-strip,
  .site-footer,
  .trust-strip,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 22px;
  }

  .hero h1,
  .section-heading h2,
  .contact-banner h2 {
    max-width: none;
  }

  .hero-panel,
  .split-copy {
    grid-column: auto;
  }

  .card-secondary {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .hero-grid {
    margin-top: 18px;
  }

  .contact-banner {
    padding: 24px;
  }
}
