:root {
  color-scheme: dark;
  --black: #0d0e0d;
  --black-soft: #151615;
  --black-raised: #1b1c1b;
  --paper: #f2f0e9;
  --paper-soft: #e8e5dc;
  --white: #fffef8;
  --ink: #111211;
  --muted-dark: #696b67;
  --muted-light: #9a9c97;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(17, 18, 17, 0.17);
  --accent: #9cf45b;
  --mint: #67edaa;
  --violet: #7148ff;
  --display: "Space Grotesk", "Arial Narrow", Arial, sans-serif;
  --sans: "Manrope", "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 28px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.shell {
  width: min(1320px, calc(100% - 72px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 50%;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transform: translate(-50%, -160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 16px;
  right: 0;
  left: 0;
}

.header-inner {
  display: grid;
  min-height: 68px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 9px 10px 9px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(13, 14, 13, 0.82);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(156, 244, 91, 0.1);
}

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

.site-nav a {
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.header-contact {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 24px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.header-contact:hover {
  background: var(--mint);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 950px;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 35%, rgba(113, 72, 255, 0.15), transparent 25%),
    radial-gradient(circle at 52% 78%, rgba(103, 237, 170, 0.07), transparent 26%),
    var(--black);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 90px 90px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 88%);
}

.hero-layout {
  position: relative;
  min-height: 950px;
  padding-top: 152px;
  padding-bottom: 150px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 1050px;
  animation: reveal-up 720ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.hero-kicker span::before {
  width: 26px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.2rem, 8.5vw, 9rem);
  font-weight: 690;
  letter-spacing: -0.085em;
  line-height: 0.79;
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
}

.outline-word {
  color: transparent;
  -webkit-text-stroke: 1.7px var(--accent);
  white-space: nowrap;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 92px;
  right: -1%;
  width: min(42vw, 550px);
  height: 720px;
  overflow: visible;
  animation: portrait-in 850ms 120ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-portrait {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: visible;
  mask-image: linear-gradient(to bottom, #000 0%, #000 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 86%, transparent 100%);
}

.hero-portrait::after {
  display: none;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  filter: none;
  object-fit: cover;
  object-position: center top;
}

.hero-tech-stage {
  position: absolute;
  z-index: 0;
  top: 146px;
  left: -126px;
  width: 720px;
  height: 440px;
  pointer-events: none;
}

.hero-ui-window {
  position: absolute;
  inset: 48px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 19px;
  background: rgba(13, 14, 13, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 35px 80px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-ui-chrome {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-ui-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.hero-ui-chrome span:nth-child(2) {
  background: rgba(156, 244, 91, 0.42);
}

.hero-ui-chrome span:nth-child(3) {
  background: rgba(113, 72, 255, 0.55);
}

.hero-ui-canvas {
  position: relative;
  height: calc(100% - 46px);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-ui-lines {
  position: absolute;
  top: 42px;
  left: 28px;
  display: grid;
  gap: 13px;
  width: 145px;
}

.hero-ui-lines span {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-ui-lines span:nth-child(2) {
  width: 76%;
}

.hero-ui-lines span:nth-child(3) {
  width: 92%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-ui-lines span:nth-child(4) {
  width: 55%;
  height: 2px;
  background: rgba(156, 244, 91, 0.28);
}

.hero-ui-frame {
  position: absolute;
  top: 30px;
  right: 28px;
  width: 142px;
  height: 124px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background:
    linear-gradient(
      to top right,
      transparent calc(50% - 0.5px),
      rgba(255, 255, 255, 0.11) 50%,
      transparent calc(50% + 0.5px)
    ),
    linear-gradient(
      to bottom right,
      transparent calc(50% - 0.5px),
      rgba(255, 255, 255, 0.11) 50%,
      transparent calc(50% + 0.5px)
    );
}

.hero-ui-card {
  position: absolute;
  right: -18px;
  bottom: 0;
  display: grid;
  width: 138px;
  height: 90px;
  grid-template-columns: 15px 1fr;
  gap: 9px 12px;
  align-content: center;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 12px;
  background: rgba(13, 14, 13, 0.66);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-ui-card i {
  width: 9px;
  height: 9px;
  grid-row: 1 / span 3;
  align-self: start;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 6px rgba(113, 72, 255, 0.12);
}

.hero-ui-card span {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-ui-card span:nth-of-type(2) {
  width: 82%;
  background: rgba(156, 244, 91, 0.24);
}

.hero-ui-card span:nth-of-type(3) {
  width: 58%;
}

.hero-ui-dots {
  position: absolute;
  top: 0;
  right: 22px;
  width: 76px;
  height: 48px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.22) 1.4px, transparent 1.8px);
  background-size: 13px 13px;
}

.hero-ui-cross {
  position: absolute;
  z-index: 2;
  width: 19px;
  height: 19px;
}

.hero-ui-cross::before,
.hero-ui-cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.25);
  content: "";
  transform: translate(-50%, -50%);
}

.hero-ui-cross::before {
  width: 19px;
  height: 1px;
}

.hero-ui-cross::after {
  width: 1px;
  height: 19px;
}

.hero-ui-cross-one {
  top: 38px;
  left: -26px;
}

.hero-ui-cross-two {
  right: -42px;
  bottom: 108px;
  transform: scale(0.7);
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(156, 244, 91, 0.16);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-orbit::before {
  width: 11px;
  height: 11px;
  background: var(--accent);
}

.hero-orbit::after {
  width: 8px;
  height: 8px;
  background: var(--violet);
}

.hero-orbit-one {
  top: 76px;
  right: -180px;
  width: 760px;
  height: 760px;
}

.hero-orbit-one::before {
  top: 120px;
  left: 72px;
}

.hero-orbit-one::after {
  right: 110px;
  bottom: 122px;
}

.hero-orbit-two {
  top: 157px;
  right: -98px;
  width: 590px;
  height: 590px;
  border-color: rgba(255, 255, 255, 0.07);
}

.hero-orbit-two::before {
  top: 50%;
  left: -6px;
  width: 9px;
  height: 9px;
}

.hero-orbit-two::after {
  right: 82px;
  bottom: 61px;
}

.hero-note {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 165px;
  width: min(390px, 31%);
  padding: 22px 0 0 24px;
  border-left: 1px solid var(--accent);
  background: linear-gradient(90deg, rgba(13, 14, 13, 0.74), rgba(13, 14, 13, 0.36));
}

.hero-note > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.91rem;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

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

.button-accent {
  background: var(--accent);
  color: var(--ink);
}

.button-accent:hover {
  background: var(--mint);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-facts {
  position: absolute;
  z-index: 5;
  bottom: 64px;
  left: 0;
  display: grid;
  width: min(650px, 54%);
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.hero-facts div {
  padding: 17px 18px 0 0;
}

.hero-facts div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line-dark);
}

.hero-facts dt {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 620;
}

.hero-facts dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-marquee {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-width: max-content;
  height: 40px;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  padding-inline: 24px;
  border-top: 1px solid rgba(17, 18, 17, 0.16);
  background: var(--accent);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.hero-marquee i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portrait-in {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.section {
  padding: 140px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 3fr) minmax(0, 9fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
  margin-bottom: 88px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 11px 0 0;
  color: var(--muted-dark);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.55rem;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.43);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 6.5vw, 7rem);
  font-weight: 590;
  letter-spacing: -0.07em;
  line-height: 0.94;
  text-wrap: balance;
}

.work {
  position: relative;
  z-index: 5;
  overflow: clip;
  border-radius: 66px 66px 0 0;
  background: var(--paper);
  color: var(--ink);
}

.work::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 88px;
  height: 5px;
  border-radius: 0 0 99px 99px;
  background: var(--violet);
  content: "";
  transform: translateX(-50%);
}

.work-heading h2 {
  max-width: 980px;
}

.case-list {
  position: relative;
  padding-bottom: 18vh;
  border-bottom: 1px solid var(--line-light);
}

.case-study {
  --stack-top: 94px;
  --stack-layer: 3;

  position: sticky;
  z-index: var(--stack-layer);
  top: var(--stack-top);
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(275px, 4fr) minmax(0, 8fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: stretch;
  margin-bottom: 24vh;
  padding: 90px clamp(24px, 3vw, 42px) 34px;
  border: 1px solid rgba(17, 18, 17, 0.13);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 -22px 60px rgba(17, 18, 17, 0.09);
}

.case-study:nth-child(2) {
  --stack-top: 158px;
  --stack-layer: 4;

  background: #f0edf8;
}

.case-study:nth-child(3) {
  --stack-top: 222px;
  --stack-layer: 5;

  margin-bottom: 0;
  background: #eaf3ee;
}

.case-study::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 64px;
  align-items: center;
  padding: 0 clamp(24px, 3vw, 42px);
  border-bottom: 1px solid rgba(17, 18, 17, 0.11);
  border-radius: 30px 30px 0 0;
  color: var(--ink);
  content: attr(data-stack-label);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.case-study::after {
  position: absolute;
  top: 28px;
  right: clamp(24px, 3vw, 42px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}

.case-study:nth-child(1)::after {
  background: #83be20;
}

.case-study:nth-child(3)::after {
  background: #148e62;
}

.case-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.case-number {
  margin: 0;
  color: var(--muted-dark);
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.case-type {
  margin: 0 0 13px;
  color: var(--muted-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-copy h3 {
  max-width: 390px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 610;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.case-description {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--muted-dark);
  font-size: 0.89rem;
  line-height: 1.7;
}

.case-footer {
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

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

.tag-list li {
  padding: 8px 11px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: #464844;
  font-size: 0.58rem;
  font-weight: 700;
}

.case-link,
.case-domain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid var(--line-light);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.case-link span {
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.case-link:hover span {
  transform: translate(3px, -3px);
}

.case-domain {
  color: var(--muted-dark);
  font-weight: 650;
}

.case-visual {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}

.case-visual::before {
  position: absolute;
  top: -130px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.case-visual::after {
  position: absolute;
  bottom: -60px;
  left: -45px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(17, 18, 17, 0.16);
  border-radius: 50%;
  content: "";
}

.visual-commerce {
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.34), transparent 22%),
    #b7ef54;
}

.visual-dealer {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.15), transparent 24%),
    var(--violet);
}

.visual-corporate {
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.22), transparent 24%),
    var(--mint);
}

.project-screenshot {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 42px;
  width: calc(100% - 84px);
  height: auto;
  max-height: calc(100% - 84px);
  border: 1px solid rgba(17, 18, 17, 0.16);
  border-radius: 17px;
  background: #f8f7f2;
  box-shadow: 0 32px 65px rgba(17, 18, 17, 0.25);
  object-fit: contain;
  transform: translateY(-50%);
  transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.case-study:hover .project-screenshot {
  transform: translateY(calc(-50% - 8px)) scale(1.01);
}

.project-browser {
  position: absolute;
  z-index: 2;
  inset: 46px 42px -46px;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 17, 0.16);
  border-radius: 17px 17px 0 0;
  background: #f8f7f2;
  box-shadow: 0 32px 65px rgba(17, 18, 17, 0.25);
  transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.case-study:hover .project-browser {
  transform: translateY(-8px);
}

.browser-toolbar {
  display: grid;
  height: 42px;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid rgba(17, 18, 17, 0.09);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(17, 18, 17, 0.44);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(17, 18, 17, 0.22);
}

.browser-address {
  justify-self: center;
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.browser-menu {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: rgba(17, 18, 17, 0.2);
}

.commerce-screen {
  display: grid;
  height: calc(100% - 42px);
  grid-template-columns: 70px 1fr;
  background: #f8f5ec;
}

.commerce-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding-top: 23px;
  background: #13251e;
}

.commerce-sidebar strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.65rem;
}

.commerce-sidebar span {
  width: 24px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
}

.commerce-main {
  padding: 24px;
}

.commerce-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.commerce-top b {
  color: #183126;
  font-family: var(--display);
  font-size: 0.86rem;
  letter-spacing: -0.03em;
}

.commerce-top > div {
  display: flex;
  gap: 8px;
}

.commerce-top i {
  width: 24px;
  height: 7px;
  border-radius: 99px;
  background: rgba(24, 49, 38, 0.12);
}

.commerce-banner {
  display: grid;
  height: 210px;
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 15px;
  background: #f0c640;
}

.commerce-banner > div:first-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.commerce-banner small {
  margin-bottom: 10px;
  color: rgba(17, 18, 17, 0.6);
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commerce-banner strong {
  color: #173025;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.commerce-banner > div:first-child > span {
  width: 48px;
  height: 5px;
  margin-top: 22px;
  border-radius: 99px;
  background: #173025;
}

.commerce-packages {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 25px 20px;
}

.commerce-packages i {
  width: 26%;
  border-radius: 12px 12px 4px 4px;
  background: #fff9e9;
  box-shadow: 0 12px 25px rgba(88, 67, 13, 0.17);
}

.commerce-packages i:nth-child(1) {
  height: 48%;
}

.commerce-packages i:nth-child(2) {
  height: 84%;
}

.commerce-packages i:nth-child(3) {
  height: 64%;
}

.commerce-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin-top: 16px;
}

.commerce-items span {
  height: 105px;
  border: 1px solid rgba(17, 18, 17, 0.07);
  border-radius: 11px;
  background:
    linear-gradient(to bottom, transparent 73px, rgba(17, 18, 17, 0.04) 73px),
    #fff;
}

.browser-dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: #121719;
}

.browser-dark .browser-toolbar {
  border-color: rgba(255, 255, 255, 0.08);
  background: #171e21;
  color: rgba(255, 255, 255, 0.42);
}

.browser-dark .browser-dots i,
.browser-dark .browser-menu {
  background: rgba(255, 255, 255, 0.22);
}

.dealer-screen {
  display: grid;
  height: calc(100% - 42px);
  grid-template-columns: 76px 1fr;
  background: #edf0ed;
}

.dealer-screen aside {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 19px;
  padding-top: 24px;
  background: #12191c;
}

.dealer-screen aside strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--mint);
  color: #12191c;
  font-family: var(--display);
  font-size: 0.69rem;
}

.dealer-screen aside span {
  width: 25px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
}

.dealer-content {
  padding: 27px;
}

.dealer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #172024;
}

.dealer-header > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dealer-header small {
  color: #6b7472;
  font-size: 0.52rem;
  font-weight: 700;
}

.dealer-header b {
  font-family: var(--display);
  font-size: 1rem;
}

.dealer-header i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d3dcd7;
}

.dealer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 25px;
}

.dealer-stats > div {
  position: relative;
  height: 108px;
  overflow: hidden;
  padding: 17px;
  border: 1px solid rgba(17, 18, 17, 0.06);
  border-radius: 13px;
  background: #fff;
}

.dealer-stats small {
  display: block;
  color: #78807d;
  font-size: 0.5rem;
}

.dealer-stats b {
  display: block;
  margin-top: 8px;
  color: #172024;
  font-family: var(--display);
  font-size: 1.25rem;
}

.dealer-stats span {
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(103, 237, 170, 0.35);
}

.dealer-bottom {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  margin-top: 13px;
}

.dealer-chart,
.dealer-orders {
  height: 190px;
  border: 1px solid rgba(17, 18, 17, 0.06);
  border-radius: 13px;
  background: #fff;
}

.dealer-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 22px;
}

.dealer-chart span {
  width: 12%;
  border-radius: 5px 5px 2px 2px;
  background: #92c8aa;
}

.dealer-chart span:nth-child(1) {
  height: 28%;
}

.dealer-chart span:nth-child(2) {
  height: 52%;
}

.dealer-chart span:nth-child(3) {
  height: 39%;
}

.dealer-chart span:nth-child(4) {
  height: 72%;
}

.dealer-chart span:nth-child(5) {
  height: 58%;
}

.dealer-chart span:nth-child(6) {
  height: 88%;
  background: #24aa6b;
}

.dealer-orders {
  padding: 17px;
}

.dealer-orders i {
  display: block;
  height: 31px;
  border-bottom: 1px solid rgba(17, 18, 17, 0.08);
}

.dealer-orders i:last-child {
  border-bottom: 0;
}

.corporate-screen {
  position: relative;
  height: calc(100% - 42px);
  overflow: hidden;
  padding: 29px;
  background: #ece9dd;
  isolation: isolate;
}

.corporate-nav {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.corporate-nav strong {
  color: #17372c;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.13em;
}

.corporate-nav > div {
  display: flex;
  gap: 10px;
}

.corporate-nav span {
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: rgba(23, 55, 44, 0.16);
}

.corporate-message {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 100px;
  color: #17372c;
}

.corporate-message small {
  margin-bottom: 14px;
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.corporate-message b {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  font-weight: 590;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.corporate-message span {
  width: 62px;
  height: 5px;
  margin-top: 26px;
  border-radius: 99px;
  background: #17372c;
}

.corporate-object {
  position: absolute;
  z-index: 2;
  right: -55px;
  bottom: -68px;
  width: 380px;
  height: 420px;
  border-radius: 52% 52% 0 0;
  background: #174a38;
  transform: rotate(18deg);
}

.corporate-object::before {
  position: absolute;
  top: 53px;
  left: 44px;
  width: 126px;
  height: 126px;
  border: 2px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  content: "";
}

.corporate-object i {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
}

.corporate-object i:nth-child(1) {
  top: 90px;
  right: 52px;
  width: 58px;
  height: 58px;
}

.corporate-object i:nth-child(2) {
  right: 135px;
  bottom: 78px;
  width: 90px;
  height: 90px;
  background: var(--mint);
}

.corporate-object i:nth-child(3) {
  top: 195px;
  left: 45px;
  width: 35px;
  height: 35px;
  background: var(--violet);
}

.corporate-screen > p {
  position: absolute;
  z-index: 3;
  right: -82px;
  bottom: 34px;
  margin: 0;
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--display);
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  transform: rotate(-90deg);
}

.products {
  background:
    radial-gradient(circle at 0 55%, rgba(113, 72, 255, 0.08), transparent 20%),
    var(--black);
}

.products-heading {
  align-items: end;
}

.products-heading h2 {
  max-width: 900px;
}

.products-heading > div > p {
  max-width: 550px;
  margin: 24px 0 0;
  color: var(--muted-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 26px;
}

.product-card {
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.product-art {
  position: relative;
  height: 520px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  isolation: isolate;
}

.product-art::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 38%);
  content: "";
}

.product-art > p:not(.product-statement) {
  position: absolute;
  bottom: 38px;
  left: 30px;
  margin: 0;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--display);
  font-size: clamp(3.3rem, 5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.product-pisti .product-art {
  background:
    radial-gradient(circle at 70% 38%, rgba(239, 191, 71, 0.2), transparent 25%),
    #09271e;
}

.product-batak .product-art {
  background:
    radial-gradient(circle at 70% 38%, rgba(225, 189, 94, 0.18), transparent 25%),
    #133426;
}

.product-screen {
  position: absolute;
  transition: transform 300ms ease;
}

.product-screen-phone {
  top: 62px;
  right: 9%;
  width: 39%;
  height: 94%;
  border: 5px solid #070908;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.42);
  object-fit: cover;
  object-position: top;
}

.product-card:hover .product-screen {
  transform: translateY(-8px);
}

.product-remotiq .product-art {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.19), transparent 20%),
    #2c3bcb;
}

.product-budget .product-art {
  background:
    radial-gradient(circle at 76% 30%, rgba(255, 255, 255, 0.42), transparent 25%),
    #b9efc3;
}

.product-app-icon {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(31%, 185px);
  border: 3px solid rgba(255, 255, 255, 0.55);
  border-radius: 25%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
  transition: transform 300ms ease;
}

.product-budget .product-app-icon {
  left: 71%;
  border-color: rgba(17, 18, 17, 0.12);
  box-shadow: 0 30px 60px rgba(43, 93, 57, 0.18);
}

.product-card:hover .product-app-icon {
  transform: translate(-50%, calc(-50% - 8px)) scale(1.015);
}

.product-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.product-rings::before,
.product-rings::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.product-rings::before {
  inset: 54px;
}

.product-rings::after {
  inset: 112px;
}

.product-statement {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 590;
  letter-spacing: -0.055em;
}

.product-statement-dark {
  right: 43%;
  color: #244f32;
}

.budget-bars {
  position: absolute;
  bottom: 90px;
  left: 40px;
  display: flex;
  height: 165px;
  align-items: flex-end;
  gap: 12px;
}

.budget-bars::after {
  position: absolute;
  right: -20px;
  bottom: -18px;
  left: 0;
  height: 1px;
  background: rgba(36, 79, 50, 0.2);
  content: "";
}

.budget-bars span {
  width: 14px;
  border-radius: 9px 9px 2px 2px;
  background: rgba(36, 79, 50, 0.3);
}

.budget-bars span:nth-child(1) {
  height: 26%;
}

.budget-bars span:nth-child(2) {
  height: 52%;
}

.budget-bars span:nth-child(3) {
  height: 39%;
}

.budget-bars span:nth-child(4) {
  height: 72%;
}

.budget-bars span:nth-child(5) {
  height: 100%;
  background: #317b48;
}

.product-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 2px 0;
}

.product-info p {
  margin: 0 0 7px;
  color: var(--muted-light);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 610;
  letter-spacing: -0.055em;
}

.product-info > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-card:hover .product-info > span {
  background: var(--accent);
  color: var(--ink);
  transform: translate(2px, -2px);
}

.about {
  border-top: 1px solid var(--line-dark);
  background: var(--black-soft);
}

.about-heading h2 {
  max-width: 1000px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(250px, 5fr) minmax(0, 7fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.about-copy > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted-light);
  font-size: 0.96rem;
  line-height: 1.76;
}

.about-copy > p + p {
  margin-top: 20px;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 35px;
}

.profile-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: none;
}

.profile-links a span {
  transition: transform 180ms ease;
}

.profile-links a:hover span {
  transform: translate(3px, -3px);
}

.capability-list {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.capability-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: start;
  padding: 27px 0;
  border-top: 1px solid var(--line-dark);
}

.capability-list > li > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 700;
}

.capability-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  font-weight: 590;
  letter-spacing: -0.05em;
}

.capability-list p {
  margin: 9px 0 0;
  color: var(--muted-light);
  font-size: 0.82rem;
  line-height: 1.6;
}

.contact {
  padding: 130px 0 115px;
  background: var(--accent);
  color: var(--ink);
}

.contact-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 34px;
  font-size: 0.67rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-kicker::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}

.contact h2 {
  max-width: 1120px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8vw, 8.4rem);
  font-weight: 650;
  letter-spacing: -0.08em;
  line-height: 0.86;
  text-wrap: balance;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(17, 18, 17, 0.24);
}

.contact-intro {
  position: sticky;
  top: 120px;
}

.contact-intro > p:first-child {
  max-width: 440px;
  margin: 0;
  color: rgba(17, 18, 17, 0.72);
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 42px;
}

.contact-details span {
  font-size: 0.63rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a {
  width: fit-content;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact-privacy {
  max-width: 410px;
  margin: 52px 0 0;
  padding: 18px 0 0 25px;
  border-top: 1px solid rgba(17, 18, 17, 0.2);
  border-left: 3px solid var(--violet);
  color: rgba(17, 18, 17, 0.58);
  font-size: 0.72rem;
  line-height: 1.65;
}

.contact-form {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(113, 72, 255, 0.23), transparent 32%),
    var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
}

.contact-form::before {
  position: absolute;
  top: 0;
  right: 18%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
}

.contact-form-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-form-heading span {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 620;
  letter-spacing: -0.05em;
}

.contact-form-heading strong {
  color: var(--accent);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}

.form-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field > span {
  color: var(--paper-soft);
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field small {
  color: var(--muted-light);
  font: inherit;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.88rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select {
  height: 52px;
}

.form-field textarea {
  min-height: 150px;
  padding: 15px 0;
  line-height: 1.65;
  resize: vertical;
}

.form-field select {
  padding-right: 26px;
  color-scheme: dark;
  cursor: pointer;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field input:user-invalid,
.form-field select:user-invalid,
.form-field textarea:user-invalid {
  border-color: #ff8e8e;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-consent {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  line-height: 1.55;
  cursor: pointer;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.contact-form-actions {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, auto) 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 32px;
}

.contact-form button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 820;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-form button:hover:not(:disabled) {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 2.8em;
  margin: 0;
  color: var(--muted-light);
  font-size: 0.72rem;
  line-height: 1.45;
}

.form-status[data-state="success"] {
  color: var(--accent);
}

.form-status[data-state="error"] {
  color: #ffaaaa;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 58px 0 34px;
  background: var(--black);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

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

.footer-inner > p:not(.copyright) {
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.69rem;
  font-weight: 700;
  text-decoration: none;
}

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

.copyright {
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.66rem;
}

@media (max-width: 1080px) {
  .shell {
    width: min(100% - 56px, 1040px);
  }

  .hero h1 {
    font-size: clamp(4.7rem, 9.3vw, 7.2rem);
  }

  .hero-visual {
    right: -5%;
    width: min(44vw, 500px);
  }

  .hero-tech-stage {
    left: -105px;
    width: 650px;
  }

  .hero-note {
    width: 34%;
  }

  .project-browser {
    inset: 38px 30px -38px;
  }

  .project-screenshot {
    left: 30px;
    width: calc(100% - 60px);
    max-height: calc(100% - 60px);
  }

  .commerce-screen {
    grid-template-columns: 58px 1fr;
  }

  .commerce-main,
  .dealer-content {
    padding: 19px;
  }

  .commerce-banner {
    height: 190px;
  }

  .dealer-screen {
    grid-template-columns: 62px 1fr;
  }

  .corporate-object {
    right: -100px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 44px, 760px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: 980px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 12vw, 6.5rem);
  }

  .hero-visual {
    right: -15%;
    width: 520px;
    opacity: 0.9;
  }

  .hero-tech-stage {
    left: -92px;
    width: 630px;
    opacity: 0.74;
  }

  .hero-note {
    width: 42%;
  }

  .hero-facts {
    width: 54%;
  }

  .section {
    padding: 105px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 64px;
  }

  .section-heading h2 {
    font-size: clamp(3.6rem, 9vw, 5.4rem);
  }

  .work {
    border-radius: 48px 48px 0 0;
  }

  .case-list {
    padding-bottom: 0;
  }

  .case-study {
    position: relative;
    z-index: auto;
    top: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 28px;
    padding: 90px 28px 30px;
    box-shadow: 0 18px 50px rgba(17, 18, 17, 0.08);
  }

  .case-study:nth-child(3) {
    margin-bottom: 0;
  }

  .case-copy {
    min-height: 0;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
  }

  .case-copy > div:not(.case-footer) {
    grid-column: 2;
  }

  .case-footer {
    grid-column: 2;
    margin-top: 18px;
  }

  .case-description,
  .case-copy h3 {
    max-width: 570px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .product-art {
    height: 560px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .about-copy > p {
    max-width: 640px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-intro {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .contact-intro > p:first-child {
    grid-column: 1 / -1;
  }

  .contact-details,
  .contact-privacy {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .shell {
    width: calc(100% - 32px);
  }

  .site-header {
    top: 10px;
  }

  .header-inner {
    min-height: 58px;
    padding: 7px 8px 7px 17px;
  }

  .header-contact {
    gap: 11px;
    padding: 12px 14px;
    font-size: 0.65rem;
  }

  .hero-layout {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding-top: 118px;
    padding-bottom: 90px;
  }

  .hero-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 27px;
    font-size: 0.59rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 15.8vw, 5.2rem);
    letter-spacing: -0.075em;
    line-height: 0.84;
  }

  .outline-word {
    white-space: normal;
    -webkit-text-stroke-width: 1.2px;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    order: 2;
    width: 100%;
    height: 520px;
    margin-top: 46px;
    opacity: 1;
  }

  .hero-tech-stage {
    top: 102px;
    left: -20%;
    width: 140%;
    height: 345px;
    opacity: 0.68;
  }

  .hero-ui-window {
    inset: 38px 0 10px;
    border-radius: 16px;
  }

  .hero-ui-card {
    right: 8px;
    width: 118px;
    height: 78px;
    padding: 14px;
  }

  .hero-ui-frame {
    right: 20px;
    width: 108px;
    height: 94px;
  }

  .hero-ui-dots,
  .hero-ui-cross-two {
    display: none;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    order: 3;
    width: 100%;
    margin-top: 30px;
    padding: 20px 0 0 18px;
  }

  .hero-note > p {
    font-size: 0.86rem;
  }

  .hero-facts {
    position: relative;
    bottom: auto;
    left: auto;
    order: 4;
    width: 100%;
    margin-top: 50px;
  }

  .hero-facts div {
    padding-right: 8px;
  }

  .hero-facts div + div {
    padding-left: 11px;
  }

  .hero-facts dt {
    font-size: 1.1rem;
  }

  .hero-facts dd {
    font-size: 0.52rem;
  }

  .hero-orbit-one {
    top: 300px;
    right: -340px;
    width: 650px;
    height: 650px;
  }

  .hero-orbit-two {
    top: 368px;
    right: -230px;
    width: 480px;
    height: 480px;
  }

  .hero-marquee {
    overflow: hidden;
    justify-content: flex-start;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    gap: 19px;
    margin-bottom: 48px;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 13.5vw, 4.2rem);
    line-height: 0.96;
  }

  .section-label {
    margin-top: 0;
    font-size: 0.57rem;
  }

  .work {
    border-radius: 32px 32px 0 0;
  }

  .case-study {
    gap: 31px;
    padding: 82px 18px 22px;
    border-radius: 20px;
  }

  .case-study::before {
    height: 60px;
    padding-inline: 18px 42px;
    border-radius: 20px 20px 0 0;
    font-size: 0.61rem;
  }

  .case-study::after {
    top: 26px;
    right: 18px;
  }

  .case-copy {
    display: flex;
    gap: 32px;
  }

  .case-copy h3 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
  }

  .case-description {
    font-size: 0.83rem;
  }

  .case-footer {
    margin-top: 0;
  }

  .case-visual {
    border-radius: 20px;
  }

  .project-browser {
    inset: 24px 18px -34px;
    border-radius: 13px 13px 0 0;
  }

  .project-screenshot {
    left: 18px;
    width: calc(100% - 36px);
    max-height: calc(100% - 36px);
    border-radius: 13px;
  }

  .browser-toolbar {
    height: 33px;
    padding-inline: 10px;
  }

  .browser-address {
    font-size: 0.43rem;
  }

  .commerce-screen {
    height: calc(100% - 33px);
    grid-template-columns: 43px 1fr;
  }

  .commerce-sidebar {
    gap: 13px;
    padding-top: 15px;
  }

  .commerce-sidebar strong {
    width: 28px;
    height: 28px;
  }

  .commerce-sidebar span {
    width: 18px;
  }

  .commerce-main,
  .dealer-content {
    padding: 13px;
  }

  .commerce-banner {
    height: 150px;
    margin-top: 14px;
  }

  .commerce-banner > div:first-child {
    padding: 15px;
  }

  .commerce-banner strong {
    font-size: 1.55rem;
  }

  .commerce-items {
    gap: 6px;
    margin-top: 9px;
  }

  .commerce-items span {
    height: 63px;
  }

  .dealer-screen {
    height: calc(100% - 33px);
    grid-template-columns: 45px 1fr;
  }

  .dealer-screen aside {
    gap: 13px;
    padding-top: 15px;
  }

  .dealer-screen aside strong {
    width: 29px;
    height: 29px;
  }

  .dealer-screen aside span {
    width: 19px;
  }

  .dealer-stats {
    gap: 6px;
    margin-top: 14px;
  }

  .dealer-stats > div {
    height: 75px;
    padding: 10px;
  }

  .dealer-stats b {
    font-size: 0.9rem;
  }

  .dealer-bottom {
    gap: 6px;
    margin-top: 7px;
  }

  .dealer-chart,
  .dealer-orders {
    height: 130px;
  }

  .dealer-chart {
    gap: 5px;
    padding: 14px;
  }

  .dealer-orders {
    padding: 10px;
  }

  .dealer-orders i {
    height: 21px;
  }

  .corporate-screen {
    height: calc(100% - 33px);
    padding: 17px;
  }

  .corporate-nav > div {
    display: none;
  }

  .corporate-message {
    margin-top: 68px;
  }

  .corporate-message b {
    font-size: 2.25rem;
  }

  .corporate-object {
    right: -145px;
    bottom: -105px;
    width: 320px;
    height: 360px;
  }

  .products-heading > div > p {
    font-size: 0.84rem;
  }

  .product-grid {
    gap: 38px;
  }

  .product-art {
    height: 420px;
    border-radius: 20px;
  }

  .product-screen-phone {
    top: 48px;
    right: 7%;
    width: 45%;
    border-width: 4px;
    border-radius: 26px 26px 0 0;
  }

  .product-art > p:not(.product-statement) {
    bottom: 30px;
    left: 20px;
    font-size: 3.3rem;
  }

  .product-rings {
    width: 310px;
    height: 310px;
  }

  .product-app-icon {
    width: 34%;
  }

  .product-statement {
    right: 20px;
    bottom: 20px;
    left: 20px;
    font-size: 1.8rem;
  }

  .product-statement-dark {
    right: 46%;
  }

  .budget-bars {
    bottom: 80px;
    left: 25px;
    height: 125px;
    gap: 8px;
  }

  .budget-bars span {
    width: 10px;
  }

  .product-info h3 {
    font-size: 2rem;
  }

  .about-layout {
    gap: 48px;
  }

  .about-copy > p {
    font-size: 0.88rem;
  }

  .capability-list li {
    grid-template-columns: 42px 1fr;
    gap: 13px;
    padding: 23px 0;
  }

  .contact {
    padding: 85px 0 78px;
  }

  .contact h2 {
    font-size: clamp(3.5rem, 15vw, 5.2rem);
    line-height: 0.89;
  }

  .contact-layout {
    gap: 34px;
    margin-top: 50px;
    padding-top: 22px;
  }

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

  .contact-intro > p:first-child {
    grid-column: auto;
  }

  .contact-privacy {
    padding-left: 18px;
  }

  .contact-form {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .contact-form-heading {
    margin-bottom: 34px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .contact-form-actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-inner > p:not(.copyright),
  .copyright {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
