@font-face {
  font-family: Manrope;
  src: url("/portfolio-assets/fonts/manrope-cyrillic-v20.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Manrope;
  src: url("/portfolio-assets/fonts/manrope-latin-v20.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
:root {
  --blue: oklch(55% 0.225 260);
  --ink: oklch(23% 0.04 262);
  --muted: oklch(48% 0.035 260);
  --ice: oklch(96% 0.018 255);
  --line: oklch(90% 0.025 255);
  --white: #fff;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Manrope, "Segoe UI", sans-serif;
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button svg,
a svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
button {
  border: 0;
}
button:disabled {
  cursor: wait;
  opacity: 0.72;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
::selection {
  background: var(--blue);
  color: white;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.13;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
h1 {
  font-size: clamp(48px, 6.6vw, 92px);
  font-weight: 600;
}
h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 550;
}
h3 {
  font-weight: 600;
}
em {
  font-style: normal;
  color: var(--blue);
}
.container {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.header {
  width: min(1440px, 100%);
  padding: 25px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin: auto;
  background: #fff;
  position: relative;
  z-index: 30;
}
.brand {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -1.1px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.brand-period {
  color: var(--blue);
  margin-left: -9px;
}
.brand-icon {
  display: flex;
  align-items: flex-end;
  background: var(--blue);
  color: white;
  width: 30px;
  height: 31px;
  border-radius: 8px;
  font-size: 27px;
  padding: 0 6px 4px;
  letter-spacing: -4px;
  transform: rotate(-8deg);
}
.brand-icon span {
  font-size: 22px;
}
.header nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
.header nav a {
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}
.header nav a:hover {
  color: var(--blue);
}
sup {
  font-size: 9px;
  color: var(--blue);
  margin-left: 3px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
}
.nav-cta svg {
  width: 16px;
}
.menu-toggle {
  display: none;
}
.skip {
  position: fixed;
  top: -90px;
  left: 20px;
  background: white;
  padding: 15px;
  z-index: 50;
}
.skip:focus {
  top: 15px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 17px 23px;
  min-height: 52px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 650;
  transition:
    background 0.25s,
    transform 0.25s;
  line-height: 1.4;
}
.button.blue {
  background: var(--blue);
  color: #fff;
}
.button:hover {
  background: oklch(46% 0.2 260);
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(1px);
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
}
.availability i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  padding-top: 65px;
  align-items: center;
  padding-bottom: 90px;
}
.hero-copy {
  z-index: 2;
  padding-bottom: 20px;
}
.hero-intro {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 10px;
  margin-bottom: 32px;
  color: var(--muted);
}
.hero-intro > span:last-child {
  font-size: 10px;
}
.hero h1 {
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-left: -4px;
  max-width: 700px;
}
.hero-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 28px 0 29px;
  max-width: 370px;
}
.mobile-br {
  display: none;
}
.hero-stage {
  position: relative;
  height: 610px;
  margin-left: -15px;
  isolation: isolate;
  perspective: 1200px;
}
.stage-grid {
  position: absolute;
  inset: 0 -25px 0 -30px;
  background-image: radial-gradient(#b4cafa 0.8px, transparent 0.8px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse, black, transparent 70%);
}
.hero-orbit {
  width: 650px;
  height: 650px;
  max-width: none;
  position: absolute;
  top: -15px;
  left: -75px;
  fill: none;
  stroke: #d7e6ff;
  stroke-width: 1;
  animation: orbit 55s linear infinite;
}
.hero-orbit circle {
  stroke-dasharray: 3 10;
}
.hero-screen {
  position: absolute;
  top: 90px;
  left: 22%;
  width: 290px;
  background: white;
  border: 1px solid #dae5f8;
  border-radius: 19px;
  box-shadow:
    0 28px 65px -24px #2257a955,
    8px 8px 0 #e6eefc;
  transform: rotate(-9deg) rotateY(-10deg);
  overflow: hidden;
  animation: screen-in 1.2s var(--ease) both;
}
.screen-chrome {
  height: 35px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 9px;
  color: #7186a4;
  background: #fafcff;
}
.screen-chrome > span:first-child {
  font-size: 6px;
  letter-spacing: 2px;
}
.hero-screen-inner {
  padding: 22px 20px 10px;
}
.mini-greeting {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 17px;
}
.hero-blue-card {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: white;
  border-radius: 12px;
  padding: 18px;
  display: grid;
  gap: 16px;
  font-size: 9px;
}
.hero-blue-card:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 25px solid #ffffff13;
  border-radius: 50%;
  right: -60px;
  top: -35px;
}
.hero-blue-card strong {
  font-size: 38px;
  letter-spacing: -1.5px;
  line-height: 1;
}
.hero-blue-card small {
  font-size: 11px;
  letter-spacing: 0;
  font-weight: 400;
}
.hero-blue-card > span:last-child {
  display: flex;
  justify-content: space-between;
}
.hero-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 13px 0;
}
.hero-small-grid div {
  background: var(--ice);
  border-radius: 8px;
  padding: 12px;
  font-size: 10px;
}
.hero-small-grid span {
  display: block;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 5px;
}
.mini-activity {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  padding: 10px 0;
  border-bottom: 1px solid #edf2fa;
}
.mini-activity b {
  color: var(--blue);
}
.mini-bottom {
  display: flex;
  justify-content: space-between;
  padding: 15px 9px 0;
  color: var(--blue);
  font-size: 17px;
}
.mini-bottom span {
  color: #8fa2bc;
}
.hero-float {
  position: absolute;
  background: white;
  box-shadow: 0 20px 60px -25px #174a9459;
  border: 1px solid #e5edfc;
  border-radius: 16px;
  z-index: 3;
  animation: float 8s ease-in-out infinite;
}
.gift-float {
  top: 35px;
  right: -12px;
  width: 165px;
  height: 192px;
  transform: rotate(12deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gift-float .crystal {
  width: 108px;
  height: 108px;
  filter: drop-shadow(0 12px 10px #8ab4f755);
}
.gift-float span {
  font-size: 11px;
  text-align: center;
  line-height: 1.5;
  margin-top: 5px;
}
.check-float {
  bottom: 72px;
  left: 2%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 24px;
  transform: rotate(5deg);
  animation-delay: -3s;
}
.check-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  font-size: 19px;
}
.check-float b {
  display: block;
  font-size: 12px;
}
.check-float div span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}
.stage-note {
  position: absolute;
  right: -20px;
  bottom: 20px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  transform: rotate(-4deg);
}
.stage-note b {
  color: var(--blue);
  font-weight: 500;
}
.stage-cross {
  position: absolute;
  left: 7%;
  top: 65px;
  color: var(--blue);
  font-size: 32px;
  font-weight: 300;
}
.stage-cursor {
  position: absolute;
  right: -22px;
  bottom: 195px;
  transform: rotate(-5deg);
  z-index: 4;
  color: var(--blue);
}
.stage-cursor svg {
  width: 26px;
  height: 26px;
  fill: var(--blue);
  stroke: white;
  stroke-width: 1;
  transform: rotate(-90deg);
}
.stage-cursor span {
  font-size: 10px;
  background: var(--blue);
  color: white;
  border-radius: 0 5px 5px 5px;
  padding: 7px 10px;
  display: block;
  margin-left: 17px;
  margin-top: -4px;
}
.hero-foot {
  grid-column: 1/-1;
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--muted);
  font-size: 11px;
}
.hero-foot a {
  color: var(--ink);
}
.works {
  padding-top: 100px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 35px;
}
.section-heading p {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 4px;
}
.project-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  padding: 0 0 90px;
  margin-bottom: 70px;
  border-bottom: 1px solid var(--line);
}
.project-row.reverse {
  grid-template-columns: 1.2fr 0.8fr;
}
.project-row.reverse .project-info {
  order: 2;
}
.project-info h3 {
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 550;
  margin: 21px 0;
}
.project-info h3 a:hover {
  color: var(--blue);
}
.project-type {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.project-info p {
  font-size: 14px;
  color: var(--muted);
  max-width: 370px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}
.pill {
  font-size: 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
}
.case-link {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
  font-weight: 650;
  margin-top: 36px;
}
.case-link > span {
  height: 40px;
  width: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.3s;
}
.case-link:hover > span {
  background: var(--blue);
  color: white;
  transform: rotate(45deg);
}
.case-link svg {
  width: 16px;
}
.project-visual {
  min-width: 0;
}
.wip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  background: #edf3ff;
  padding: 4px 8px;
  border-radius: 4px;
  color: #1d51a9;
}
.wip:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.demo {
  background: #fff;
  border: 1px solid #d9e5fa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px -20px #295cab29;
  min-width: 0;
}
.project-visual {
  background: #edf4ff;
  padding: 28px;
  border-radius: 20px;
}
.demo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 22px;
  border-bottom: 1px solid #e7eef9;
  gap: 12px;
}
.demo-brand {
  font-size: 11px;
  font-weight: 700;
}
.demo-label {
  font-size: 8px;
  color: var(--muted);
  white-space: nowrap;
}
.game-heading {
  padding: 26px 24px 20px;
  text-align: center;
}
.game-heading > span {
  font-size: 9px;
  color: var(--blue);
}
.game-heading > b {
  display: block;
  font-size: 29px;
  letter-spacing: -1px;
  line-height: 1.4;
  font-weight: 600;
}
.game-heading p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
}
.reel-window {
  position: relative;
  overflow: hidden;
  padding: 10px 0 15px;
  background: linear-gradient(0deg, #f7faff, #fff);
}
.reel-window:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #fff9,
    transparent 13%,
    transparent 87%,
    #fff9
  );
}
.reel-pointer {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid var(--blue);
  z-index: 2;
}
.reel-track {
  display: flex;
  gap: 10px;
  transform: translateX(calc(50% - 170px));
  will-change: transform;
}
.reel-cell {
  flex: 0 0 100px;
  background: #edf4ff;
  border: 1px solid #e0ecfd;
  border-radius: 10px;
  padding: 14px 7px 10px;
  text-align: center;
  height: 129px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.reel-cell small {
  font-size: 9px;
  color: #3b5d91;
}
.prize-object {
  width: 70px;
  height: 80px;
  display: grid;
  place-items: center;
}
.prize-object .crystal {
  width: 70px;
  height: 70px;
}
.gift-box {
  height: 47px;
  width: 51px;
  background: #69a8ff;
  border-radius: 4px;
  position: relative;
  transform: rotate(-12deg);
  box-shadow: inset -10px -8px 0 #2b78ed;
}
.gift-box:before {
  content: "";
  position: absolute;
  inset: 0 21px;
  background: #dbefff;
}
.gift-box:after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 6px;
  height: 13px;
  background: #1560e7;
  border-radius: 3px;
}
.gift-box i {
  position: absolute;
  top: -16px;
  left: 9px;
  width: 22px;
  height: 17px;
  border: 6px solid #9ecfff;
  border-radius: 20px 12px 0 20px;
  transform: rotate(24deg);
}
.star-object {
  font-size: 83px;
  line-height: 1;
  color: #488eff;
  text-shadow: 3px 4px 0 #1554cc;
  transform: rotate(-8deg);
}
.demo-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 20px 22px;
  font-size: 9px;
  color: var(--muted);
  min-height: 65px;
}
.demo-bottom .button {
  padding: 12px 15px;
  min-height: 42px;
  font-size: 10px;
  gap: 20px;
}
.demo-bottom svg {
  width: 16px;
}
.demo-result {
  max-width: 180px;
}
.pet-filters {
  display: flex;
  gap: 5px;
  padding: 18px 20px;
}
.pet-filters button {
  font-size: 10px;
  padding: 8px 11px;
  border-radius: 6px;
  background: var(--ice);
  transition:
    background 0.2s,
    color 0.2s;
}
.pet-filters button.selected {
  background: var(--blue);
  color: white;
}
.pet-scene {
  position: relative;
  height: 236px;
  margin: 0 18px;
  border-radius: 8px;
  overflow: hidden;
  background: #eaf1fa;
}
.map-art {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      10deg,
      transparent 0 41px,
      #fff 42px 49px,
      transparent 50px 90px
    ),
    repeating-linear-gradient(
      100deg,
      transparent 0 50px,
      #fff 51px 57px,
      transparent 58px 115px
    );
  overflow: hidden;
}
.map-river {
  position: absolute;
  width: 30px;
  background: #b5d7ff;
  height: 420px;
  left: 40%;
  top: -70px;
  transform: rotate(-30deg);
  border-radius: 100%;
}
.map-park {
  position: absolute;
  background: #d2e3f5;
  border: 7px solid #e1edf9;
  border-radius: 40px;
}
.park-one {
  height: 100px;
  width: 120px;
  left: 25px;
  top: 22px;
  transform: rotate(10deg);
}
.park-two {
  height: 110px;
  width: 135px;
  right: 30px;
  bottom: -40px;
}
.map-street {
  position: absolute;
  font-size: 8px;
  color: #627997;
  transform: rotate(10deg);
}
.street-one {
  left: 30px;
  top: 135px;
}
.street-two {
  left: 70px;
  top: 50px;
}
.map-pin {
  width: 33px;
  height: 33px;
  position: absolute;
  background: white;
  border: 3px solid white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 10px #2365b63a;
  transition: scale 0.2s;
}
.map-pin.selected {
  background: var(--blue);
  scale: 1.15;
}
.map-pin img {
  transform: rotate(45deg);
  height: 21px;
  width: 21px;
}
.pin-one {
  left: 26%;
  top: 30%;
}
.pin-two {
  left: 46%;
  top: 60%;
}
.pin-three {
  left: 13%;
  top: 72%;
}
.pet-card {
  position: absolute;
  right: 13px;
  top: 13px;
  bottom: 13px;
  width: 143px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 20px #1c579412;
  display: flex;
  flex-direction: column;
}
.pet-card img {
  width: 100%;
  height: 111px;
  object-fit: contain;
  background: #f0f5fd;
  border-radius: 6px;
}
.pet-status {
  font-size: 8px;
  color: var(--blue);
  margin-top: 8px;
}
.pet-name {
  font-size: 12px;
  margin-top: 3px;
}
.pet-info {
  font-size: 8px;
  color: var(--muted);
  margin-top: 5px;
}
.hint {
  color: var(--blue);
}
.loyalty-content {
  padding: 27px 24px 18px;
}
.loyalty-heading > span {
  font-size: 11px;
  color: var(--muted);
}
.loyalty-heading > strong {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 54px;
  font-weight: 550;
  line-height: 1.4;
  letter-spacing: -2px;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.loyalty-heading small {
  font-size: 11px;
  letter-spacing: 0;
  color: var(--muted);
  font-weight: 400;
}
.loyalty-steps {
  display: flex;
  gap: 6px;
  margin: 12px 0 22px;
}
.loyalty-steps > span {
  flex: 1;
  border-top: 2px solid var(--line);
  font-size: 9px;
  padding-top: 9px;
  color: var(--muted);
}
.loyalty-steps .active {
  border-color: var(--blue);
  color: var(--blue);
}
.reward-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0 20px;
}
.qr-tile {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  flex: 0 0 65px;
  color: var(--blue);
}
.qr-tile .qr {
  width: 43px;
  height: 43px;
}
.reward-preview b {
  font-size: 12px;
}
.reward-preview p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
}
.loyalty-action {
  width: 100%;
  padding: 12px 16px;
  min-height: 42px;
  font-size: 11px;
}
.loyalty-status {
  font-size: 9px;
  text-align: center;
  margin-top: 11px;
  color: var(--muted);
}
.card-space {
  padding: 32px 25px 23px;
  perspective: 1000px;
}
.member-card {
  width: 100%;
  height: 208px;
  background: transparent;
  padding: 0;
  position: relative;
  display: block;
  transform-style: preserve-3d;
  transition: transform 0.8s var(--ease);
  text-align: left;
  border-radius: 14px;
}
.member-card.is-flipped {
  transform: rotateY(180deg);
}
.card-front,
.card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  padding: 22px;
  backface-visibility: hidden;
  overflow: hidden;
  background: var(--blue);
  color: white;
  box-shadow: 0 15px 25px -14px #145ed980;
}
.card-front {
  justify-content: space-between;
}
.card-topline,
.card-bottomline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  font-size: 9px;
}
.card-topline > b {
  font-size: 23px;
  letter-spacing: -1px;
  line-height: 1;
}
.card-topline > b > span {
  font-size: 26px;
}
.card-balance {
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -1.5px;
  z-index: 1;
}
.card-balance > span {
  display: block;
  font-size: 10px;
  letter-spacing: 0;
  margin-top: 4px;
}
.card-orbit {
  position: absolute;
  right: -90px;
  top: -60px;
  width: 270px;
  height: 270px;
  border: 35px solid #ffffff12;
  border-radius: 50%;
  box-shadow: 0 0 0 25px #ffffff09;
}
.card-back {
  transform: rotateY(180deg);
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #eef5ff;
  color: var(--blue);
  border: 1px solid #d2e3ff;
}
.card-back .qr {
  width: 103px;
  height: 103px;
}
.card-back b {
  font-size: 11px;
}
.card-back small {
  font-size: 9px;
}
.mini-actions {
  display: flex;
  gap: 7px;
  justify-content: center;
  font-size: 9px;
  color: #3a5e91;
}
.mini-actions span {
  padding: 7px 10px;
  background: var(--ice);
  border-radius: 5px;
}
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 30px 0 120px;
}
.approach-title h2 {
  margin: 25px 0;
}
.approach-title p {
  max-width: 390px;
  color: var(--muted);
  font-size: 14px;
}
.approach-list article {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.approach-list article:first-child {
  padding-top: 0;
}
.approach-list article > span {
  font-size: 10px;
  color: var(--blue);
  padding-top: 5px;
}
.approach-list h3 {
  font-size: 21px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.approach-list p {
  font-size: 13px;
  color: var(--muted);
}
.contact {
  background: var(--blue);
  color: white;
  border-radius: 20px;
  padding: 38px 48px 34px;
  overflow: hidden;
}
.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #e0ebff;
}
.contact .availability i {
  background: #fff;
}
.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 42px 0 40px;
  gap: 30px;
}
.contact-link > span:first-child {
  font-size: clamp(36px, 5.5vw, 76px);
  letter-spacing: -0.04em;
  font-weight: 500;
  line-height: 1.15;
}
.contact-link em {
  color: #bdd8ff;
}
.contact-arrow {
  width: 105px;
  height: 105px;
  border: 1px solid #ffffff66;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:
    background 0.3s,
    transform 0.3s;
}
.contact-arrow svg {
  width: 45px;
  height: 45px;
  stroke-width: 1;
}
.contact-link:hover .contact-arrow {
  background: white;
  color: var(--blue);
  transform: rotate(45deg);
}
.contact-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid #ffffff35;
  padding-top: 23px;
}
.contact-bottom p {
  font-size: 12px;
  color: #e0ebff;
}
.contact-bottom a {
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.contact-bottom svg {
  width: 17px;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 40px;
  font-size: 10px;
  color: var(--muted);
}
.footer .brand {
  font-size: 19px;
  color: var(--ink);
}
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 40;
}
.case-breadcrumb {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 37px;
  font-size: 11px;
  color: var(--muted);
}
.case-breadcrumb a {
  color: var(--blue);
}
.case-hero {
  padding: 48px 0 58px;
}
.case-hero h1 {
  font-size: clamp(43px, 6vw, 82px);
  max-width: 1100px;
  font-weight: 550;
  line-height: 1.13;
  color: var(--blue);
}
.case-lead {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
  margin-top: 36px;
}
.case-lead p {
  font-size: 17px;
  max-width: 630px;
  color: var(--muted);
}
.case-lead .tags {
  max-width: 310px;
  margin: 4px 0;
  justify-content: flex-end;
}
.case-nav {
  display: flex;
  gap: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 16px;
  font-size: 11px;
}
.case-nav a:hover {
  color: var(--blue);
}
.case-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-block: 95px;
}
.section-label {
  display: block;
  color: var(--blue);
  font-size: 11px;
  margin-bottom: 21px;
}
.case-overview h2 {
  font-size: 35px;
  max-width: 420px;
}
.case-overview p,
.story-text p,
.case-result p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}
.case-overview p + p,
.case-result p + p {
  margin-top: 20px;
}
.story-demo {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 75px;
  align-items: center;
  padding-block: 25px 90px;
}
.story-text h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  margin-bottom: 26px;
}
.demo-note {
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.story-visual {
  background: #edf4ff;
  padding: 40px;
  border-radius: 20px;
  min-width: 0;
}
.statement {
  padding: 65px 75px;
  background: var(--blue);
  color: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 75px;
}
.statement p {
  font-size: clamp(25px, 3.3vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.4;
  max-width: 930px;
}
.statement-symbol {
  font-size: 90px;
  font-weight: 300;
  line-height: 1;
  color: #b5d5ff;
}
.case-system {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 75px;
  padding-block: 110px;
}
.system-visual {
  background: #edf4ff;
  border-radius: 20px;
  padding: 28px;
  min-width: 0;
}
.system-window {
  background: white;
  border: 1px solid #d7e4f9;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 10px 30px -15px #366b9e33;
}
.system-window .demo-top > span:last-child {
  font-size: 7px;
  letter-spacing: 2px;
  color: #a2b7d7;
}
.system-body {
  display: flex;
}
.system-sidebar {
  display: flex;
  flex-direction: column;
  flex: 0 0 95px;
  border-right: 1px solid var(--line);
  padding: 20px 10px;
  font-size: 8px;
  gap: 14px;
  color: var(--muted);
  background: #fafcff;
}
.system-logomark {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 800;
}
.system-sidebar .active {
  background: #eaf2ff;
  color: var(--blue);
  border-radius: 4px;
  padding: 5px 7px;
  margin: -5px -7px;
}
.system-main {
  flex: 1;
  min-width: 0;
  padding: 21px 20px;
}
.system-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 10px;
}
.system-caption > span {
  font-size: 8px;
  color: var(--muted);
}
.system-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 23px 0;
  gap: 5px;
}
.system-flow > span {
  background: #edf4ff;
  color: #2f62a9;
  border-radius: 4px;
  padding: 8px 6px;
  font-size: 8px;
}
.system-flow svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
}
.activity-head {
  font-size: 9px;
  color: var(--muted);
  margin: 22px 0 10px;
}
.system-event {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  padding: 9px 0;
  border-bottom: 1px solid #eef3fb;
}
.system-event > span:last-child {
  margin-left: auto;
  color: #8293a9;
}
.event-dot {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: var(--blue);
}
.system-chart {
  height: 63px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 25px 0 15px;
}
.system-chart i {
  width: 100%;
  height: var(--bar);
  background: #b4d2ff;
  border-radius: 2px 2px 0 0;
}
.system-chart i:nth-child(3n) {
  background: var(--blue);
}
.system-disclaimer {
  font-size: 7px;
  color: var(--muted);
}
.scope {
  padding-bottom: 85px;
}
.scope h2 {
  font-size: 35px;
  margin-bottom: 37px;
}
.scope-list article {
  display: grid;
  grid-template-columns: 0.7fr 1fr 30px;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.scope-list h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
}
.scope-list p {
  font-size: 13px;
  color: var(--muted);
}
.scope-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  stroke-width: 1.5;
  fill: none;
}
.case-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 90px;
}
.case-result h2 {
  font-size: 37px;
}
.next-project {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  padding-block: 30px;
  margin-bottom: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.next-project > span {
  grid-column: 1/-1;
  font-size: 11px;
  color: var(--muted);
}
.next-project strong {
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  font-weight: 550;
}
.next-project svg {
  width: 35px;
  height: 35px;
  transition: transform 0.3s;
}
.next-project:hover {
  color: var(--blue);
}
.next-project:hover svg {
  transform: translate(4px, -4px);
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  50% {
    translate: 0 -12px;
  }
}
@keyframes screen-in {
  from {
    translate: 0 35px;
  }
  to {
    translate: 0 0;
  }
}
@keyframes enter {
  from {
    translate: 0 20px;
    opacity: 0.4;
  }
  to {
    translate: 0 0;
    opacity: 1;
  }
}
.enter {
  animation: enter 0.7s var(--ease) both;
}
@media (min-width: 1600px) {
  .hero-stage {
    margin-left: 30px;
  }
  .hero-screen {
    left: 25%;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .header {
    padding: 24px 32px;
  }
  .hero {
    min-height: 690px;
    padding-top: 25px;
  }
  .hero-intro > span:last-child {
    display: none;
  }
  .hero-stage {
    height: 550px;
    scale: 0.9;
    transform-origin: center right;
    margin-left: -70px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .project-row,
  .project-row.reverse {
    gap: 35px;
  }
  .project-visual {
    padding: 20px;
  }
  .demo-top {
    padding: 15px;
  }
  .demo-brand {
    font-size: 10px;
  }
  .demo-label {
    font-size: 7px;
  }
  .story-demo,
  .case-system {
    gap: 35px;
  }
  .story-visual {
    padding: 22px;
  }
  .approach {
    gap: 50px;
  }
  .system-visual {
    padding: 20px;
  }
  .case-overview {
    gap: 50px;
  }
  .contact {
    padding: 34px;
  }
  .system-sidebar {
    flex-basis: 74px;
  }
  .system-main {
    padding: 15px;
  }
  .stage-note {
    right: 0;
  }
}
@media (max-width: 800px) {
  .header nav {
    gap: 20px;
  }
  .nav-cta {
    font-size: 11px;
    gap: 13px;
  }
  .brand {
    font-size: 21px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-stage {
    scale: 0.75;
    margin-left: -130px;
    min-width: 390px;
    transform-origin: center right;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
  }
  .hero-copy p {
    font-size: 13px;
    max-width: 280px;
  }
  .hero-intro {
    margin-bottom: 24px;
  }
  .project-row,
  .project-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 55px;
    margin-bottom: 55px;
  }
  .project-row.reverse .project-info {
    order: 0;
  }
  .project-info h3 {
    font-size: 38px;
  }
  .project-info p {
    max-width: 540px;
  }
  .project-info .tags {
    margin-top: 15px;
  }
  .case-link {
    margin-top: 22px;
  }
  .project-visual {
    padding: 38px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .section-heading p br {
    display: none;
  }
  .works {
    padding-top: 65px;
  }
  .approach {
    gap: 36px;
  }
  .approach h2 {
    font-size: 35px;
  }
  .approach-list h3 {
    font-size: 19px;
  }
  .contact-link > span:first-child {
    font-size: 48px;
  }
  .contact-arrow {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
  }
  .contact-arrow svg {
    width: 30px;
  }
  .contact-top > span:last-child {
    display: none;
  }
  .footer > span:nth-child(2) {
    display: none;
  }
  .case-hero h1 {
    font-size: 56px;
  }
  .case-lead {
    display: block;
  }
  .case-lead p {
    font-size: 16px;
  }
  .case-lead .tags {
    justify-content: flex-start;
    max-width: none;
    margin-top: 20px;
  }
  .case-overview {
    padding-block: 65px;
    gap: 35px;
  }
  .case-overview h2 {
    font-size: 29px;
  }
  .story-demo,
  .case-system {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 65px;
  }
  .story-text p {
    max-width: 650px;
  }
  .story-visual {
    padding: 35px;
  }
  .case-system .system-visual {
    order: 2;
    padding: 35px;
  }
  .case-system {
    padding-top: 65px;
  }
  .system-sidebar {
    flex-basis: 100px;
  }
  .system-main {
    padding: 25px;
  }
  .system-caption {
    font-size: 13px;
  }
  .system-event {
    font-size: 11px;
    padding: 13px 0;
  }
  .system-flow > span {
    font-size: 11px;
  }
  .system-disclaimer {
    font-size: 9px;
  }
  .statement {
    padding: 40px;
    gap: 20px;
  }
  .statement-symbol {
    font-size: 65px;
  }
  .scope-list article {
    grid-template-columns: 0.7fr 1fr 20px;
    gap: 15px;
  }
  .case-result {
    gap: 35px;
  }
  .case-result h2 {
    font-size: 30px;
  }
  .case-nav {
    gap: 25px;
  }
  .next-project strong {
    font-size: 26px;
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 36px);
  }
  .header {
    padding: 22px 18px;
    gap: 12px;
  }
  .brand {
    font-size: 23px;
  }
  .brand-icon {
    width: 28px;
    height: 29px;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    background: white;
    box-shadow: 0 15px 25px #17427522;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .header nav.is-open {
    display: flex;
  }
  .header nav a {
    font-size: 16px;
  }
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: var(--ice);
    border-radius: 50%;
    padding: 12px;
  }
  .menu-toggle span {
    height: 1px;
    background: var(--ink);
    width: 20px;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .hero {
    display: block;
    padding-top: 36px;
    min-height: 0;
    padding-bottom: 62px;
    overflow: hidden;
  }
  .hero-intro {
    margin-bottom: 25px;
  }
  .hero h1 {
    font-size: clamp(47px, 11vw, 65px);
    line-height: 1.09;
    letter-spacing: -0.04em;
    max-width: 100%;
    margin: 0;
  }
  .hero-copy p {
    font-size: 14px;
    line-height: 1.75;
    max-width: 330px;
    margin: 25px 0;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero-copy .button {
    font-size: 12px;
    min-height: 49px;
    padding: 15px 19px;
    gap: 35px;
  }
  .hero-stage {
    height: 510px;
    width: 380px;
    min-width: 0;
    max-width: 100%;
    scale: 0.88;
    margin: -10px auto -45px;
    transform-origin: center center;
  }
  .hero-screen {
    width: 255px;
    left: 16%;
    top: 70px;
  }
  .gift-float {
    width: 120px;
    height: 145px;
    right: 0;
    top: 26px;
  }
  .gift-float .crystal {
    width: 80px;
    height: 80px;
  }
  .gift-float span {
    font-size: 10px;
  }
  .hero-screen-inner {
    padding: 17px 17px 10px;
  }
  .mini-activity {
    padding: 8px 0;
  }
  .hero-blue-card strong {
    font-size: 33px;
  }
  .hero-small-grid {
    margin: 9px 0;
  }
  .check-float {
    left: -8px;
    bottom: 30px;
    padding: 12px 18px;
  }
  .stage-note {
    display: none;
  }
  .stage-cursor {
    right: -3px;
    bottom: 105px;
  }
  .stage-cursor span {
    font-size: 8px;
  }
  .stage-cross {
    left: 0;
    top: 35px;
  }
  .hero-orbit {
    height: 490px;
    width: 490px;
    left: -45px;
    top: 0;
  }
  .hero-foot {
    font-size: 10px;
    bottom: 0;
    gap: 15px;
    padding: 15px 0;
  }
  .hero-foot > span {
    display: none;
  }
  .hero-foot > a {
    margin-left: auto;
  }
  .works {
    padding-top: 60px;
  }
  .section-heading {
    margin-bottom: 40px;
    gap: 20px;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .section-heading p {
    font-size: 12px;
  }
  .project-row,
  .project-row.reverse {
    gap: 23px;
    margin-bottom: 40px;
    padding-bottom: 42px;
  }
  .project-info h3 {
    font-size: 34px;
    margin: 16px 0;
  }
  .project-info p {
    font-size: 13px;
    line-height: 1.8;
  }
  .project-type {
    font-size: 10px;
  }
  .pill {
    font-size: 9px;
    padding: 4px 8px;
  }
  .case-link {
    font-size: 11px;
    gap: 20px;
    margin-top: 22px;
  }
  .case-link > span {
    height: 34px;
    width: 34px;
  }
  .project-visual {
    padding: 13px;
    border-radius: 14px;
  }
  .demo {
    border-radius: 11px;
  }
  .demo-top {
    padding: 13px 14px;
  }
  .demo-brand {
    font-size: 9px;
  }
  .demo-label {
    font-size: 7px;
  }
  .game-heading {
    padding: 24px 15px 16px;
  }
  .game-heading > b {
    font-size: 25px;
  }
  .game-heading p {
    font-size: 9px;
  }
  .demo-bottom {
    padding: 16px 13px;
    font-size: 8px;
    gap: 8px;
  }
  .demo-result {
    max-width: 120px;
  }
  .demo-bottom .button {
    padding: 11px;
    gap: 12px;
    font-size: 9px;
  }
  .pet-filters {
    padding: 15px 12px;
    gap: 4px;
  }
  .pet-filters button {
    font-size: 9px;
    padding: 9px 8px;
    min-height: 36px;
  }
  .pet-scene {
    margin: 0 10px;
    height: 225px;
  }
  .pet-card {
    width: 128px;
    right: 9px;
    top: 9px;
    bottom: 9px;
  }
  .pet-name {
    font-size: 11px;
  }
  .pet-card img {
    height: 108px;
  }
  .pet-info {
    font-size: 7px;
  }
  .pin-two {
    left: 34%;
  }
  .pin-one {
    left: 14%;
  }
  .pin-three {
    left: 10%;
    top: 76%;
  }
  .map-pin {
    width: 32px;
    height: 32px;
  }
  .loyalty-content {
    padding: 22px 17px 16px;
  }
  .loyalty-heading > span {
    font-size: 10px;
  }
  .loyalty-heading > strong {
    font-size: 48px;
  }
  .loyalty-steps > span {
    font-size: 8px;
  }
  .reward-preview b {
    font-size: 11px;
  }
  .reward-preview p {
    font-size: 9px;
  }
  .card-space {
    padding: 24px 15px 18px;
  }
  .member-card {
    height: 185px;
  }
  .card-front,
  .card-back {
    padding: 18px;
  }
  .card-balance {
    font-size: 38px;
  }
  .card-topline {
    font-size: 8px;
  }
  .card-bottomline {
    font-size: 8px;
  }
  .mini-actions {
    font-size: 8px;
    gap: 4px;
  }
  .mini-actions span {
    padding: 7px;
  }
  .approach {
    display: block;
    padding-top: 10px;
    padding-bottom: 65px;
  }
  .approach-title h2 {
    font-size: 35px;
    margin: 20px 0;
  }
  .approach-title p {
    font-size: 13px;
  }
  .approach-list {
    margin-top: 35px;
  }
  .approach-list article {
    gap: 23px;
    padding: 22px 0;
  }
  .approach-list h3 {
    font-size: 20px;
  }
  .approach-list p {
    font-size: 12px;
  }
  .contact {
    padding: 27px 23px;
    border-radius: 14px;
  }
  .contact-link {
    margin: 31px 0;
    gap: 12px;
    align-items: flex-end;
  }
  .contact-link > span:first-child {
    font-size: 37px;
    line-height: 1.2;
    letter-spacing: -0.04em;
  }
  .contact-arrow {
    width: 47px;
    height: 47px;
    margin-bottom: 5px;
  }
  .contact-arrow svg {
    width: 22px;
    height: 22px;
  }
  .contact-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding-top: 20px;
  }
  .contact-bottom p {
    font-size: 11px;
  }
  .contact-bottom a {
    font-size: 16px;
  }
  .contact-top .availability {
    font-size: 10px;
  }
  .footer {
    padding-block: 28px;
    gap: 12px;
    font-size: 9px;
  }
  .footer .brand {
    font-size: 17px;
  }
  .case-breadcrumb {
    margin-top: 20px;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 10px;
  }
  .case-hero {
    padding: 30px 0 32px;
  }
  .case-hero h1 {
    font-size: clamp(37px, 9vw, 51px);
    line-height: 1.16;
    letter-spacing: -0.035em;
  }
  .case-lead {
    margin-top: 25px;
  }
  .case-lead p {
    font-size: 14px;
    line-height: 1.8;
  }
  .case-nav {
    overflow-x: auto;
    white-space: nowrap;
    gap: 23px;
    font-size: 10px;
    padding-block: 15px;
    scrollbar-width: thin;
  }
  .case-overview {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 50px;
  }
  .section-label {
    font-size: 10px;
    margin-bottom: 15px;
  }
  .case-overview h2 {
    font-size: 30px;
  }
  .case-overview p,
  .story-text p,
  .case-result p {
    font-size: 13px;
    line-height: 1.8;
  }
  .story-demo {
    padding-top: 0;
    padding-bottom: 50px;
    gap: 23px;
  }
  .story-text h2 {
    font-size: 32px;
    margin-bottom: 22px;
  }
  .demo-note {
    font-size: 9px;
    margin-top: 20px;
    padding-top: 13px;
  }
  .story-visual {
    padding: 13px;
    border-radius: 14px;
  }
  .statement {
    padding: 30px 24px;
    gap: 10px;
  }
  .statement p {
    font-size: 25px;
    line-height: 1.45;
  }
  .statement-symbol {
    font-size: 43px;
  }
  .case-system {
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 25px;
  }
  .case-system .system-visual {
    padding: 13px;
    border-radius: 14px;
  }
  .system-sidebar {
    flex-basis: 63px;
    padding: 17px 9px;
    font-size: 7px;
  }
  .system-main {
    padding: 15px 12px;
  }
  .system-caption {
    font-size: 9px;
    gap: 10px;
  }
  .system-flow > span {
    font-size: 7px;
    padding: 8px 4px;
  }
  .system-flow svg {
    width: 9px;
    flex-shrink: 0;
  }
  .system-event {
    font-size: 8px;
    padding: 10px 0;
  }
  .system-disclaimer {
    font-size: 7px;
  }
  .scope {
    padding-bottom: 45px;
  }
  .scope h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .scope-list article {
    grid-template-columns: 1fr 20px;
    gap: 10px;
    padding: 20px 0;
  }
  .scope-list h3 {
    font-size: 19px;
  }
  .scope-list p {
    font-size: 12px;
    grid-row: 2;
    grid-column: 1/-1;
  }
  .scope-list svg {
    grid-row: 1;
    grid-column: 2;
  }
  .case-result {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-bottom: 50px;
  }
  .case-result h2 {
    font-size: 31px;
  }
  .next-project {
    padding-block: 22px;
    margin-bottom: 50px;
  }
  .next-project strong {
    font-size: 23px;
  }
  .next-project svg {
    width: 27px;
  }
  .next-project > span {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .member-card {
    transform: none !important;
  }
  .member-card .card-back {
    transform: none;
    visibility: hidden;
  }
  .member-card.is-flipped .card-front {
    visibility: hidden;
  }
  .member-card.is-flipped .card-back {
    visibility: visible;
  }
}

.system-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 25px 0 18px;
}
.system-modules span {
  font-size: 9px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--blue);
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 40px;
  }
  .contact-link > span:first-child {
    font-size: 31px;
  }
  .contact-arrow {
    width: 40px;
    height: 40px;
  }
  .demo-label {
    font-size: 6px;
  }
  .demo-brand {
    font-size: 8px;
  }
  .mini-actions {
    flex-wrap: wrap;
  }
  .card-topline {
    font-size: 7px;
  }
  .pet-card {
    width: 115px;
  }
  .loyalty-steps > span {
    font-size: 7px;
  }
}

.hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  overflow: clip;
}
.hero-copy,
.hero-stage {
  min-width: 0;
}
@media (min-width: 801px) and (max-width: 1100px) {
  .hero h1 {
    font-size: clamp(49px, 6.1vw, 66px);
  }
}
/* Real project screens */
.brand-icon {
  width: 32px;
  height: 32px;
  padding: 0;
  transform: none;
  border-radius: 8px;
  display: block;
}
.brand-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  stroke: none;
}
.system-logomark {
  letter-spacing: -0.04em;
}
.scope-list article {
  grid-template-columns: 0.7fr 1fr;
}
.screenshots {
  padding-bottom: 100px;
}
.screenshots-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 35px;
}
.screenshots-heading h2 {
  font-size: 38px;
}
.screenshots-heading p {
  max-width: 380px;
  color: var(--muted);
  font-size: 13px;
}
.screenshots-grid {
  display: grid;
  gap: 30px;
  padding: 40px;
  background: var(--ice);
  border: 1px solid #e2ebfb;
  border-radius: 20px;
}
.screenshots-grid.phones {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
  padding: 45px 60px;
}
.screenshots-grid.two-phones {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-inline: 15%;
}
.screenshots-grid.desktop {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.screenshots-grid.mixed {
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.7fr);
  align-items: center;
}
.screen-figure {
  margin: 0;
  min-width: 0;
}
.screen-image {
  position: relative;
  display: block;
  cursor: zoom-in;
  border-radius: 12px;
  transition: transform 0.3s var(--ease);
}
.screen-image:hover {
  transform: translateY(-5px);
}
.screen-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #d5dfef;
  background: #fff;
}
.phones .screen-image img {
  max-height: 510px;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 30px -20px #1839615c;
}
.two-phones .screen-image img {
  background: transparent;
  box-shadow: none;
}
.mixed .screen-image img {
  max-height: 450px;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
}
.screen-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  border: 1px solid #fff;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 2px 10px #12377320;
}
.screen-figure figcaption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 21px;
}
.screen-figure figcaption strong {
  font-size: 14px;
  font-weight: 650;
}
.screen-figure figcaption > span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}
.cabinet-screen .screen-figure figcaption {
  margin-top: 16px;
}
.cabinet-screen .screen-image {
  box-shadow: 0 10px 25px -15px #1839614a;
}
.lightbox {
  width: min(1200px, calc(100% - 48px));
  max-height: calc(100dvh - 40px);
  padding: 20px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f6f9ff;
  color: var(--ink);
  box-shadow: 0 30px 100px #07235555;
}
.lightbox::backdrop {
  background: rgb(12 26 48 / 0.82);
}
body:has(.lightbox[open]) {
  overflow: hidden;
}
.lightbox-toolbar,
.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.lightbox-title {
  font-size: 15px;
  font-weight: 600;
}
.lightbox-close {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 13px;
  font-size: 12px;
  min-height: 44px;
}
.lightbox-close span {
  font-size: 25px;
  line-height: 1;
}
.lightbox-stage {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 15px;
  margin: 18px 0;
}
.lightbox-image {
  max-height: calc(100dvh - 220px);
  width: auto;
  max-width: 100%;
  margin: auto;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-prev,
.lightbox-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 23px;
  transition: background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: #e4edff;
}
.lightbox-prev[hidden],
.lightbox-next[hidden] {
  visibility: hidden;
  display: block;
}
.lightbox-footer {
  font-size: 12px;
  padding-top: 5px;
}
.lightbox-count {
  color: var(--muted);
}
.lightbox-original {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 8px 0;
}
@media (max-width: 800px) {
  .screenshots {
    padding-bottom: 65px;
  }
  .screenshots-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }
  .screenshots-heading h2 {
    font-size: 32px;
  }
  .screenshots-grid {
    padding: 22px;
    gap: 22px;
  }
  .screenshots-grid.phones {
    gap: 20px;
    padding: 26px;
  }
  .screen-figure figcaption strong {
    font-size: 12px;
  }
  .screen-figure figcaption > span {
    font-size: 10px;
  }
  .scope-list article {
    grid-template-columns: 1fr;
  }
  .scope-list p {
    grid-column: auto;
  }
}
@media (max-width: 600px) {
  .screenshots {
    padding-bottom: 50px;
  }
  .screenshots-grid.phones {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 22px;
    gap: 23px;
    padding: 25px 22px;
    border-radius: 14px;
  }
  .phones .screen-figure {
    flex: 0 0 79%;
    scroll-snap-align: start;
  }
  .phones .screen-image img {
    max-height: 430px;
  }
  .screenshots-grid.desktop,
  .screenshots-grid.mixed {
    grid-template-columns: minmax(0, 1fr);
    padding: 18px;
    border-radius: 14px;
    gap: 30px;
  }
  .mixed .screen-image img {
    max-height: 420px;
  }
  .screen-figure figcaption {
    margin-top: 15px;
  }
  .screen-figure figcaption strong {
    font-size: 13px;
  }
  .screen-figure figcaption > span {
    font-size: 11px;
  }
  .lightbox {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    padding: 14px;
    border-radius: 12px;
  }
  .lightbox-toolbar {
    gap: 10px;
  }
  .lightbox-title {
    font-size: 12px;
  }
  .lightbox-close {
    gap: 8px;
    font-size: 10px;
    padding: 7px 10px;
  }
  .lightbox-stage {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 6px;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 34px;
    height: 44px;
    font-size: 18px;
  }
  .lightbox-image {
    max-height: calc(100dvh - 195px);
  }
  .lightbox-footer {
    font-size: 10px;
    gap: 10px;
  }
}
