:root {
  --petrol: #062a31;
  --petrol-deep: #031f24;
  --petrol-soft: #123b42;
  --paper: #ffffff;
  --bone: #f5f1e8;
  --bone-deep: #e9e3d8;
  --ink: #092a30;
  --text: #31494e;
  --muted: #5a6c70;
  --oxide: #b52f27;
  --oxide-dark: #94251f;
  --signal: #ff5a49;
  --aqua: #65d8cd;
  --line: #cfd8d6;
  --line-dark: rgba(255, 255, 255, .2);
  --focus: #4de1d1;
  --shadow: 0 18px 48px rgba(3, 31, 36, .12);
  --content: 1160px;
  --display: "Arial Black", "Helvetica Neue", Arial, system-ui, sans-serif;
  --body: "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--petrol-deep);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 280px;
  margin: 0;
  background: var(--paper);
}

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

a {
  color: inherit;
  text-decoration-thickness: .1em;
  text-underline-offset: .2em;
}

a:hover {
  text-decoration-thickness: .16em;
}

a:focus,
button:focus,
summary:focus {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-weight: 900;
  line-height: .99;
  letter-spacing: -.055em;
}

h1 {
  font-size: 52px;
  font-size: clamp(3.25rem, 7vw, 6.45rem);
  text-wrap: balance;
}

h2 {
  font-size: 40px;
  font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  text-wrap: balance;
}

h3 {
  font-size: 25px;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}

p {
  margin-bottom: 18px;
}

.wrap {
  width: calc(100% - 48px);
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--petrol-deep);
  background: var(--focus);
  border-radius: 4px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--oxide);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow-on-dark {
  color: var(--signal);
}

.site-header {
  position: relative;
  z-index: 20;
  color: #fff;
  background: var(--petrol-deep);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  margin-right: 12px;
}

.brand-words {
  display: grid;
  line-height: 1;
}

.brand-words strong {
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.brand-words small {
  margin-top: 4px;
  color: var(--signal);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin: -3px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 3px;
  padding: 9px 10px;
  color: #e7eeec;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}

.primary-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 2px;
  background: var(--signal);
  content: "";
  opacity: 0;
  transform: scaleX(.25);
  transform-origin: left;
}

.primary-nav a.is-active::after,
.primary-nav a:not(.nav-contact):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.primary-nav .nav-contact {
  margin-left: 12px;
  padding-right: 17px;
  padding-left: 17px;
  color: #fff;
  background: var(--oxide);
  border-radius: 4px;
}

.primary-nav .nav-contact:hover {
  background: var(--oxide-dark);
  transform: translateY(-1px);
}

.hero {
  overflow: hidden;
  padding: 0 0 60px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 80px 100%,
    var(--petrol);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  padding-bottom: 17px;
  color: #aebfc0;
  border-bottom: 1px solid var(--line-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, .95fr);
  gap: 58px;
  align-items: center;
  min-height: 610px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 26px;
  color: #fff;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--signal);
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d7e2e1;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 6px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button-signal {
  color: #fff;
  background: var(--oxide);
  box-shadow: 0 10px 24px rgba(3, 31, 36, .18);
}

.button-signal:hover {
  background: var(--oxide-dark);
  transform: translateY(-1px);
}

.button-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
}

.button-outline:hover {
  color: var(--petrol-deep);
  background: #fff;
  border-color: #fff;
}

.quiet-note {
  margin: 18px 0 0;
  color: #aebfc0;
  font-size: .88rem;
}

.hero-visual {
  --grain-rotate-x: 0deg;
  --grain-rotate-y: 0deg;
  --grain-scale: 1;
  --grain-brightness: 1;
  position: relative;
  min-width: 0;
  perspective: 900px;
  touch-action: pan-y;
}

.grain-frame {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--petrol-deep);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 14px 14px 0 var(--oxide);
}

.grain-frame::before,
.grain-frame::after {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  content: "";
  pointer-events: none;
}

.grain-frame::before {
  top: 18px;
  left: 18px;
  border-top: 2px solid var(--signal);
  border-left: 2px solid var(--signal);
}

.grain-frame::after {
  right: 18px;
  bottom: 18px;
  border-right: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal);
}

.hero-grain {
  position: absolute;
  top: 3%;
  left: -6%;
  width: 112%;
  height: 90%;
  filter: brightness(var(--grain-brightness));
  opacity: .96;
  transform:
    perspective(900px)
    translate3d(var(--ring-x, 0), var(--ring-y, 0), 0)
    rotateX(var(--grain-rotate-x))
    rotateY(var(--grain-rotate-y))
    scale(var(--grain-scale));
  transform-origin: center;
  transform-style: preserve-3d;
  transition: filter 160ms ease;
  will-change: transform;
}

.hero-grain .depth-layer {
  transform: translate(var(--depth-x, 0), var(--depth-y, 0));
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}

.hero-visual.is-pressed {
  --grain-scale: .975;
  --grain-brightness: 1.14;
}

.hero-grain .route {
  transform-box: fill-box;
  transform-origin: center;
  animation: grain-wave 7s cubic-bezier(.45, 0, .25, 1) infinite;
  will-change: transform;
}

.hero-grain .route-1 { --shift-x: -2px; --shift-y: 4px; animation-delay: -1.4s; }
.hero-grain .route-2 { --shift-x: 2px; --shift-y: -5px; animation-delay: -2.2s; }
.hero-grain .route-3 { --shift-x: -3px; --shift-y: 5px; animation-delay: -3s; }
.hero-grain .route-4 { --shift-x: 3px; --shift-y: -4px; animation-delay: -3.8s; }
.hero-grain .route-5 { --shift-x: -2px; --shift-y: 4px; animation-delay: -4.6s; }
.hero-grain .route-6 { --shift-x: 2px; --shift-y: -3px; animation-delay: -5.4s; }
.hero-grain .route-7 { --shift-x: -2px; --shift-y: 3px; animation-delay: -6.2s; }

.hero-grain .signal {
  fill: none;
  stroke: var(--signal);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 3 97;
  animation: signal-run 5.5s linear infinite;
}

.hero-grain .signal-two {
  animation-delay: -2.75s;
}

.hero-grain .node {
  transform-box: fill-box;
  transform-origin: center;
  animation: node-pulse 2.8s ease-in-out infinite;
}

.hero-grain .node-two { animation-delay: -.9s; }
.hero-grain .node-three { animation-delay: -1.8s; }

.grain-index,
.grain-caption {
  position: absolute;
  z-index: 3;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.grain-index {
  top: 24px;
  right: 26px;
  color: var(--signal);
}

.grain-caption {
  right: 26px;
  bottom: 24px;
  color: #fff;
  line-height: 1.5;
  text-align: right;
}

.tilt-control {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  left: 22px;
  min-height: 40px;
  padding: 8px 12px;
  color: #fff;
  font: inherit;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  background: rgba(3, 31, 36, .88);
  border: 1px solid rgba(255, 255, 255, .58);
}

.tilt-control:hover,
.tilt-control:focus-visible {
  color: var(--petrol-deep);
  background: #fff;
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--petrol-deep);
  background: var(--bone);
  border-top: 6px solid var(--signal);
  box-shadow: var(--shadow);
}

.trust-grid div {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 20px 24px;
}

.trust-grid div + div {
  border-left: 1px solid var(--line);
}

.trust-grid span {
  margin-right: 13px;
  color: var(--oxide);
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 900;
}

.trust-grid strong {
  color: var(--ink);
  font-size: .92rem;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(270px, 390px);
  gap: 30px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.section-number {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 54px;
  padding-top: 8px;
  color: var(--oxide);
  border-top: 4px solid currentColor;
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 900;
}

.work-section {
  background: var(--paper);
}

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

.project-card {
  overflow: hidden;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(3, 31, 36, .07);
}

.project-preview {
  min-height: 300px;
  padding: 24px;
  background: #b6c9c5;
}

.project-preview-mot {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .12), transparent 50%),
    #7e251f;
}

.project-preview-resin {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .13), transparent 50%),
    #087d91;
}

.browser-bar {
  display: flex;
  gap: 7px;
  height: 34px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 4px 4px 0 0;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  background: var(--bone-deep);
  border-radius: 50%;
}

.project-screen {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 218px;
  padding: 30px;
  color: #fff;
  background: var(--petrol-deep);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.project-screen small {
  margin-bottom: auto;
  color: var(--signal);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-screen strong {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.project-screen span {
  margin-top: 9px;
  color: #c6d5d4;
  font-size: .8rem;
}

.project-copy {
  padding: 32px;
}

.project-type {
  margin-bottom: 10px;
  color: var(--oxide);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin-bottom: 13px;
}

.project-copy > p:not(.project-type) {
  color: var(--text);
  line-height: 1.65;
}

.text-link {
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.services-section {
  background: var(--bone);
  border-top: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.service-card {
  min-height: 260px;
  padding: 34px;
  background: var(--paper);
}

.service-card-accent {
  color: #fff;
  background: var(--oxide);
}

.service-mark {
  display: block;
  margin-bottom: 55px;
  color: var(--oxide);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 900;
}

.service-card-accent .service-mark {
  color: #fff;
}

.service-card p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-card-accent p {
  color: #fff;
}

.process-card {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 52px;
  align-items: center;
  margin-top: 48px;
  padding: 42px;
  color: #fff;
  background: var(--petrol);
  border-left: 8px solid var(--signal);
}

.process-card h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2rem, 3.7vw, 3.3rem);
  text-transform: uppercase;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 11px;
  padding: 8px 17px;
}

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

.process-list li > span {
  color: var(--signal);
  font-family: var(--display);
  font-size: .76rem;
}

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

.process-list small {
  margin-top: 5px;
  color: #b9c9c9;
  line-height: 1.45;
}

.pricing-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 80px 100%,
    var(--petrol-deep);
}

.section-heading-on-dark h2 {
  color: #fff;
}

.section-heading-on-dark > p {
  color: #b9c9c9;
}

.section-heading-on-dark .section-number {
  color: var(--signal);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, .95fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  padding: 44px;
  color: var(--ink);
  background: var(--bone);
  border-top: 7px solid var(--signal);
  border-radius: 5px;
}

.price-label {
  margin-bottom: 28px;
  color: var(--oxide);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.price-block {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.price-block p {
  margin-bottom: 0;
  color: var(--muted);
}

.price {
  margin-bottom: 8px !important;
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .96;
}

.price small {
  margin-right: 7px;
  color: var(--oxide);
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.price em {
  font-family: var(--body);
  font-size: .9rem;
  font-style: normal;
  letter-spacing: 0;
}

.tick-list {
  padding: 0;
  margin: 22px 0 26px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.tick-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.tick-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--oxide);
  content: "↘";
  font-weight: 900;
}

.price-card .button {
  margin-left: 0;
}

.pricing-notes {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 5px;
}

.pricing-notes > div {
  position: relative;
  padding: 29px 32px 26px 66px;
  background: var(--petrol);
}

.pricing-notes span {
  position: absolute;
  top: 29px;
  left: 28px;
  color: var(--signal);
  font-family: var(--display);
  font-size: .72rem;
}

.pricing-notes h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.18rem;
  letter-spacing: -.03em;
}

.pricing-notes p {
  margin-bottom: 0;
  color: #b9c9c9;
  line-height: 1.6;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, .75fr) minmax(0, 1.25fr);
  gap: 70px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 28px;
}

.faq-intro .section-number {
  width: 54px;
  margin-bottom: 28px;
}

.faq-intro p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.faq-list details[open] {
  border-left: 5px solid var(--oxide);
  box-shadow: 0 10px 24px rgba(3, 31, 36, .07);
}

.faq-list summary {
  position: relative;
  padding: 22px 60px 22px 24px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--oxide);
  border-radius: 3px;
  content: "+";
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 24px 24px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.support-section {
  padding: 0 0 110px;
  background: var(--paper);
}

.support-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
  padding: 42px 48px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-left: 8px solid var(--oxide);
}

.support-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.support-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.about-section {
  color: #fff;
  background: var(--oxide);
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
}

.about-heading .section-number {
  width: 54px;
  margin-bottom: 28px;
  color: #fff;
}

.about-heading .eyebrow {
  color: #fff;
}

.about-heading h2 {
  margin-bottom: 0;
  color: #fff;
}

.about-copy {
  font-size: 1.16rem;
  line-height: 1.7;
}

.about-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.about-detail span {
  padding: 8px 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 3px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-section {
  padding: 0 0 110px;
  color: #fff;
  background: var(--oxide);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  padding: 54px;
  background: var(--petrol-deep);
  border-top: 7px solid var(--signal);
}

.contact-card h2 {
  margin-bottom: 0;
  color: #fff;
}

.contact-copy p {
  color: #cad8d7;
  font-size: 1.04rem;
  line-height: 1.65;
}

.contact-copy .button {
  margin-left: 0;
}

.contact-email {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 13px;
  color: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 52px 0;
  color: #fff;
  background: var(--petrol-deep);
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: end;
}

.footer-brand img {
  width: 44px;
  height: 44px;
}

.footer-grid p {
  margin: 13px 0 0;
  color: #aebfc0;
  font-size: .84rem;
}

.footer-details {
  text-align: right;
}

.footer-details p {
  margin-top: 5px;
}

.footer-details a {
  color: #fff;
}

.legal-main {
  padding: 76px 0 96px;
  background: var(--bone);
}

.legal-article {
  max-width: 820px;
  padding: 54px;
  background: var(--paper);
  border-top: 7px solid var(--oxide);
  box-shadow: var(--shadow);
}

.legal-article h1 {
  margin-bottom: 12px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.legal-updated {
  margin-bottom: 38px;
  color: var(--muted);
}

.legal-article h2 {
  margin-top: 38px;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.legal-article p {
  color: var(--text);
  line-height: 1.72;
}

.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 30px 20px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0 / 80px 100%,
    var(--petrol);
}

.not-found-card {
  width: 100%;
  max-width: 680px;
  padding: 50px;
  color: var(--ink);
  background: var(--bone);
  border-top: 7px solid var(--signal);
  box-shadow: var(--shadow);
}

.not-found-card .brand {
  margin-bottom: 66px;
  color: var(--ink);
}

.not-found-card h1 {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
}

.not-found-card p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.has-js [data-reveal].reveal-ready {
  opacity: 0;
  transform: translateY(14px);
}

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

.service-card,
.project-card,
.project-screen {
  transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease, border-color 260ms ease, opacity 420ms ease;
}

.button:active,
.nav-contact:active {
  transform: translateY(1px);
}

@keyframes grain-wave {
  0%,
  100% { transform: translate(0, 0); }
  50% { transform: translate(var(--shift-x), var(--shift-y)); }
}

@keyframes signal-run {
  to { stroke-dashoffset: -100; }
}

@keyframes node-pulse {
  0%,
  100% { opacity: .72; transform: scale(.8) rotate(0); }
  50% { opacity: 1; transform: scale(1.12) rotate(45deg); }
}

@media (hover: hover) and (pointer: fine) {
  .service-card:not(.service-card-accent):hover {
    background: #faf8f3;
  }

  .project-card:hover {
    box-shadow: 0 20px 46px rgba(3, 31, 36, .14);
    transform: translateY(-3px);
  }

  .project-card:hover .project-screen {
    transform: translateY(-3px);
  }
}

@media (max-width: 940px) {
  .hero-grid,
  .pricing-grid,
  .faq-layout,
  .support-card,
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 610px);
  }

  .grain-frame {
    min-height: 430px;
  }

  .section-heading {
    grid-template-columns: 48px 1fr;
  }

  .section-heading > p {
    grid-column: 2;
  }

  .process-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-intro {
    position: static;
  }

  .support-card,
  .contact-card {
    gap: 30px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 32px);
  }

  .header-inner {
    display: block;
  }

  .primary-nav {
    justify-content: flex-start;
    margin-top: 7px;
  }

  .primary-nav a {
    padding-right: 8px;
    padding-left: 8px;
  }

  .primary-nav a:not(.nav-contact)::after {
    right: 8px;
    left: 8px;
  }

  .primary-nav .nav-contact {
    margin-left: 4px;
  }

  .hero-meta {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 48px;
  }

  .hero-visual {
    width: 100%;
  }

  .grain-frame {
    min-height: 340px;
    box-shadow: 9px 9px 0 var(--oxide);
  }

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

  .trust-grid div {
    min-height: 72px;
  }

  .trust-grid div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-heading {
    grid-template-columns: 42px 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }

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

  .project-preview {
    min-height: 270px;
  }

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

  .service-mark {
    margin-bottom: 42px;
  }

  .process-card,
  .price-card,
  .support-card,
  .contact-card {
    padding: 34px 28px;
  }

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

  .process-list li {
    padding: 14px 0;
  }

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

  .support-section,
  .contact-section {
    padding-bottom: 82px;
  }

  .about-grid {
    gap: 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-details {
    text-align: left;
  }

  .legal-main {
    padding: 52px 0 70px;
  }

  .legal-article,
  .not-found-card {
    padding: 34px 26px;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-words strong {
    font-size: .96rem;
  }

  .primary-nav a:not(.nav-contact) {
    font-size: .82rem;
  }

  .primary-nav .nav-contact {
    width: 100%;
    margin-top: 7px;
    margin-right: 4px;
    margin-left: 4px;
    justify-content: center;
  }

  .hero-meta {
    font-size: .61rem;
    letter-spacing: .11em;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .button-row .button {
    width: calc(100% - 12px);
  }

  .grain-frame {
    min-height: 275px;
  }

  .grain-caption {
    max-width: 170px;
    font-size: .59rem;
  }

  .section-heading {
    display: block;
  }

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

  .section-heading > p {
    margin-top: 22px;
  }

  .project-preview {
    min-height: 240px;
    padding: 16px;
  }

  .project-screen {
    min-height: 192px;
    padding: 22px;
  }

  .project-copy {
    padding: 28px 24px;
  }

  .pricing-notes > div {
    padding-right: 24px;
    padding-left: 56px;
  }

  .pricing-notes span {
    left: 22px;
  }

  .faq-list summary {
    padding-left: 20px;
  }

  .faq-list details p {
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-copy .button {
    width: calc(100% - 12px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .button,
  .nav-contact,
  .primary-nav a::after {
    transition: transform 120ms ease, background-color 120ms ease, color 120ms ease, opacity 120ms ease;
  }

  .has-js [data-reveal].reveal-ready {
    transition: opacity 520ms ease, transform 520ms ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grain,
  .hero-grain .depth-layer,
  .hero-grain .route,
  .hero-grain .signal,
  .hero-grain .node,
  .service-card,
  .project-card,
  .project-screen,
  [data-reveal] {
    transition: none !important;
    transform: none !important;
  }

  .hero-grain .route,
  .hero-grain .signal,
  .hero-grain .node {
    animation: none !important;
  }
}

@media print {
  .site-header,
  .button-row,
  .support-section,
  .contact-section,
  .site-footer,
  .hero-visual {
    display: none;
  }

  body,
  .hero,
  .section,
  .legal-main,
  .pricing-section,
  .about-section {
    color: #000;
    background: #fff;
  }
}
