:root {
  --ink: #0b0d0c;
  --muted: #b9b2a4;
  --paper: #101311;
  --panel: #171a17;
  --panel-2: #f3ecdc;
  --line: #3a3329;
  --orange: #f26a16;
  --orange-dark: #b74408;
  --ivory: #f4eddf;
  --charcoal: #090b0a;
  --smoke: #242823;
  --shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

* {
  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(--ivory);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .08));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 4px;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, .55));
}

nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}

nav a {
  opacity: .92;
}

nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 112px clamp(20px, 6vw, 88px) 54px;
  color: var(--ivory);
  background: #000;
}

.hero-art,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 34%, rgba(242, 106, 22, .28), transparent 25%),
    linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .72) 48%, rgba(0, 0, 0, .5) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .18) 56%);
}

.hero-content {
  width: min(1180px, 100%);
}

.hero-lockup {
  display: grid;
  grid-template-columns: minmax(240px, 390px) minmax(0, 720px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.hero-logo {
  width: min(100%, 390px);
  justify-self: center;
  border-radius: 8px;
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, .7));
}

.hero-copy-block {
  border-left: 3px solid var(--orange);
  padding-left: clamp(20px, 3vw, 34px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .14em;
  color: var(--orange);
}

.hero .eyebrow {
  color: var(--orange);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .92;
  letter-spacing: 0;
  max-width: 900px;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

p {
  line-height: 1.65;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(244, 237, 223, .88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 13px 19px;
  border: 1px solid transparent;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.1;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

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

.button.primary {
  color: #090b0a;
  background: var(--orange);
  box-shadow: inset 0 0 0 1px rgba(244, 237, 223, .22);
}

.button.primary:hover {
  background: #ff7b23;
}

.button.secondary {
  color: var(--ivory);
  border-color: rgba(244, 237, 223, .58);
  background: rgba(0, 0, 0, .32);
}

.intro,
.section,
.platforms,
.feature-band,
.contact {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
  background:
    linear-gradient(135deg, rgba(242, 106, 22, .14), transparent 36%),
    var(--charcoal);
  border-top: 2px solid var(--orange);
}

.intro p:last-child,
.feature-band > p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(244, 237, 223, .08) inset;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 4px;
  color: #090b0a;
  background: var(--orange);
  font-size: 12px;
  font-weight: 850;
}

.service-card p,
.platform-list p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.platforms {
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(242, 106, 22, .18), transparent 38%),
    #050606;
}

.platforms .section-kicker {
  color: var(--orange);
}

.platform-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 237, 223, .24);
  border-left: 1px solid rgba(244, 237, 223, .24);
}

.platform-list article {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid rgba(244, 237, 223, .24);
  border-bottom: 1px solid rgba(244, 237, 223, .24);
}

.platform-list p {
  color: rgba(244, 237, 223, .76);
}

.process {
  color: #12100d;
  background: var(--panel-2);
}

.timeline {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 2px solid var(--orange);
}

.timeline li {
  position: relative;
  padding: 26px 24px 0 0;
}

.timeline li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-top: -18px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #090b0a;
  background: var(--orange);
  font-size: 13px;
  font-weight: 850;
}

.timeline span {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 850;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, 520px);
  gap: clamp(28px, 7vw, 98px);
  align-items: center;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(242, 106, 22, .24), transparent 42%),
    #050606;
  border-top: 1px solid rgba(244, 237, 223, .16);
  border-bottom: 1px solid rgba(244, 237, 223, .16);
}

.feature-band .section-kicker {
  color: var(--orange);
}

.feature-band > p {
  color: rgba(244, 237, 223, .78);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 560px);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
  color: #12100d;
  background: var(--panel-2);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  border: 2px solid #12100d;
  border-radius: 8px;
  background: #fff8ea;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #2f2921;
  border-radius: 6px;
  padding: 13px 12px;
  font: inherit;
  color: var(--ink);
  background: #fffdf8;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 106, 22, .28);
  border-color: var(--orange);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: var(--ivory);
  background: #000;
  border-top: 1px solid var(--orange);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  font-weight: 850;
}

@media (max-width: 1000px) {
  .service-grid,
  .platform-list,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .feature-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
  }
}

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

  nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 14px;
    max-width: 220px;
    text-align: right;
    font-size: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .hero {
    min-height: 82vh;
    padding: 92px 20px 36px;
  }

  .hero-lockup {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-logo {
    width: min(54vw, 190px);
    justify-self: start;
  }

  .hero-copy-block {
    border-left: 0;
    padding-left: 0;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 76% 26%, rgba(242, 106, 22, .28), transparent 34%),
      linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .66)),
      linear-gradient(0deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .14));
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .platform-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .platform-list {
    border-left: 0;
  }

  .platform-list article {
    min-height: 0;
  }

  .timeline {
    border-top: 0;
    gap: 18px;
  }

  .timeline li {
    padding: 0 0 0 56px;
  }

  .timeline li::before {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    display: grid;
  }
}
