:root {
  color-scheme: dark;
  --bg: #0b0b0a;
  --bg-soft: #11120f;
  --paper: #f6f1df;
  --ink: #10100e;
  --panel: rgba(246, 241, 223, 0.08);
  --panel-strong: rgba(246, 241, 223, 0.16);
  --text: #faf7ea;
  --muted: #bdb6a3;
  --line: rgba(246, 241, 223, 0.18);
  --teal: #31dfc4;
  --lime: #c9ff4d;
  --amber: #ffb23f;
  --rose: #ff5d4a;
  --blue: #5da8ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(246, 241, 223, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 241, 223, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 16% 12%, rgba(201, 255, 77, 0.11), transparent 30%),
    radial-gradient(circle at 92% 16%, rgba(255, 93, 74, 0.12), transparent 28%),
    radial-gradient(circle at 72% 80%, rgba(49, 223, 196, 0.1), transparent 34%),
    var(--bg);
  background-size: 44px 44px, 44px 44px, auto, auto, auto, auto;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

#field {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.68;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(246, 241, 223, 0.18);
  border-radius: 8px;
  background: rgba(11, 11, 10, 0.72);
  box-shadow: 8px 8px 0 rgba(201, 255, 77, 0.08), 0 18px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 10, 0.9);
  border-color: rgba(246, 241, 223, 0.26);
}

.brand {
  display: inline-flex;
  min-width: 210px;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(11, 11, 10, 0.45);
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.main-nav a {
  border-radius: 6px;
  color: rgba(245, 247, 244, 0.78);
  font-size: 0.9rem;
  padding: 10px 14px;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover {
  background: rgba(246, 241, 223, 0.1);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 241, 223, 0.08);
  color: var(--text);
}

.nav-toggle svg,
.button svg,
.service-card svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: 86svh;
  padding: 124px max(22px, calc((100vw - var(--max)) / 2)) 44px;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 106px max(22px, calc((100vw - var(--max)) / 2)) 32px;
  border: 1px solid rgba(246, 241, 223, 0.1);
  border-radius: 8px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  top: 120px;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 255, 77, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(246, 241, 223, 0.12) calc(50% - 1px), rgba(246, 241, 223, 0.12) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(246, 241, 223, 0.12) calc(50% - 1px), rgba(246, 241, 223, 0.12) calc(50% + 1px), transparent calc(50% + 1px));
  opacity: 0.7;
  animation: slowSpin 28s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(960px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.25rem, 7.5vw, 6.35rem);
}

h2 {
  max-width: 900px;
  font-size: clamp(2.25rem, 5.8vw, 5.7rem);
}

h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(245, 247, 244, 0.78);
  font-size: clamp(1.03rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.hero-graphic {
  position: relative;
  z-index: 2;
  min-height: 560px;
}

.graphic-board {
  position: sticky;
  top: 118px;
  height: min(58vw, 560px);
  min-height: 500px;
  border: 1px solid rgba(246, 241, 223, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(rgba(246, 241, 223, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 241, 223, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, rgba(49, 223, 196, 0.08), transparent 45%),
    rgba(246, 241, 223, 0.045);
  background-size: 30px 30px, 30px 30px, auto, auto;
  box-shadow: 14px 14px 0 rgba(255, 93, 74, 0.13), var(--shadow);
  overflow: hidden;
}

.graphic-board::before {
  content: "NO NAME / WEB";
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: rgba(246, 241, 223, 0.42);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
}

.browser-card,
.shape,
.motion-tile,
.motion-line {
  position: absolute;
}

.browser-card {
  display: grid;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 18px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.38);
}

.browser-card span {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--rose);
  box-shadow: 15px 0 0 var(--amber), 30px 0 0 var(--teal);
}

.browser-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.browser-card i {
  display: block;
  height: 12px;
  border-radius: 99px;
  background: var(--ink);
  opacity: 0.18;
}

.browser-card i:nth-of-type(1) {
  width: 86%;
}

.browser-card i:nth-of-type(2) {
  width: 62%;
}

.browser-card i:nth-of-type(3) {
  width: 74%;
}

.card-main {
  left: 9%;
  top: 13%;
  width: 58%;
  min-height: 220px;
  animation: boardFloat 8s ease-in-out infinite;
}

.card-stack {
  right: 8%;
  bottom: 13%;
  width: 42%;
  min-height: 178px;
  background: var(--lime);
  animation: boardFloat 7s ease-in-out infinite reverse;
}

.motion-tile {
  width: 86px;
  height: 86px;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.tile-a {
  right: 13%;
  top: 12%;
  background: var(--rose);
  animation: tilePop 4.8s ease-in-out infinite;
}

.tile-b {
  left: 13%;
  bottom: 15%;
  background: var(--teal);
  animation: tilePop 5.6s ease-in-out infinite reverse;
}

.motion-line {
  height: 2px;
  background: var(--paper);
  transform-origin: left center;
}

.line-a {
  left: 34%;
  top: 56%;
  width: 44%;
  transform: rotate(-16deg);
}

.line-b {
  left: 18%;
  top: 68%;
  width: 30%;
  transform: rotate(24deg);
}

.shape-ring {
  right: 22%;
  top: 28%;
  width: 122px;
  height: 122px;
  border: 16px solid var(--amber);
  border-radius: 999px;
  animation: pulseRing 5.2s ease-in-out infinite;
}

.shape-dot {
  left: 8%;
  top: 46%;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 18px rgba(201, 255, 77, 0.1);
}

.shape-capsule {
  left: 45%;
  bottom: 8%;
  width: 150px;
  height: 42px;
  border-radius: 999px;
  background: var(--blue);
  transform: rotate(-8deg);
}

.shape-plus {
  right: 5%;
  top: 48%;
  width: 72px;
  height: 72px;
  animation: slowSpin 12s linear infinite;
}

.shape-plus::before,
.shape-plus::after {
  content: "";
  position: absolute;
  background: var(--paper);
}

.shape-plus::before {
  left: 30px;
  width: 12px;
  height: 72px;
}

.shape-plus::after {
  top: 30px;
  width: 72px;
  height: 12px;
}

.shape-code {
  left: 8%;
  top: 8%;
  width: 96px;
  height: 44px;
  border: 2px solid var(--paper);
  border-radius: 999px;
}

.shape-code::before {
  content: "</>";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-weight: 900;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  border-color: var(--ink);
  background: var(--lime);
  color: var(--ink);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.32);
}

.button-ghost {
  border-color: rgba(246, 241, 223, 0.24);
  background: rgba(246, 241, 223, 0.07);
  color: var(--text);
}

.hero-panel {
  position: relative;
  grid-column: 1 / -1;
  z-index: 3;
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: -8px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-panel div {
  min-width: 0;
  padding: 18px 16px;
  border: 1px solid rgba(246, 241, 223, 0.22);
  border-radius: 8px;
  background: rgba(246, 241, 223, 0.07);
  box-shadow: 6px 6px 0 rgba(49, 223, 196, 0.09);
}

.metric {
  display: block;
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
}

.hero-panel small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.signal-strip {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.signal-strip div {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 18px;
  padding: 18px 0;
  animation: marquee 22s linear infinite;
}

.signal-strip span {
  color: rgba(245, 247, 244, 0.76);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 850;
  text-transform: uppercase;
}

.signal-strip span::after {
  content: "/";
  margin-left: 18px;
  color: var(--amber);
}

.section,
.work-section,
.process,
.cta-section {
  position: relative;
  padding: clamp(72px, 11vw, 136px) max(22px, calc((100vw - var(--max)) / 2));
}

.section::before,
.work-section::before,
.process::before,
.cta-section::before {
  content: "";
  position: absolute;
  top: 36px;
  right: max(22px, calc((100vw - var(--max)) / 2));
  width: 72px;
  height: 72px;
  border: 12px solid rgba(255, 178, 63, 0.26);
  border-radius: 999px;
  pointer-events: none;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(32px, 6vw, 68px);
}

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

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

.intro-card,
.service-card,
.timeline-item {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(246, 241, 223, 0.2);
  border-radius: 8px;
  background: rgba(246, 241, 223, 0.065);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.18);
}

.intro-card {
  min-height: 300px;
  padding: 28px;
  overflow: hidden;
}

.intro-card::before,
.service-card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 54px;
  height: 54px;
  border: 10px solid rgba(49, 223, 196, 0.24);
  border-radius: 999px;
  opacity: 1;
  transition: transform 240ms ease;
}

.intro-card:hover::before,
.service-card:hover::before {
  transform: rotate(24deg) scale(1.08);
}

.card-index {
  display: block;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 76px;
}

.intro-card h3,
.intro-card p,
.service-card h3,
.service-card p,
.service-card svg {
  position: relative;
  z-index: 1;
}

.intro-card p,
.service-card p,
.showcase-copy p,
.timeline-item p,
.cta-inner p,
.site-footer {
  color: var(--muted);
  line-height: 1.7;
}

.showcase {
  display: grid;
  gap: 18px;
}

.showcase-item {
  display: grid;
  min-height: 420px;
  grid-template-columns: minmax(280px, 0.94fr) minmax(280px, 0.72fr);
  align-items: stretch;
  border: 1px solid rgba(246, 241, 223, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(246, 241, 223, 0.055);
  box-shadow: 12px 12px 0 rgba(255, 93, 74, 0.1), var(--shadow);
}

.showcase-item:nth-child(even) {
  grid-template-columns: minmax(280px, 0.72fr) minmax(280px, 0.94fr);
}

.showcase-item:nth-child(even) .showcase-visual {
  order: 2;
}

.showcase-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(rgba(246, 241, 223, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 241, 223, 0.1) 1px, transparent 1px),
    #10100e;
  background-size: 34px 34px;
}

.showcase-visual::before,
.showcase-visual::after,
.showcase-visual span {
  content: "";
  position: absolute;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.32);
}

.showcase-visual::before {
  inset: 16% 18% 22% 14%;
  border-radius: 8px;
  animation: floatPane 8s ease-in-out infinite;
}

.showcase-visual::after {
  inset: 32% 10% 18% 42%;
  border-radius: 8px;
  animation: floatPane 7s ease-in-out infinite reverse;
}

.showcase-visual span:nth-child(1) {
  width: 32%;
  height: 12px;
  left: 20%;
  top: 24%;
  border: 0;
  background: var(--teal);
}

.showcase-visual span:nth-child(2) {
  width: 18%;
  height: 18%;
  right: 15%;
  top: 18%;
  border-radius: 8px;
  background: var(--lime);
}

.showcase-visual span:nth-child(3) {
  width: 46%;
  height: 2px;
  left: 25%;
  bottom: 24%;
  background: var(--amber);
  box-shadow: none;
}

.visual-two {
  background-size: 46px 46px;
}

.visual-two span:nth-child(1) {
  background: var(--rose);
}

.visual-three span:nth-child(2) {
  background: rgba(54, 242, 207, 0.26);
}

.showcase-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: end;
  padding: clamp(28px, 5vw, 58px);
}

.tag {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.service-card svg {
  width: 28px;
  height: 28px;
  color: var(--lime);
  margin-bottom: 54px;
}

.process {
  background:
    linear-gradient(rgba(246, 241, 223, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 241, 223, 0.05) 1px, transparent 1px),
    var(--bg-soft);
  background-size: 38px 38px, 38px 38px, auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.timeline-item {
  min-height: 270px;
  border-width: 0 1px 0 0;
  border-radius: 0;
  padding: 28px;
  background: rgba(11, 11, 10, 0.42);
  box-shadow: none;
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-item span {
  display: block;
  color: var(--lime);
  font-weight: 900;
  margin-bottom: 68px;
}

.cta-section {
  padding-top: clamp(80px, 13vw, 160px);
}

.cta-inner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 223, 0.2);
  border-radius: 8px;
  padding: clamp(34px, 8vw, 86px);
  background:
    linear-gradient(120deg, rgba(201, 255, 77, 0.14), rgba(246, 241, 223, 0.055) 44%, rgba(255, 93, 74, 0.16)),
    rgba(246, 241, 223, 0.06);
  box-shadow: 14px 14px 0 rgba(49, 223, 196, 0.12), var(--shadow);
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(246, 241, 223, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 241, 223, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
  opacity: 0.36;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  max-width: 880px;
}

.cta-inner p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  width: min(calc(100% - 44px), var(--max));
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

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

.cursor {
  position: fixed;
  z-index: 100;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(202, 255, 90, 0.85);
  border-radius: 999px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 160ms ease, height 160ms ease, border-color 160ms ease, opacity 160ms ease;
  mix-blend-mode: difference;
}

.cursor.is-active {
  width: 54px;
  height: 54px;
  border-color: rgba(54, 242, 207, 0.95);
}

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

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatPane {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(10px, -12px, 0) rotate(1deg);
  }
}

@keyframes boardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -12px, 0);
  }
}

@keyframes tilePop {
  0%,
  100% {
    transform: rotate(4deg) scale(1);
  }
  50% {
    transform: rotate(-5deg) scale(1.08);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

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

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 54px;
  }

  .hero::after {
    width: 70vw;
    top: 280px;
    right: -18vw;
  }

  .hero-panel {
    width: 100%;
  }

  .hero-graphic {
    min-height: 430px;
  }

  .graphic-board {
    position: relative;
    top: auto;
    height: 430px;
    min-height: 430px;
  }

  .intro-grid,
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-item,
  .showcase-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .showcase-item:nth-child(even) .showcase-visual {
    order: 0;
  }

  .timeline-item {
    border-width: 0 1px 1px 0;
  }

  .timeline-item:nth-child(even) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    border-radius: 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    display: grid;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(8, 10, 12, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px;
  }

  .hero {
    padding-inline: 20px;
    padding-bottom: 24px;
  }

  .hero::before {
    inset: 104px 14px 26px;
  }

  .hero::after {
    width: 92vw;
    top: 420px;
  }

  .hero-graphic {
    position: absolute;
    inset: 300px 16px 78px;
    z-index: 1;
    min-height: 0;
    opacity: 0.2;
  }

  .hero-graphic.reveal.is-visible {
    opacity: 0.2;
  }

  .graphic-board {
    position: absolute;
    inset: 0;
    height: 350px;
    min-height: 0;
    box-shadow: 8px 8px 0 rgba(255, 93, 74, 0.13), var(--shadow);
  }

  .hero-content,
  .hero-panel {
    position: relative;
    z-index: 3;
  }

  .card-main {
    left: 7%;
    top: 12%;
    width: 64%;
    min-height: 176px;
  }

  .card-stack {
    right: 7%;
    bottom: 10%;
    width: 46%;
    min-height: 132px;
  }

  .browser-card {
    padding: 14px;
  }

  .browser-card strong {
    font-size: 1.05rem;
  }

  .motion-tile {
    width: 56px;
    height: 56px;
  }

  .shape-ring {
    width: 82px;
    height: 82px;
    border-width: 11px;
  }

  .shape-capsule {
    width: 104px;
    height: 34px;
  }

  .shape-plus {
    width: 48px;
    height: 48px;
  }

  .shape-plus::before {
    left: 20px;
    width: 8px;
    height: 48px;
  }

  .shape-plus::after {
    top: 20px;
    width: 48px;
    height: 8px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-panel div {
    padding: 13px 10px;
  }

  .hero-panel small {
    font-size: 0.65rem;
  }

  .metric {
    font-size: 1.55rem;
  }

  .intro-grid,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    border-width: 0 0 1px;
  }

  .timeline-item:last-child {
    border-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .cursor {
    display: none;
  }
}

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

  #field,
  .cursor {
    display: none;
  }
}
