:root {
  --bg: #070604;
  --bg-soft: #100d09;
  --panel: #17110c;
  --panel-2: #20170f;
  --text: #fff8ec;
  --muted: #b9aa93;
  --line: rgba(255, 188, 82, 0.18);
  --marigold: #ff9f1a;
  --amber: #ffc15c;
  --ember: #d75816;
  --mint: #8ce0b8;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 12%, rgba(255, 159, 26, 0.14), transparent 28rem),
    radial-gradient(circle at 18% 30%, rgba(140, 224, 184, 0.06), transparent 22rem),
    linear-gradient(180deg, #070604 0%, #0d0906 44%, #070604 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

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

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

.page-shell {
  overflow: hidden;
}

.section-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 193, 92, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 6, 4, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.36);
  transform: translateX(-50%);
  transition: border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 193, 92, 0.32);
  background: rgba(7, 6, 4, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 193, 92, 0.26);
  border-radius: var(--radius);
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  background: linear-gradient(145deg, rgba(255, 159, 26, 0.18), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 22px rgba(255, 159, 26, 0.12);
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 39px;
  margin: 0 4px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 193, 92, 0.24);
  border-radius: var(--radius);
  color: var(--text);
  font: 700 12px/1 "JetBrains Mono", monospace;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: rgba(255, 193, 92, 0.55);
  background: rgba(255, 193, 92, 0.1);
}

.language-toggle [data-language-flag] {
  font-size: 19px;
  line-height: 1;
}

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

.site-nav .nav-cta {
  margin-left: 4px;
  color: #130b04;
  background: var(--amber);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 193, 92, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--amber);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
  min-height: 94vh;
  padding: 150px 0 76px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 8vw, 104px);
}

.hero h1 {
  max-width: none;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(44px, 6.5vw, 88px);
}

.brand-title {
  position: relative;
  display: inline-block;
  cursor: help;
}

.brand-title::after {
  position: absolute;
  bottom: -42px;
  left: 0;
  z-index: 8;
  width: max-content;
  max-width: min(360px, 80vw);
  padding: 9px 11px;
  border: 1px solid rgba(255, 193, 92, 0.28);
  border-radius: 7px;
  color: var(--amber);
  font: 600 11px/1.4 "JetBrains Mono", monospace;
  white-space: normal;
  content: attr(data-naming-info);
  opacity: 0;
  visibility: hidden;
  background: rgba(9, 7, 4, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  pointer-events: none;
}

.brand-title:hover::after,
.brand-title:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.brand-title:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 6px;
  border-radius: 4px;
}

h2 {
  max-width: 780px;
  font-size: clamp(34px, 5vw, 66px);
}

h3 {
  font-size: clamp(22px, 2.4vw, 30px);
}

.hero-text,
.section-heading p,
.contact p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #120905;
  background: linear-gradient(135deg, var(--amber), var(--marigold));
  box-shadow: 0 16px 34px rgba(255, 159, 26, 0.28);
}

.button.secondary {
  color: var(--text);
  border-color: rgba(255, 193, 92, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
  position: relative;
}

.device-switcher {
  position: relative;
}

.device-tabs {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 12;
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 193, 92, 0.22);
  border-radius: 999px;
  background: rgba(7, 6, 4, 0.82);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.device-tab {
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font: 700 11px "JetBrains Mono", monospace;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.device-tab:hover,
.device-tab:focus-visible {
  color: var(--text);
}

.device-tab.is-active {
  color: #140b04;
  background: var(--amber);
}

.device-view {
  min-height: 500px;
}

.device-view[hidden] {
  display: none;
}

.device-view.is-preloading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

.device-view.is-leaving .model-render-layer {
  animation: model-fade-out 850ms ease-in-out forwards;
}

.device-view.is-entering .model-render-layer {
  animation: model-fade-in 850ms ease-in-out both;
}

@keyframes model-fade-out {
  0% {
    opacity: 1;
    filter: blur(0);
  }
  38% {
    opacity: 1;
    filter: blur(17px);
  }
  100% {
    opacity: 0;
    filter: blur(24px);
  }
}

@keyframes model-fade-in {
  from {
    opacity: 0;
    filter: blur(24px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.device-stage {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 193, 92, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 159, 26, 0.18), transparent 17rem),
    linear-gradient(145deg, #12100d, #080706);
  box-shadow: var(--shadow);
  perspective: 1100px;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.petal-field {
  position: absolute;
  inset: -18% -10%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.petal {
  position: absolute;
  top: -18%;
  left: var(--petal-x);
  width: calc(8px * var(--petal-scale));
  height: calc(17px * var(--petal-scale));
  border-radius: 75% 10% 75% 15%;
  opacity: var(--petal-opacity);
  background:
    radial-gradient(circle at 35% 28%, #ffd079 0 12%, transparent 13%),
    linear-gradient(145deg, #ffba3d, #ef7814 58%, #a83c08);
  box-shadow: 0 0 12px rgba(255, 126, 20, 0.24);
  filter: blur(var(--petal-blur));
  transform-origin: 50% 100%;
  animation: petal-fall var(--petal-duration) linear var(--petal-delay) infinite;
}

@keyframes petal-fall {
  0% {
    transform: translate3d(0, -12%, 0) rotate(0deg) rotateY(0deg);
  }
  24% {
    transform: translate3d(var(--petal-drift-a), 30vh, 0) rotate(95deg) rotateY(120deg);
  }
  52% {
    transform: translate3d(var(--petal-drift-b), 62vh, 0) rotate(205deg) rotateY(240deg);
  }
  78% {
    transform: translate3d(var(--petal-drift-c), 94vh, 0) rotate(310deg) rotateY(330deg);
  }
  100% {
    transform: translate3d(var(--petal-drift-d), 126vh, 0) rotate(430deg) rotateY(480deg);
  }
}

.device-stage img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.device-stage.is-dragging {
  cursor: grabbing;
}

.device-stage:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.device-object {
  position: relative;
  transform:
    rotateX(var(--rotate-x, -11deg))
    rotateY(var(--rotate-y, -18deg))
    rotateZ(var(--rotate-z, -2deg))
    scale(var(--device-scale, 1));
  transform-style: preserve-3d;
  transition: transform 120ms ease-out;
  will-change: transform;
}

.model-render-layer {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 1;
  filter: blur(0);
  will-change: opacity, filter;
}

.logo-plaque {
  width: 292px;
  height: 292px;
  transform-style: preserve-3d;
}

.logo-shell-layer {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 30px;
  background:
    linear-gradient(135deg, #4d2c13, #d78620 46%, #6b3a13);
  transform: translateZ(calc(var(--layer) * 1px));
}

.logo-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 4px solid rgba(255, 193, 92, 0.52);
  border-radius: 30px;
  backface-visibility: hidden;
}

.logo-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-front {
  background: #0b0b0a;
  box-shadow: inset 0 0 42px rgba(255, 159, 26, 0.08);
  transform: translateZ(10px);
}

.logo-back {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 193, 92, 0.18), transparent 10rem),
    linear-gradient(145deg, #2a1a0e, #0b0906);
  transform: translateZ(-10px) rotateY(180deg);
}

.logo-back img {
  width: 42%;
  height: 42%;
  opacity: 0.68;
  filter: grayscale(0.75);
}

.device-stage.is-dragging .device-object {
  transition: none;
}

.device-stage.is-intro-spinning .device-object {
  animation: intro-model-spin 3.3s cubic-bezier(0.42, 0, 0.2, 1) both;
}

@keyframes intro-model-spin {
  from {
    transform:
      rotateX(var(--rotate-x, -11deg))
      rotateY(var(--rotate-y, -18deg))
      rotateZ(var(--rotate-z, -2deg))
      scale(var(--device-scale, 1));
  }
  to {
    transform:
      rotateX(var(--rotate-x, -11deg))
      rotateY(calc(var(--rotate-y, -18deg) + 360deg))
      rotateZ(var(--rotate-z, -2deg))
      scale(var(--device-scale, 1));
  }
}

.device-stage.is-auto-rotating .device-object {
  transition: none;
}

.drag-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid rgba(255, 193, 92, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font: 600 9px "JetBrains Mono", monospace;
  background: rgba(7, 6, 4, 0.68);
  transform: translateX(-50%);
}

.laptop-model {
  width: 340px;
  height: 320px;
  transform-origin: center;
}

.laptop-model::after {
  position: absolute;
  top: 202px;
  left: 6px;
  z-index: 4;
  width: 328px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #b8b7b3, #5e5d5a);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.32);
  content: "";
  transform: translateZ(1px);
}

.laptop-lid {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 330px;
  height: 206px;
  border-radius: 12px;
  background: #777672;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.14),
    0 0 0 1px #777672;
  transform-style: preserve-3d;
}

.lid-shell-layer {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 12px;
  background: linear-gradient(145deg, #aaa9a4, #696864);
  transform: translateZ(calc(var(--layer) * 1px));
}

.laptop-screen,
.laptop-back {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 8px solid #242322;
  border-radius: 10px;
  backface-visibility: hidden;
}

.laptop-screen {
  background: #080807;
  transform: translateZ(6px);
}

.laptop-screen img {
  width: 47%;
}

.laptop-back {
  border-color: #969590;
  background: linear-gradient(145deg, #deddd8, #8f8e8a);
  transform: translateZ(-6px) rotateY(180deg);
}

.laptop-back img {
  width: 42px;
  opacity: 0.7;
  filter: grayscale(1);
}

.laptop-edge {
  position: absolute;
  z-index: 2;
  display: none;
  background: linear-gradient(90deg, #666560, #a2a19c);
  border-radius: 8px;
  backface-visibility: visible;
}

.laptop-edge-top,
.laptop-edge-bottom {
  left: 3px;
  width: 324px;
  height: 16px;
  transform: rotateX(90deg);
}

.laptop-edge-top { top: -8px; }
.laptop-edge-bottom { bottom: -8px; }

.laptop-edge-left,
.laptop-edge-right {
  top: 3px;
  width: 16px;
  height: 200px;
  transform: rotateY(90deg);
}

.laptop-edge-left { left: -8px; }
.laptop-edge-right { right: -8px; }

.laptop-base {
  position: absolute;
  top: 207px;
  left: 5px;
  width: 330px;
  height: 202px;
  padding: 18px 24px;
  border: 3px solid #92918d;
  border-radius: 12px 12px 18px 18px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.34), transparent 22%),
    linear-gradient(160deg, #d8d7d3, #8b8a87);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.28),
    0 16px 18px rgba(0, 0, 0, 0.24);
  transform: rotateX(68deg);
  transform-origin: top center;
  transform-style: preserve-3d;
}

.base-shell-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  border-radius: 12px 12px 18px 18px;
  background: linear-gradient(160deg, #aaa9a4, #62615d);
  transform:
    translateZ(calc(var(--layer) * -1px))
    rotateX(calc(var(--layer) * 0.2deg));
  transform-origin: top center;
}

.laptop-base::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 12px 12px 18px 18px;
  background: linear-gradient(160deg, #777671, #4f4e4b);
  content: "";
  transform: translateZ(-12px) rotateX(2.25deg);
  transform-origin: top center;
}

.laptop-base::after {
  display: none;
}

.base-side {
  position: absolute;
  z-index: -1;
  display: none;
  background: linear-gradient(90deg, #4f4e4b, #aaa9a4 48%, #64635f);
  border-radius: 8px;
}

.base-side-left,
.base-side-right {
  top: 4px;
  width: 16px;
  height: 194px;
  transform: translateZ(-6px) rotateY(90deg);
  clip-path: polygon(0 0, 100% 0, 68% 100%, 32% 100%);
}

.base-side-left {
  left: -7px;
}

.base-side-right {
  right: -7px;
}

.base-side-front,
.base-side-back {
  left: 4px;
  width: 322px;
  height: 12px;
  transform: translateZ(-6px) rotateX(90deg);
}

.base-side-front {
  bottom: -3px;
  height: 8px;
  background: linear-gradient(90deg, #777671, #a6a5a0, #777671);
  transform: translateZ(-2px) rotateX(90deg);
}

.base-side-back {
  top: -7px;
  height: 16px;
}

.keyboard {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
}

.keyboard i {
  height: 18px;
  border-radius: 3px;
  background: #343432;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.16),
    0 3px 0 #191918;
}

.trackpad {
  width: 112px;
  height: 58px;
  margin: 16px auto 0;
  border: 1px solid rgba(55, 54, 52, 0.34);
  border-radius: 6px;
}

.phone-model {
  width: 190px;
  height: 388px;
  transform-style: preserve-3d;
}

.phone-shell-layer {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 34px;
  background: linear-gradient(90deg, #5d5953, #b3aca1 48%, #66615a);
  transform: translateZ(calc(var(--layer) * 1px));
}

.phone-face {
  position: absolute;
  backface-visibility: hidden;
}

.phone-front,
.phone-back {
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 7px solid #2b2a28;
  border-radius: 34px;
}

.phone-front {
  background: #080807;
  transform: translateZ(7px);
}

.phone-front > img {
  width: 62%;
}

.phone-back {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 193, 92, 0.12), transparent 9rem),
    linear-gradient(145deg, #d8d2c5, #847e74);
  transform: translateZ(-7px) rotateY(180deg);
}

.phone-back > img {
  width: 44px;
  opacity: 0.64;
  filter: grayscale(1);
}

.phone-island {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 58px;
  height: 17px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

.camera-cluster {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(2, 24px);
  gap: 6px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(234, 230, 220, 0.48);
}

.camera-cluster i {
  width: 24px;
  height: 24px;
  border: 5px solid #2b2a28;
  border-radius: 50%;
  background: #080807;
}

.camera-cluster i:last-child {
  grid-column: 1;
}

.phone-side {
  display: none;
  background: linear-gradient(90deg, #67635d, #b7b1a7);
}

.phone-left-side,
.phone-right-side {
  top: 25px;
  width: 14px;
  height: 338px;
}

.phone-left-side {
  left: -7px;
  transform: rotateY(90deg);
}

.phone-right-side {
  right: -7px;
  transform: rotateY(90deg);
}

.phone-top-side,
.phone-bottom-side {
  left: 25px;
  width: 140px;
  height: 14px;
}

.phone-top-side {
  top: -7px;
  transform: rotateX(90deg);
}

.phone-bottom-side {
  bottom: -7px;
  transform: rotateX(90deg);
}

.visual-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 193, 92, 0.2);
  border-radius: var(--radius);
  background: #0b0b0a;
  box-shadow: var(--shadow);
  transform: perspective(1100px) rotateY(-7deg) rotateX(4deg);
}

.device-view[data-device-view="simple"] {
  min-height: 500px;
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.visual-frame .brand-icon-image {
  object-fit: contain;
  padding: clamp(18px, 4vw, 48px);
  background: #0b0b0a;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metrics div {
  min-height: 132px;
  padding: 28px;
  background: rgba(16, 13, 9, 0.82);
}

.metrics strong {
  display: block;
  color: var(--amber);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.services,
.apps,
.process,
.reviews,
.contact {
  padding: 120px 0 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 44px;
}

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.review-card,
.app-card {
  position: relative;
  border: 1px solid rgba(255, 193, 92, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(32, 23, 15, 0.88), rgba(17, 13, 9, 0.88));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.service-card {
  min-height: 280px;
  padding: 28px;
}

.service-card::before,
.review-card::before,
.app-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(255, 159, 26, 0.18), transparent 38%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover::before,
.review-card:hover::before,
.app-card:hover::before {
  opacity: 1;
}

.card-index {
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.service-card h3 {
  margin-top: 62px;
}

.service-card p,
.app-card p,
.timeline-item p,
.review-card p {
  color: var(--muted);
}

.app-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.app-card {
  display: grid;
  gap: 24px;
  padding: 18px;
}

.app-card > div:last-child {
  padding: 2px 6px 10px;
}

.app-card.wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
}

.project-visual {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 193, 92, 0.14);
  border-radius: var(--radius);
  background: #0c0907;
  isolation: isolate;
}

.dilogun-visual {
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 192, 86, 0.34), transparent 18rem),
    linear-gradient(145deg, #723113, #170c07 72%);
}

.project-icon {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.phone-preview {
  position: absolute;
  bottom: -105px;
  width: 190px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: #080706;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.48);
  transition: transform 300ms ease;
}

.project-visual:hover .phone-preview {
  transform: translateY(-12px) rotate(0);
}

.phone-preview img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.phone-preview-left {
  left: 18%;
  transform: rotate(-8deg);
}

.phone-preview-right {
  right: 12%;
  transform: rotate(7deg);
}

.architecture-visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(140, 224, 184, 0.13), transparent 22rem),
    linear-gradient(145deg, #101b1c, #080b0b);
}

.architecture-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(140, 224, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 224, 184, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.architecture-logo {
  z-index: 2;
  width: 132px;
  height: 132px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.panorama-orbit,
.panorama-orbit span {
  position: absolute;
  border: 1px solid rgba(140, 224, 184, 0.32);
  border-radius: 50%;
}

.panorama-orbit {
  width: 290px;
  height: 290px;
}

.panorama-orbit span:nth-child(1) { inset: 24px; }
.panorama-orbit span:nth-child(2) { inset: 56px; }
.panorama-orbit span:nth-child(3) { inset: 92px; background: rgba(140, 224, 184, 0.08); }

.visual-caption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--mint);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.portfolio-visual {
  min-height: 330px;
  background:
    radial-gradient(circle at 22% 40%, rgba(255, 159, 26, 0.25), transparent 18rem),
    linear-gradient(145deg, #28170d, #0c0907);
}

.portfolio-visual > img {
  position: absolute;
  bottom: -45px;
  left: 9%;
  width: min(245px, 38%);
  border-radius: 24px 24px 0 0;
  filter: saturate(0.78);
}

.portfolio-panel {
  position: absolute;
  top: 50%;
  right: 8%;
  display: grid;
  width: 44%;
  gap: 10px;
  transform: translateY(-50%);
}

.portfolio-panel span {
  padding: 16px 18px;
  border: 1px solid rgba(255, 193, 92, 0.18);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.project-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.live {
  background: var(--mint);
  box-shadow: 0 0 14px rgba(140, 224, 184, 0.65);
}

.status-dot.building {
  background: var(--amber);
  box-shadow: 0 0 14px rgba(255, 193, 92, 0.55);
}

.project-facts {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.project-facts li::before {
  margin-right: 9px;
  color: var(--amber);
  content: "↳";
}

.project-links {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.project-links a,
.result-card a {
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
}

.possibilities {
  margin-top: 96px;
  padding-top: 72px;
  border-top: 1px solid rgba(255, 193, 92, 0.18);
}

.possibilities-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.possibilities-heading h2 {
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
}

.possibilities-heading p:last-child {
  max-width: 680px;
  color: var(--muted);
}

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

.possibility-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
  gap: 24px;
  min-height: 430px;
  padding: 18px;
  border: 1px solid rgba(255, 193, 92, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30, 22, 15, 0.82), rgba(15, 12, 9, 0.9));
}

.possibility-copy {
  align-self: center;
  padding: 12px 8px 12px 0;
}

.possibility-copy p,
.possibility-copy li {
  color: var(--muted);
}

.possibility-copy ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  font-size: 13px;
  list-style: none;
}

.possibility-copy li::before {
  margin-right: 8px;
  color: var(--amber);
  content: "—";
}

.possibility-number {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wireframe {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  background: #ece7df;
}

.wireframe * {
  box-sizing: border-box;
}

.wireframe-mobile {
  background: linear-gradient(145deg, #f3ddd5, #e8e3dc);
}

.wf-phone {
  width: 174px;
  min-height: 336px;
  padding: 12px;
  border: 2px solid rgba(46, 42, 38, 0.54);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 36px rgba(70, 54, 42, 0.12);
}

.wf-bar,
.wf-nav,
.wf-mini-grid,
.wf-summary {
  display: flex;
  gap: 6px;
}

.wf-bar {
  justify-content: space-between;
  margin-bottom: 11px;
}

.wf-bar i {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(47, 42, 38, 0.35);
}

.wf-bar i:last-child {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.wf-gradient {
  height: 90px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ebb9a8, #e5cfbd 55%, #cab2a1);
}

.wf-copy {
  display: grid;
  gap: 6px;
  padding: 12px 2px;
  color: rgba(48, 43, 39, 0.58);
  font-size: 9px;
}

.wf-copy span,
.wf-map-card i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(48, 43, 39, 0.18);
}

.wf-copy span.short {
  width: 68%;
}

.wf-mini-grid i {
  flex: 1;
  height: 74px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(231, 175, 155, 0.72), rgba(255, 255, 255, 0.72));
}

.wf-nav {
  justify-content: space-around;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(48, 43, 39, 0.12);
}

.wf-nav i {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(48, 43, 39, 0.3);
  border-radius: 4px;
}

.wireframe-desktop {
  position: relative;
  background: linear-gradient(145deg, #eee9e1, #ded7cd);
}

.wf-browser {
  width: 92%;
  overflow: hidden;
  border: 2px solid rgba(46, 42, 38, 0.42);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 36px rgba(70, 54, 42, 0.12);
}

.wf-booking-public {
  position: absolute;
  top: 30px;
  left: 5%;
  width: 74%;
  height: 188px;
  overflow: hidden;
  border: 2px solid rgba(26, 27, 28, 0.55);
  border-radius: 10px;
  background: #1b1b1c;
  box-shadow: 0 18px 32px rgba(32, 34, 35, 0.15);
}

.wf-stay-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(35, 116, 171, 0.08), rgba(16, 22, 25, 0.45)),
    linear-gradient(135deg, #329dd8 0 34%, #5ec4da 35% 48%, #ba9b67 49% 66%, #3f7255 67%);
}

.wf-booking-bar {
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.5fr;
  gap: 8px;
  padding: 10px;
  background: rgba(24, 24, 25, 0.88);
}

.wf-booking-bar i,
.wf-booking-bar b {
  height: 18px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.78);
}

.wf-booking-bar b {
  background: #f0c45e;
}

.wf-date-popup {
  position: absolute;
  top: 78px;
  left: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 132px;
  padding: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
}

.wf-date-popup span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #71ace0;
}

.wf-date-popup span:nth-child(3n) {
  background: rgba(42, 43, 44, 0.18);
}

.wf-booking-admin {
  position: absolute;
  right: 4%;
  bottom: 28px;
  z-index: 2;
  width: 76%;
  border-color: rgba(255, 255, 255, 0.24);
  background: #121314;
}

.wf-booking-admin .wf-browser-top {
  background: #242526;
}

.wf-booking-admin .wf-dashboard {
  min-height: 205px;
}

.wf-booking-admin .wf-dashboard aside {
  background: #1b1c1d;
}

.wf-booking-admin .wf-dashboard aside i {
  background: rgba(225, 86, 156, 0.34);
}

.wf-booking-admin .wf-dashboard-main {
  background: #111213;
}

.wf-booking-admin .wf-calendar {
  margin-top: 0;
  border-color: rgba(255, 255, 255, 0.1);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
}

.wf-booking-admin .wf-calendar span {
  background: linear-gradient(90deg, #70aede, #9fc6e4);
}

.wf-booking-admin .wf-table i {
  background: rgba(255, 255, 255, 0.1);
}

.wf-browser-top {
  display: flex;
  gap: 5px;
  padding: 9px;
  border-bottom: 1px solid rgba(48, 43, 39, 0.12);
}

.wf-browser-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d2a48d;
}

.wf-dashboard {
  display: grid;
  grid-template-columns: 34px 1fr;
  min-height: 250px;
}

.wf-dashboard aside {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 12px 9px;
  background: rgba(54, 49, 44, 0.07);
}

.wf-dashboard aside i {
  height: 15px;
  border-radius: 4px;
  background: rgba(48, 43, 39, 0.2);
}

.wf-dashboard-main {
  padding: 12px;
}

.wf-summary i {
  flex: 1;
  height: 44px;
  border-radius: 6px;
  background: linear-gradient(145deg, #e8c1ae, #f2dfd4);
}

.wf-calendar {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(48, 43, 39, 0.12);
  border-radius: 7px;
  background-image:
    linear-gradient(rgba(48, 43, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 43, 39, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

.wf-calendar span {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #bfc9b8, #d9c4b5);
}

.wf-calendar span:nth-child(2) { width: 70%; margin-left: 18%; }
.wf-calendar span:nth-child(3) { width: 84%; }
.wf-calendar span:nth-child(4) { width: 62%; margin-left: 28%; }

.wf-table {
  display: grid;
  gap: 5px;
  margin-top: 12px;
}

.wf-table i {
  height: 7px;
  border-radius: 4px;
  background: rgba(48, 43, 39, 0.1);
}

.wireframe-media {
  background: linear-gradient(145deg, #3a3836, #1d1c1b);
}

.wireframe-media .wf-phone {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(20, 19, 18, 0.8);
}

.wireframe-media .wf-bar i,
.wireframe-media .wf-copy span {
  background: rgba(255, 255, 255, 0.2);
}

.wireframe-media .wf-copy {
  color: rgba(255, 255, 255, 0.55);
}

.wf-media-hero {
  display: grid;
  height: 78px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #572e2b, #d76659);
}

.wf-media-hero i {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.wf-media-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.wf-media-list i {
  height: 62px;
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(218, 103, 89, 0.62), rgba(255, 255, 255, 0.08));
}

.wf-ticket {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 7px;
}

.wf-ticket i {
  width: 38px;
  height: 38px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(255,255,255,.28) 46% 54%, transparent 55%),
    linear-gradient(transparent 45%, rgba(255,255,255,.28) 46% 54%, transparent 55%);
  background-size: 10px 10px;
}

.wf-ticket span {
  flex: 1;
  height: 6px;
  margin-top: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.wireframe-map {
  background: linear-gradient(145deg, #f3eee8, #e4ded7);
}

.wf-ops-layout {
  position: relative;
  width: 94%;
  height: 350px;
}

.wf-map-canvas {
  position: relative;
  width: 86%;
  height: 278px;
  overflow: hidden;
  border: 2px solid rgba(234, 102, 19, 0.36);
  border-radius: 12px;
  background: #e8e5dc;
  box-shadow: 0 18px 32px rgba(91, 57, 31, 0.12);
}

.wf-map-sidebar {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 3;
  display: grid;
  align-content: start;
  gap: 12px;
  width: 34px;
  padding: 14px 9px;
  background: #f28120;
}

.wf-map-sidebar i {
  height: 15px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.68);
}

.road {
  position: absolute;
  width: 130%;
  height: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.road-one { top: 28%; left: -15%; transform: rotate(18deg); }
.road-two { top: 62%; left: -12%; transform: rotate(-24deg); }
.road-three { top: 45%; left: -18%; transform: rotate(78deg); }

.geo {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1px dashed rgba(210, 145, 54, 0.7);
  border-radius: 50%;
  background: rgba(210, 145, 54, 0.06);
}

.geo-one { top: 36px; right: 24px; }
.geo-two { bottom: 34px; left: 30px; width: 82px; height: 82px; }

.map-point {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 3px solid #e9ebe6;
  border-radius: 50%;
  background: #76969a;
  box-shadow: 0 0 0 1px #76969a;
}

.point-one { top: 80px; right: 70px; }
.point-two { bottom: 66px; left: 61px; }
.point-three { top: 48%; left: 45%; }

.wf-map-card {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  gap: 6px;
  width: 120px;
  padding: 10px;
  border-radius: 8px;
  color: rgba(48, 43, 39, 0.52);
  background: rgba(255, 255, 255, 0.88);
  font-size: 8px;
  box-shadow: 0 8px 18px rgba(70, 54, 42, 0.12);
}

.wf-service-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 128px;
  height: 244px;
  padding: 8px;
  overflow: hidden;
  border: 2px solid rgba(47, 42, 38, 0.58);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 34px rgba(91, 57, 31, 0.2);
}

.wf-service-head {
  display: flex;
  justify-content: space-between;
  padding: 3px 2px 8px;
}

.wf-service-head i {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: #f28120;
}

.wf-service-head span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(47, 42, 38, 0.18);
}

.wf-service-map {
  position: relative;
  height: 112px;
  overflow: hidden;
  border-radius: 9px;
  background:
    linear-gradient(25deg, transparent 42%, rgba(255,255,255,.88) 43% 47%, transparent 48%),
    linear-gradient(105deg, transparent 42%, rgba(255,255,255,.88) 43% 47%, transparent 48%),
    #dce7df;
}

.wf-service-map i {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px dashed #f28120;
  border-radius: 50%;
  background: rgba(242, 129, 32, 0.08);
}

.wf-service-map i:first-child { top: 12px; right: 10px; }
.wf-service-map i:nth-child(2) { bottom: 8px; left: 9px; width: 30px; height: 30px; }

.wf-service-map b {
  position: absolute;
  top: 29px;
  right: 27px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e84c35;
}

.wf-service-card {
  display: grid;
  gap: 6px;
  padding: 10px 3px;
  color: rgba(47, 42, 38, 0.52);
  font-size: 7px;
}

.wf-service-card i {
  height: 5px;
  border-radius: 999px;
  background: rgba(47, 42, 38, 0.13);
}

.wf-service-card button {
  height: 18px;
  margin-top: 3px;
  border: 0;
  border-radius: 5px;
  background: #f28120;
  pointer-events: none;
}

.app-screen {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 193, 92, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 34%, rgba(255, 159, 26, 0.28), transparent 16rem),
    linear-gradient(135deg, #15100c, #080706);
}

.app-screen-one {
  padding: 22px;
}

.screen-top {
  height: 76px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 193, 92, 0.88), rgba(215, 88, 22, 0.76));
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.screen-grid span {
  height: 82px;
  border: 1px solid rgba(255, 193, 92, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.app-screen-two {
  display: grid;
  place-items: center;
}

.phone-stack {
  display: grid;
  gap: 12px;
  width: min(240px, 72%);
}

.phone-stack span {
  height: 68px;
  border: 1px solid rgba(255, 193, 92, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.phone-stack span:nth-child(2) {
  transform: translateX(24px);
}

.phone-stack span:nth-child(3) {
  transform: translateX(-18px);
}

.app-screen-three {
  min-height: 260px;
  padding: 34px;
  font-family: "JetBrains Mono", monospace;
}

.terminal-line,
.terminal-line::before,
.terminal-line::after {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 193, 92, 0.78);
  content: "";
}

.terminal-line {
  width: 72%;
  margin-top: 54px;
}

.terminal-line::before {
  width: 64%;
  margin-top: 28px;
  background: rgba(140, 224, 184, 0.62);
}

.terminal-line::after {
  width: 84%;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.28);
}

.terminal-line.short {
  width: 48%;
  margin-top: 96px;
  background: rgba(255, 255, 255, 0.18);
}

.terminal-pulse {
  position: absolute;
  right: 36px;
  bottom: 36px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(140, 224, 184, 0.5);
  animation: pulse 1.8s infinite;
}

.timeline {
  display: grid;
  gap: 14px;
  border-left: 1px solid rgba(255, 193, 92, 0.28);
  padding-left: 28px;
}

.timeline-item {
  position: relative;
  padding: 24px 28px;
  border: 1px solid rgba(255, 193, 92, 0.14);
  border-radius: var(--radius);
  background: rgba(16, 13, 9, 0.78);
}

.timeline-item::before {
  position: absolute;
  top: 30px;
  left: -36px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: var(--bg);
  content: "";
}

.timeline-item span {
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}

.review-card {
  margin: 0;
  min-height: 230px;
  padding: 28px;
}

.review-card p {
  margin-top: 0;
  font-size: 17px;
}

.review-card cite {
  color: var(--amber);
  font-style: normal;
  font-weight: 700;
}

.result-card {
  min-height: 230px;
  padding: 28px;
}

.result-card strong {
  display: block;
  margin-bottom: 28px;
  color: var(--amber-soft);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.play-reviews {
  margin-top: 64px;
}

.play-reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.play-reviews-heading h3 {
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 44px);
}

.play-reviews-heading a {
  flex: 0 0 auto;
}

.play-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 16px;
}

.play-review {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 193, 92, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 159, 26, 0.1), transparent 42%),
    rgba(16, 13, 9, 0.82);
}

.play-review-stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 3px;
}

.play-review blockquote {
  margin: 24px 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
}

.play-review footer {
  margin-top: auto;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.play-reviews-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 193, 92, 0.14);
  border-radius: var(--radius);
  color: var(--muted);
}

.result-card a {
  display: inline-block;
  margin-top: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: start;
  padding-bottom: 100px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 193, 92, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 13, 9, 0.82);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 193, 92, 0.16);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--text);
  font: inherit;
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 193, 92, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 159, 26, 0.1);
}

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

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--amber-soft);
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(255, 193, 92, 0.16);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 18px rgba(140, 224, 184, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(140, 224, 184, 0);
  }
}

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

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(360px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid rgba(255, 193, 92, 0.18);
    border-radius: var(--radius);
    background: rgba(7, 6, 4, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .site-nav .language-toggle {
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 11px 12px;
  }

  .hero,
  .contact,
  .app-card.wide {
    grid-template-columns: 1fr;
  }

  .project-visual {
    min-height: 340px;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .visual-frame {
    transform: none;
  }

  .service-grid,
  .review-grid,
  .app-showcase,
  .possibility-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .possibilities-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .play-reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .section-band {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    width: calc(100% - 24px);
    top: 10px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(42px, 16vw, 72px);
  }

  .hero-text,
  .section-heading p,
  .contact p {
    font-size: 16px;
  }

  .services,
  .apps,
  .process,
  .reviews,
  .contact {
    padding-top: 82px;
  }

  .service-card,
  .review-card {
    min-height: auto;
    padding: 22px;
  }

  .service-card h3 {
    margin-top: 38px;
  }

  .app-screen {
    min-height: 240px;
  }

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

  .device-view,
  .device-stage {
    min-height: 430px;
  }

  .laptop-model {
    --device-scale: 0.78;
  }

  .phone-model {
    --device-scale: 0.88;
  }

  .logo-plaque {
    --device-scale: 0.86;
  }

  .device-tabs {
    top: 10px;
  }

  .device-tab {
    padding: 0 10px;
    font-size: 9px;
  }

  .possibilities {
    margin-top: 72px;
    padding-top: 56px;
  }

  .possibility-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .wireframe {
    min-height: 350px;
  }

  .possibility-copy {
    padding: 8px 4px 12px;
  }

  .phone-preview {
    bottom: -88px;
    width: 150px;
  }

  .phone-preview-left {
    left: 8%;
  }

  .phone-preview-right {
    right: 5%;
  }

  .portfolio-visual > img {
    left: 5%;
    width: 45%;
  }

  .portfolio-panel {
    right: 5%;
    width: 46%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
