:root {
  --ink: #090a0b;
  --coal: #0d0f10;
  --steel: #141719;
  --paper: #ece9e3;
  --white: #f5f3ee;
  --muted: #9a9b99;
  --ember: #f06422;
  --hot: #ff7b35;
  --line: rgba(255, 255, 255, .12);
  --shell: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(.2, .75, .25, 1)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65
}

body.menu-open {
  overflow: hidden
}

a {
  color: inherit
}

button {
  font: inherit
}

.shell {
  width: var(--shell);
  margin-inline: auto
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%)
}

.skip-link:focus {
  transform: none
}

.site-header {
  position: absolute;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid var(--line)
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 34px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.17rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-decoration: none;
  white-space: nowrap
}

.brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain
}

.brand-text>span,
em {
  color: var(--ember);
  font-style: normal
}

.brand-line {
  margin: 0 auto 0 0;
  color: #bbb;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .2em
}

.brand-line i,
.hero-services i {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 8px 2px;
  background: var(--ember)
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px
}

.site-nav a {
  color: #c4c4c2;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ember)
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink)
}

.hero-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 7, .99), rgba(5, 6, 7, .89) 39%, rgba(5, 6, 7, .18) 74%), linear-gradient(0deg, rgba(5, 6, 7, .7), transparent 45%), url("../bg.jpg") 61% center/cover no-repeat;
  animation: hero-in 1.2s var(--ease) both
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 58px
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: #a8aaa8;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase
}

.eyebrow span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ember);
  border: 1px solid rgba(240, 100, 34, .5);
  font-size: .56rem
}

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

h1,
.heading h2,
.players h2,
.contact h2 {
  line-height: .98;
  letter-spacing: -.055em
}

h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(4.4rem, 7.3vw, 7.4rem)
}

.hero h2 {
  margin: 0 0 22px;
  color: #d5d3ce;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  line-height: 1.16;
  letter-spacing: -.025em
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: #a6a6a3;
  font-size: 1.02rem
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: .25s var(--ease)
}

.solid {
  background: var(--ember);
  border-color: var(--ember)
}

.solid:hover {
  background: var(--hot);
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(240, 100, 34, .25)
}

.ghost {
  border-color: rgba(255, 255, 255, .35)
}

.ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .06)
}

.hero-services {
  margin: 52px 0 0;
  color: #777a79;
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase
}

.section {
  padding: clamp(90px, 10vw, 145px) 0
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(65px, 10vw, 145px)
}

.heading h2,
.players h2 {
  margin: 0;
  font-size: clamp(3.25rem, 5.8vw, 6.1rem)
}

.prose {
  max-width: 620px
}

.prose p {
  color: var(--muted)
}

.prose .lead {
  color: #deddd8;
  font-size: 1.18rem
}

.pull {
  margin-top: 35px;
  padding-left: 22px;
  border-left: 2px solid var(--ember);
  color: #d9d7d2 !important;
  font-size: 1.18rem
}

.pull strong {
  color: var(--ember)
}

.about {
  background: var(--coal)
}

.services {
  background: var(--steel)
}

.services .heading,
.reasons .heading {
  margin-bottom: 58px
}

.forge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line)
}

.card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: .3s var(--ease)
}

.card:nth-child(2n) {
  border-right: 0
}

.card:nth-child(n+3) {
  border-bottom: 0
}

.card:hover {
  background: #1a1e20;
  box-shadow: inset 0 -3px var(--ember)
}

.number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #45494a;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1
}

.mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  color: var(--ember);
  border: 1px solid rgba(240, 100, 34, .45);
  font-size: 1.35rem
}

.mark.code {
  font-size: .82rem;
  font-weight: 800
}

.card h3 {
  margin-bottom: 0;
  font-size: 1.65rem;
  letter-spacing: .08em;
  text-transform: uppercase
}

.card h4 {
  margin: 3px 0 14px;
  color: var(--ember);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase
}

.card>p:not(.list) {
  color: var(--muted)
}

.list {
  margin: auto 0 0;
  padding-top: 20px;
  color: #c5c4c0;
  border-top: 1px solid var(--line);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase
}

.craft {
  background: #292d2f;
  color: var(--white)
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 90px
}

.craft .prose p,
.no-cms .prose p {
  color: #b2b3b0
}

.craft .prose .lead,
.no-cms .prose .lead {
  color: #f0eee9
}

.craft .eyebrow,
.no-cms .eyebrow {
  color: #a8aaa8
}

.ai {
  grid-column: 1/-1;
  position: relative;
  margin-top: 34px;
  padding: 54px clamp(34px, 7vw, 90px);
  overflow: hidden;
  color: var(--white);
  background: #111315;
  border-left: 3px solid var(--ember)
}

.ai:after {
  content: "AI";
  position: absolute;
  right: 5%;
  bottom: -32px;
  color: rgba(255, 255, 255, .035);
  font-size: 12rem;
  font-weight: 900;
  line-height: 1
}

.label {
  color: var(--ember);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase
}

.ai h3 {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  line-height: 1
}

.ai p {
  position: relative;
  z-index: 1;
  max-width: 750px;
  color: #a7a8a6
}

.ai strong {
  display: block;
  margin-top: 30px;
  color: #e8e5df;
  font-size: 1.1rem
}

.no-cms {
  color: var(--white);
  background: #202426
}

.statement {
  margin: 30px 0;
  color: var(--white) !important;
  font-size: 1.35rem;
  font-weight: 800
}

.checks {
  margin: 30px 0;
  padding: 0;
  list-style: none
}

.checks li {
  padding: 13px 0 13px 27px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.checks li:before {
  content: "—";
  margin-left: -27px;
  margin-right: 12px;
  color: var(--ember)
}

.reasons {
  background: var(--coal)
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.reason {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.reason span {
  color: var(--ember);
  font-size: .6rem;
  font-weight: 800
}

.reason h3 {
  margin: 46px 0 9px;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase
}

.reason p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem
}

.old-hands {
  background: var(--steel)
}

.players {
  position: relative;
  padding: clamp(100px, 12vw, 175px) 0;
  overflow: hidden;
  background: #08090a
}

.players:before {
  content: "P1 + P2";
  position: absolute;
  right: -2vw;
  bottom: -4vw;
  color: rgba(255, 255, 255, .025);
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 900;
  line-height: 1
}

.players-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 100px
}

.player-copy {
  max-width: 530px
}

.player-copy p {
  color: var(--muted)
}

.player-copy .lead {
  color: #dddcd7;
  font-size: 1.25rem;
  line-height: 1.4
}

.player-copy strong {
  display: block;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 1.25rem
}

.contact {
  text-align: center;
  background: #111416
}

.contact-inner {
  max-width: 830px
}

.contact .eyebrow {
  justify-content: center
}

.contact h2 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 8vw, 8rem)
}

.contact-inner>p {
  color: var(--muted)
}

.contact .idea {
  margin: 28px auto;
  color: #bcbcb8
}

.contact .idea strong {
  color: var(--white);
  font-size: 1.3rem
}

.contact h3 {
  margin: 38px 0 30px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1
}

.contact .button {
  min-width: 250px
}

.site-footer {
  padding: 65px 0 25px;
  background: #050606
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
  padding-bottom: 55px
}

.footer-main>div:first-child p {
  margin: 14px 0 0;
  color: #737674;
  font-size: .57rem;
  letter-spacing: .17em
}

.origin {
  color: #8f918f;
  text-align: center
}

.footer-links {
  display: grid;
  gap: 7px;
  justify-items: end
}

.footer-links a {
  color: #a9aaa8;
  font-size: .78rem;
  text-decoration: none
}

.footer-links a:hover {
  color: var(--ember)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: #5e6160;
  border-top: 1px solid var(--line);
  font-size: .6rem;
  letter-spacing: .09em;
  text-transform: uppercase
}

.footer-bottom a {
  text-decoration: none
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.03)
  }
}

@media(max-width:960px) {
  .brand-line {
    display: none
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
    margin-left: auto;
    cursor: pointer
  }

  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(7, 8, 9, .98);
    transform: translateX(100%);
    transition: transform .3s var(--ease)
  }

  .site-nav.is-open {
    transform: none
  }

  .site-nav a {
    font-size: .9rem
  }

  .hero-image {
    opacity: .72;
    background-position: 66% center
  }

  .split,
  .players-inner {
    grid-template-columns: 1fr;
    gap: 55px
  }

  .craft-grid {
    grid-template-columns: 1fr
  }

  .ai {
    grid-column: auto
  }

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

@media(max-width:640px) {
  :root {
    --shell: min(100% - 30px, 1180px)
  }

  .header-inner {
    min-height: 74px
  }

  .brand {
    font-size: .95rem
  }

  .brand img {
    width: 32px;
    height: 32px;
    flex-basis: 32px
  }

  .hero {
    min-height: 780px
  }

  .hero-image {
    opacity: .55;
    background-position: 68% center
  }

  .hero-content {
    padding-top: 115px
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5rem)
  }

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

  .hero-services {
    line-height: 2.2
  }

  .heading h2,
  .players h2 {
    font-size: clamp(3rem, 14vw, 4.6rem)
  }

  .forge-grid,
  .reason-grid {
    grid-template-columns: 1fr
  }

  .card {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
    padding: 30px
  }

  .card:last-child {
    border-bottom: 0 !important
  }

  .reason {
    min-height: 190px
  }

  .footer-main {
    grid-template-columns: 1fr
  }

  .origin {
    text-align: left
  }

  .footer-links {
    justify-items: start
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}
