:root {
  --ink: #111310;
  --paper: #f1efe8;
  --paper-deep: #e5e2d9;
  --accent: #f06435;
  --acid: #d9f15b;
  --muted: #6d7069;
  --line: rgba(17, 19, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 56px, 1480px);
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid rgba(241, 239, 232, 0.18);
  color: var(--paper);
}

.demo-two .site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  margin: 0;
  transform: translateX(-50%);
  background: rgba(17, 19, 16, 0.94);
  box-shadow: 0 0 0 100vmax rgba(17, 19, 16, 0.94);
  clip-path: inset(0 -100vmax);
  backdrop-filter: blur(14px);
}

.demo-two .site-header.is-scrolled {
  border-bottom-color: rgba(241, 239, 232, 0.28);
}

.demo-two .hero {
  margin-top: 0;
}

.demo-two .approach {
  background: var(--paper-deep);
}

.demo-two #services,
.demo-two #approach,
.demo-two #projects,
.demo-two #contact {
  scroll-margin-top: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.7px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: currentColor;
}

.brand-mark::before {
  width: 1px;
  height: 100%;
}

.brand-mark::after {
  width: 100%;
  height: 1px;
}

.brand-mark span {
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

nav > a:not(.nav-cta) {
  opacity: 0.68;
  transition: opacity 180ms ease;
}

nav > a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 12px 16px;
  border: 1px solid rgba(241, 239, 232, 0.42);
  border-radius: 2px;
}

.nav-cta span {
  margin-left: 16px;
  color: var(--accent);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  margin-top: -74px;
  padding: 178px max(28px, calc((100vw - 1480px) / 2)) 92px;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
  align-items: center;
  gap: 8vw;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px),
    radial-gradient(circle at 75% 50%, rgba(240, 100, 53, 0.09), transparent 33%),
    var(--ink);
  background-size: 64px 64px, 64px 64px, auto, auto;
  color: var(--paper);
}

.hero::after {
  position: absolute;
  right: -150px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(240, 100, 53, 0.3);
  border-radius: 50%;
  content: "";
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(64px, 7.1vw, 112px);
  font-weight: 600;
  letter-spacing: -0.067em;
  line-height: 0.88;
}

em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 680px;
  margin: 42px 0 0;
  color: rgba(241, 239, 232, 0.66);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 270px;
  padding: 17px 19px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--accent);
  color: #18130f;
}

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

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid rgba(241, 239, 232, 0.25);
  color: rgba(241, 239, 232, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  margin-left: 12px;
  color: var(--accent);
}

.system-card {
  position: relative;
  z-index: 2;
  min-width: 0;
  border: 1px solid rgba(241, 239, 232, 0.18);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
}

.system-topline,
.system-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  color: rgba(241, 239, 232, 0.45);
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.system-topline {
  border-bottom: 1px solid rgba(241, 239, 232, 0.12);
}

.system-footer {
  border-top: 1px solid rgba(241, 239, 232, 0.12);
}

.live-dot {
  color: var(--acid);
}

.live-dot::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  box-shadow: 0 0 12px currentColor;
}

.orbit {
  position: relative;
  min-height: 420px;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(241, 239, 232, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 58%;
  aspect-ratio: 1;
}

.ring-two {
  width: 86%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: rotate 40s linear infinite;
}

@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 120px;
  height: 120px;
  place-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 80px rgba(240, 100, 53, 0.16);
}

.core span {
  display: block;
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.node {
  position: absolute;
  padding: 9px 12px;
  border: 1px solid rgba(241, 239, 232, 0.25);
  background: #171a16;
  color: rgba(241, 239, 232, 0.68);
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.node::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

.node-shop { top: 15%; left: 11%; }
.node-erp { top: 23%; right: 7%; }
.node-api { bottom: 19%; left: 7%; }
.node-data { right: 12%; bottom: 12%; }

.statement {
  display: grid;
  padding: 110px max(28px, calc((100vw - 1480px) / 2));
  grid-template-columns: 0.7fr 2fr;
  gap: 6vw;
  border-bottom: 1px solid var(--line);
}

.statement > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.statement h2 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(39px, 5vw, 74px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.statement h2 span {
  color: #9a9b95;
}

.services {
  padding: 96px max(28px, calc((100vw - 1480px) / 2)) 130px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 28px;
}

.section-index {
  margin: 0;
  color: var(--muted);
  font-family: monospace;
  font-size: 11px;
}

.service-row {
  display: grid;
  padding: 42px 0 44px;
  grid-template-columns: 0.22fr 0.85fr 1.1fr 0.8fr;
  gap: 38px;
  border-top: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

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

.service-row:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(255,255,255,.32);
}

.service-row.featured {
  margin-right: -24px;
  margin-left: -24px;
  padding-right: 24px;
  padding-left: 24px;
  background: var(--ink);
  color: var(--paper);
}

.service-number {
  padding-top: 8px;
  color: var(--accent);
  font-family: monospace;
  font-size: 11px;
}

.service-title {
  position: relative;
}

.service-title h3 {
  max-width: 300px;
  margin: 0;
  font-size: clamp(25px, 2.2vw, 35px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.core-label {
  display: inline-block;
  margin: -18px 0 12px;
  color: var(--acid);
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.service-intro {
  max-width: 510px;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.featured .service-intro {
  color: rgba(241,239,232,.58);
}

.service-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-row li {
  position: relative;
  padding: 5px 0 5px 17px;
  color: #42443f;
  font-size: 13px;
  font-weight: 700;
}

.service-row li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.featured li {
  color: rgba(241,239,232,.78);
}

.softone {
  display: grid;
  padding: 120px max(28px, calc((100vw - 1480px) / 2));
  grid-template-columns: 0.55fr 1.45fr;
  gap: 6vw;
  background:
    radial-gradient(circle at 0% 100%, rgba(240, 100, 53, 0.16), transparent 28%),
    #191b18;
  color: var(--paper);
}

.softone-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 12px;
  color: rgba(241,239,232,.5);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: .12em;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px var(--acid);
}

.softone-copy h2 {
  margin: 0;
  font-size: clamp(50px, 6.5vw, 96px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .95;
}

.softone-copy > p {
  max-width: 760px;
  margin: 44px 0 58px;
  color: rgba(241,239,232,.62);
  font-size: 18px;
  line-height: 1.65;
}

.data-flow {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 16px;
}

.data-flow span {
  padding: 15px 17px;
  border: 1px solid rgba(241,239,232,.25);
  font-size: 12px;
  font-weight: 800;
}

.data-flow i {
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(240,100,53,.2));
}

.data-flow b {
  color: var(--acid);
  font-family: monospace;
  font-size: 9px;
  letter-spacing: .06em;
  text-align: center;
}

.approach {
  display: grid;
  padding: 120px max(28px, calc((100vw - 1480px) / 2));
  grid-template-columns: .8fr 1.2fr;
  gap: 9vw;
}

.approach-intro h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .96;
}

.approach-intro > p:last-child {
  max-width: 530px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.steps {
  border-top: 1px solid var(--line);
}

.steps article {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 55px 0.7fr 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.steps span {
  padding-top: 4px;
  color: var(--accent);
  font-family: monospace;
  font-size: 10px;
}

.steps h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -.03em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.showcase {
  padding: 120px max(28px, calc((100vw - 1480px) / 2)) 132px;
  background: var(--ink);
  color: var(--paper);
}

.showcase-head {
  display: grid;
  padding-bottom: 68px;
  grid-template-columns: 1.4fr .6fr;
  gap: 8vw;
  align-items: end;
}

.showcase-head h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .94;
}

.showcase-head > p {
  max-width: 460px;
  margin: 0 0 4px;
  color: rgba(241, 239, 232, .55);
  font-size: 15px;
  line-height: 1.65;
}

.project-list {
  border-top: 1px solid rgba(241, 239, 232, .17);
}

.project-card {
  display: grid;
  padding: 56px 0;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  border-bottom: 1px solid rgba(241, 239, 232, .17);
}

.project-visual {
  position: relative;
  min-height: 420px;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(rgba(17,19,16,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,16,.08) 1px, transparent 1px),
    var(--accent);
  background-size: 35px 35px;
}

.project-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 384px;
  border: 1px solid rgba(17, 19, 16, .38);
  object-fit: cover;
  object-position: top center;
  box-shadow: 14px 16px 0 rgba(17, 19, 16, .17);
  transform: rotate(-.6deg);
  transition: transform 300ms ease, filter 300ms ease;
}

.project-card:hover .project-visual img {
  filter: saturate(1.05);
  transform: rotate(0) translateY(-4px);
}

.project-visual.content {
  background-color: var(--acid);
}

.project-visual.commerce {
  background-color: #c6b8ff;
}

.project-count {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: rgba(17,19,16,.65);
  font-family: monospace;
  font-size: 9px;
  font-weight: 800;
}

.project-type {
  margin: 0 0 22px;
  color: var(--accent);
  font-family: monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.project-copy h3 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .95;
}

.project-copy > p:not(.project-type) {
  max-width: 480px;
  margin: 28px 0 34px;
  color: rgba(241,239,232,.58);
  font-size: 15px;
  line-height: 1.65;
}

.project-copy ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.project-copy li {
  padding: 8px 10px;
  border: 1px solid rgba(241,239,232,.22);
  color: rgba(241,239,232,.72);
  font-family: monospace;
  font-size: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact {
  display: flex;
  min-height: 560px;
  padding: 100px max(28px, calc((100vw - 1480px) / 2));
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  background: var(--accent);
  color: var(--ink);
}

.contact .eyebrow {
  color: rgba(17,19,16,.65);
}

.contact h2 {
  margin: 0;
  font-size: clamp(60px, 8vw, 125px);
  font-weight: 600;
  letter-spacing: -.07em;
  line-height: .82;
}

.contact h2 em {
  color: var(--ink);
}

.contact-button {
  display: flex;
  width: min(100%, 390px);
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(17,19,16,.55);
  border-bottom: 1px solid rgba(17,19,16,.55);
  font-size: 14px;
  font-weight: 800;
  transition: padding 180ms ease;
}

.contact-button:hover {
  padding-right: 12px;
  padding-left: 12px;
}

.contact-button strong {
  font-size: 25px;
}

footer {
  display: grid;
  padding: 30px max(28px, calc((100vw - 1480px) / 2));
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  align-items: center;
  background: var(--ink);
  color: rgba(241,239,232,.52);
  font-size: 10px;
}

.footer-brand {
  color: var(--paper);
}

footer p {
  margin: 0;
  text-align: center;
}

footer p:last-child {
  text-align: right;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .system-card {
    width: min(100%, 620px);
  }

  .service-row {
    grid-template-columns: 50px 1fr 1.3fr;
  }

  .service-row ul {
    grid-column: 2 / -1;
    columns: 2;
  }

  .softone,
  .approach {
    grid-template-columns: 1fr;
  }

  .showcase-head {
    grid-template-columns: 1fr;
  }

  .softone-copy {
    max-width: 900px;
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 36px);
  }

  nav > a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 10px 12px;
  }

  .hero {
    min-height: auto;
    padding: 154px 18px 70px;
    background-size: 42px 42px;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .hero-lead {
    margin-top: 32px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    width: 100%;
  }

  .orbit {
    min-height: 330px;
  }

  .core {
    width: 100px;
    height: 100px;
  }

  .statement {
    padding-top: 78px;
    padding-bottom: 78px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services {
    padding-top: 70px;
    padding-bottom: 88px;
  }

  .service-row {
    grid-template-columns: 34px 1fr;
    gap: 22px;
  }

  .service-intro,
  .service-row ul {
    grid-column: 2;
  }

  .service-row ul {
    columns: 1;
  }

  .service-row.featured {
    margin-right: -12px;
    margin-left: -12px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .softone,
  .approach {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .showcase {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .showcase-head {
    padding-bottom: 48px;
  }

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

  .project-visual {
    min-height: 310px;
    padding: 10px;
  }

  .project-visual img {
    min-height: 290px;
    box-shadow: 8px 9px 0 rgba(17, 19, 16, .17);
  }

  .data-flow {
    grid-template-columns: 1fr;
  }

  .data-flow i {
    width: 1px;
    height: 20px;
    margin: 0 auto;
  }

  .steps article {
    grid-template-columns: 35px 1fr;
  }

  .steps p {
    grid-column: 2;
  }

  .contact {
    min-height: 520px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact h2 {
    font-size: clamp(53px, 17vw, 82px);
  }

  footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  footer p,
  footer p:last-child {
    text-align: left;
  }
}

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

  .ring-two {
    animation: none;
  }
}
