@font-face {
  font-family: Bank Gothic;
  src: url("../fonts/bank-gothic-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #07090b;
  --black-soft: #0d1013;
  --graphite: #1a1e22;
  --graphite-light: #252b30;
  --chrome: #c7ced3;
  --chrome-dark: #7d878e;
  --signal-white: #f4f7f8;
  --muted: #aab2b8;
  --steel-blue: #4d6d80;
  --cyan: #18d8ff;
  --cyan-deep: #057ca4;
  --font-display: "Bank Gothic", "Arial Narrow", "Roboto Condensed", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: 1240px;
  --section-space: clamp(3.75rem, 5vw, 5rem);
  --divider-space: clamp(2.75rem, 4vw, 4rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  background: var(--black);
  color: var(--signal-white);
  font-family: var(--font-body);
  text-rendering: optimizelegibility;
  margin: 0;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--chrome);
  outline-offset: 5px;
}

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

::selection {
  color: var(--black);
  background: #c7ced3eb;
}

.hytola-site,
.timber-site {
  min-height: 100vh;
  overflow: clip;
}

.hytola-site {
  background: radial-gradient(circle at 80% 8%, #6b7a8414, transparent 30rem), var(--black);
}

.eyebrow,
.timber-eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
}

.eyebrow {
  color: var(--chrome);
}

.chrome-wordmark,
.timber-wordmark {
  font-family: var(--font-display);
  flex-direction: column;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
}

.chrome-wordmark {
  letter-spacing: 0;
  width: 10.6rem;
}

.timber-wordmark {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  width: max-content;
}

.chrome-wordmark-line {
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  display: flex;
  white-space: nowrap;
}

.chrome-wordmark-line > span {
  color: #0000;
  background: linear-gradient(#fff 0%, #858e94 42%, #f0f3f4 61%, #778188 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.chrome-wordmark > .chrome-wordmark-line {
  font-size: 1.65rem;
}

.chrome-wordmark > small {
  margin-top: 0.32rem;
  font-size: 0.76rem;
}

.hero-copy > .eyebrow,
.page-hero .eyebrow,
.contact-intro > .eyebrow,
.privacy-header > .eyebrow,
.section-heading > .eyebrow,
.manifesto-section .eyebrow,
.timber-hero-copy > .timber-eyebrow,
.timber-section-heading > .timber-eyebrow {
  font-size: 0.92rem;
}

.solution-card-copy > .eyebrow,
.feature-card > .eyebrow {
  font-size: 0.82rem;
}

.site-header {
  z-index: 50;
  backdrop-filter: blur(18px) saturate(130%);
  background: #06080ae6;
  border-bottom: 1px solid #c7ced32e;
  position: sticky;
  top: 0;
}

.header-inner,
.timber-header-inner {
  width: min(calc(100% - 3rem), var(--content));
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  min-height: 76px;
  margin: 0 auto;
  display: flex;
}

.brand-link {
  align-items: center;
  min-width: 245px;
  display: inline-flex;
}

.desktop-nav,
.timber-desktop-nav {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1rem, 1.6vw, 1.65rem);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
}

.desktop-nav > a,
.nav-dropdown-label,
.timber-desktop-nav > a {
  color: #d3d8db;
  cursor: pointer;
  transition: color 0.16s;
}

.desktop-nav > a:hover,
.nav-dropdown-label:hover {
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-label:after {
  content: "+";
  color: var(--chrome-dark);
  margin-left: 0.5rem;
}

.nav-dropdown-panel {
  opacity: 0;
  pointer-events: none;
  background: #090c0efa;
  border: 1px solid #c7ced33d;
  border-radius: 4px;
  width: 270px;
  padding: 0.65rem;
  transition:
    opacity 0.16s,
    transform 0.16s;
  position: absolute;
  top: calc(100% + 1.3rem);
  left: 50%;
  transform: translate(-50%, 8px);
  box-shadow: 0 22px 60px #0000008c;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%);
}

.nav-dropdown-panel:before {
  content: "";
  height: 1.35rem;
  position: absolute;
  top: -1.35rem;
  left: 0;
  right: 0;
}

.nav-dropdown-panel a {
  color: var(--chrome);
  border-bottom: 1px solid #c7ced314;
  padding: 0.9rem 1rem;
  display: block;
}

.nav-dropdown-panel a:hover {
  color: #fff;
  background: #ffffff0b;
}

.nav-dropdown-panel .nav-timber-link,
.mobile-menu .nav-timber-link {
  color: #7deaff;
}

.nav-dropdown-panel .nav-timber-link:hover,
.mobile-menu .nav-timber-link:hover {
  color: #c5f7ff;
}

.language-switch {
  color: #6e777d;
  align-items: center;
  gap: 0.45rem;
  display: inline-flex;
}

.language-switch a {
  color: #6e777d;
}

.language-switch a.active {
  color: #fff;
}

.mobile-menu,
.timber-mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu > summary,
.timber-mobile-menu > summary {
  cursor: pointer;
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.76rem;
  list-style: none;
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.timber-mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.mobile-menu > nav,
.timber-mobile-menu > nav {
  background: #06080afc;
  border: 1px solid #c7ced340;
  width: min(84vw, 330px);
  padding: 0.75rem;
  position: absolute;
  top: calc(100% + 1.55rem);
  right: 0;
  box-shadow: 0 28px 60px #000000ad;
}

.mobile-menu nav > a,
.timber-mobile-menu nav > a {
  font-family: var(--font-display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-bottom: 1px solid #c7ced31a;
  padding: 0.9rem 0.8rem;
  font-size: 0.76rem;
  display: block;
}

.mobile-menu .language-switch,
.timber-mobile-menu .language-switch {
  padding: 1rem 0.8rem 0.5rem;
}

.hytola-hero,
.page-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  width: min(100% - 3rem, 1440px);
  margin: 0 auto;
  display: grid;
  position: relative;
}

.hytola-hero {
  min-height: calc(100vh - 76px);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.hytola-hero:before,
.page-hero:before {
  content: "";
  z-index: -1;
  background: radial-gradient(circle at 75% 45%, #9fadb614, #0000 34rem);
  position: absolute;
  inset: 0;
}

.hero-copy,
.page-hero-copy {
  z-index: 2;
  position: relative;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.manifesto-section h2,
.contact-band h2,
.contact-page h1 {
  max-width: 100%;
  font-family: var(--font-display);
  letter-spacing: 0.045em;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
  text-wrap: balance;
  text-transform: uppercase;
  margin: 1.1rem 0 1.35rem;
  font-weight: 700;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 6.3vw, 6.8rem);
}

.hero-copy > p,
.page-hero-copy > p,
.section-heading > p,
.manifesto-copy > p,
.contact-page p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.hero-copy > p {
  max-width: 660px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.1rem;
  display: flex;
}

.button {
  min-height: 50px;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #c7ced3b3;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  padding: 0.9rem 1.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  transition:
    transform 0.16s,
    border-color 0.16s,
    background 0.16s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

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

.button--chrome {
  color: #07090b;
  background: linear-gradient(#eef1f2 0%, #8c959b 49%, #dfe3e5 52%, #778087 100%);
  border-color: #cbd2d6;
  box-shadow:
    inset 0 1px #fff,
    0 10px 30px #00000057;
}

.button--chrome:after {
  content: "";
  background: #ffffff73;
  width: 25%;
  height: 300%;
  transition: left 0.45s;
  position: absolute;
  top: -100%;
  left: -30%;
  transform: rotate(18deg);
}

.button--chrome:hover:after {
  left: 120%;
}

.button--ghost {
  color: var(--signal-white);
  background: #ffffff06;
}

.button--ghost:hover {
  background: #fff1;
  border-color: #fff;
}

.chrome-machine {
  background:
    linear-gradient(90deg, #ffffff09 1px, #0000 1px) 0 0 / 54px 54px,
    linear-gradient(#ffffff06 1px, #0000 1px) 0 0 / 54px 54px,
    radial-gradient(circle at 58% 35%, #252b30 0%, #101316 26%, #06080a 68%);
  border: 1px solid #c7ced333;
  border-radius: 8px;
  min-height: 610px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 80px #000000c7,
    0 34px 80px #00000075;
}

.chrome-machine:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(125deg, #0000 40%, #ffffff0f 49%, #0000 58%);
  position: absolute;
  inset: 0;
}

.machine-grid {
  transform-origin: bottom;
  background:
    linear-gradient(90deg, #c7ced321 1px, #0000 1px) 0 0 / 42px 42px,
    linear-gradient(#c7ced31a 1px, #0000 1px) 0 0 / 42px 42px;
  border: 1px solid #c7ced333;
  width: 90%;
  height: 70%;
  position: absolute;
  bottom: -25%;
  right: -12%;
  transform: perspective(500px) rotateX(66deg) rotate(-8deg);
}

.machine-rail {
  background: linear-gradient(#737d84 0%, #161a1d 23%, #06080a 64%, #4b5359 100%);
  border: 1px solid #596269;
  height: 36px;
  position: absolute;
  left: 6%;
  right: 5%;
  box-shadow:
    inset 0 1px #fff9,
    0 18px 40px #00000080;
}

.machine-rail--top {
  top: 18%;
}

.machine-rail--bottom {
  bottom: 14%;
}

.machine-column {
  background: linear-gradient(90deg, #111416 0%, #7f898f 14%, #1e2327 31%, #090b0d 69%, #737d83 88%, #161a1d 100%);
  border: 1px solid #606970;
  width: 72px;
  position: absolute;
  top: 8%;
  bottom: 9%;
  left: 58%;
  box-shadow: 18px 20px 50px #000000b3;
}

.camera-carriage {
  background: linear-gradient(145deg, #2d3338, #07090b 65%);
  border: 1px solid #545e64;
  width: 260px;
  height: 210px;
  position: absolute;
  top: 25%;
  left: 38%;
  box-shadow:
    inset 0 1px #8b959b,
    22px 30px 80px #000000c7;
}

.camera-body {
  background: linear-gradient(155deg, #242a2e, #090b0d 64%);
  border: 1px solid #3e474d;
  position: absolute;
  inset: 24px 24px 36px;
}

.camera-detail {
  background: linear-gradient(90deg, #485158, #d6dadd, #333a3f);
  border-radius: 8px;
  width: 60px;
  height: 7px;
  position: absolute;
  top: 20px;
  right: 22px;
}

.camera-lens,
.mini-lens {
  background: radial-gradient(
    circle at 45% 43%,
    #cfe7ef 0 3%,
    #4f6c78 4% 8%,
    #07131b 9% 28%,
    #333b40 29% 35%,
    #050607 36% 54%,
    #8b969d 55% 58%,
    #111417 60% 100%
  );
  border-radius: 50%;
  place-items: center;
  display: grid;
  box-shadow:
    0 0 0 1px #707b81,
    inset 0 0 26px #000,
    0 0 38px #c5dce638;
}

.camera-lens {
  width: 140px;
  height: 140px;
  position: absolute;
  bottom: -44px;
  right: 30px;
}

.camera-lens span,
.mini-lens span {
  background: radial-gradient(circle at 40% 35%, #fff, #7199aa 14%, #0b1e2b 55%, #000);
  border-radius: 50%;
  width: 24%;
  height: 24%;
}

.machine-glint {
  z-index: 4;
  background: linear-gradient(90deg, #0000, #fff, #0000);
  width: 48%;
  height: 1px;
  position: absolute;
  top: 18%;
  left: 11%;
  box-shadow: 0 0 18px #ffffff73;
}

.machine-label {
  backdrop-filter: blur(12px);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
  background: #050708b8;
  border: 1px solid #c7ced34d;
  padding: 0.8rem 1rem;
  font-size: 0.58rem;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

.machine-label span,
.machine-label strong {
  display: block;
}

.machine-label span {
  color: var(--muted);
}

.machine-label strong {
  color: #fff;
  margin-top: 0.35rem;
}

.page-section {
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.page-section--before-contact {
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.page-hero + .page-section {
  padding-top: var(--divider-space);
}

.solutions-section {
  border-top: 1px solid #c7ced324;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2,
.manifesto-section h2,
.contact-band h2 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.section-heading > p {
  max-width: 680px;
}

.solution-grid {
  gap: 1.15rem;
  display: grid;
}

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

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

.solution-card {
  background: linear-gradient(145deg, #1c2125f5, #080a0cfa);
  border: 1px solid #c7ced333;
  border-radius: 7px;
  min-width: 0;
  transition:
    transform 0.22s,
    border-color 0.22s,
    box-shadow 0.22s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px #00000040;
}

.solution-card:hover {
  border-color: #e8edef85;
  transform: translateY(-6px);
  box-shadow: 0 30px 70px #00000073;
}

.solution-card--timber:hover {
  border-color: #18d8ffc2;
  box-shadow: 0 30px 70px #00638233;
}

.solution-card-visual {
  background-position: 50%;
  background-size: cover;
  border-bottom: 1px solid #c7ced326;
  place-items: center;
  height: 260px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.solution-card-visual:after {
  content: "";
  background: linear-gradient(#00000008, #04060773);
  position: absolute;
  inset: 0;
}

.solution-card--timber .solution-card-visual {
  background-position: 82%;
}

.solution-card--timber .solution-card-visual:after {
  background: linear-gradient(#040c111a, #0010199e);
  box-shadow: inset 0 -1px #18d8ff73;
}

.solution-card-copy {
  z-index: 2;
  flex-direction: column;
  min-height: 285px;
  padding: 1.65rem;
  display: flex;
  position: relative;
}

.solution-card h2 {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.75rem 0 0.8rem;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.solution-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.text-link {
  font-family: var(--font-display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.67rem;
  font-weight: 700;
  display: inline-flex;
}

.arrow-icon {
  font-family: var(--font-body);
  font-size: 1.1rem;
  transition: transform 0.16s;
}

a:hover .arrow-icon {
  transform: translate(5px);
}

.mini-lens {
  z-index: 1;
  width: 150px;
  height: 150px;
  position: relative;
}

.solution-card--chrome .solution-card-visual {
  background: radial-gradient(circle, #1d2327, #080a0c 66%);
}

.manifesto-section {
  width: min(calc(100% - 3rem), var(--content));
  border-top: 1px solid #c7ced326;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(3rem, 8vw, 8rem);
  margin: 0 auto;
  padding: var(--section-space) 0;
  display: grid;
}

.manifesto-copy {
  align-self: end;
}

.proof-strip {
  width: min(calc(100% - 3rem), var(--content));
  background: linear-gradient(#14181b, #0a0c0e);
  border: 1px solid #c7ced333;
  border-radius: 6px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  display: grid;
}

.proof-strip > div {
  border-right: 1px solid #c7ced329;
  padding: 2rem;
}

.proof-strip > div:last-child {
  border: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.proof-strip span {
  color: var(--muted);
  margin-top: 0.55rem;
  font-size: 0.83rem;
}

.contact-band {
  width: min(calc(100% - 3rem), var(--content));
  text-align: center;
  background: linear-gradient(112deg, #ffffff0a, #0000 44%), linear-gradient(145deg, #1b2024, #080a0c 72%);
  border: 1px solid #c7ced342;
  border-radius: 8px;
  margin: clamp(5rem, 10vw, 10rem) auto;
  padding: clamp(3rem, 7vw, 6rem);
  box-shadow: 0 30px 80px #00000059;
}

.contact-band--after-features {
  margin-top: 0;
}

.contact-band h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: #050607;
  border-top: 1px solid #c7ced32b;
}

.footer-grid {
  width: min(calc(100% - 3rem), var(--content));
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 4rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 5vw, 4.5rem) 0 3.5rem;
  display: grid;
}

.footer-grid h2 {
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
  font-size: 0.72rem;
}

.footer-grid a,
.footer-grid p {
  color: var(--muted);
  margin: 0.65rem 0;
  font-size: 0.88rem;
  line-height: 1.7;
  display: block;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand p {
  max-width: 430px;
  margin-top: 1.5rem;
}

.footer-base {
  width: min(calc(100% - 3rem), var(--content));
  color: #727b81;
  border-top: 1px solid #c7ced31c;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  font-size: 0.72rem;
  display: flex;
}

.footer-base a:hover {
  color: var(--signal-white);
}

.site-credit a {
  color: #b5bec3;
}

.page-hero {
  border-bottom: 1px solid #c7ced324;
  min-height: 560px;
  padding: var(--divider-space) 0;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.page-hero .chrome-machine {
  min-height: 500px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.feature-card {
  background: linear-gradient(145deg, #171b1e, #090b0d 76%);
  border: 1px solid #c7ced32e;
  border-radius: 6px;
  min-height: 230px;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.7rem;
  display: flex;
}

.feature-card h3 {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  line-height: 1.2;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.image-hero {
  background-position: 50%;
  background-size: cover;
  border: 1px solid #c7ced333;
  border-radius: 8px;
  min-height: 500px;
  box-shadow:
    inset 0 0 70px #0000009e,
    0 28px 70px #00000061;
}

.image-hero--uav {
  background-image: linear-gradient(115deg, #040608bf, #04060814), url("../images/mission-plan.webp");
}

.technical-hero-art {
  justify-self: center;
  width: 100%;
  max-width: 620px;
  display: block;
}

.technical-hero-art img {
  width: 100%;
  height: auto;
  display: block;
}

.technical-hero-art--uav {
  justify-self: end;
  width: min(51vw, 700px);
  max-width: none;
}

.machine-vision-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  min-height: 680px;
}

.machine-vision-hero .page-hero-copy {
  max-width: 660px;
}

.machine-vision-hero h1 {
  margin-bottom: 1.8rem;
  font-size: clamp(2.3rem, 3.7vw, 4rem);
  line-height: 1.04;
}

.machine-vision-examples-title {
  color: var(--signal-white) !important;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  font-size: 0.86rem !important;
  font-weight: 700;
  line-height: 1.45 !important;
}

.machine-vision-examples {
  list-style: none;
  max-width: 660px;
  margin: 0;
  padding: 0;
}

.machine-vision-examples li {
  border-top: 1px solid #c7ced329;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 0.72rem 0;
  display: grid;
}

.machine-vision-examples li:last-child {
  border-bottom: 1px solid #c7ced329;
}

.machine-vision-examples strong {
  color: var(--signal-white);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  line-height: 1.35;
}

.machine-vision-examples span {
  color: var(--muted);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.5;
}

.technical-hero-art--machine-vision {
  justify-self: end;
  width: min(54vw, 760px);
  max-width: none;
  margin-left: -4rem;
}

.survey-proof-section {
  width: min(calc(100% - 3rem), var(--content));
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
  margin: 0 auto;
  padding: var(--divider-space) 0;
  display: grid;
}

.survey-proof-copy {
  padding-top: 0.35rem;
}

.survey-map-card {
  width: min(100%, 470px);
  margin: 0;
}

.survey-map-frame {
  background: #080b0d;
  border: 1px solid #c7ced34d;
  border-radius: 7px;
  padding: clamp(0.65rem, 1.4vw, 1rem);
  box-shadow: 0 28px 70px #00000052;
}

.survey-map-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.survey-map-card figcaption {
  color: #8e989e;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  line-height: 1.6;
}

.survey-proof-copy h2 {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 720px;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
  margin: 0 0 clamp(1.75rem, 3vw, 2.75rem);
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.04;
}

.survey-proof-section + .page-section {
  padding-top: var(--divider-space);
}

.survey-example-card {
  background: linear-gradient(145deg, #171b1e, #090b0d 76%);
  border: 1px solid #c7ced33d;
  border-radius: 6px;
  max-width: 680px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.survey-example-card h3 {
  font-family: var(--font-display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.survey-example-card p {
  color: var(--muted);
  max-width: 580px;
  margin: 0 0 1.5rem;
  line-height: 1.7;
}

.contact-page {
  width: min(calc(100% - 3rem), var(--content));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.contact-intro h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.contact-intro {
  max-width: 920px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.contact-intro p {
  max-width: 720px;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
}

.contact-form {
  background: linear-gradient(135deg, #ffffff09, #0000 42%), linear-gradient(145deg, #171b1e, #080a0c 76%);
  border: 1px solid #c7ced347;
  border-radius: 7px;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  position: relative;
  overflow: hidden;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  display: grid;
}

.form-field {
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
  display: flex;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field > span {
  color: var(--chrome);
  font-family: var(--font-display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--signal-white);
  background: #030507b8;
  border: 1px solid #c7ced357;
  border-radius: 3px;
  font-size: 1rem;
  line-height: 1.5;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 0.75rem 0.9rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 190px;
  padding: 0.9rem;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #f4f7f8d9;
}

.form-required,
.form-privacy {
  max-width: 700px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.form-required {
  margin: 1rem 0 0;
}

.form-privacy {
  margin: 0.45rem 0 1.6rem;
}

.form-privacy a {
  color: var(--signal-white);
  text-underline-offset: 0.2em;
  text-decoration: underline #c7ced399;
}

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

.contact-details {
  background: linear-gradient(145deg, #171b1e, #080a0c);
  border: 1px solid #c7ced333;
  border-radius: 7px;
}

.contact-details article {
  border-bottom: 1px solid #c7ced324;
  padding: 1.7rem;
}

.contact-details article:last-child {
  border: 0;
}

.contact-details span {
  color: #7d878e;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  margin-bottom: 0.7rem;
  font-size: 0.67rem;
  display: block;
}

.contact-details a,
.contact-details p {
  color: var(--signal-white);
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-result {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(100% - 3rem, 900px);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(6rem, 12vw, 11rem) 0;
  display: flex;
}

.contact-result h1 {
  font-family: var(--font-display);
  letter-spacing: 0.045em;
  text-transform: uppercase;
  margin: 1rem 0 1.4rem;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1;
}

.contact-result p {
  max-width: 680px;
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.privacy-page {
  width: min(100% - 3rem, 980px);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.privacy-header {
  border-bottom: 1px solid #c7ced32e;
  padding-bottom: clamp(2rem, 3.5vw, 3.25rem);
}

.privacy-header h1 {
  font-family: var(--font-display);
  letter-spacing: 0.045em;
  text-transform: uppercase;
  margin: 1rem 0 1.25rem;
  font-size: clamp(2.7rem, 6.5vw, 6rem);
  line-height: 1;
}

.privacy-header p {
  color: var(--muted);
  margin: 0;
}

.privacy-content {
  padding-top: clamp(2rem, 3.5vw, 3.25rem);
}

.privacy-content section + section {
  margin-top: 3.2rem;
}

.privacy-content h2 {
  color: var(--signal-white);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  line-height: 1.3;
}

.privacy-content p,
.privacy-content li,
.privacy-content address {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-content p {
  margin: 0.8rem 0;
}

.privacy-content ul {
  margin: 0.8rem 0;
  padding-left: 1.35rem;
}

.privacy-content li + li {
  margin-top: 0.4rem;
}

.privacy-content address {
  font-style: normal;
}

.privacy-content a {
  color: var(--signal-white);
  text-underline-offset: 0.2em;
  text-decoration: underline #c7ced399;
}

.timber-site {
  --timber-panel: #0d1821;
  --timber-line: #18d8ff66;
  color: #effbff;
  background: radial-gradient(circle at 74% 7%, #009acd30, #0000 32rem), #04080b;
}

.timber-site ::selection {
  background: var(--cyan);
  color: #031016;
}

.timber-site a:focus-visible,
.timber-site summary:focus-visible {
  outline-color: var(--cyan);
}

.timber-header {
  z-index: 60;
  border-bottom: 1px solid var(--timber-line);
  backdrop-filter: blur(18px) saturate(140%);
  background: #03080ce6;
  position: sticky;
  top: 0;
  box-shadow: 0 0 34px #00abe01a;
}

.timber-wordmark strong {
  color: #f4fbff;
  text-shadow: 0 0 12px #18d8ff57;
  font-size: 1.65rem;
}

.timber-wordmark small {
  color: #9bb9c4;
  letter-spacing: 0.44em;
  margin-top: 0.45rem;
  font-size: 0.74rem;
}

.timber-wordmark sup {
  color: #9eefff;
  vertical-align: super;
  font-size: 0.55em;
}

.timber-wordmark--compact strong {
  font-size: 1.23rem;
}

.timber-wordmark--compact small {
  letter-spacing: 0.44em;
  font-size: 0.54rem;
}

.timber-desktop-nav > a {
  color: #b8cbd2;
}

.timber-desktop-nav > a:hover,
.timber-site .language-switch a.active {
  color: var(--cyan);
}

.timber-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  width: min(100% - 3rem, 1440px);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 0;
  display: grid;
  position: relative;
}

.timber-hero:before {
  content: "";
  background: linear-gradient(#0000, #18d8ff6b, #0000);
  width: 1px;
  position: absolute;
  top: 12%;
  bottom: 10%;
  left: 43%;
}

.timber-hero-copy {
  z-index: 3;
  position: relative;
}

.timber-eyebrow {
  color: var(--cyan);
}

.timber-hero h1,
.timber-section-heading h2,
.timber-contact h2 {
  max-width: 100%;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
  text-wrap: balance;
  text-transform: uppercase;
  margin: 1rem 0 1.3rem;
  font-weight: 700;
  line-height: 0.98;
}

.timber-hero h1 {
  font-size: clamp(3.25rem, 6.4vw, 7rem);
}

.timber-hero h1 em {
  color: var(--cyan);
  text-shadow: 0 0 22px #18d8ff52;
  font-style: normal;
}

.timber-hero-copy > p {
  color: #b2c7ce;
  max-width: 650px;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.75;
}

.button--cyan {
  color: #031016;
  background: linear-gradient(#59eaff 0%, #18d8ff 48%, #08a7d0 100%);
  border-color: #74eaff;
  box-shadow:
    inset 0 1px #fff,
    0 0 30px #18d8ff38;
}

.button--cyan-ghost {
  color: #d8f8ff;
  background: #051c2675;
  border-color: #18d8ff8c;
}

.button--cyan-ghost:hover {
  border-color: var(--cyan);
  background: #05314194;
}

.button--video {
  color: #a8cbd4;
  background: #02090d99;
  border-color: #5a778080;
}

.button--video:hover {
  color: #e1faff;
  background: #07161d;
  border-color: #8ab5c2;
}

.timber-scan {
  background-image: linear-gradient(115deg, #04090c2e, #030f167a), url("../images/timber-hero.webp");
  background-position: 100%;
  background-size: cover;
  border: 1px solid #18d8ff61;
  border-radius: 8px;
  min-height: 630px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 100px #00080da3,
    0 0 70px #0079a021;
}

.timber-scan:before,
.timber-scan:after {
  content: "";
  z-index: 4;
  border-color: var(--cyan);
  opacity: 0.65;
  width: 70px;
  height: 70px;
  position: absolute;
}

.timber-scan:before {
  border-top: 2px solid;
  border-left: 2px solid;
  top: 14px;
  left: 14px;
}

.timber-scan:after {
  border-bottom: 2px solid;
  border-right: 2px solid;
  bottom: 14px;
  right: 14px;
}

.scan-grid {
  transform-origin: bottom;
  filter: drop-shadow(0 0 6px #18d8ff61);
  background:
    linear-gradient(90deg, #18d8ff5c 1px, #0000 1px) 0 0 / 44px 44px,
    linear-gradient(#18d8ff4d 1px, #0000 1px) 0 0 / 44px 44px;
  width: 100%;
  height: 74%;
  position: absolute;
  bottom: -16%;
  right: -7%;
  transform: perspective(580px) rotateX(62deg) rotate(-4deg);
}

.scan-beam {
  z-index: 3;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  width: 92%;
  height: 2px;
  animation: 5.6s ease-in-out infinite scan;
  position: absolute;
  top: 8%;
  left: 4%;
  box-shadow: 0 0 22px 4px #18d8ff7a;
}

.scan-panel {
  z-index: 6;
  backdrop-filter: blur(8px);
  background: #020f16c7;
  border: 1px solid #18d8ff9e;
  border-radius: 4px;
  width: 185px;
  padding: 0.9rem 1rem;
  position: absolute;
  right: 1.4rem;
  box-shadow:
    inset 0 0 22px #00779f29,
    0 0 26px #005e802e;
}

.scan-panel--one {
  top: 18%;
}

.scan-panel--two {
  top: 36%;
}

.scan-panel span,
.scan-panel strong {
  display: block;
}

.scan-panel span {
  color: var(--cyan);
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  font-size: 0.55rem;
}

.scan-panel strong {
  font-family: var(--font-display);
  letter-spacing: 0.07em;
  margin-top: 0.45rem;
  font-size: 1rem;
}

.scan-reticle {
  z-index: 6;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  width: 84px;
  height: 84px;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px #18d8ff59;
}

.scan-reticle:before,
.scan-reticle:after {
  content: "";
  background: var(--cyan);
  position: absolute;
}

.scan-reticle:before {
  height: 1px;
  top: 50%;
  left: -22px;
  right: -22px;
}

.scan-reticle:after {
  width: 1px;
  top: -22px;
  bottom: -22px;
  left: 50%;
}

.scan-reticle i {
  border: 1px solid #18d8ffb3;
  border-radius: 50%;
  position: absolute;
  inset: 28px;
}

.timber-metrics {
  width: min(calc(100% - 3rem), var(--content));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
  display: grid;
}

.timber-metrics article {
  background: linear-gradient(145deg, #081f2ae0, #030a0ef5);
  border: 1px solid #18d8ff5e;
  border-radius: 5px;
  padding: 1.7rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 32px #00769a14;
}

.timber-metrics article:before {
  content: "";
  background: var(--cyan);
  width: 42%;
  height: 1px;
  box-shadow: 0 0 10px var(--cyan);
  position: absolute;
  top: 0;
  left: 16%;
}

.timber-metrics strong,
.timber-metrics span {
  font-family: var(--font-display);
  text-transform: uppercase;
  display: block;
}

.timber-metrics strong {
  color: #eafcff;
  letter-spacing: 0.08em;
  text-shadow: 0 0 16px #18d8ff33;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.timber-metrics span {
  color: #afc6ce;
  letter-spacing: 0.13em;
  margin-top: 0.45rem;
  font-size: 0.68rem;
}

.timber-section {
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: var(--section-space) 0;
  scroll-margin-top: 90px;
}

.timber-section-heading {
  max-width: 830px;
  margin-bottom: 3rem;
  scroll-margin-top: 110px;
}

.timber-eyebrow[id] {
  scroll-margin-top: 110px;
}

.timber-section-heading h2,
.timber-contact h2 {
  font-size: clamp(2.5rem, 5vw, 5.2rem);
}

.timber-section-heading p,
.timber-contact p {
  color: #abc2ca;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.timber-site .feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timber-site .feature-card {
  background: linear-gradient(135deg, #18d8ff09, #0000 48%), linear-gradient(145deg, #0c1a22, #040a0e 76%);
  border-color: #18d8ff3d;
  min-height: 255px;
}

.timber-site .feature-card h3 {
  color: var(--cyan);
}

.timber-site .feature-card p {
  color: #9eb6be;
}

.timber-process {
  border-top: 1px solid #18d8ff2e;
}

.timber-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.timber-step {
  background: #061016;
  border: 1px solid #18d8ff40;
  border-radius: 6px;
  padding: 0 0 1.6rem;
  overflow: hidden;
}

.timber-step-image {
  background-position: 50%;
  background-size: cover;
  border-bottom: 1px solid #18d8ff59;
  height: 250px;
  position: relative;
  box-shadow: inset 0 0 60px #01080ca3;
}

.timber-step-image:after {
  content: "";
  background: linear-gradient(#001f2c0f, #000b1194);
  position: absolute;
  inset: 0;
}

.timber-step h3,
.analysis-copy h3 {
  font-family: var(--font-display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 1.5rem 1.5rem 0.8rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.timber-step p {
  color: #9cb3bb;
  margin: 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.analysis-window {
  background: #061016;
  border: 1px solid #18d8ff4d;
  border-radius: 6px;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 1rem;
  display: grid;
  overflow: hidden;
}

.analysis-image {
  background-image: linear-gradient(100deg, #01090d14, #01090d9e), url("../images/analysis.webp");
  background-position: 50%;
  background-size: cover;
  min-height: 450px;
}

.analysis-copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.analysis-copy h3 {
  margin-left: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
}

.analysis-copy p {
  color: #9cb3bb;
  line-height: 1.75;
}

.timber-contact {
  width: min(calc(100% - 3rem), var(--content));
  background: radial-gradient(circle at 76% 0, #18d8ff26, #0000 22rem), linear-gradient(145deg, #0b202b, #03090d 72%);
  border: 1px solid #18d8ff75;
  border-radius: 7px;
  margin: 0 auto clamp(6rem, 10vw, 10rem);
  padding: clamp(3rem, 7vw, 6rem);
  scroll-margin-top: 90px;
  box-shadow: 0 0 70px #0062821f;
}

.timber-footer {
  padding: clamp(3.5rem, 5vw, 4.5rem) max(1.5rem, calc((100% - var(--content)) / 2));
  background: #020609;
  border-top: 1px solid #18d8ff40;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  display: grid;
}

.timber-footer p {
  color: #819aa3;
  max-width: 520px;
  line-height: 1.7;
}

.timber-footer > div:nth-child(2) {
  color: #abc4cc;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  display: flex;
}

.timber-footer > div:nth-child(2) a:hover {
  color: var(--cyan);
}

.timber-footer > div:nth-child(2) > a {
  color: #abc4cc;
}

.timber-footer-base {
  color: #617780;
  border-top: 1px solid #18d8ff1f;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.5rem;
  font-size: 0.73rem;
  display: flex;
}

.timber-footer-base .site-credit a {
  color: #8ddff0;
}

.timber-footer-base .site-credit a:hover {
  color: var(--cyan);
}

.timber-footer-base > a {
  color: #7f98a1;
}

.timber-footer-base > a:hover {
  color: var(--cyan);
}

@keyframes scan {
  0%,
  to {
    opacity: 0.38;
    top: 9%;
  }

  50% {
    opacity: 1;
    top: 88%;
  }
}

@media (width <= 1120px) {
  .desktop-nav,
  .timber-desktop-nav {
    gap: 0.9rem;
    font-size: 0.8rem;
  }

  .hytola-hero,
  .page-hero,
  .timber-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  }

  .chrome-machine,
  .timber-scan {
    min-height: 540px;
  }

  .machine-vision-hero h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
  }

  .technical-hero-art--machine-vision {
    width: min(53vw, 620px);
    margin-left: -2rem;
  }

  .technical-hero-art--uav {
    width: min(53vw, 620px);
  }

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

  .solution-grid--three .solution-card:last-child {
    grid-column: 1 / -1;
  }

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

@media (width <= 960px) {
  .desktop-nav,
  .timber-desktop-nav {
    display: none;
  }

  .mobile-menu,
  .timber-mobile-menu {
    display: block;
  }
}

@media (width <= 840px) {
  .header-inner,
  .timber-header-inner {
    width: min(calc(100% - 2rem), var(--content));
  }

  .desktop-nav,
  .timber-desktop-nav {
    display: none;
  }

  .mobile-menu,
  .timber-mobile-menu {
    display: block;
  }

  .hytola-hero,
  .page-hero,
  .timber-hero {
    grid-template-columns: 1fr;
    width: min(100% - 2rem, 720px);
  }

  .hytola-hero,
  .timber-hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .hytola-hero:before,
  .page-hero:before,
  .timber-hero:before {
    display: none;
  }

  .chrome-machine,
  .timber-scan,
  .page-hero .chrome-machine,
  .image-hero {
    min-height: 450px;
  }

  .technical-hero-art {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  .technical-hero-art--uav {
    width: 100%;
    max-width: 360px;
  }

  .technical-hero-art--machine-vision {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  .machine-vision-hero {
    min-height: auto;
  }

  .survey-proof-section {
    width: min(100% - 2rem, 720px);
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .survey-proof-copy {
    order: -1;
    padding-top: 0;
  }

  .survey-map-card {
    justify-self: center;
  }

  .camera-carriage {
    left: 30%;
  }

  .solution-grid--three,
  .solution-grid--two,
  .timber-site .feature-grid,
  .timber-step-grid,
  .analysis-window,
  .contact-page,
  .contact-layout,
  .manifesto-section,
  .footer-grid,
  .timber-footer {
    grid-template-columns: 1fr;
  }

  .solution-grid--three .solution-card:last-child {
    grid-column: auto;
  }

  .solution-card-copy {
    min-height: 250px;
  }

  .manifesto-section {
    gap: 1rem;
  }

  .proof-strip,
  .timber-metrics {
    grid-template-columns: 1fr;
  }

  .proof-strip > div {
    border-bottom: 1px solid #c7ced324;
    border-right: 0;
  }

  .proof-strip > div:last-child {
    border-bottom: 0;
  }

  .page-section,
  .manifesto-section,
  .proof-strip,
  .contact-band,
  .contact-page,
  .contact-result,
  .privacy-page,
  .timber-metrics,
  .timber-section,
  .timber-contact,
  .footer-grid,
  .footer-base {
    width: min(100% - 2rem, 720px);
  }

  .footer-grid {
    gap: 2rem;
  }

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

  .analysis-image {
    min-height: 350px;
  }

  .timber-footer {
    gap: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (width <= 560px) {
  .hero-copy > .eyebrow,
  .page-hero .eyebrow,
  .contact-intro > .eyebrow,
  .privacy-header > .eyebrow,
  .section-heading > .eyebrow,
  .manifesto-section .eyebrow,
  .timber-hero-copy > .timber-eyebrow,
  .timber-section-heading > .timber-eyebrow {
    font-size: 0.82rem;
  }

  .timber-wordmark--compact strong {
    font-size: 1.05rem;
  }

  .timber-wordmark--compact small {
    letter-spacing: 0.44em;
    font-size: 0.47rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .contact-intro h1 {
    font-size: clamp(1.75rem, 8.8vw, 3rem);
  }

  .machine-vision-hero h1 {
    font-size: clamp(1.55rem, 7.2vw, 2.45rem);
  }

  .machine-vision-examples li {
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: 0.65rem;
  }

  .machine-vision-examples strong {
    font-size: 1.05rem;
  }

  .page-hero--long-title h1 {
    font-size: clamp(1.2rem, 6.3vw, 2.5rem);
  }

  .privacy-header h1 {
    font-size: clamp(1.1rem, 5.9vw, 2.4rem);
  }

  .timber-hero h1 {
    font-size: clamp(1.35rem, 6.7vw, 2.5rem);
  }

  .section-heading h2,
  .manifesto-section h2,
  .contact-band h2,
  .timber-section-heading h2,
  .timber-contact h2 {
    font-size: clamp(1.65rem, 8.5vw, 3rem);
  }

  .timber-section-heading h2,
  .timber-contact h2 {
    font-size: clamp(1.25rem, 6.5vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .chrome-machine,
  .timber-scan,
  .page-hero .chrome-machine,
  .image-hero {
    min-height: 360px;
  }

  .camera-carriage {
    width: 210px;
    height: 170px;
    top: 22%;
    left: 22%;
  }

  .camera-lens {
    width: 110px;
    height: 110px;
  }

  .machine-column {
    left: 64%;
  }

  .feature-grid,
  .timber-site .feature-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .feature-card {
    min-height: 230px;
  }

  .solution-card-visual {
    height: 220px;
  }

  .solution-card-copy {
    min-height: 270px;
  }

  .contact-band,
  .timber-contact {
    padding: 2.4rem 1.3rem;
  }

  .scan-panel {
    width: 155px;
    right: 0.8rem;
  }

  .scan-panel--one {
    top: 12%;
  }

  .scan-panel--two {
    top: 31%;
  }

  .timber-step-image {
    height: 210px;
  }

  .survey-proof-section {
    padding: 3.25rem 0;
  }

  .survey-proof-copy h2 {
    letter-spacing: 0.055em;
    font-size: clamp(1.35rem, 5.7vw, 2.25rem);
  }

  .survey-example-card .button {
    width: 100%;
  }
}

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

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

.hytola-site .button--chrome {
  color: var(--signal-white);
  box-shadow: none;
  background: #06080a80;
  border-color: #d7dde0d1;
}

.hytola-site .button--chrome:after {
  display: none;
}

.hytola-site .button--chrome:hover {
  background: #ffffff13;
  border-color: #fff;
}

.hytola-hero {
  background: #040607;
  border-bottom: 1px solid #c7ced357;
  border-left: 1px solid #c7ced32e;
  border-right: 1px solid #c7ced32e;
  width: min(100%, 1440px);
  min-height: clamp(620px, 58vw, 740px);
  margin: 0 auto;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.hytola-hero:before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, #040607 0%, #040607fa 24%, #040607b3 44%, #0406070f 70%),
    linear-gradient(#00000014, #00000040);
  display: block;
  position: absolute;
  inset: 0;
}

.hytola-hero-visual {
  z-index: 0;
  background-image: url("../images/hytola-machine-vision-hero.webp");
  background-position: 50%;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.hytola-hero .hero-copy {
  z-index: 2;
  width: min(calc(100% - 6rem), var(--content));
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  display: flex;
  position: relative;
}

.hytola-hero .hero-copy h1 {
  letter-spacing: 0.065em;
  max-width: 620px;
  margin: 0 0 1.35rem;
  font-size: clamp(3rem, 5.2vw, 5.15rem);
  line-height: 1.02;
}

.hytola-hero .hero-intro {
  max-width: 900px;
}

.hytola-hero .hero-intro p {
  color: #d1d5d7;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.55;
}

.hytola-hero .hero-intro p + p {
  color: #aeb7bb;
  margin-top: 0.85rem;
  font-size: clamp(0.92rem, 1.12vw, 1.02rem);
}

.hytola-hero .hero-actions {
  margin-top: 1.8rem;
}

.hytola-hero .button {
  min-width: 240px;
}

.solutions-section {
  border: 1px solid #c7ced32e;
  border-top: 0;
  width: min(100%, 1440px);
  padding: clamp(1.2rem, 2.8vw, 2.4rem);
}

.home-solution-grid {
  gap: clamp(1rem, 2vw, 1.6rem);
}

.home-solution-grid .solution-card {
  box-shadow: none;
  background: #080a0c;
  border-color: #c7ced37a;
  border-radius: 8px;
}

.home-solution-grid .solution-card:hover {
  border-color: #f4f7f8e6;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px #0000006b;
}

.home-solution-grid .solution-card--timber:hover {
  border-color: #18d8ffd9;
}

.home-solution-grid .solution-card-visual {
  aspect-ratio: 1.35;
  filter: saturate(0.82) contrast(1.08) brightness(0.9);
  border-bottom-color: #c7ced352;
  height: auto;
}

.home-solution-grid .solution-card:first-child .solution-card-visual {
  background-color: #111518;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.home-solution-grid .solution-card:nth-child(2) .solution-card-visual {
  background-position: 50%;
}

.home-solution-grid .solution-card--timber .solution-card-visual {
  filter: saturate(0.88) contrast(1.1) brightness(0.9);
  background-position: 50%;
}

.home-solution-grid .solution-card-copy {
  place-items: center;
  min-height: 78px;
  padding: 1.25rem 1rem;
  display: grid;
}

.home-solution-grid .solution-card-copy > .eyebrow,
.home-solution-grid .solution-card-copy > p,
.home-solution-grid .solution-card-copy > .text-link {
  display: none;
}

.home-solution-grid .solution-card h2 {
  letter-spacing: 0.13em;
  text-align: center;
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.4rem);
}

.home-closing-band {
  background:
    linear-gradient(90deg, #000000b3, #0000 25% 75%, #000000b3),
    repeating-linear-gradient(90deg, #090b0d 0 80px, #22272b 82px, #090b0d 86px, #050607 160px);
  border-bottom: 1px solid #c7ced32e;
  border-left: 1px solid #c7ced32e;
  border-right: 1px solid #c7ced32e;
  place-items: center;
  width: min(100%, 1440px);
  min-height: 210px;
  margin: 0 auto;
  display: grid;
  position: relative;
  overflow: hidden;
}

.home-closing-band:before {
  content: "";
  background: linear-gradient(#0000002e, #040607b3);
  position: absolute;
  inset: 0;
}

.home-closing-band > div {
  z-index: 1;
  text-align: center;
  padding: 2.4rem 1.5rem;
  position: relative;
}

.home-closing-band h2 {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 1.55rem;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 1.3;
}

.home-closing-band .button {
  min-width: 240px;
}

@media (width <= 1120px) {
  .home-solution-grid.solution-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-solution-grid.solution-grid--three .solution-card:last-child {
    grid-column: auto;
  }
}

@media (width <= 840px) {
  .brand-link {
    min-width: 0;
  }

  .hytola-hero {
    width: 100%;
    min-height: 620px;
    padding: 0;
  }

  .hytola-hero:before {
    background:
      linear-gradient(90deg, #040607 0%, #040607e6 56%, #04060747 100%),
      linear-gradient(#00000040, #0000 58%, #00000085);
  }

  .hytola-hero-visual {
    background-position: 69%;
    background-size: auto 100%;
  }

  .hytola-hero .hero-copy {
    width: min(100% - 3rem, 720px);
    padding: 4rem 0;
  }

  .hytola-hero .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 7.8vw, 3.3rem);
    line-height: 1.06;
  }

  .hytola-hero .hero-intro {
    max-width: min(94%, 580px);
  }

  .hytola-hero .hero-intro p {
    font-size: 1rem;
  }

  .hytola-hero .hero-intro p + p {
    font-size: 0.92rem;
  }

  .hytola-hero .hero-actions {
    flex-direction: row;
    width: auto;
  }

  .hytola-hero .hero-actions .button {
    width: auto;
  }

  .solutions-section {
    border-left: 0;
    border-right: 0;
    width: min(100% - 2rem, 720px);
    padding: 1rem 0;
  }

  .home-solution-grid.solution-grid--three {
    grid-template-columns: 1fr;
  }

  .home-solution-grid .solution-card-visual {
    aspect-ratio: 1.6;
  }

  .home-closing-band {
    border-left: 0;
    border-right: 0;
    width: min(100% - 2rem, 720px);
    min-height: 190px;
  }
}

@media (width <= 560px) {
  .chrome-wordmark {
    width: min(10.6rem, 48vw);
  }

  .hytola-hero {
    min-height: 570px;
  }

  .hytola-hero .hero-copy {
    width: calc(100% - 2.5rem);
    padding: 3rem 0;
  }

  .hytola-hero .hero-copy h1 {
    letter-spacing: 0.045em;
    font-size: clamp(1.65rem, 8.4vw, 2.75rem);
  }

  .hytola-hero .button,
  .home-closing-band .button {
    min-width: 210px;
  }

  .home-solution-grid .solution-card-visual {
    aspect-ratio: 1.42;
  }

  .home-solution-grid .solution-card-copy {
    min-height: 72px;
  }

  .home-solution-grid .solution-card h2 {
    font-size: 1rem;
  }
}

.button--cyan {
  background: var(--cyan);
  border-color: #7cecff;
  box-shadow: 0 0 26px #18d8ff3d;
}

.timber-hero {
  background-image: url("../images/timberuav-product-hero.webp");
  background-position: 50%;
  background-size: cover;
  border-bottom: 1px solid #18d8ffa3;
  border-left: 1px solid #18d8ff33;
  border-right: 1px solid #18d8ff33;
  width: min(100%, 1440px);
  min-height: clamp(620px, 61vw, 790px);
  margin: 0 auto;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.timber-hero:before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, #03080c 0%, #03080cf2 25%, #03080c8f 48%, #03080c08 73%),
    linear-gradient(#0000000f, #01080c57);
  width: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.timber-hero-copy {
  z-index: 3;
  width: min(calc(100% - 6rem), var(--content));
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
  display: flex;
  position: relative;
}

.timber-hero-copy > * {
  max-width: 620px;
}

.timber-hero h1 {
  margin: 0.9rem 0 1.1rem;
  font-size: clamp(3rem, 5.2vw, 5.3rem);
  line-height: 1.04;
}

.timber-hero-copy > p {
  color: #d2e3e8;
  max-width: 560px;
  line-height: 1.55;
}

.timber-scan {
  z-index: 2;
  width: auto;
  height: 100%;
  min-height: 0;
  box-shadow: none;
  pointer-events: none;
  background: none;
  border: 0;
  border-radius: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.timber-scan:before,
.timber-scan:after {
  width: 54px;
  height: 54px;
}

.timber-scan .scan-grid {
  opacity: 0.44;
  width: 78%;
  height: 62%;
  bottom: -22%;
  right: -10%;
}

.timber-scan .scan-beam {
  opacity: 0.65;
  width: 53%;
  left: 45%;
}

.timber-scan .scan-panel {
  background: #020f16b8;
  width: 178px;
  right: clamp(1.5rem, 4vw, 4rem);
}

.timber-scan .scan-panel--one {
  top: 58%;
}

.timber-scan .scan-panel--two {
  top: calc(58% + 92px);
}

.timber-scan .scan-reticle {
  opacity: 0.72;
  top: 58%;
  left: 67%;
}

.timber-metrics {
  width: min(100% - 3rem, 1368px);
  margin-top: clamp(1rem, 2.5vw, 2rem);
}

@media (width <= 840px) {
  .timber-hero {
    background-position: 67%;
    background-size: auto 100%;
    width: 100%;
    min-height: 680px;
    padding: 0;
  }

  .timber-hero:before {
    background:
      linear-gradient(90deg, #03080c 0%, #03080ce8 60%, #03080c4d 100%), linear-gradient(#0003, #0000 55%, #00040894);
    display: block;
  }

  .timber-hero-copy {
    width: min(100% - 3rem, 720px);
    padding: 4rem 0;
  }

  .timber-hero h1 {
    font-size: clamp(1.9rem, 7.6vw, 3.5rem);
  }

  .timber-hero-copy > p {
    max-width: min(92%, 460px);
    font-size: 1rem;
  }

  .timber-scan .scan-grid {
    width: 125%;
    right: -42%;
  }

  .timber-scan .scan-beam {
    width: 68%;
    left: 30%;
  }

  .timber-scan .scan-panel {
    right: 1rem;
  }

  .timber-scan .scan-reticle {
    left: 73%;
  }
}

@media (width <= 560px) {
  .timber-hero {
    min-height: 650px;
  }

  .timber-hero-copy {
    width: calc(100% - 2.5rem);
    padding: 3.2rem 0;
  }

  .timber-hero h1 {
    letter-spacing: 0.035em;
    font-size: clamp(1.35rem, 6.7vw, 2.8rem);
  }

  .timber-hero .hero-actions {
    width: min(100%, 310px);
  }

  .timber-scan .scan-panel,
  .timber-scan .scan-reticle {
    display: none;
  }

  .timber-scan .scan-grid {
    opacity: 0.3;
  }
}
