:root {
  --black: #050505;
  --ink: #0b0d10;
  --panel: #11151b;
  --panel-soft: #151a21;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f8fb;
  --muted: #a7adb7;
  --muted-strong: #c4c9d1;
  --blue: #0877d9;
  --blue-soft: rgba(8, 119, 217, 0.18);
  --gold: #f5a400;
  --gold-soft: rgba(245, 164, 0, 0.18);
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--black);
  background-size: 72px 72px;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(8, 119, 217, 0.13), transparent 32%),
    linear-gradient(300deg, rgba(245, 164, 0, 0.1), transparent 28%);
  opacity: 0.9;
  z-index: -1;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 32px, 1240px);
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.64);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(5, 5, 5, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.brand {
  display: flex;
  align-items: center;
  width: 238px;
  height: 58px;
  overflow: visible;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a.is-active,
.mobile-nav a.is-active {
  color: var(--gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(245, 164, 0, 0.45);
  background: rgba(245, 164, 0, 0.1);
  color: var(--white);
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
}

.menu-toggle span + span {
  margin-top: 5px;
}

.mobile-nav {
  position: fixed;
  top: 82px;
  left: 16px;
  right: 16px;
  z-index: 45;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 14px 8px;
  color: var(--muted-strong);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.section-shell {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  min-height: 100vh;
  align-items: center;
  padding-top: 118px;
  padding-bottom: 76px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 8vw, 7.35rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4.6vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  font-size: 1.13rem;
  color: var(--muted-strong);
}

.hero-actions,
.final-cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  color: var(--white);
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #ffbd35);
  color: #111;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-size: 0.84rem;
}

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

.hero-visual img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.55);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.55), transparent 32%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.32), transparent 42%);
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(320px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(16px);
}

.panel-label {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  line-height: 1.35;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.brand-strip span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--muted-strong);
  font-weight: 700;
  text-align: center;
}

.brand-strip span:last-child {
  border-right: 0;
}

.split-section,
.services-section,
.process-section,
.insight-section,
.industries-section,
.company-section,
.faq-section,
.contact-section {
  padding: 118px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 72px;
  border-bottom: 1px solid var(--line);
}

.section-copy p {
  font-size: 1.04rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading p {
  max-width: 670px;
}

.section-heading.compact {
  max-width: 740px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.insight-grid article,
.company-card,
.values-panel,
.contact-form,
.faq-list details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.service-card {
  min-height: 350px;
  padding: 28px;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 164, 0, 0.42);
  background: linear-gradient(180deg, rgba(245, 164, 0, 0.08), rgba(255, 255, 255, 0.025));
}

.card-index {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 22px 0 14px;
}

.service-card ul,
.values-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.values-panel li {
  color: var(--muted-strong);
  line-height: 1.52;
}

.service-card li::before,
.values-panel li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--gold);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.timeline span {
  color: var(--gold);
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 6px;
}

.timeline p {
  margin-bottom: 0;
}

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

.insight-grid article {
  min-height: 240px;
  padding: 24px;
}

.insight-grid span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.insight-grid strong {
  display: block;
  margin: 28px 0 12px;
  font-size: 1.34rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.industry-grid span {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 1.05rem;
  font-weight: 800;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 16px;
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.company-card,
.values-panel {
  padding: 34px;
}

.company-card dl {
  display: grid;
  gap: 22px;
  margin: 28px 0 0;
}

.company-card div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.company-card dt {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.company-card dd {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.6;
}

.values-panel h3 {
  margin-bottom: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--white);
  font-weight: 800;
}

.faq-list p {
  padding-bottom: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 60px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-copy p {
  max-width: 620px;
}

.contact-steps {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-steps span {
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form label:nth-child(5),
.contact-form label:nth-child(6),
.contact-form label:last-of-type,
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  padding: 14px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(245, 164, 0, 0.7);
  background: rgba(0, 0, 0, 0.45);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.final-cta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(8, 119, 217, 0.18), transparent 38%),
    linear-gradient(315deg, rgba(245, 164, 0, 0.18), transparent 42%),
    #07080a;
}

.final-cta-inner {
  justify-content: space-between;
  padding: 82px 0;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 64px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 20px;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-page {
  padding: 140px 0 80px;
}

.legal-page article {
  max-width: 860px;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

.legal-page h2 {
  margin-top: 46px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.legal-page p,
.legal-page li {
  color: var(--muted-strong);
  line-height: 1.75;
}

.legal-page ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.52fr);
  gap: 54px;
  align-items: end;
  padding-top: 168px;
  padding-bottom: 82px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
}

.page-hero p {
  max-width: 720px;
  font-size: 1.08rem;
  color: var(--muted-strong);
}

.page-hero-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.page-hero-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.page-section {
  padding: 98px 0;
}

.page-section.bordered {
  border-top: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 64px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.detail-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024));
}

.detail-card h3 {
  margin: 18px 0 12px;
}

.detail-card p {
  margin-bottom: 0;
}

.detail-card .card-index {
  color: var(--gold);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 18px 18px 18px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  line-height: 1.62;
}

.feature-list strong {
  color: var(--white);
}

.image-band {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.image-band img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 1px solid var(--line);
}

.service-detail {
  display: grid;
  grid-template-columns: 140px minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.service-detail > span {
  color: var(--blue);
  font-weight: 900;
}

.service-detail h3 {
  margin-bottom: 12px;
  font-size: 1.52rem;
}

.service-detail ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  color: var(--muted-strong);
}

.service-detail li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--gold);
}

.process-table {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.process-row {
  display: grid;
  grid-template-columns: 110px minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.process-row span {
  color: var(--gold);
  font-weight: 900;
}

.process-row h3 {
  margin-bottom: 8px;
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.industry-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.industry-card h3 {
  margin-bottom: 12px;
}

.industry-card p {
  margin-bottom: 18px;
}

.industry-card span {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
  gap: 64px;
  align-items: start;
  padding: 108px 0;
}

.contact-info-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.contact-info-card + .contact-info-card {
  margin-top: 16px;
}

.contact-info-card h3 {
  margin-bottom: 12px;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: grid;
  }

  .hero,
  .split-section,
  .process-section,
  .company-section,
  .contact-section,
  .page-hero,
  .two-column,
  .image-band,
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual img {
    height: 480px;
  }

  .service-grid,
  .industry-grid,
  .detail-grid,
  .industry-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail,
  .process-row {
    grid-template-columns: 1fr;
  }

  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    width: calc(100% - 28px);
    margin-top: 12px;
    padding: 10px 12px;
  }

  .brand {
    width: 190px;
    height: 48px;
  }

  .brand img {
    width: 100%;
    height: 100%;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding-top: 126px;
  }

  .page-hero {
    gap: 28px;
    padding-top: 126px;
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-visual img {
    height: 360px;
  }

  .brand-strip,
  .service-grid,
  .industry-grid,
  .insight-grid,
  .contact-form,
  .footer-grid,
  .detail-grid,
  .industry-detail-grid {
    grid-template-columns: 1fr;
  }

  .brand-strip span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split-section,
  .services-section,
  .process-section,
  .insight-section,
  .industries-section,
  .company-section,
  .faq-section,
  .contact-section,
  .page-section,
  .contact-page-layout {
    padding: 84px 0;
  }

  .service-card {
    min-height: 0;
  }

  .detail-card,
  .industry-card {
    min-height: 0;
  }

  .service-detail {
    gap: 12px;
    padding: 28px 0;
  }

  .process-row {
    gap: 10px;
  }

  .process-visual img {
    aspect-ratio: 16 / 11;
  }

  .contact-form label:nth-child(5),
  .contact-form label:nth-child(6),
  .contact-form button,
  .form-note {
    grid-column: auto;
  }

  .final-cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
