:root {
  --ink: #08080a;
  --panel: #121215;
  --paper: #fbfaf6;
  --lime: #d6ff38;
  --soft-line: rgba(251, 250, 246, 0.09);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: "Avenir Next", Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
a,
summary {
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(251, 250, 246, 0.12);
  border-radius: 8px;
  background: rgba(8, 8, 10, 0.86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -120%);
  transition: opacity 240ms ease, transform 240ms ease;
}

.site-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
}

.brand img {
  width: 158px;
}

.nav-links {
  display: flex;
  justify-content: center;
  justify-self: center;
}

.nav-links a,
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-links a {
  color: rgba(251, 250, 246, 0.72);
}

.nav-links a:hover {
  color: var(--paper);
  background: rgba(251, 250, 246, 0.07);
}

.header-cta {
  justify-self: end;
  color: var(--ink);
  background: var(--lime);
}

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

.editorial-hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: clamp(28px, 5vw, 80px);
  overflow: hidden;
  background: #000;
}

.hero-brand-lockup {
  width: min(1120px, 86vw);
  opacity: var(--hero-opacity, 1);
  transform: scale(var(--hero-scale, 1));
  transform-origin: center;
  will-change: opacity, transform;
}

.hero-brand-lockup img {
  width: 100%;
  max-height: 42vh;
  object-fit: contain;
  object-position: center;
  backface-visibility: hidden;
  animation:
    hero-logo-fade 1200ms cubic-bezier(0.22, 1, 0.36, 1) both,
    hero-logo-settle 1800ms cubic-bezier(0.16, 1.06, 0.3, 1) both;
  will-change: opacity, transform;
}

@keyframes hero-logo-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hero-logo-settle {
  from {
    transform: translate3d(0, 0, 0) scale(0.982);
  }

  to {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
.hero-copy-panel h1 {
  max-width: 900px;
  margin: 0;
  font-size: 5.25rem;
  font-weight: 600;
  line-height: 1;
}

h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.04;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.15;
}

.hero-copy-panel p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(251, 250, 246, 0.72);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.58;
}

.hero-copy-panel .hero-one-line {
  max-width: none;
  color: rgba(251, 250, 246, 0.9);
  font-size: 1.32rem;
  font-weight: 600;
  white-space: nowrap;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(214, 255, 56, 0.12);
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-block: 118px;
  border-top: 1px solid var(--soft-line);
  content-visibility: auto;
  contain-intrinsic-size: auto 860px;
}

.intro-section {
  border-top: 0;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.split {
  display: block;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.92rem;
  font-weight: 600;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 88px;
  align-items: start;
}

.intro-layout p,
.why-copy p,
.contact-copy p:last-child {
  color: rgba(251, 250, 246, 0.72);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.58;
}

.intro-layout p:last-of-type {
  margin-bottom: 0;
}

.no-list,
.included-list,
.built-for-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.no-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
}

.no-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(251, 250, 246, 0.86);
  font-size: 1rem;
  font-weight: 600;
}

.no-list li::before,
.included-list li::before {
  content: "";
  background: url("assets/razz-rhom-mark.svg") center / contain no-repeat;
}

.no-list li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 9px;
  transform: translateY(-58%);
}

.work-section,
.built-for-section {
  width: min(1400px, calc(100% - 32px));
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 30px 22px;
}

.work-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(251, 250, 246, 0.11);
  border-radius: 8px;
  background: #0c0c0d;
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.work-card-media {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(251, 250, 246, 0.1);
  background: #060607;
}

.work-card-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.04) 45%, rgba(5, 5, 6, 0.38) 100%);
  transition: background-color 320ms ease;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: translate3d(0, var(--work-shift, 0), 0);
  scale: 1.035;
  transition:
    scale 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
  will-change: transform, scale;
}

.work-card-live,
.work-card-action {
  position: absolute;
  z-index: 2;
  color: var(--off-white);
  line-height: 1;
}

.work-card-live {
  top: 16px;
  right: 16px;
  padding: 9px 10px;
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 4px;
  background: rgba(6, 6, 7, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
}

.work-card-action {
  top: 50%;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 40px);
  opacity: 0;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  transform: translate(-50%, calc(-50% + 10px));
  transition:
    opacity 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card-footer {
  display: grid;
  align-content: center;
  height: 126px;
  padding: 20px;
}

.work-card-project {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.18;
}

.work-card-project::before {
  width: 28px;
  height: 12px;
  content: "";
  background: url("assets/razz-rhom-mark.svg") center / contain no-repeat;
}

.work-card-category {
  margin: 9px 0 0 40px;
  color: rgba(251, 250, 246, 0.56);
  font-size: 0.92rem;
  line-height: 1.4;
}

.work-card:hover,
.work-card:focus-visible {
  border-color: rgba(214, 255, 56, 0.56);
  background: #10110d;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.work-card:hover .work-card-media::after,
.work-card:focus-visible .work-card-media::after {
  background-color: rgba(5, 5, 6, 0.38);
}

.work-card:hover img,
.work-card:focus-visible img {
  filter: saturate(0.9);
  scale: 1.075;
}

.work-card:hover .work-card-action,
.work-card:focus-visible .work-card-action {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.included-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.included-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  column-gap: 20px;
  min-height: 96px;
  padding: 20px 24px;
  border: 1px solid rgba(251, 250, 246, 0.12);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.04);
  color: rgba(251, 250, 246, 0.78);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.included-list li::before {
  width: 38px;
  height: 16px;
  transform: translateY(-2px);
}

.motion-ready .included-list li.reveal::before {
  opacity: 0;
  transform: translateY(-2px) scale(0.45);
  transition:
    opacity 320ms ease calc(var(--reveal-delay, 0ms) + 120ms),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--reveal-delay, 0ms) + 120ms);
}

.motion-ready .included-list li.reveal.is-visible::before {
  opacity: 1;
  transform: translateY(-2px) scale(1);
}

.included-list li:hover {
  border-color: rgba(214, 255, 56, 0.32);
  background: rgba(214, 255, 56, 0.055);
  transform: translateY(-3px);
}

.why-panel--reworked {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 72px;
  align-items: end;
}

.why-copy h2 {
  max-width: 900px;
}

.why-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
}

.why-stack {
  display: grid;
  gap: 10px;
}

.why-stack article {
  position: relative;
  min-height: 0;
  padding: 24px 24px 24px 30px;
  border: 1px solid rgba(251, 250, 246, 0.14);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.035);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.why-stack article::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 4px;
  background: var(--lime);
}

.why-stack article:hover {
  border-color: rgba(214, 255, 56, 0.34);
  background: rgba(214, 255, 56, 0.05);
  transform: translateX(-4px);
}

.why-stack span {
  display: block;
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 600;
}

.why-stack h3 {
  margin: 0;
  font-size: 1.55rem;
}

.why-stack p {
  margin: 10px 0 0;
  color: rgba(251, 250, 246, 0.68);
  font-size: 1rem;
  line-height: 1.5;
}

.built-for-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.built-for-list > li {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(251, 250, 246, 0.16);
  border-radius: 8px;
  background: var(--panel);
  color: var(--paper);
  transition: transform 220ms ease, border-color 220ms ease;
}

.built-for-list > li:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.industry-card {
  height: 100%;
}

.industry-card summary {
  position: relative;
  display: flex;
  min-height: 320px;
  align-items: flex-end;
  padding: 28px;
  overflow: hidden;
  cursor: pointer;
  list-style: none;
}

.industry-card summary::-webkit-details-marker {
  display: none;
}

.industry-card summary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.08), rgba(5, 5, 6, 0.64) 58%, rgba(5, 5, 6, 0.94)),
    linear-gradient(120deg, rgba(214, 255, 56, 0.14), transparent 42%);
  pointer-events: none;
}

.industry-card summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: -5px;
}

.industry-card-title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding-right: 22px;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.12;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.industry-card-title::before {
  content: "";
  flex: 0 0 auto;
  width: 38px;
  height: 16px;
  background: url("assets/razz-rhom-mark.svg") center / contain no-repeat;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 12px rgba(214, 255, 56, 0.22));
}

.industry-card-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: calc(100% - 56px);
  color: rgba(251, 250, 246, 0.76);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translate(-50%, calc(-50% + 8px));
  transition: opacity 180ms ease, transform 180ms ease;
}

.industry-card summary img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 240ms ease;
}

.industry-card-detail {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow-y: auto;
  background: rgba(8, 8, 10, 0.97);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1), visibility 200ms;
}

.industry-card[open] .industry-card-detail {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.industry-card-detail h3 {
  margin: 4px 40px 12px 0;
  font-size: 1.55rem;
}

.industry-card-detail p {
  margin: 0;
  color: rgba(251, 250, 246, 0.72);
  font-size: 0.96rem;
  line-height: 1.45;
}

.industry-card-detail ul {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.industry-card-detail li {
  position: relative;
  padding-left: 18px;
  color: rgba(251, 250, 246, 0.9);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.industry-card-detail li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 3px;
  background: var(--lime);
  transform: skewX(-32deg);
}

.industry-card-detail > a {
  align-self: flex-start;
  margin-top: auto;
  color: var(--lime);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.industry-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(251, 250, 246, 0.2);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.built-for-list > li:hover,
.built-for-list > li:focus-within {
  border-color: rgba(214, 255, 56, 0.42);
  transform: translateY(-4px);
}

.industry-card summary:hover img,
.industry-card summary:focus-visible img {
  filter: brightness(0.68) saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

.industry-card summary:hover .industry-card-hint,
.industry-card summary:focus-visible .industry-card-hint {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  list-style: none;
}

.process-list li {
  position: relative;
  min-width: 0;
  padding: 28px 22px 30px;
  transition: background-color 320ms ease;
}

.process-list li::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--lime);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 240ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-list li.is-current {
  background: rgba(214, 255, 56, 0.045);
}

.process-list li.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.process-list li + li {
  border-left: 1px solid var(--soft-line);
}

.process-list .process-number,
.process-list strong {
  display: block;
}

.process-list .process-number {
  margin-bottom: 22px;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 700;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border: 1px solid rgba(251, 250, 246, 0.2);
  border-radius: 50%;
  color: rgba(251, 250, 246, 0.72);
  background: rgba(251, 250, 246, 0.025);
  transition:
    color 280ms ease,
    border-color 280ms ease,
    background-color 280ms ease,
    box-shadow 280ms ease,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-icon svg {
  width: 27px;
  height: 27px;
}

.process-icon--options svg {
  width: 30px;
}

.process-list li.is-current .process-icon {
  border-color: rgba(214, 255, 56, 0.55);
  color: var(--lime);
  background: rgba(214, 255, 56, 0.07);
  box-shadow: 0 0 24px rgba(214, 255, 56, 0.13);
  transform: translateY(-2px);
}

.process-list strong {
  font-size: 1.18rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.process-list p {
  margin: 10px 0 0;
  color: rgba(251, 250, 246, 0.6);
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(520px, 1fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: start;
  width: min(1320px, calc(100% - 32px));
}

.contact-copy {
  position: sticky;
  top: 96px;
  align-self: start;
}

.contact-copy h2 {
  max-width: 680px;
}

.contact-copy p:last-child {
  max-width: 620px;
  margin-top: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(18px, 2.6vw, 34px);
  border: 1px solid rgba(251, 250, 246, 0.12);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.045);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 10px;
  color: rgba(251, 250, 246, 0.68);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

input,
select,
textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(251, 250, 246, 0.14);
  border-radius: 8px;
  background-color: rgba(4, 4, 6, 0.78);
  color: rgba(251, 250, 246, 0.94);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  box-shadow: inset 0 1px 0 rgba(251, 250, 246, 0.04);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

input,
select {
  min-height: 54px;
  padding: 0 15px;
}

select {
  appearance: none;
  text-overflow: ellipsis;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--lime) 50%),
    linear-gradient(135deg, var(--lime) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(214, 255, 56, 0.58);
  background-color: rgba(8, 8, 10, 0.96);
  box-shadow: 0 0 0 3px rgba(214, 255, 56, 0.1);
}

::placeholder {
  color: rgba(251, 250, 246, 0.42);
  opacity: 1;
}

.full-field {
  grid-column: 1 / -1;
}

.contact-form .button {
  min-height: 58px;
  margin-top: 4px;
  font-size: 1rem;
}

.consent-field {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  color: rgba(251, 250, 246, 0.74);
  background: rgba(251, 250, 246, 0.025);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--lime);
}

.form-privacy-notice {
  margin: 0;
  color: rgba(251, 250, 246, 0.58);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-privacy-notice a,
.footer-links a,
.legal-content a,
.legal-header > a:last-child,
.legal-footer a {
  text-decoration: underline;
  text-decoration-color: rgba(214, 255, 56, 0.46);
  text-underline-offset: 4px;
}

.form-privacy-notice a:hover,
.footer-links a:hover,
.legal-content a:hover,
.legal-header > a:last-child:hover,
.legal-footer a:hover {
  color: var(--lime);
}

.form-next-step {
  display: grid;
  gap: 4px;
  margin: 2px 0 0;
  padding: 18px 2px 2px;
  border-top: 1px solid var(--soft-line);
  color: rgba(251, 250, 246, 0.62);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-next-step strong {
  color: var(--paper);
  font-size: 1rem;
  font-weight: 600;
}

.form-submit-status {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(214, 255, 56, 0.28);
  border-radius: 8px;
  color: rgba(251, 250, 246, 0.86);
  background: rgba(214, 255, 56, 0.07);
  font-size: 0.92rem;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid rgba(251, 250, 246, 0.12);
  color: rgba(251, 250, 246, 0.62);
}

.site-footer p {
  margin: 0;
}

.footer-brand p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: rgba(251, 250, 246, 0.42);
  font-size: 0.75rem;
}

.legal-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-header,
.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  border-bottom: 1px solid var(--soft-line);
  color: rgba(251, 250, 246, 0.66);
}

.legal-header > a:last-child {
  font-size: 0.94rem;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding-block: 104px 120px;
}

.legal-content h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: 4.15rem;
}

.legal-updated {
  margin-bottom: 64px;
  color: rgba(251, 250, 246, 0.48);
  font-size: 0.94rem;
}

.legal-content section {
  padding-block: 30px;
  border-top: 1px solid var(--soft-line);
}

.legal-content section h2 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.legal-content section p,
.legal-content section li {
  color: rgba(251, 250, 246, 0.72);
  font-size: 1.04rem;
  line-height: 1.7;
}

.legal-content section p {
  margin-bottom: 0;
}

.legal-content section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.legal-footer {
  border-top: 1px solid var(--soft-line);
  border-bottom: 0;
  font-size: 0.92rem;
}

.legal-footer nav {
  display: flex;
  gap: 18px;
}

.legal-footer [aria-current="page"] {
  color: var(--lime);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms ease var(--reveal-delay, 0ms),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

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

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .brand img {
    width: 148px;
  }

  h1,
  .hero-copy-panel h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 3.15rem;
  }

  .hero-copy-panel .hero-one-line {
    white-space: normal;
  }

  .intro-layout,
  .why-panel--reworked,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-layout,
  .why-panel--reworked {
    gap: 38px;
  }

  .included-list,
  .built-for-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .built-for-list > li:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .work-section,
  .built-for-section,
  .contact-section {
    width: min(1180px, calc(100% - 32px));
  }

  .contact-copy {
    position: static;
  }

}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    gap: 12px;
    width: calc(100% - 20px);
    padding: 8px 8px 8px 12px;
  }

  .brand img {
    width: 124px;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 13px;
    font-size: 0.84rem;
  }

  .editorial-hero {
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: 24px;
  }

  .hero-brand-lockup {
    width: min(90vw, 680px);
  }

  h1,
  .hero-copy-panel h1 {
    font-size: 2.8rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .hero-copy-panel p,
  .hero-copy-panel .hero-one-line,
  .intro-layout p,
  .why-copy p,
  .contact-copy p:last-child {
    font-size: 1.05rem;
  }

  .section,
  .work-section,
  .built-for-section,
  .contact-section {
    width: calc(100% - 28px);
    padding-block: 72px;
  }

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

  .work-grid,
  .included-list,
  .built-for-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .work-grid {
    gap: 20px;
  }

  .work-card-media {
    aspect-ratio: 16 / 10;
  }

  .work-card-project {
    font-size: 1.18rem;
  }

  .work-card-category {
    font-size: 0.86rem;
  }

  .included-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 16px;
    min-height: 82px;
    padding: 18px 20px;
  }

  .included-list li::before {
    width: 34px;
    height: 14px;
  }

  .built-for-list > li,
  .industry-card summary {
    min-height: 280px;
  }

  .industry-card summary {
    padding: 24px;
  }

  .industry-card-title {
    gap: 16px;
    font-size: 1.35rem;
  }

  .industry-card-title::before {
    width: 34px;
    height: 14px;
  }

  .industry-card-hint {
    top: 50%;
    left: 50%;
    width: calc(100% - 48px);
    font-size: 0.76rem;
    opacity: 0;
    transform: translate(-50%, calc(-50% + 6px));
  }

  .industry-card-detail {
    padding: 24px;
  }

  .industry-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 34px 46px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    padding: 20px 0;
  }

  .process-list li + li {
    border-top: 1px solid var(--soft-line);
    border-left: 0;
  }

  .process-list .process-number {
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 3px 0 0;
  }

  .process-icon {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .process-icon svg {
    width: 22px;
    height: 22px;
  }

  .process-list strong,
  .process-list p {
    grid-column: 3;
  }

  .process-list strong {
    font-size: 1.02rem;
    line-height: 1.25;
  }

  .process-list p {
    margin-top: 5px;
  }

  .full-field {
    grid-column: auto;
  }

  .contact-form {
    gap: 16px;
  }

  input,
  select {
    min-height: 52px;
  }

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

  .footer-links a {
    padding-block: 8px;
  }

  .legal-header,
  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-content {
    padding-block: 72px 88px;
  }

  .legal-content h1 {
    font-size: 2.8rem;
  }
}

@media (hover: none) and (pointer: coarse) and (max-width: 620px) {
  .industry-card summary {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 8px;
  }

  .industry-card-title {
    order: 2;
  }

  .industry-card-hint {
    position: relative;
    top: auto;
    left: auto;
    order: 1;
    width: 100%;
    color: rgba(251, 250, 246, 0.82);
    text-align: left;
    opacity: 1;
    transform: none;
  }

  .industry-card-hint::after {
    content: " · Tap for ideas";
    color: var(--lime);
  }
}

@media (max-width: 380px) {
  h1,
  .hero-copy-panel h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .contact-form {
    padding: 15px;
  }

  .process-list li {
    grid-template-columns: 28px 42px minmax(0, 1fr);
    column-gap: 10px;
  }

  .process-icon {
    width: 40px;
    height: 40px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-brand-lockup {
    opacity: 1 !important;
    transform: none !important;
  }

  .work-card img {
    transform: none !important;
    scale: 1 !important;
  }

  .process-list li {
    background: transparent !important;
  }

  .process-list li::after {
    display: none;
  }

}
