:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --text: #f1f0ea;
  --muted: #97978e;
  --line: rgba(241, 240, 234, 0.17);
  --acid: #c8ff2f;
  --warm: #e9e6da;
  --display: "Manrope", "Arial", sans-serif;
  --page: clamp(20px, 4vw, 68px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

svg {
  display: block;
}

::selection {
  color: var(--bg);
  background: var(--acid);
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.13;
  background: radial-gradient(circle, var(--acid), transparent 68%);
  filter: blur(28px);
  transform: translate3d(calc(var(--mouse-x, 50vw) - 50%), calc(var(--mouse-y, 30vh) - 50%), 0);
  transition: opacity 0.25s ease;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 98px;
  padding: 0 var(--page);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.logo {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.05em;
}

.logo svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linejoin: round;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  color: #c6c5be;
  font-size: 13px;
  font-weight: 600;
}

.nav a,
.header-cta {
  transition: color 0.2s ease;
}

.nav a:hover,
.header-cta:hover {
  color: var(--acid);
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}

.header-cta span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--bg);
  border-radius: 50%;
  background: var(--acid);
  font-size: 16px;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: max(730px, 100svh);
  padding: 158px var(--page) 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.37;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: min(9vw, 135px) min(9vw, 135px);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.86) 0%, rgba(10, 10, 10, 0.52) 44%, rgba(10, 10, 10, 0.1) 100%);
}

.eyebrow {
  margin-bottom: clamp(24px, 4vh, 50px);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(200, 255, 47, 0.12);
}

.hero-title {
  position: relative;
  z-index: 2;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: clamp(53px, 8.2vw, 138px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.title-line {
  display: block;
}

.title-accent {
  width: fit-content;
  color: var(--acid);
  font-style: italic;
  font-weight: 500;
}

.title-mark {
  display: inline-block;
  margin-left: 0.12em;
  color: var(--text);
  font-size: 0.6em;
  font-style: normal;
  transform: translateY(-0.28em);
}

.title-indent {
  margin-left: clamp(0px, 12.5vw, 210px);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  margin-top: clamp(38px, 7vh, 80px);
  margin-left: clamp(0px, 12.5vw, 210px);
  max-width: 650px;
  display: flex;
  align-items: flex-end;
  gap: 36px;
}

.hero-bottom p {
  margin: 0;
  max-width: 490px;
  color: #b8b7af;
  font-size: clamp(16px, 1.35vw, 21px);
}

.circle-link {
  flex: 0 0 auto;
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.circle-link:hover {
  color: var(--bg);
  background: var(--acid);
  border-color: var(--acid);
}

.circle-link svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero-index {
  position: absolute;
  right: var(--page);
  bottom: 50px;
  color: #6f6f69;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  right: -7vw;
  top: 17%;
  width: min(48vw, 720px);
  aspect-ratio: 1;
  opacity: 0.78;
}

.orbit {
  position: absolute;
  inset: 5%;
  border: 1px solid rgba(200, 255, 47, 0.27);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 24px var(--acid);
}

.orbit::before { top: 13%; left: 16%; }
.orbit::after { right: -4px; top: 50%; }

.orbit-two {
  inset: 17%;
  border-color: rgba(241, 240, 234, 0.2);
  animation-direction: reverse;
  animation-duration: 12s;
}

.orbit-two::before { top: auto; bottom: 4%; left: 32%; }
.orbit-two::after { top: 8%; right: 22%; }

.orbit-core {
  position: absolute;
  inset: 29%;
  border-radius: 50%;
  border: 1px solid rgba(241, 240, 234, 0.15);
  background: radial-gradient(circle at 38% 34%, rgba(200, 255, 47, 0.48), rgba(200, 255, 47, 0.06) 31%, rgba(10, 10, 10, 0.5) 66%);
  box-shadow: inset 0 0 60px rgba(200, 255, 47, 0.08), 0 0 90px rgba(200, 255, 47, 0.08);
}

.orbit-label {
  position: absolute;
  padding: 7px 11px;
  color: #acaca4;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.label-one { top: 9%; left: 18%; }
.label-two { right: 5%; top: 52%; }
.label-three { left: 14%; bottom: 12%; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(95px, 11vw, 180px) var(--page);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 3fr;
  gap: 40px;
  align-items: start;
}

.section-kicker {
  padding-top: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker span {
  margin-right: 26px;
  color: var(--acid);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5.6vw, 88px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.service-list {
  margin-top: clamp(70px, 9vw, 135px);
  border-top: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 80px minmax(100px, 0.7fr) 2fr 60px;
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease, padding 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(-1 * var(--page));
  background: var(--acid);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}

.service-card:hover {
  color: var(--bg);
}

.service-card:hover::after {
  transform: scaleY(1);
}

.service-number {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.service-card:hover .service-number,
.service-card:hover .service-copy p {
  color: rgba(10, 10, 10, 0.63);
}

.service-icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.service-copy {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) 1.1fr;
  gap: 40px;
  align-items: center;
}

.service-copy h3 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 44px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.service-copy p {
  margin: 0;
  max-width: 510px;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 18px);
  transition: color 0.3s ease;
}

.service-arrow {
  justify-self: end;
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
  transform: translate(6px, -6px);
}

.cases {
  padding-top: 20px;
}

.cases-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.cases-head p {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.case-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 40px);
}

.case-card-wide {
  grid-column: 1 / -1;
}

.case-card {
  min-width: 0;
}

.case-visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: #151515;
}

.case-card-wide .case-visual {
  min-height: 650px;
}

.case-visual-web {
  padding: 8% 10% 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(200, 255, 47, 0.18), transparent 24%),
    linear-gradient(135deg, #24251f, #111 62%);
}

.case-visual-web::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
}

.browser-frame {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  transform: rotate(-2deg) translateY(24px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px 10px 0 0;
  background: #f3f0e6;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.45);
  transition: transform 0.55s cubic-bezier(.2,.8,.2,1);
}

.case-card:hover .browser-frame {
  transform: rotate(0) translateY(10px);
}

.browser-bar {
  height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #cdcbc2;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border: 1px solid #77766f;
  border-radius: 50%;
}

.browser-bar span {
  margin-left: auto;
  color: #99968e;
  font-size: 7px;
  letter-spacing: .12em;
}

.browser-content {
  min-height: 500px;
  padding: 26px 34px;
  color: #111;
  background: linear-gradient(118deg, #f3f0e6 50%, #d8ff6c 50%);
}

.mock-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.mock-nav b {
  margin-right: auto;
  font-size: 9px;
}

.mock-nav span {
  width: 32px;
  height: 3px;
  background: rgba(10, 10, 10, .45);
}

.mock-hero {
  position: relative;
  padding: 90px 0 70px;
}

.mock-hero small {
  display: block;
  margin-bottom: 24px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .2em;
}

.mock-hero strong {
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: .92;
  letter-spacing: -.07em;
}

.mock-hero i {
  position: absolute;
  right: 8%;
  top: 32%;
  width: 23%;
  aspect-ratio: 1;
  border: 1px solid rgba(10,10,10,.45);
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(10,10,10,.05), 0 0 0 40px rgba(10,10,10,.035);
}

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

.mock-cards span {
  height: 80px;
  border-top: 1px solid rgba(10,10,10,.42);
  background: linear-gradient(90deg, rgba(10,10,10,.08), transparent);
}

.visual-note {
  position: absolute;
  color: rgba(255,255,255,.5);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .16em;
}

.note-top { top: 24px; right: 25px; text-align: right; }
.note-bottom { left: 25px; bottom: 23px; }

.case-info {
  min-height: 170px;
  padding: 26px 0 0;
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  gap: 40px;
  align-items: start;
}

.case-type {
  display: block;
  margin-bottom: 9px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.case-info h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.case-info p {
  margin: 22px 0 0;
  max-width: 480px;
  color: var(--muted);
  font-size: 13px;
}

.case-link {
  margin-top: 22px;
  color: #bbb9b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-info-stack {
  grid-template-columns: 1fr auto;
}

.case-info-stack p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.case-visual-api {
  background: #c8ff2f;
}

.integration-map {
  position: absolute;
  inset: 10%;
}

.integration-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(10,10,10,.25);
  stroke-width: 1;
  stroke-dasharray: 4 5;
}

.map-node {
  position: absolute;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #111;
  border: 1px solid rgba(10,10,10,.45);
  border-radius: 50%;
  background: rgba(200,255,47,.82);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  backdrop-filter: blur(5px);
}

.node-crm { left: 2%; top: 5%; }
.node-api { right: 2%; top: 5%; }
.node-data { right: 4%; bottom: 1%; }

.node-core {
  left: 50%;
  top: 50%;
  width: 112px;
  height: 112px;
  color: var(--acid);
  border-color: #111;
  background: #111;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 18px rgba(10,10,10,.08), 0 0 0 36px rgba(10,10,10,.04);
}

.node-core b { font-size: 22px; }
.node-core i {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
}

.map-pulse {
  position: absolute;
  z-index: 3;
  width: 7px;
  height: 7px;
  border: 2px solid #111;
  border-radius: 50%;
  background: var(--acid);
}

.pulse-one { left: 29%; top: 31%; animation: pulse 2s ease-in-out infinite; }
.pulse-two { right: 30%; bottom: 30%; animation: pulse 2s .8s ease-in-out infinite; }

@keyframes pulse {
  50% { transform: scale(1.8); box-shadow: 0 0 0 8px rgba(10,10,10,.1); }
}

.case-visual-api .visual-note {
  color: rgba(10,10,10,.55);
}

.case-visual-ux {
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.13), transparent 25%),
    linear-gradient(145deg, #36323c, #151418 68%);
}

.phone {
  position: absolute;
  width: 230px;
  height: 460px;
  padding: 13px;
  color: #111;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 34px;
  background: #f1eee5;
  box-shadow: 0 35px 70px rgba(0,0,0,.4);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

.phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 3;
  width: 58px;
  height: 14px;
  border-radius: 10px;
  background: #111;
  transform: translateX(-50%);
}

.phone-front {
  z-index: 2;
  left: 51%;
  top: 10%;
  transform: rotate(5deg) translateX(-50%);
}

.phone-back {
  left: 23%;
  top: 22%;
  opacity: .5;
  transform: rotate(-10deg);
}

.case-card:hover .phone-front { transform: rotate(1deg) translateX(-50%) translateY(-8px); }
.case-card:hover .phone-back { transform: rotate(-6deg) translate(-8px, -4px); }

.phone-head {
  padding: 32px 8px 18px;
  display: grid;
  grid-template-columns: 30px 1fr;
  font-size: 7px;
}

.phone-head i {
  grid-row: span 2;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #d4ff5b;
}

.phone-head b { font-size: 11px; }

.phone-chart {
  position: relative;
  height: 135px;
  padding: 17px;
  overflow: hidden;
  border-radius: 17px;
  background: #171717;
  color: #fff;
}

.phone-chart small { display: block; color: #8c8c87; font-size: 7px; }
.phone-chart strong { display: block; margin-top: 4px; font-size: 17px; }
.phone-chart i {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -22px;
  height: 75px;
  border-radius: 50% 70% 0 0;
  border-top: 2px solid var(--acid);
  background: linear-gradient(rgba(200,255,47,.2), transparent);
  transform: rotate(-5deg);
}

.phone-actions {
  margin: 12px 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 7px;
}

.phone-actions span {
  height: 53px;
  border-radius: 12px;
  background: #dedbd2;
}

.phone-actions span:first-child { background: #d4ff5b; }
.phone-list { display: grid; gap: 8px; }
.phone-list i { height: 32px; border-radius: 8px; background: #e5e2d9; }

.phone-ui {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.phone-ui i { height: 100px; border-radius: 16px; background: #171717; }
.phone-ui b { width: 65%; height: 16px; background: #aaa79f; }
.phone-ui span { height: 55px; border-radius: 12px; background: #d9d6cd; }

.cases-note {
  margin-top: 65px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.approach {
  padding-top: clamp(95px, 11vw, 180px);
}

.approach-panel {
  position: relative;
  min-height: 720px;
  padding: clamp(28px, 4.5vw, 74px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--bg);
  background: var(--warm);
  overflow: hidden;
}

.approach-panel::before {
  content: "";
  position: absolute;
  right: 7%;
  top: -20%;
  width: min(35vw, 480px);
  aspect-ratio: 1;
  border: 1px solid rgba(10, 10, 10, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(10, 10, 10, 0.035), 0 0 0 140px rgba(10, 10, 10, 0.025);
}

.approach-top {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.section-kicker-dark {
  color: rgba(10, 10, 10, 0.55);
}

.section-kicker-dark span {
  color: var(--bg);
}

.panel-meta {
  color: rgba(10, 10, 10, 0.5);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.15em;
  text-align: right;
}

.approach-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: end;
}

.approach-main h2 {
  margin: 70px 0;
  font-size: clamp(54px, 8vw, 128px);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.approach-main h2 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bg);
  font-weight: 500;
}

.approach-main p {
  margin: 0 0 72px;
  max-width: 430px;
  font-size: clamp(16px, 1.4vw, 21px);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(10, 10, 10, 0.25);
}

.step {
  padding: 28px 28px 0 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 5px;
}

.step + .step {
  padding-left: 32px;
  border-left: 1px solid rgba(10, 10, 10, 0.2);
}

.step span {
  grid-row: span 2;
  color: rgba(10, 10, 10, 0.45);
  font-size: 10px;
  font-weight: 800;
}

.step strong {
  font-size: 15px;
}

.step small {
  color: rgba(10, 10, 10, 0.52);
  font-size: 11px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
  align-items: start;
}

.contact-side p {
  margin: 70px 0 0;
  max-width: 275px;
  color: var(--muted);
  font-size: 14px;
}

.contact-main a {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(45px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.065em;
}

.contact-main strong {
  width: fit-content;
  color: var(--acid);
  font-weight: 500;
  font-style: italic;
}

.contact-main i {
  position: absolute;
  right: 0;
  bottom: 50px;
  width: clamp(70px, 8vw, 120px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--bg);
  border-radius: 50%;
  background: var(--acid);
  font-size: clamp(30px, 4vw, 60px);
  font-style: normal;
  transition: transform 0.35s ease;
}

.contact-main a:hover i {
  transform: rotate(45deg) scale(1.06);
}

.site-footer {
  min-height: 120px;
  padding: 32px var(--page);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  color: #73736d;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

.logo-footer {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.title-line:nth-child(2) { transition-delay: 0.08s; }
.title-line:nth-child(3) { transition-delay: 0.16s; }

@media (max-width: 950px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-orbit {
    right: -18vw;
    top: 23%;
    width: 70vw;
    opacity: 0.55;
  }

  .section-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    margin-top: 40px;
  }

  .service-card {
    grid-template-columns: 40px 90px 1fr 30px;
    gap: 20px;
  }

  .service-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .approach-main {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .approach-main p {
    margin-bottom: 70px;
    max-width: 590px;
  }

  .contact-side p {
    margin-top: 28px;
  }

  .case-info {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-info p,
  .case-link {
    margin-top: 0;
  }

  .case-info-stack {
    grid-template-columns: 1fr auto;
  }

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

  .site-footer p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 640px) {
  .cursor-glow {
    display: none;
  }

  .site-header {
    height: 78px;
  }

  .logo svg {
    width: 32px;
    height: 32px;
  }

  .header-cta {
    font-size: 0;
  }

  .header-cta span {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .hero {
    min-height: 740px;
    padding-top: 124px;
    justify-content: flex-start;
  }

  .hero-grid {
    background-size: 70px 70px;
  }

  .eyebrow {
    margin-bottom: 56px;
  }

  .hero-title {
    font-size: clamp(48px, 15vw, 74px);
    line-height: 0.92;
  }

  .title-indent,
  .hero-bottom {
    margin-left: 0;
  }

  .title-indent {
    margin-top: 0.1em;
  }

  .title-mark {
    display: none;
  }

  .hero-bottom {
    margin-top: auto;
    padding-bottom: 25px;
    align-items: flex-end;
  }

  .hero-bottom p {
    font-size: 15px;
  }

  .circle-link {
    width: 48px;
    height: 48px;
  }

  .hero-index {
    display: none;
  }

  .hero-orbit {
    right: -40vw;
    top: 31%;
    width: 100vw;
    opacity: 0.52;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .service-list {
    margin-top: 65px;
  }

  .service-card {
    min-height: 0;
    padding: 32px 0;
    grid-template-columns: 28px 1fr 20px;
    gap: 12px;
    align-items: start;
  }

  .service-icon {
    display: none;
  }

  .service-copy h3 {
    font-size: 28px;
  }

  .service-copy p {
    padding-right: 10px;
    font-size: 14px;
  }

  .service-arrow {
    font-size: 20px;
  }

  .cases-head {
    align-items: start;
    gap: 30px;
  }

  .cases-head p {
    max-width: 180px;
    font-size: 11px;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card-wide {
    grid-column: auto;
  }

  .case-visual,
  .case-card-wide .case-visual {
    min-height: 420px;
  }

  .case-visual-web {
    padding: 17% 6% 0;
  }

  .browser-content {
    min-height: 360px;
    padding: 20px;
  }

  .mock-hero {
    padding: 70px 0;
  }

  .case-info,
  .case-info-stack {
    min-height: 210px;
    grid-template-columns: 1fr;
  }

  .case-info-stack p {
    grid-column: auto;
    grid-row: auto;
  }

  .case-link {
    margin-top: 4px;
  }

  .phone {
    width: 190px;
    height: 380px;
  }

  .phone-front { left: 58%; }
  .phone-back { left: 8%; }

  .phone-chart { height: 110px; }
  .phone-actions span { height: 40px; }

  .cases-note {
    align-items: flex-start;
    gap: 30px;
  }

  .cases-note span:last-child {
    text-align: right;
  }

  .approach-panel {
    min-height: 760px;
  }

  .approach-main h2 {
    margin: 80px 0 45px;
    font-size: 56px;
  }

  .approach-main p {
    margin-bottom: 56px;
    font-size: 15px;
  }

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

  .step,
  .step + .step {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(10, 10, 10, 0.14);
  }

  .steps .step:first-child {
    border-top: 0;
  }

  .contact-main a {
    padding-bottom: 120px;
    font-size: 46px;
  }

  .contact-main i {
    left: 0;
    right: auto;
    bottom: 24px;
    width: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
