:root {
  --ink: #111417;
  --muted: #5a646e;
  --paper: #f7f8f7;
  --line: #d8dedc;
  --white: #ffffff;
  --teal: #10b5c2;
  --gold: #c9972e;
  --green: #2f9b6d;
  --charcoal: #1d2528;
  --soft: #eaf4f1;
  --shadow: 0 18px 45px rgba(24, 31, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  line-height: 1.05;
}

.brand-logo-shell {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: #030303;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 19, 22, 0.91) 0%, rgba(13, 19, 22, 0.72) 36%, rgba(13, 19, 22, 0.12) 80%),
    linear-gradient(180deg, rgba(13, 19, 22, 0.32) 0%, rgba(13, 19, 22, 0.05) 54%, rgba(13, 19, 22, 0.76) 100%);
}

.hero-content {
  position: relative;
  width: min(740px, calc(100% - 36px));
  padding: 160px 0 84px clamp(18px, 7vw, 96px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3.35rem, 9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button.primary {
  background: var(--teal);
  color: #041316;
}

.button.primary.dark {
  background: var(--charcoal);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.intro-band,
.process-band,
.cta-band {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro-band {
  background: var(--white);
}

.intro-grid,
.split-section,
.cta-band {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.intro-grid p:not(.section-kicker),
.split-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 108px) 0;
}

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

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

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card p,
.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
}

.icon-dot {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
}

.icon-dot.cyan {
  background: var(--teal);
}

.icon-dot.gold {
  background: var(--gold);
}

.icon-dot.green {
  background: var(--green);
}

.process-band {
  background: var(--soft);
}

.process-band .section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
}

.timeline {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 20, 23, 0.22);
}

.timeline article {
  min-height: 210px;
  padding: 28px 18px 0 0;
}

.timeline span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.domain-panel {
  display: grid;
  gap: 12px;
}

.domain-panel div {
  padding: 18px;
  border-left: 5px solid var(--teal);
  background: var(--white);
  box-shadow: var(--shadow);
}

.domain-panel div:nth-child(2) {
  border-color: var(--gold);
}

.domain-panel div:nth-child(3) {
  border-color: var(--green);
}

.domain-panel span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.domain-panel strong {
  display: block;
  font-size: clamp(0.95rem, 2vw, 1.16rem);
}

.cta-band {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--gold);
  color: #17130a;
}

.cta-band > div,
.cta-band > a {
  width: min(1180px, 100%);
}

.cta-band .section-kicker {
  color: #47340d;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  width: clamp(112px, 18vw, 178px);
  height: auto;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #030303;
}

.footer-brand div {
  display: grid;
  gap: 5px;
}

.footer-brand span:first-child {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .brand span:last-child {
    max-width: 160px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 19, 22, 0.93) 0%, rgba(13, 19, 22, 0.72) 64%, rgba(13, 19, 22, 0.32) 100%),
      linear-gradient(180deg, rgba(13, 19, 22, 0.34) 0%, rgba(13, 19, 22, 0.08) 48%, rgba(13, 19, 22, 0.8) 100%);
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    padding: 128px 0 54px 16px;
  }

  .intro-grid,
  .split-section,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .timeline article {
    min-height: auto;
    padding: 22px 0;
    border-bottom: 1px solid rgba(17, 20, 23, 0.15);
  }

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

@media (max-width: 480px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-logo-shell {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4.8rem);
  }

  .domain-panel div {
    padding: 16px;
  }
}
