:root {
  color-scheme: light;
  --paper: #eef3ef;
  --paper-strong: #fbfcfa;
  --ink: #15191c;
  --ink-soft: #41494b;
  --muted: #70797b;
  --line: rgba(21, 25, 28, 0.13);
  --line-strong: rgba(21, 25, 28, 0.22);
  --orange: #d66f42;
  --orange-strong: #af5934;
  --teal: #1b918c;
  --blue: #5577ad;
  --violet: #7f6aa3;
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --shadow: 0 30px 96px rgba(77, 92, 86, 0.22);
  --soft-shadow: 0 18px 58px rgba(77, 92, 86, 0.16);
  --radius: 8px;
  --content: 1240px;
  --header-height: 64px;
  --x: 50%;
  --y: 20%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  overflow-x: hidden;
  background-color: #eef3ef;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
  background-image: url("assets/cosmic-studio-background-image2.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateZ(0);
}

body::after {
  display: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: break-word;
}

::selection {
  color: white;
  background: var(--orange);
}

.hero-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  overflow: visible;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 9px max(20px, calc((100vw - var(--content)) / 2)) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  pointer-events: none;
  transform: none;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: transparent;
  background: transparent;
  transform: none;
}

.site-nav,
.button,
.about-links a,
.site-footer a {
  display: inline-flex;
  align-items: center;
}

.site-nav {
  position: relative;
  isolation: isolate;
  justify-content: center;
  gap: 4px;
  min-height: 46px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 236, 0.15);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(8, 9, 13, 0.58);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 173, 117, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -18px 28px rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  pointer-events: auto;
  transform: translateY(9px);
  --nav-x: 50%;
  --nav-y: 50%;
  --nav-indicator-x: 4px;
  --nav-indicator-width: 72px;
  --nav-indicator-opacity: 0;
}

.site-nav::before {
  position: absolute;
  inset: -1px;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at var(--nav-x) var(--nav-y), rgba(255, 173, 117, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 28%, rgba(255, 255, 255, 0.065) 72%, transparent);
  opacity: 0.92;
  transition: opacity 180ms ease;
}

.nav-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  z-index: 1;
  width: var(--nav-indicator-width);
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 173, 117, 0.34), rgba(125, 219, 215, 0.17)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(247, 244, 236, 0.055);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -12px 20px rgba(255, 255, 255, 0.035);
  opacity: var(--nav-indicator-opacity);
  pointer-events: none;
  transform: translate3d(var(--nav-indicator-x), 0, 0);
  transition:
    width 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, width;
}

.site-nav a {
  position: relative;
  isolation: isolate;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 17px;
  overflow: hidden;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 154, 92, 0.26), rgba(125, 219, 215, 0.16)),
    rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 154, 92, 0.78), rgba(125, 219, 215, 0.72), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  transform: translateY(-1px);
}

.site-nav a:active {
  transform: translateY(0) scale(0.98);
}

.site-nav a:focus-visible,
.button:focus-visible,
.about-links a:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid rgba(255, 154, 92, 0.72);
  outline-offset: 3px;
}

.site-nav a:hover::before,
.site-nav a.is-active::before {
  opacity: 0;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 0;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  width: min(var(--content), calc(100% - 32px));
  min-height: calc(90dvh - var(--header-height));
  margin: 0 auto;
  padding: clamp(66px, 8vh, 98px) 0 70px;
}

.hero-section::before {
  position: absolute;
  top: 14%;
  bottom: 8%;
  left: clamp(0px, 1.8vw, 28px);
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 173, 117, 0.62), rgba(247, 244, 236, 0.08), transparent);
  opacity: 0.8;
}

.hero-copy {
  max-width: 650px;
  min-width: 0;
  padding-left: clamp(0px, 3vw, 42px);
}

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

.hero-copy h1 {
  font-size: clamp(4.4rem, 7.8vw, 6.8rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-kicker {
  max-width: 620px;
  margin-top: 18px;
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
}

.hero-text {
  max-width: 590px;
  margin-top: 18px;
  color: rgba(247, 244, 236, 0.82);
  font-size: 1.18rem;
  line-height: 1.6;
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 590px);
  margin-top: 34px;
  border-top: 1px solid rgba(247, 244, 236, 0.16);
  border-bottom: 1px solid rgba(247, 244, 236, 0.1);
}

.hero-meta span {
  min-height: 46px;
  padding: 15px 13px 0;
  border-right: 1px solid rgba(247, 244, 236, 0.1);
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-meta span:first-child {
  padding-left: 0;
}

.hero-meta span:last-child {
  border-right: 0;
}

.button {
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--orange), #b96a40 48%, #12131b);
  box-shadow:
    0 14px 34px rgba(255, 122, 47, 0.2),
    0 0 48px rgba(255, 154, 92, 0.16);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(247, 244, 236, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(13, 15, 23, 0.52);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-product {
  display: grid;
  min-width: 0;
  min-height: 590px;
  place-items: center;
  perspective: 1100px;
}

.device-stage {
  position: relative;
  width: min(100%, 635px);
  aspect-ratio: 1 / 0.92;
  transform-style: preserve-3d;
  animation: stage-float 7s ease-in-out infinite;
}

.device-stage::before {
  position: absolute;
  right: 6%;
  bottom: -8%;
  left: 4%;
  height: 34%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 173, 117, 0.18), rgba(125, 219, 215, 0.08) 38%, transparent 68%);
  filter: blur(20px);
  opacity: 0.72;
  transform: rotate(-6deg);
}

.device-glass {
  position: absolute;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 236, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.065)),
    linear-gradient(160deg, rgba(255, 122, 47, 0.16), rgba(125, 219, 215, 0.1) 48%, rgba(180, 167, 255, 0.13)),
    rgba(29, 32, 40, 0.78);
  box-shadow:
    0 44px 110px rgba(0, 0, 0, 0.54),
    inset 0 -90px 140px rgba(4, 5, 10, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: saturate(145%) blur(18px);
  backdrop-filter: saturate(145%) blur(18px);
  transform-style: preserve-3d;
  transition:
    border-color 420ms ease,
    box-shadow 420ms ease,
    filter 420ms ease,
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.device-glass::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(105deg, rgba(7, 8, 13, 0.78) 0%, rgba(7, 8, 13, 0.42) 44%, rgba(7, 8, 13, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 32%, rgba(7, 8, 13, 0.28));
  pointer-events: none;
}

.device-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
  filter: saturate(0.98) contrast(1.04);
  transform: scale(1.015);
  transition: filter 420ms ease, opacity 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.device-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.device-front .device-content {
  max-width: 78%;
}

.device-back .device-content {
  max-width: 88%;
}

.device-front {
  inset: 10% 4% 8% 18%;
  z-index: 2;
  padding: 28px;
  pointer-events: none;
  transform: rotateY(-15deg) rotateX(8deg) rotateZ(-3deg) translateZ(48px);
}

.device-back {
  inset: 2% 24% 30% 0;
  z-index: 1;
  padding: 24px;
  cursor: pointer;
  transform: rotateY(-19deg) rotateX(8deg) rotateZ(6deg) translateZ(-40px);
}

@supports (-moz-appearance: none) {
  .device-glass {
    border-color: rgba(247, 244, 236, 0.26);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
      linear-gradient(160deg, rgba(255, 122, 47, 0.2), rgba(125, 219, 215, 0.14) 48%, rgba(180, 167, 255, 0.16)),
      #262b34;
    box-shadow:
      0 44px 110px rgba(0, 0, 0, 0.58),
      inset 0 -100px 150px rgba(4, 5, 10, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.26);
  }

  .device-front {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.075)),
      linear-gradient(160deg, rgba(255, 122, 47, 0.18), rgba(125, 219, 215, 0.14) 48%, rgba(180, 167, 255, 0.14)),
      #303641;
  }

  .device-back {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.065)),
      linear-gradient(160deg, rgba(255, 122, 47, 0.22), rgba(125, 219, 215, 0.1) 48%, rgba(180, 167, 255, 0.12)),
      #20242d;
  }

  .device-stage.physical-active .device-front {
    opacity: 0.82;
  }
}

.device-stage.physical-active .device-back {
  z-index: 4;
  border-color: rgba(255, 154, 92, 0.42);
  box-shadow:
    0 54px 120px rgba(0, 0, 0, 0.62),
    0 0 58px rgba(255, 122, 47, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: rotateY(-10deg) rotateX(6deg) rotateZ(2deg) translate3d(82px, 18px, 96px) scale(1.05);
}

.device-stage.physical-active .device-back .device-art {
  opacity: 1;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.055);
}

.device-stage.physical-active .device-front {
  z-index: 1;
  opacity: 0.64;
  filter: saturate(0.82) brightness(0.82);
  transform: rotateY(-21deg) rotateX(9deg) rotateZ(-6deg) translate3d(84px, -12px, -80px) scale(0.92);
}

.device-hit-area {
  position: absolute;
  inset: 2% 24% 30% 0;
  z-index: 6;
  border-radius: var(--radius);
  cursor: pointer;
  transform: rotateY(-19deg) rotateX(8deg) rotateZ(6deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.device-stage.physical-active .device-hit-area {
  transform: rotateY(-10deg) rotateX(6deg) rotateZ(2deg) translate3d(82px, 18px, 120px) scale(1.05);
}

.device-bar {
  width: min(42%, 154px);
  height: 8px;
  margin-bottom: clamp(26px, 8vw, 42px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

.device-title {
  font-size: 2rem;
  font-weight: 800;
}

.device-caption {
  max-width: 22ch;
  margin-top: 12px;
  color: rgba(247, 244, 236, 0.78);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.36;
}

.device-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.device-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(247, 244, 236, 0.16);
  border-radius: 999px;
  color: rgba(247, 244, 236, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(7, 8, 13, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.device-line {
  width: 62%;
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(247, 244, 236, 0.2);
}

.device-line.wide {
  width: 82%;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.device-grid span {
  min-height: 78px;
  border: 1px solid rgba(247, 244, 236, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.fabrication-cutout {
  width: 72%;
  aspect-ratio: 1 / 0.58;
  margin-bottom: 26px;
  border: 12px solid rgba(247, 244, 236, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.part-stack {
  display: grid;
  gap: 10px;
  width: 76%;
  margin-top: 20px;
}

.part-stack span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 122, 47, 0.86), rgba(125, 219, 215, 0.58));
}

.part-stack span:nth-child(2) {
  width: 72%;
}

.part-stack span:nth-child(3) {
  width: 52%;
}

.intro-band,
.section-block,
.process-band,
.request-section,
.site-footer {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
}

.intro-band {
  padding: 18px 0 92px;
}

.intro-copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(26px, 5vw, 66px);
  padding: 32px 0 0 clamp(0px, 10vw, 132px);
  border-top: 1px solid var(--line);
}

.intro-copy::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: min(18vw, 210px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 173, 117, 0.92), rgba(125, 219, 215, 0.54), transparent);
}

.intro-copy > *,
.work-layout > *,
.about-section > *,
.request-section > * {
  min-width: 0;
}

.intro-copy p:first-child {
  font-size: clamp(1.9rem, 3vw, 2.72rem);
  line-height: 1.16;
  font-weight: 800;
}

.intro-copy p:last-child {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-block {
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.services-heading {
  max-width: 780px;
  margin-left: clamp(0px, 10vw, 132px);
}

.section-heading h2,
.about-copy h2,
.request-copy h2 {
  font-size: 3.4rem;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.work-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.work-panel-large {
  grid-column: span 7;
  grid-row: span 2;
}

.bluekrush-panel,
.etsy-panel {
  grid-column: span 5;
}

.work-panel,
.service-tile,
.request-form {
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.034)),
    var(--glass-strong);
  box-shadow: var(--soft-shadow);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  backdrop-filter: saturate(150%) blur(18px);
}

.work-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.work-panel::before,
.request-form::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 34%),
    linear-gradient(180deg, transparent 60%, rgba(255, 154, 92, 0.045));
  opacity: 0.78;
  pointer-events: none;
}

.work-panel > *,
.request-form > * {
  position: relative;
  z-index: 3;
}

.work-panel:hover {
  border-color: rgba(255, 154, 92, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.work-panel:active {
  transform: translateY(-3px) scale(0.995);
}

.work-link {
  display: grid;
  min-height: 100%;
}

.work-panel-large .work-link {
  grid-template-rows: 1fr auto;
}

.work-visual {
  position: relative;
  display: grid;
  min-height: 310px;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid rgba(247, 244, 236, 0.1);
  background: #090a12;
}

.work-visual::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 8, 13, 0.08), rgba(7, 8, 13, 0.3) 70%, rgba(7, 8, 13, 0.62)),
    linear-gradient(90deg, rgba(7, 8, 13, 0.12), transparent 38%, rgba(7, 8, 13, 0.1));
  pointer-events: none;
}

.work-panel-large .work-visual {
  min-height: 560px;
}

.work-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
  filter: saturate(0.98) contrast(1.04);
  transform: scale(1.01);
  transition: filter 260ms ease, opacity 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-panel:hover .work-image {
  opacity: 1;
  filter: saturate(1.06) contrast(1.07);
  transform: scale(1.045);
}

.fragx-visual {
  background:
    radial-gradient(circle at 50% 38%, rgba(125, 219, 215, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(6, 8, 12, 0.96), rgba(20, 35, 38, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 68px);
}

.fragx-visual .work-image {
  object-position: 48% center;
}

.fabrication-visual .work-image {
  object-position: 50% 52%;
}

.proof-visual .work-image {
  object-position: 54% 50%;
}

.market-tape {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-tape span,
.proof-grid span {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(8, 9, 13, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.fabrication-visual {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 122, 47, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(125, 219, 215, 0.09)),
    repeating-linear-gradient(0deg, rgba(247, 244, 236, 0.05) 0 1px, transparent 1px 28px);
}

.acrylic-box {
  position: relative;
  width: 62%;
  aspect-ratio: 1 / 0.72;
  border: 12px solid rgba(8, 164, 167, 0.52);
  border-radius: var(--radius);
  box-shadow:
    16px 18px 0 rgba(255, 122, 47, 0.14),
    0 30px 54px rgba(125, 219, 215, 0.18);
}

.acrylic-box span {
  position: absolute;
  border-radius: 999px;
  background: rgba(247, 244, 236, 0.26);
}

.acrylic-box span:nth-child(1) {
  left: 14%;
  top: 18%;
  width: 18px;
  height: 18px;
}

.acrylic-box span:nth-child(2) {
  right: 14%;
  top: 18%;
  width: 18px;
  height: 18px;
}

.acrylic-box span:nth-child(3) {
  left: 50%;
  bottom: 16%;
  width: 80px;
  height: 10px;
  transform: translateX(-50%);
}

.print-lines {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: grid;
  gap: 7px;
  width: 110px;
}

.print-lines span {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

.proof-visual {
  color: white;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 154, 92, 0.13), transparent 28%),
    linear-gradient(135deg, #07080d, #251f34 52%, #3d210f),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 56px);
}

.proof-number {
  font-size: 7rem;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 22px 40px rgba(0, 0, 0, 0.36);
}

.proof-grid {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.work-copy {
  padding: 24px;
}

.work-copy h3 {
  font-size: 1.7rem;
  line-height: 1.12;
  font-weight: 800;
}

.work-copy p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.58;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange-strong);
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: dense;
  align-items: stretch;
  gap: 14px;
}

.service-tile {
  position: relative;
  isolation: isolate;
  min-height: 270px;
  padding: 26px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-tile::before {
  position: absolute;
  right: -28px;
  bottom: -38px;
  z-index: 0;
  width: min(76%, 420px);
  height: 100%;
  content: "";
  background-image: var(--service-art);
  background-repeat: no-repeat;
  background-position: var(--service-position, center);
  background-size: cover;
  border-radius: 18px;
  opacity: 0.48;
  filter: saturate(0.95) contrast(1.04) drop-shadow(0 18px 32px rgba(0, 0, 0, 0.34));
  transform: translateZ(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-tile::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(115deg, rgba(8, 9, 16, 0.92) 0%, rgba(8, 9, 16, 0.72) 58%, rgba(8, 9, 16, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), transparent 34%);
}

.service-tile > * {
  position: relative;
  z-index: 2;
}

.service-tile:nth-child(1) {
  --service-art: url("assets/service-web-dev-image2.jpg");
  --service-position: 62% 50%;
}

.service-tile:nth-child(2) {
  --service-art: url("assets/service-web-design-image2.jpg");
  --service-position: 62% 50%;
}

.service-tile:nth-child(3) {
  --service-art: url("assets/service-product-design-image2.jpg");
  --service-position: 62% 50%;
}

.service-tile:nth-child(4) {
  --service-art: url("assets/service-software-dev-image2.jpg");
  --service-position: 62% 50%;
}

.service-tile:nth-child(5) {
  --service-art: url("assets/service-acrylic-fab-image2.jpg");
  --service-position: 62% 50%;
}

.service-tile:nth-child(6) {
  --service-art: url("assets/service-3d-modeling-image2.jpg");
  --service-position: 62% 50%;
}

.service-tile:nth-child(7) {
  min-height: 292px;
  --service-art: url("assets/service-3d-printing-image2.jpg");
  --service-position: 62% 50%;
}

.service-tile:hover {
  border-color: rgba(255, 154, 92, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-tile:active {
  transform: translateY(-2px) scale(0.995);
}

.service-tile:hover::before {
  opacity: 0.68;
  transform: translate3d(-10px, -10px, 0) scale(1.04);
}

.service-index {
  color: var(--orange-strong);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
}

.service-tile h3 {
  max-width: 14ch;
  margin-top: 48px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.service-tile p {
  max-width: 30ch;
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.process-band {
  padding: 54px 0 94px;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.86fr 1.2fr 0.82fr 1.04fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-track::before {
  position: absolute;
  top: 48%;
  right: 24px;
  left: 24px;
  z-index: 2;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 173, 117, 0.68), rgba(125, 219, 215, 0.36), rgba(247, 244, 236, 0.08));
  opacity: 0.62;
}

.process-track div {
  position: relative;
  z-index: 3;
  min-height: 132px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.03)),
    rgba(10, 12, 20, 0.78);
}

.process-track span {
  display: block;
  color: var(--orange-strong);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-track strong {
  display: block;
  margin-top: 40px;
  font-size: 1.3rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(340px, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.about-visual {
  position: relative;
  min-height: 500px;
  perspective: 900px;
}

.about-visual::before {
  position: absolute;
  inset: 10% 12% 6% 4%;
  content: "";
  border: 1px solid rgba(247, 244, 236, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 34%),
    repeating-linear-gradient(90deg, rgba(247, 244, 236, 0.055) 0 1px, transparent 1px 42px);
  opacity: 0.46;
  transform: rotateZ(-4deg);
}

.material-slab {
  position: absolute;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 236, 0.16);
  border-radius: var(--radius);
  background: rgba(4, 5, 9, 0.86);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: saturate(145%) blur(18px);
  backdrop-filter: saturate(145%) blur(18px);
}

.material-slab::before {
  position: absolute;
  inset: -34%;
  content: "";
  background-image: var(--about-art);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.96;
}

.material-slab::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 38%),
    linear-gradient(180deg, rgba(7, 8, 13, 0), rgba(7, 8, 13, 0.22)),
    radial-gradient(circle at 70% 22%, rgba(125, 219, 215, 0.12), transparent 34%);
  pointer-events: none;
}

.slab-one {
  inset: 6% 16% 18% 8%;
  --about-art: url("assets/about-workspace-image2.jpg");
  transform: rotateY(-22deg) rotateX(8deg) rotateZ(-8deg);
}

.slab-two {
  inset: 20% 2% 8% 34%;
  --about-art: url("assets/about-workspace-image2.jpg");
  transform: rotateY(-28deg) rotateX(4deg) rotateZ(8deg);
}

.slab-three {
  inset: 44% 42% 0 0;
  --about-art: url("assets/service-maker-image2.jpg");
  transform: rotateY(-20deg) rotateX(14deg) rotateZ(14deg);
}

.about-copy p:not(.eyebrow),
.request-copy p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-links a {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(10, 12, 20, 0.66);
  color: var(--ink);
  font-weight: 700;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.about-links a:hover {
  border-color: rgba(255, 154, 92, 0.34);
  transform: translateY(-2px);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(430px, 1.26fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
  padding: 100px 0 88px;
}

.request-copy {
  position: sticky;
  top: 106px;
}

.request-form {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
}

.request-form::after {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  z-index: 3;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 173, 117, 0.7), rgba(125, 219, 215, 0.38), transparent);
  opacity: 0.82;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

label span {
  color: var(--muted);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: var(--radius);
  outline: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.045)),
    rgba(8, 9, 13, 0.66);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

input,
select {
  padding: 0 14px;
}

textarea {
  min-height: 154px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 154, 92, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055)),
    rgba(7, 8, 13, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 122, 47, 0.12);
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 2px;
}

.form-footer p {
  color: var(--muted);
  font-size: 0.94rem;
}

.form-footer a {
  color: var(--orange-strong);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 52px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-version {
  flex-basis: 100%;
  width: 100%;
  margin: -4px 0 0;
  color: rgba(65, 73, 75, 0.76);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}

.site-footer a {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03)),
    rgba(10, 12, 20, 0.5);
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  border-color: rgba(125, 219, 215, 0.32);
  color: var(--ink);
  transform: translateY(-2px);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.hero-section [data-reveal],
.intro-band [data-reveal] {
  opacity: 1;
  transform: none;
}

.work-layout [data-reveal]:nth-child(2),
.service-grid [data-reveal]:nth-child(2) {
  transition-delay: 70ms;
}

.work-layout [data-reveal]:nth-child(3),
.service-grid [data-reveal]:nth-child(3) {
  transition-delay: 140ms;
}

.service-grid [data-reveal]:nth-child(4) {
  transition-delay: 210ms;
}

.service-grid [data-reveal]:nth-child(5) {
  transition-delay: 280ms;
}

.service-grid [data-reveal]:nth-child(6) {
  transition-delay: 350ms;
}

.service-grid [data-reveal]:nth-child(7) {
  transition-delay: 420ms;
}

@keyframes stage-float {
  0%,
  100% {
    transform: translateY(0) rotateZ(0deg);
  }
  50% {
    transform: translateY(-16px) rotateZ(1deg);
  }
}

/* Light studio refresh: replaces the earlier space/glass mood with brighter product surfaces. */
.site-nav {
  border-color: rgba(21, 25, 28, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 18px 52px rgba(77, 92, 86, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -18px 28px rgba(27, 145, 140, 0.035);
}

.site-nav::before {
  background:
    linear-gradient(90deg, rgba(214, 111, 66, 0.12), transparent 32%, rgba(27, 145, 140, 0.12) 70%, transparent),
    rgba(255, 255, 255, 0.28);
}

.nav-indicator {
  border-color: rgba(21, 25, 28, 0.1);
  background:
    linear-gradient(135deg, rgba(214, 111, 66, 0.2), rgba(27, 145, 140, 0.12)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 10px 24px rgba(77, 92, 86, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.site-nav a {
  color: var(--ink-soft);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.hero-section::before,
.intro-copy::before,
.request-form::after {
  background: linear-gradient(180deg, transparent, rgba(214, 111, 66, 0.48), rgba(27, 145, 140, 0.22), transparent);
}

.hero-copy h1,
.hero-kicker,
.section-heading h2,
.about-copy h2,
.request-copy h2,
.work-copy h3,
.service-tile h3,
.process-track strong,
label {
  color: var(--ink);
}

.hero-text,
.hero-meta span,
.intro-copy p:last-child,
.work-copy p:not(.eyebrow),
.service-tile p,
.about-copy p:not(.eyebrow),
.request-copy p {
  color: var(--ink-soft);
}

.hero-meta {
  border-color: rgba(21, 25, 28, 0.16);
}

.hero-meta span {
  border-color: rgba(21, 25, 28, 0.1);
}

.button-primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #e37c4d, #b85f3a);
  box-shadow:
    0 14px 34px rgba(214, 111, 66, 0.24),
    0 0 0 1px rgba(126, 72, 44, 0.08);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(21, 25, 28, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 30px rgba(77, 92, 86, 0.12);
}

.device-stage::before {
  background: linear-gradient(90deg, rgba(214, 111, 66, 0.18), rgba(27, 145, 140, 0.14), transparent);
  filter: blur(18px);
}

.device-glass {
  border-color: rgba(21, 25, 28, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 40px 90px rgba(77, 92, 86, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.device-glass::after {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.1) 48%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 60%, rgba(21, 25, 28, 0.04));
}

.device-art,
.work-image {
  opacity: 1;
  filter: saturate(0.98) contrast(1);
}

.device-caption,
.device-chip-row span {
  color: var(--ink-soft);
}

.device-chip-row span {
  border-color: rgba(21, 25, 28, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.68);
}

.work-panel,
.service-tile,
.request-form {
  border-color: rgba(21, 25, 28, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    var(--glass-strong);
}

.work-panel::before,
.request-form::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 36%),
    linear-gradient(180deg, transparent 62%, rgba(27, 145, 140, 0.045));
}

.work-panel:hover,
.service-tile:hover {
  border-color: rgba(214, 111, 66, 0.32);
}

.work-visual {
  border-color: rgba(21, 25, 28, 0.1);
  background: #f8faf8;
}

.work-visual::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(238, 243, 239, 0.2) 72%, rgba(225, 234, 230, 0.35)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 42%, rgba(255, 255, 255, 0.18));
}

.fragx-visual,
.fabrication-visual,
.proof-visual {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(231, 242, 238, 0.72)),
    repeating-linear-gradient(90deg, rgba(21, 25, 28, 0.05) 0 1px, transparent 1px 68px);
}

.market-tape span,
.proof-grid span {
  color: var(--ink);
  border-color: rgba(21, 25, 28, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(77, 92, 86, 0.12);
}

.service-tile::before {
  right: -20px;
  bottom: -28px;
  width: min(82%, 460px);
  opacity: 0.92;
  filter: saturate(1.02) contrast(1.02) drop-shadow(0 18px 28px rgba(77, 92, 86, 0.16));
}

.service-tile::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.36) 60%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 34%);
}

.service-tile:hover::before {
  opacity: 1;
}

.process-track {
  background: rgba(21, 25, 28, 0.12);
}

.process-track div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.76);
}

.process-track::before {
  background: linear-gradient(90deg, rgba(214, 111, 66, 0.54), rgba(27, 145, 140, 0.34), rgba(21, 25, 28, 0.08));
}

.about-visual::before {
  border-color: rgba(21, 25, 28, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 34%),
    repeating-linear-gradient(90deg, rgba(21, 25, 28, 0.055) 0 1px, transparent 1px 42px);
}

.material-slab {
  border-color: rgba(21, 25, 28, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 34px 80px rgba(77, 92, 86, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.material-slab::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(21, 25, 28, 0.05));
}

.about-links a,
.site-footer a {
  color: var(--ink);
  border-color: rgba(21, 25, 28, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.68);
}

input,
select,
textarea {
  border-color: rgba(21, 25, 28, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.82);
}

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

@media (min-width: 1081px) {
  .page-shell::after {
    display: block;
    height: calc(100dvh - var(--header-height));
    content: "";
    pointer-events: none;
  }

  .site-footer {
    position: fixed;
    right: max(20px, calc((100vw - var(--content)) / 2));
    bottom: 18px;
    left: max(20px, calc((100vw - var(--content)) / 2));
    z-index: 18;
    width: auto;
    margin: 0;
    padding: 0;
    border-top: 0;
    justify-content: flex-end;
    pointer-events: none;
  }

  .site-footer div,
  .site-version {
    pointer-events: auto;
  }

  .site-version {
    flex-basis: auto;
    width: auto;
    margin: 0;
    color: rgba(49, 57, 59, 0.82);
    text-align: right;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.86);
  }

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

  .service-tile:nth-child(1) {
    grid-column: span 4;
  }

  .service-tile:nth-child(2) {
    grid-column: span 3;
  }

  .service-tile:nth-child(3) {
    grid-column: span 5;
  }

  .service-tile:nth-child(4) {
    grid-column: span 5;
  }

  .service-tile:nth-child(5) {
    grid-column: span 4;
  }

  .service-tile:nth-child(6) {
    grid-column: span 3;
  }

  .service-tile:nth-child(7) {
    grid-column: span 8;
  }
}

@media (max-width: 1080px) {
  .hero-section,
  .about-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    gap: 20px;
    padding-top: 54px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-product {
    min-height: 460px;
  }

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

  .service-tile {
    grid-column: span 1 !important;
  }

  .service-tile:nth-child(3),
  .service-tile:nth-child(7) {
    grid-column: span 2 !important;
  }

  .request-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header {
    justify-content: center;
  }

  .site-nav {
    justify-content: center;
  }

  .site-nav a {
    flex: 0 0 auto;
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: 4.1rem;
  }

  .hero-kicker {
    font-size: 1.58rem;
  }

  .intro-copy,
  .work-layout,
  .process-track,
  .field-row {
    grid-template-columns: 1fr;
  }

  .work-panel-large {
    grid-row: auto;
  }

  .work-panel-large,
  .bluekrush-panel,
  .etsy-panel {
    grid-column: 1;
  }

  .work-panel-large .work-visual,
  .work-visual {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 72px;
  }

  body {
    background-color: #eef3ef;
  }

  body::before {
    background-position: 58% top;
  }

  body::after {
    display: none;
  }

  .reveal-ready [data-reveal],
  .reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-header,
  .hero-section,
  .intro-band,
  .section-block,
  .process-band,
  .request-section,
  .site-footer {
    width: min(calc(100% - 24px), var(--content));
  }

  .site-header {
    top: 0;
    width: 100%;
    gap: 8px;
    padding: 10px 10px 0;
    justify-content: center;
  }

  .site-nav {
    width: calc(100vw - 20px);
    max-width: none;
    gap: 0;
    padding: 3px;
    justify-content: space-between;
    overflow: hidden;
  }

  .site-nav a {
    min-width: 0;
    min-height: 34px;
    padding: 0 4px;
    flex: 1 1 0;
    font-size: clamp(0.64rem, 2.7vw, 0.7rem);
    white-space: nowrap;
  }

  .hero-section::before {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 30px 0 48px;
  }

  .hero-copy,
  .intro-copy,
  .section-heading,
  .about-copy,
  .request-copy {
    border: 1px solid rgba(21, 25, 28, 0.1);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
      rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 50px rgba(77, 92, 86, 0.13);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 22px;
    overflow: hidden;
  }

  .hero-copy h1 {
    font-size: clamp(2.62rem, 16vw, 3.74rem);
    line-height: 0.95;
  }

  .hero-kicker {
    max-width: 340px;
    font-size: 1.24rem;
  }

  .hero-text,
  .intro-copy p {
    width: 100%;
    max-width: none;
    overflow-wrap: break-word;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.5);
  }

  .hero-meta span:nth-child(2) {
    border-right: 0;
  }

  .hero-meta span:nth-child(n + 3) {
    border-top: 1px solid rgba(21, 25, 28, 0.1);
  }

  .hero-text,
  .intro-copy p:last-child,
  .about-copy p:not(.eyebrow),
  .request-copy p {
    font-size: 1rem;
  }

  .hero-product {
    min-height: auto;
    margin-top: 24px;
    overflow: visible;
    perspective: none;
  }

  .device-stage {
    width: 100%;
    aspect-ratio: 1 / 0.78;
    animation: none;
    transform: none;
  }

  .device-stage::before,
  .device-back,
  .device-hit-area {
    display: none;
  }

  .device-front,
  .device-stage.physical-active .device-front {
    inset: 0;
    padding: 18px;
    opacity: 1;
    filter: none;
    pointer-events: auto;
    transform: none;
  }

  .device-front .device-content {
    max-width: 76%;
  }

  .device-title {
    font-size: 1.34rem;
  }

  .device-caption {
    max-width: 19ch;
    margin-top: 8px;
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .device-chip-row {
    gap: 5px;
  }

  .device-chip-row span {
    min-height: 23px;
    padding: 0 7px;
    font-size: 0.62rem;
  }

  .intro-band {
    padding-bottom: 46px;
  }

  .intro-copy,
  .services-heading {
    padding: 20px;
    margin-left: 0;
  }

  .intro-copy {
    border-top: 1px solid rgba(21, 25, 28, 0.1);
  }

  .section-heading,
  .about-copy,
  .request-copy {
    padding: 20px;
  }

  .intro-copy p:first-child,
  .section-heading h2,
  .about-copy h2,
  .request-copy h2 {
    font-size: 1.96rem;
  }

  .section-block,
  .request-section {
    padding: 46px 0;
  }

  .work-panel,
  .service-tile,
  .request-form,
  .process-track div {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
      #fff;
  }

  .work-panel::before,
  .request-form::before {
    opacity: 0.35;
  }

  .work-panel-large .work-visual,
  .work-visual {
    min-height: 260px;
  }

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

  .service-tile {
    grid-column: 1 / -1 !important;
    min-height: 230px;
    padding: 24px;
  }

  .service-tile:nth-child(3),
  .service-tile:nth-child(7) {
    grid-column: 1 / -1 !important;
  }

  .service-tile::before {
    right: -18px;
    bottom: -18px;
    width: min(82%, 260px);
    height: 230px;
    opacity: 0.82;
  }

  .service-tile::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 46%, rgba(255, 255, 255, 0.52) 76%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 34%);
  }

  .service-tile h3,
  .service-tile p {
    max-width: 19ch;
  }

  .proof-number {
    font-size: 5.5rem;
  }

  .process-track div {
    min-height: 104px;
  }

  .process-track strong {
    margin-top: 20px;
  }

  .about-visual {
    min-height: 300px;
  }

  .request-form {
    padding: 18px;
  }

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

  .site-footer {
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(21, 25, 28, 0.1);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
      rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 46px rgba(77, 92, 86, 0.12);
    color: #31393b;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .site-footer p {
    margin: 0;
    color: #31393b;
  }

  .site-footer div {
    justify-content: flex-start;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
