:root {
  --black: #111111;
  --black-2: #1f1f1f;
  --white: #ffffff;
  --muted: #7b7b82;
  --line: #ececec;
  --orange: #ff6b1a;
  --soft: #f7f7f7;
  --container: 1170px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.floating-nav {
  position: sticky;
  top: 22px;
  z-index: 50;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 4px;
  align-items: center;
  width: min(calc(100% - 36px), 820px);
  height: 64px;
  margin: 22px auto 0;
  padding: 4px;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.94);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.page-nav {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(calc(100% - 44px), var(--container));
  margin: 32px auto 0;
}

.logo-tile,
.request-link,
.button,
.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-tile {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  color: var(--white);
  background: #202020;
  font-size: 1.7rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  min-width: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.request-link {
  height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  background: var(--white);
  color: #202020;
  font-size: 0.96rem;
  font-weight: 800;
}

.page-nav .nav-links {
  justify-content: flex-end;
}

.page-nav .nav-links a {
  color: #222222;
}

.page-nav .nav-links a:hover,
.page-nav .nav-links a:focus-visible {
  color: var(--orange);
}

.page-nav .request-link {
  background: #1a1a1a;
  color: var(--white);
}

.page-nav .language-toggle {
  background: #f1f1f1;
}

.page-nav .language-button {
  color: #707077;
}

.page-nav .language-button.is-active {
  background: #1a1a1a;
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #202020;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 10, 12, 0.5);
}

.mobile-menu-panel {
  position: absolute;
  top: 14px;
  right: 14px;
  width: min(calc(100% - 28px), 360px);
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-menu-header strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f1f1f4;
  color: #1b1b1c;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.mobile-menu-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.mobile-menu-links a,
.mobile-menu-request {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  background: #f5f5f7;
  color: #18181a;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

.mobile-menu-footer {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mobile-menu-request {
  justify-content: center;
  background: #1b1b1c;
  color: var(--white);
}

.mobile-menu-language {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #ededf1;
}

.mobile-menu-language .language-button {
  color: #6d6d75;
}

.mobile-menu-language .language-button.is-active {
  background: #1b1b1c;
  color: var(--white);
}

body.mobile-menu-open {
  overflow: hidden;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, 42px);
  gap: 4px;
  height: 54px;
  padding: 4px;
  border-radius: 14px;
  background: #202020;
}

.language-button {
  appearance: none;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
}

.language-flag {
  font-size: 1rem;
  line-height: 1;
}

.language-button.is-active {
  background: var(--white);
  color: var(--black);
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 96px 24px 78px;
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.42) 10%, rgba(255, 255, 255, 0.06) 22%, rgba(255, 255, 255, 0.01) 50%, rgba(255, 255, 255, 0.06) 78%, rgba(255, 255, 255, 0.42) 90%, rgba(255, 255, 255, 0.9) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.38) 10%, rgba(255, 255, 255, 0.05) 22%, rgba(255, 255, 255, 0.01) 50%, rgba(255, 255, 255, 0.05) 78%, rgba(255, 255, 255, 0.38) 90%, rgba(255, 255, 255, 0.9) 100%),
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 26%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.34) 8%, rgba(0, 0, 0, 0.92) 18%, rgba(0, 0, 0, 0.92) 82%, rgba(0, 0, 0, 0.34) 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 8%, rgba(0, 0, 0, 0.94) 18%, rgba(0, 0, 0, 0.94) 82%, rgba(0, 0, 0, 0.3) 92%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.34) 8%, rgba(0, 0, 0, 0.92) 18%, rgba(0, 0, 0, 0.92) 82%, rgba(0, 0, 0, 0.34) 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 8%, rgba(0, 0, 0, 0.94) 18%, rgba(0, 0, 0, 0.94) 82%, rgba(0, 0, 0, 0.3) 92%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 12%, rgba(255, 255, 255, 0.24) 24%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.24) 76%, rgba(255, 255, 255, 0.8) 88%, rgba(255, 255, 255, 1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.12) 12%, rgba(255, 255, 255, 0.01) 28%, rgba(255, 255, 255, 0.01) 72%, rgba(255, 255, 255, 0.14) 88%, rgba(255, 255, 255, 0.54) 100%),
    radial-gradient(circle at 18% 20%, rgba(255, 107, 26, 0.06), transparent 24%),
    radial-gradient(circle at 76% 16%, rgba(255, 107, 26, 0.04), transparent 18%);
}

.particle-field,
.black-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle-field {
  z-index: -1;
  opacity: 0.24;
  background:
    radial-gradient(circle at 14% 74%, rgba(0, 0, 0, 0.18) 1px, transparent 2px),
    radial-gradient(circle at 38% 28%, rgba(0, 0, 0, 0.12) 1px, transparent 2px),
    radial-gradient(circle at 74% 72%, rgba(0, 0, 0, 0.14) 1px, transparent 2px),
    radial-gradient(circle at 90% 46%, rgba(0, 0, 0, 0.1) 1px, transparent 2px);
  background-size: 210px 170px, 260px 210px, 180px 220px, 230px 240px;
}

.hero-inner {
  width: min(840px, 100%);
  text-align: center;
  position: relative;
  z-index: 1;
}

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

h1 {
  font-size: clamp(3.5rem, 6.6vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.6rem, 5.3vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

em {
  font-family: "Instrument Serif", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-inner p {
  max-width: 720px;
  margin: 24px auto 0;
  color: #4e4e55;
  font-size: clamp(1.1rem, 1.9vw, 1.36rem);
  line-height: 1.55;
}

.button {
  min-height: 58px;
  margin-top: 34px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 1.04rem;
  font-weight: 800;
  gap: 10px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button-dark {
  background: #202020;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.loved-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  font-size: 1rem;
  color: #262626;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 28px;
  height: 28px;
  margin-left: -7px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, #111, #777);
}

.avatars span:first-child {
  margin-left: 0;
}

.avatars span:nth-child(2) {
  background: linear-gradient(135deg, #ff6b1a, #ffd2a6);
}

.avatars span:nth-child(3) {
  background: linear-gradient(135deg, #2d5561, #9fd1de);
}

.avatars span:nth-child(4) {
  background: linear-gradient(135deg, #c49b52, #ffe4ab);
}

.stars {
  color: #f3aa07;
  letter-spacing: 2px;
}

.section {
  width: min(calc(100% - 44px), var(--container));
  margin: 0 auto;
  padding: 92px 0;
}

.niches {
  min-height: 720px;
}

.niche-copy {
  max-width: 740px;
}

.orange-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 32px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 800;
}

.niche-copy h2 {
  max-width: 760px;
}

.niche-copy p {
  max-width: 620px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.chip-stage {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 70px;
  overflow: hidden;
}

.chip-stage::before,
.chip-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 120px;
  pointer-events: none;
}

.chip-stage::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.chip-stage::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.chip-row {
  display: flex;
  gap: 14px;
  width: max-content;
  --loop-distance: 0px;
  animation: drift 42s linear infinite;
  will-change: transform;
}

.chip-row-group {
  display: flex;
  flex: none;
  gap: 14px;
}

.chip-row-offset {
  animation-name: drift-reverse;
  animation-duration: 48s;
}

.chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: #272727;
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
}

.chip-row .chip-dark {
  background: #202020;
  color: var(--white);
}

.black-wrap {
  position: relative;
  width: min(calc(100% - 36px), 1440px);
  margin: 0 auto 28px;
  overflow: hidden;
  padding: 92px max(24px, calc((100% - var(--container)) / 2));
  border-radius: 48px;
  background: #111111;
  color: var(--white);
}

.black-grid {
  opacity: 0.78;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.7) 1px, transparent 2px),
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.42) 1px, transparent 2px),
    radial-gradient(circle at 89% 72%, rgba(255, 255, 255, 0.56) 1px, transparent 2px),
    radial-gradient(circle at 24% 82%, rgba(255, 255, 255, 0.5) 1px, transparent 2px),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 220px 190px, 260px 220px, 300px 240px, 190px 220px, 84px 84px, 84px 84px;
}

.black-wrap > *:not(.black-grid) {
  position: relative;
  z-index: 1;
}

.black-heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.black-heading .orange-pill {
  margin-bottom: 28px;
}

.black-heading p {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.ghost-title {
  display: block;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Instrument Serif", serif;
  font-size: 2.4rem;
}

.service-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: min(100%, 1040px);
  margin: 70px auto 0;
}

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 42px;
  border-radius: 10px;
  background: #f6f6f6;
  color: #202020;
}

.service-card-wide {
  grid-column: 1 / -1;
  min-height: 250px;
}

.service-card-orange {
  background: var(--orange);
}

.service-card-dark {
  background: #1a1a1a;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.service-card::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -34%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 54px solid rgba(0, 0, 0, 0.05);
}

.service-card-dark::after {
  border-color: rgba(255, 255, 255, 0.035);
}

.corner-icon {
  position: absolute;
  top: 26px;
  right: 26px;
  font-size: 1.2rem;
}

.service-card h3 {
  max-width: 13ch;
}

.service-card-wide h3 {
  max-width: none;
}

.service-card p {
  max-width: 880px;
  margin-top: 84px;
  color: rgba(0, 0, 0, 0.82);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.84);
}

.service-card strong {
  display: block;
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.42);
}

.service-card-dark strong {
  color: rgba(255, 255, 255, 0.38);
}

.service-card a {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #2a2a2a;
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
}

.process-wrap {
  min-height: 720px;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 42px;
  align-items: center;
  width: min(100%, 980px);
  margin: 62px auto 0;
}

.process-list {
  display: grid;
  gap: 20px;
}

.process-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 14px;
}

.process-step.active {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  font-weight: 800;
}

.process-step h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.process-step p {
  margin-top: 14px;
  color: #f3dfcf;
  font-size: 1.04rem;
  line-height: 1.55;
}

.dashboard-panel {
  min-height: 395px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #f7f8fb;
}

.mini-dashboard {
  width: min(78%, 520px);
  padding: 12px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  color: #202020;
}

.dash-row {
  display: grid;
  grid-template-columns: 1fr 0.6fr 0.7fr 0.7fr;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.dash-row:first-child {
  border-top: 0;
}

.dash-head {
  color: #8b8b8f;
  font-size: 0.75rem;
  font-weight: 800;
}

.dash-row em,
.dash-row i {
  justify-self: start;
  padding: 4px 8px;
  border-radius: 999px;
  background: #dff8e8;
  color: #28a76d;
  font-style: normal;
  font-weight: 800;
}

.dash-row i {
  background: #ebf8ef;
}

.request-section {
  padding: 98px 0;
}

.difference {
  padding-top: 4px;
  padding-bottom: 74px;
}

.difference-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.difference-heading .orange-pill {
  margin-bottom: 28px;
}

.difference-heading h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 4.6vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.difference-heading p {
  max-width: 860px;
  margin: 20px auto 0;
  color: #3f3f46;
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.62;
}

.difference-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.02fr;
  grid-template-areas:
    "dashboard phone copy"
    "note phone office";
  gap: 18px;
  margin-top: 46px;
}

.difference-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.difference-card-dashboard {
  grid-area: dashboard;
  min-height: 380px;
  padding: 22px;
  background: linear-gradient(180deg, #ececf3 0%, #e6e6ee 100%);
}

.difference-dashboard {
  position: absolute;
  left: 11%;
  bottom: -4%;
  width: 88%;
  height: 66%;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.12);
  transform: rotate(10deg);
}

.difference-dashboard-sidebar,
.difference-dashboard-top,
.difference-dashboard-bars {
  display: grid;
  gap: 10px;
}

.difference-dashboard-sidebar span,
.difference-dashboard-top span,
.difference-dashboard-bars span {
  border-radius: 999px;
  background: #eef0f7;
}

.difference-dashboard-sidebar {
  align-content: start;
}

.difference-dashboard-sidebar span {
  height: 14px;
}

.difference-dashboard-main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}

.difference-dashboard-top span {
  height: 11px;
}

.difference-dashboard-ring {
  width: min(138px, 54%);
  aspect-ratio: 1;
  align-self: center;
  justify-self: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0 38%, transparent 39% 100%),
    conic-gradient(from 0deg, #5b4dff 0 42%, #78d5eb 42% 68%, #ff9f3d 68% 100%);
}

.difference-dashboard-bars {
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
}

.difference-dashboard-bars span:nth-child(1) {
  height: 20px;
}

.difference-dashboard-bars span:nth-child(2) {
  height: 40px;
}

.difference-dashboard-bars span:nth-child(3) {
  height: 28px;
}

.difference-dashboard-bars span:nth-child(4) {
  height: 46px;
}

.difference-card-phone {
  grid-area: phone;
  min-height: 700px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #d8d8de 0%, #444448 100%);
  color: var(--white);
}

.difference-card-kicker {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
  font-weight: 600;
}

.difference-phone {
  position: relative;
  width: min(78%, 270px);
  min-height: 500px;
  margin: 10px auto;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(180deg, #1a1a1d, #0b0b0d);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.24);
}

.difference-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 92px;
  height: 20px;
  border-radius: 999px;
  background: #111112;
  transform: translateX(-50%);
  z-index: 2;
}

.difference-phone-screen {
  height: 100%;
  padding: 48px 10px 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, #faf7ef 0%, #efe9dd 100%);
}

.difference-phone-badge {
  width: 42px;
  height: 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.difference-phone-image {
  height: 76%;
  margin-top: 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.6) 0 6%, transparent 6%),
    linear-gradient(180deg, rgba(29, 79, 88, 0.3), transparent 32%),
    linear-gradient(180deg, #7fb8b8 0%, #b6dcc8 40%, #d1c08d 41%, #85b57d 100%);
  position: relative;
  overflow: hidden;
}

.difference-phone-image::before {
  content: "";
  position: absolute;
  inset: auto 12% 12% 14%;
  height: 26%;
  border-radius: 999px 999px 22px 22px;
  background: linear-gradient(180deg, #724126 0%, #4a2819 100%);
  transform: skewX(-18deg);
}

.difference-phone-image::after {
  content: "";
  position: absolute;
  inset: auto 18% 10% auto;
  width: 20%;
  height: 22%;
  border-radius: 999px 999px 30% 30%;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(20deg);
}

.difference-phone-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.difference-phone-actions span {
  height: 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
}

.difference-phone-copy {
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.45;
}

.difference-card-copy {
  grid-area: copy;
  min-height: 250px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #e7e0d6;
}

.difference-card-copy p {
  color: #4d4a46;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.52;
}

.difference-card-copy strong {
  color: #161616;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.difference-card-note {
  grid-area: note;
  min-height: 260px;
  padding: 28px;
  background: #ececf9;
}

.difference-card-note strong {
  display: block;
  max-width: 12ch;
  color: #111111;
  font-size: clamp(1.6rem, 2.2vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.difference-card-note p {
  max-width: 26ch;
  margin-top: 34px;
  color: #4f4f57;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.52;
}

.difference-card-office {
  grid-area: office;
  min-height: 280px;
  padding: 0;
  background: linear-gradient(180deg, #cdd8d5 0%, #eef1e9 100%);
}

.difference-office-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1)),
    linear-gradient(90deg, rgba(44, 53, 66, 0.08) 0 2px, transparent 2px 33%),
    linear-gradient(90deg, rgba(44, 53, 66, 0.08) 0 2px, transparent 2px 66%),
    linear-gradient(180deg, #d7e0d7 0%, #eef0e8 100%);
}

.difference-window {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(42, 48, 56, 0.18);
}

.difference-window-a {
  left: 32%;
}

.difference-window-b {
  left: 58%;
}

.difference-window-c {
  left: 78%;
}

.difference-plant {
  position: absolute;
  left: 6%;
  bottom: -2%;
  width: 34%;
  height: 40%;
  background:
    radial-gradient(circle at 22% 100%, #708e61 0 18%, transparent 19%),
    linear-gradient(60deg, transparent 0 42%, #7fa36d 42% 48%, transparent 48% 100%),
    linear-gradient(24deg, transparent 0 30%, #66895d 30% 36%, transparent 36% 100%),
    linear-gradient(118deg, transparent 0 46%, #7ca16c 46% 52%, transparent 52% 100%);
  transform: rotate(-2deg);
}

.difference-table {
  position: absolute;
  right: 9%;
  bottom: 8%;
  width: 54%;
  height: 18%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(224, 228, 218, 0.98)),
    linear-gradient(90deg, rgba(120, 128, 136, 0.16) 0 2px, transparent 2px 50%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.cases {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-top: 8px;
  padding-bottom: 92px;
}

.cases-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.cases-heading h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.cases-heading p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #777780;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6;
}

.cases-rail {
  padding-inline: clamp(24px, 4vw, 64px);
  margin-top: 44px;
}

.cases-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 22px;
  overflow-x: auto;
  padding: 0 0 12px;
  scroll-padding-inline: clamp(24px, 4vw, 64px);
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.22) transparent;
}

.cases-track::-webkit-scrollbar {
  height: 8px;
}

.cases-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.18);
}

.case-card {
  scroll-snap-align: start;
}

.case-card-link {
  display: block;
  width: min(54vw, 500px);
  color: inherit;
  text-decoration: none;
}

.case-card-link-featured {
  width: min(72vw, 760px);
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.case-visual {
  position: relative;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  border-radius: 38px;
  background: #ffffff;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.1);
}

.case-visual-featured img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.case-visual-project-full {
  aspect-ratio: 1.84 / 1;
  background: #ffffff;
}

.case-visual-project-full img {
  object-fit: contain;
  object-position: center;
}

.case-visual-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.case-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 2px;
}

.case-category,
.case-meta span {
  color: #8c8c93;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.case-meta h3 {
  color: #121212;
  font-family: "Manrope", sans-serif;
  font-size: 1.72rem;
  letter-spacing: -0.04em;
}

.case-shadow-panel {
  position: absolute;
  left: 8%;
  right: 12%;
  bottom: 16%;
  height: 42%;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(58, 58, 62, 0.76), rgba(18, 18, 20, 0.92));
  transform: rotate(-8deg);
  opacity: 0.34;
}

.case-device-stack {
  position: absolute;
  inset: 18% 12% 20%;
}

.case-phone {
  position: absolute;
  width: 42%;
  height: 84%;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(180deg, #3d312f 0%, #272224 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 14px 40px rgba(0, 0, 0, 0.26);
}

.case-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 34%;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  transform: translateX(-50%);
}

.case-phone::after {
  content: "";
  position: absolute;
  inset: 14% 10% 12%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 14%),
    linear-gradient(180deg, #171718 0%, #2b2b2d 100%);
}

.case-phone-left {
  left: 12%;
  bottom: 0;
  transform: rotate(-16deg);
}

.case-phone-right {
  right: 12%;
  top: 2%;
  transform: rotate(12deg);
}

.case-phone-sea::after {
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.44) 0 8%, transparent 8%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 14%),
    linear-gradient(180deg, #8fc6cf 0%, #bfdcd4 34%, #e0cd93 35%, #3d5f4f 100%);
}

.case-browser-shell {
  position: absolute;
  left: 16%;
  right: 12%;
  bottom: 16%;
  height: 38%;
  border-radius: 30px;
  background: linear-gradient(180deg, #f9f9fb 0%, #ececf2 100%);
  transform: rotate(-14deg);
  box-shadow: 0 20px 44px rgba(255, 255, 255, 0.08);
}

.case-site-panel {
  position: absolute;
  left: 14%;
  right: 12%;
  top: 18%;
  bottom: 24%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 107, 26, 0.08), transparent 28%),
    linear-gradient(180deg, #34201b 0%, #171214 100%);
  transform: rotate(12deg);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
}

.case-site-line,
.case-site-line.short,
.case-site-button {
  position: absolute;
  left: 12%;
  border-radius: 999px;
}

.case-site-line {
  top: 24%;
  width: 46%;
  height: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.case-site-line.short {
  top: 34%;
  width: 30%;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
}

.case-site-button {
  top: 50%;
  width: 18%;
  height: 14px;
  background: var(--orange);
}

.case-card-marmoris img {
  object-position: center center;
}

.case-system-grid {
  position: absolute;
  inset: 10% 12% auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.case-system-grid span {
  height: 96px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1a1a1c 0%, #101012 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.case-system-panel {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 10%;
  height: 36%;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, #ff7a2e 0%, #6d2f10 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.cases-hint {
  padding: 0 clamp(24px, 4vw, 64px);
  margin-top: 12px;
  color: #8a8a92;
  font-size: 0.9rem;
  text-align: right;
}

.case-study-page {
  padding-top: 68px;
}

.case-study-nav {
  margin-top: 16px;
}

.case-study-hero {
  padding-top: 42px;
  text-align: center;
}

.case-study-copy {
  max-width: 900px;
  margin: 0 auto;
}

.case-study-kicker {
  color: #8e8e95;
  font-size: 1.02rem;
  font-weight: 600;
}

.case-study-copy h1 {
  max-width: 14ch;
  margin: 28px auto 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 5.3vw, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.case-study-client-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: #72727a;
  font-size: 1.05rem;
  font-weight: 600;
}

.case-study-client-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.94) 0 16%, transparent 16% 100%),
    linear-gradient(180deg, #171717 0%, #060606 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 960px);
  margin: 72px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-study-meta article {
  padding: 18px 24px;
  text-align: center;
}

.case-study-meta article + article {
  border-left: 1px solid var(--line);
}

.case-study-meta span {
  display: block;
  color: #8a8a91;
  font-size: 0.92rem;
  font-weight: 600;
}

.case-study-meta strong {
  display: block;
  margin-top: 10px;
  color: #141414;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.4;
}

.case-study-showcase {
  width: min(calc(100% - 44px), 980px);
  margin: 62px auto 0;
}

.case-study-showcase-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 107, 26, 0.08), transparent 20%),
    linear-gradient(180deg, #080808 0%, #101011 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.12);
}

.case-study-featured-image {
  display: block;
  width: min(100%, 700px);
  height: auto;
  border-radius: 28px;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.3);
}

.case-study-summary {
  padding-top: 52px;
  padding-bottom: 92px;
}

.case-study-results {
  padding-top: 40px;
  padding-bottom: 92px;
}

.case-study-results-link {
  display: flex;
  justify-content: center;
}

.case-study-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 10px 12px 10px 28px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  text-decoration: none;
  font-size: clamp(1.05rem, 1.65vw, 1.24rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.case-study-link-pill:hover,
.case-study-link-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 26, 0.26);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

.case-study-link-pill:focus-visible {
  outline: 2px solid rgba(255, 107, 26, 0.28);
  outline-offset: 4px;
}

.case-study-link-pill-label {
  line-height: 1;
}

.case-study-link-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111111;
  color: var(--white);
  font-size: 1rem;
}

.case-study-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 38px;
}

.case-study-result-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 72px 56px;
  border-radius: 44px;
}

.case-study-result-card h2,
.case-study-result-card-insight h2,
.case-study-result-card-services h2 {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.case-study-result-card-insight {
  background: #2b2b2c;
  color: var(--white);
}

.case-study-result-card-insight::before,
.case-study-result-card-insight::after {
  content: "";
  position: absolute;
  right: 8%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 18px solid rgba(255, 255, 255, 0.03);
}

.case-study-result-card-insight::before {
  top: 10%;
}

.case-study-result-card-insight::after {
  bottom: 14%;
}

.case-study-result-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 28px;
  color: #7a7a83;
  font-size: clamp(1.6rem, 2.5vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.case-study-result-metric {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.case-study-result-metric strong {
  font-size: clamp(4.4rem, 8vw, 6.1rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.case-study-result-metric span {
  color: #67ef41;
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1;
}

.case-study-result-card-insight p {
  position: relative;
  z-index: 1;
  max-width: 28ch;
  margin-top: 56px;
  color: #70707a;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.case-study-result-card-services {
  background: #ff6b1a;
  color: #161616;
}

.case-study-result-card-services::before,
.case-study-result-card-services::after {
  content: "";
  position: absolute;
  right: 10%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
}

.case-study-result-card-services::before {
  top: 9%;
  width: 230px;
  height: 230px;
  box-shadow: inset 0 0 0 58px rgba(255, 107, 26, 0.2);
}

.case-study-result-card-services::after {
  bottom: 10%;
  width: 240px;
  height: 240px;
  box-shadow: inset 0 0 0 58px rgba(255, 107, 26, 0.18);
}

.case-study-service-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 14px;
  min-height: 300px;
  margin-top: 48px;
}

.case-study-service-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 999px;
  background: #282828;
  color: var(--white);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
  white-space: normal;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.case-study-service-tag-a {
  background: #232323;
}

.case-study-service-tag-b {
  background: rgba(35, 35, 35, 0.92);
}

.case-study-service-tag-c {
  background: #1e1e1e;
}

.case-study-service-tag-d {
  background: rgba(27, 27, 27, 0.9);
}

.case-study-service-tag-e {
  background: #202020;
}

.case-study-service-tag-f {
  background: rgba(24, 24, 24, 0.92);
}

.case-study-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-study-summary-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fafafa;
}

.case-study-summary-card .result-pill {
  margin-bottom: 22px;
}

.case-study-summary-card p {
  color: #4f4f57;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.64;
}

.request-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 28px;
  background: #f6f6f6;
}

.request-panel h2 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.business-page {
  padding-top: 70px;
}

.business-hero-shell {
  width: min(calc(100% - 44px), var(--container));
  margin: 0 auto;
}

.business-hero-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 82px 64px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 45% 116%, rgba(255, 107, 26, 0.76), rgba(255, 107, 26, 0.28) 18%, transparent 47%),
    linear-gradient(160deg, #171717 0%, #141414 52%, #1b1b1b 100%);
  color: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.12);
}

.business-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    radial-gradient(circle at 20% 36%, rgba(255, 255, 255, 0.4) 1px, transparent 2px),
    radial-gradient(circle at 77% 72%, rgba(255, 255, 255, 0.35) 1px, transparent 2px);
  background-size: 170px 150px, 230px 190px;
}

.business-hero-card > *:not(.business-ghost-logo) {
  position: relative;
  z-index: 1;
}

.business-flags {
  margin-bottom: 26px;
  font-size: 1rem;
  letter-spacing: 0;
}

.business-hero-card .orange-pill {
  margin-bottom: 38px;
  font-size: 1rem;
}

.business-hero-card h1 {
  max-width: 760px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.3rem, 5.4vw, 5.2rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.business-hero-card p {
  max-width: 790px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  line-height: 1.65;
}

.business-ghost-logo {
  position: absolute;
  top: 42px;
  right: 52px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
}

.business-section-heading {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.result-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin-bottom: 30px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #2a2a2a;
  font-size: 0.92rem;
  font-weight: 800;
}

.result-pill span:first-child {
  color: var(--orange);
}

.business-section-heading h2 {
  font-size: clamp(2.35rem, 4vw, 3.95rem);
  letter-spacing: 0;
}

.business-section-heading p {
  margin-top: 18px;
  color: #54545b;
  font-size: 1.02rem;
  line-height: 1.5;
}

.result-showcase {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-areas:
    "wide tall"
    "compact image";
  gap: 18px;
  max-width: 1030px;
  margin: 48px auto 0;
}

.result-showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 86%, rgba(255, 107, 26, 0.16), transparent 36%),
    linear-gradient(160deg, #171717 0%, #141414 52%, #1b1b1b 100%);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
}

.result-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background:
    radial-gradient(circle at 8% 72%, rgba(255, 255, 255, 0.54) 1px, transparent 2px),
    radial-gradient(circle at 54% 66%, rgba(255, 255, 255, 0.28) 1px, transparent 2px),
    radial-gradient(circle at 92% 48%, rgba(255, 255, 255, 0.42) 1px, transparent 2px);
  background-size: 180px 170px, 260px 220px, 210px 180px;
}

.result-showcase-card > * {
  position: relative;
  z-index: 1;
}

.result-showcase-card-wide {
  grid-area: wide;
  min-height: 272px;
}

.result-showcase-card-tall {
  grid-area: tall;
  min-height: 272px;
}

.result-showcase-card-compact {
  grid-area: compact;
  min-height: 240px;
}

.result-showcase-card-image {
  grid-area: image;
  padding: 0;
}

.result-showcase-card-image::before {
  display: none;
}

.result-showcase-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42));
}

.result-showcase-index {
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.result-showcase-card h3 {
  max-width: 11ch;
  margin-top: 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 1.95vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.result-showcase-card p {
  max-width: 33ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.55;
}

.result-showcase-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-showcase-card-image figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 1;
  max-width: 18ch;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
}

.business-services {
  padding-top: 36px;
}

.agency-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.agency-service-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: 30px;
  background: #1b1b1b;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.agency-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: var(--orange);
  background: rgba(255, 107, 26, 0.08);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.agency-service-card h3 {
  max-width: 11ch;
  margin-top: 28px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.agency-service-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.56;
}

.agency-service-card strong {
  margin-top: auto;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
}

.gain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.gain-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfbfb;
}

.gain-card span {
  color: var(--orange);
  font-weight: 900;
}

.gain-card h3 {
  max-width: 13ch;
  margin-top: 48px;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.gain-card p {
  margin-top: 18px;
  color: #5d5d64;
  font-weight: 600;
  line-height: 1.6;
}

.business-system {
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 36px), 1440px);
  margin: 0 auto 30px;
  padding: 86px max(24px, calc((100% - var(--container)) / 2));
  border-radius: 48px;
  background: #111111;
  color: var(--white);
}

.business-system > *:not(.black-grid) {
  position: relative;
  z-index: 1;
}

.business-system-copy {
  max-width: 720px;
}

.business-system-copy h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.business-system-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.14rem;
  line-height: 1.65;
}

.system-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.system-card {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 10px;
  background: #1c1c1c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.system-card-orange {
  background: var(--orange);
  color: var(--black);
}

.system-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.system-card p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 650;
  line-height: 1.55;
}

.system-card-orange p {
  color: rgba(0, 0, 0, 0.72);
}

.business-cta {
  padding-top: 72px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 44px), var(--container));
  margin: 0 auto;
  padding: 0 0 40px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 260ms;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--loop-distance)));
  }
}

@keyframes drift-reverse {
  from {
    transform: translateX(calc(-1 * var(--loop-distance)));
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 1040px) {
  .floating-nav {
    grid-template-columns: 54px auto;
    width: min(calc(100% - 24px), 620px);
  }

  .page-nav {
    grid-template-columns: 54px auto;
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .service-board,
  .process-grid,
  .difference-grid,
  .gain-grid,
  .agency-services-grid,
  .case-study-meta,
  .case-study-summary-grid,
  .system-card-grid,
  .result-showcase {
    grid-template-columns: 1fr;
  }

  .result-showcase {
    grid-template-areas:
      "wide"
      "tall"
      "compact"
      "image";
  }

  .difference-grid {
    grid-template-areas:
      "dashboard"
      "phone"
      "copy"
      "note"
      "office";
  }

  .cases-track {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding: 0 0 12px;
    scroll-padding-inline: 24px;
    scrollbar-width: thin;
  }

  .cases-track > * {
    width: min(82vw, 340px);
  }

  .cases-rail {
    padding-inline: 24px;
  }

  .case-card-link-featured {
    width: min(90vw, 460px);
  }

  .cases-hint {
    display: block;
  }

  .case-study-meta article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .business-page {
    padding-top: 52px;
  }

  .business-hero-card {
    min-height: 470px;
  }

  .request-panel {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 680px) {
  .floating-nav {
    top: 12px;
    margin-top: 12px;
  }

  .page-nav {
    margin-top: 14px;
    gap: 12px;
  }

  .request-link {
    height: 48px;
    padding: 0 14px;
  }

  .language-toggle {
    grid-template-columns: repeat(2, 40px);
    height: 48px;
  }

  .language-button {
    height: 40px;
    font-size: 0.72rem;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .mobile-menu-panel {
    top: 10px;
    right: 10px;
    width: calc(100% - 20px);
    padding: 18px;
    border-radius: 22px;
  }

  .hero {
    min-height: calc(100svh - 76px);
    padding: 72px 16px 54px;
  }

  .hero-visual img {
    object-position: 66% center;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.35rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .section {
    width: min(calc(100% - 24px), var(--container));
    padding: 72px 0;
  }

  .black-wrap {
    width: min(calc(100% - 14px), 1440px);
    padding: 68px 18px;
    border-radius: 30px;
  }

  .business-hero-shell {
    width: min(calc(100% - 14px), var(--container));
  }

  .business-hero-card {
    min-height: auto;
    padding: 40px 22px;
    border-radius: 30px;
  }

  .business-hero-card h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }

  .business-ghost-logo {
    top: 24px;
    right: 24px;
    font-size: 5rem;
  }

  .business-system {
    width: min(calc(100% - 14px), 1440px);
    padding: 64px 18px;
    border-radius: 30px;
  }

  .difference {
    padding-bottom: 72px;
  }

  .difference-heading p {
    font-size: 1.05rem;
  }

  .difference-grid {
    gap: 18px;
    margin-top: 42px;
  }

  .difference-card-dashboard,
  .difference-card-copy,
  .difference-card-note,
  .difference-card-office {
    min-height: 280px;
    padding: 24px;
    border-radius: 26px;
  }

  .difference-card-phone {
    min-height: 700px;
    padding: 24px;
    border-radius: 26px;
  }

  .difference-dashboard {
    left: 8%;
    width: 98%;
    height: 68%;
  }

  .difference-card-note p {
    margin-top: 28px;
  }

  .difference-phone {
    min-height: 500px;
  }

  .cases {
    width: 100%;
    padding-bottom: 72px;
  }

  .cases-rail {
    padding-inline: 18px;
    margin-top: 32px;
  }

  .cases-track {
    gap: 16px;
    padding: 0 0 12px;
    scroll-padding-inline: 18px;
  }

  .cases-track > * {
    width: min(84vw, 300px);
  }

  .case-card-link-featured {
    width: min(92vw, 380px);
  }

  .cases-hint {
    padding: 0 18px;
  }

  .case-visual {
    aspect-ratio: 1.16 / 1;
    border-radius: 26px;
  }

  .case-visual-project-full {
    aspect-ratio: 1.84 / 1;
  }

  .case-meta h3 {
    font-size: 1.3rem;
  }

  .case-study-page {
    padding-top: 36px;
  }

  .case-study-hero {
    padding-top: 20px;
  }

  .case-study-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .case-study-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
    width: 100%;
    margin-top: 34px;
    border-top: 0;
    border-bottom: 0;
  }

  .case-study-meta article {
    min-height: 0;
    padding: 0;
    text-align: left;
  }

  .case-study-meta article + article {
    border-left: 0;
    border-top: 0;
  }

  .case-study-meta span {
    color: #808088;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.2;
  }

  .case-study-meta strong {
    margin-top: 14px;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.35;
  }

  .case-study-showcase {
    width: min(calc(100% - 24px), 980px);
    margin-top: 18px;
  }

  .case-study-showcase-frame {
    padding: 20px;
    border-radius: 30px;
  }

  .case-study-featured-image {
    border-radius: 26px;
  }

  .case-study-summary {
    padding-bottom: 72px;
  }

  .case-study-results {
    padding-top: 28px;
    padding-bottom: 72px;
  }

  .case-study-link-pill {
    min-height: 58px;
    padding: 8px 10px 8px 18px;
    gap: 10px;
    font-size: 1rem;
  }

  .case-study-link-pill-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .case-study-results-grid {
    gap: 18px;
    margin-top: 22px;
  }

  .case-study-result-card {
    min-height: 0;
    padding: 34px 28px;
    border-radius: 28px;
  }

  .case-study-result-label {
    margin-top: 18px;
    font-size: 1.22rem;
  }

  .case-study-result-metric {
    margin-top: 18px;
    gap: 10px;
  }

  .case-study-result-metric strong {
    font-size: 4rem;
  }

  .case-study-result-metric span {
    font-size: 2rem;
  }

  .case-study-result-card-insight::before,
  .case-study-result-card-insight::after {
    width: 124px;
    height: 124px;
    border-width: 12px;
  }

  .case-study-result-card-insight p {
    margin-top: 28px;
    font-size: 0.98rem;
  }

  .case-study-result-card-services::before {
    width: 128px;
    height: 128px;
    box-shadow: inset 0 0 0 32px rgba(255, 107, 26, 0.18);
  }

  .case-study-result-card-services::after {
    width: 140px;
    height: 140px;
    box-shadow: inset 0 0 0 34px rgba(255, 107, 26, 0.14);
  }

  .case-study-service-tags {
    gap: 10px;
    min-height: 0;
    margin-top: 28px;
  }

  .case-study-service-tag {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.94rem;
  }

  .result-showcase-card {
    min-height: 250px;
    padding: 24px 22px;
    border-radius: 28px;
  }

  .agency-service-card {
    min-height: 320px;
    padding: 26px 22px;
    border-radius: 26px;
  }

  .agency-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.05rem;
  }

  .agency-service-card h3 {
    margin-top: 22px;
    font-size: 1.85rem;
  }

  .agency-service-card p {
    font-size: 0.96rem;
  }

  .agency-service-card strong {
    padding-top: 22px;
    font-size: 0.9rem;
  }

  .result-showcase-card h3 {
    margin-top: 16px;
  }

  .result-showcase-card p {
    font-size: 0.96rem;
  }

  .result-showcase-card-image {
    min-height: 280px;
  }

  .result-showcase-card-image figcaption {
    right: 20px;
    bottom: 20px;
    font-size: 1rem;
  }

  .service-card,
  .process-step.active,
  .request-panel {
    padding: 24px;
  }

  .service-card p {
    margin-top: 56px;
  }

  .dashboard-panel {
    min-height: 310px;
  }

  .mini-dashboard {
    width: 94%;
  }

  .dash-row {
    grid-template-columns: 1fr 0.6fr 0.7fr;
  }

  .dash-row span:nth-child(3),
  .dash-row i {
    display: none;
  }

  .footer {
    flex-direction: column;
    width: min(calc(100% - 24px), var(--container));
  }
}

@media (max-width: 540px) {
  .request-panel {
    padding: 24px 20px;
  }

  .case-study-meta {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .case-study-meta article {
    text-align: left;
  }

  .case-study-result-card {
    padding: 28px 22px;
  }

  .case-study-link-pill {
    width: 100%;
    justify-content: space-between;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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