:root {
  --black: #080808;
  --black-soft: #101010;
  --panel: #151515;
  --panel-light: #1d1d1d;
  --white: #ffffff;
  --off-white: #f1f1ed;
  --gray: #a6a6a6;
  --gray-dark: #616161;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #e6472f;
  --accent-dark: #b92f1d;
  --accent-soft: rgba(230, 71, 47, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --radius: 20px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.utility-bar {
  position: relative;
  z-index: 30;
  color: #d9d9d9;
  background: #040404;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.utility-inner a:hover,
.utility-inner a:focus-visible {
  color: var(--accent);
}

.utility-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(8, 8, 8, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: block;
}

.brand img {
  width: 150px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 18px;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.93) 48%, rgba(8, 8, 8, 0.76) 100%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 35%),
    #0a0a0a;
}

.hero::before {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 660px;
  height: 660px;
  content: "";
  border: 90px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.hero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  content: "";
  background: linear-gradient(145deg, transparent 20%, rgba(230, 71, 47, 0.08) 100%);
  clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  right: 6%;
  bottom: 5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(230, 71, 47, 0.17), transparent 68%);
}

.hero-glow-two {
  top: 6%;
  left: 30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 3;
  min-height: 680px;
  padding: 95px 0 115px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 3px;
  content: "";
  background: currentColor;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 22px 0 24px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.018em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.65rem, 7.2vw, 6.7rem);
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.82);
  text-stroke: 1.5px rgba(255, 255, 255, 0.82);
}

.hero-copy > p {
  max-width: 720px;
  margin: 0 0 34px;
  color: #c7c7c7;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.055em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  padding: 15px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.44);
}

.hero-note {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4dbb70;
  box-shadow: 0 0 0 6px rgba(77, 187, 112, 0.12);
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: var(--accent);
}

.hero-card-logo {
  min-height: 230px;
  padding: 28px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(230, 71, 47, 0.12), transparent 55%),
    #0d0d0d;
  border-bottom: 1px solid var(--line);
}

.hero-card-logo img {
  width: min(245px, 80%);
  max-height: 180px;
  object-fit: contain;
}

.hero-card-content {
  padding: 34px;
}

.mini-label {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero-card h2 {
  margin: 13px 0 24px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.02em;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: #d5d5d5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.check-list li::before {
  position: absolute;
  top: 13px;
  left: 3px;
  width: 12px;
  height: 7px;
  content: "";
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.hero-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  background: var(--accent);
}

.hero-strip-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.hero-strip-inner span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.section {
  padding: 115px 0;
}

.services-section {
  color: #151515;
  background: var(--off-white);
}

.section-heading {
  margin-bottom: 55px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
}

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

.section-heading h2,
.about-copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.services-section .eyebrow,
.about-section .eyebrow {
  color: var(--accent);
}

.section-heading p {
  margin: 0 0 5px;
  color: #555;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 355px;
  padding: 34px 31px;
  overflow: hidden;
  color: var(--white);
  background: var(--black-soft);
  border-bottom: 4px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  content: "";
  border: 30px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.service-card:hover {
  border-color: var(--accent);
  background: #141414;
  transform: translateY(-7px);
}

.service-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: rgba(255, 255, 255, 0.15);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
}

.service-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  max-width: 260px;
  margin: 55px 0 16px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.04em;
}

.service-card p {
  margin: 0;
  color: #adadad;
  font-size: 0.91rem;
  line-height: 1.75;
}

.builds-feature {
  position: relative;
  margin-top: 48px;
  padding: 54px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(230, 71, 47, 0.16), transparent 42%),
    var(--black-soft);
  border-top: 5px solid var(--accent);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.builds-feature::after {
  position: absolute;
  top: -150px;
  right: -130px;
  width: 430px;
  height: 430px;
  content: "";
  border: 72px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  pointer-events: none;
}

.builds-intro {
  position: relative;
  z-index: 2;
  max-width: 890px;
}

.builds-intro h3 {
  max-width: 880px;
  margin: 20px 0 20px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.builds-intro > p:first-of-type {
  max-width: 910px;
  margin: 0 0 15px;
  color: #e2e2e2;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.045em;
}

.builds-detail-copy {
  max-width: 940px;
  margin: 0;
  color: #a9a9a9;
  line-height: 1.8;
}

.builds-cta {
  margin-top: 28px;
}

.builds-categories {
  position: relative;
  z-index: 2;
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.build-category {
  min-height: 235px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.build-category > span {
  color: var(--accent);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.build-category h4 {
  margin: 25px 0 11px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.045em;
}

.build-category p {
  margin: 0;
  color: #aaa;
  font-size: 0.91rem;
  line-height: 1.75;
}

.builds-verification {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  align-items: center;
  gap: 34px;
  background: var(--accent);
}

.builds-verification strong {
  font-size: 0.83rem;
  line-height: 1.5;
  letter-spacing: 0.13em;
}

.builds-verification p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.035em;
}

.about-section {
  position: relative;
  overflow: hidden;
  background: #0b0b0b;
}

.about-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image: repeating-linear-gradient(135deg, transparent 0, transparent 40px, rgba(255, 255, 255, 0.04) 41px, transparent 42px);
}

.about-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
}

.about-panel {
  position: relative;
  min-height: 560px;
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(230, 71, 47, 0.18), transparent 48%),
    linear-gradient(145deg, #1b1b1b, #0d0d0d);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.about-panel::before,
.about-panel::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.about-panel::before {
  top: 80px;
  left: 50%;
  width: 330px;
  height: 330px;
  border: 60px solid rgba(255, 255, 255, 0.035);
  transform: translateX(-50%);
}

.about-panel::after {
  top: -90px;
  right: -110px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 71, 47, 0.28), transparent 66%);
}

.about-badge {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 3;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-align: center;
}

.about-mark {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.08);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 19rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.about-panel-copy {
  position: relative;
  z-index: 4;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

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

.about-panel-copy span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
}

.about-panel-copy strong {
  margin-top: 4px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.17em;
}

.about-copy .lead {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 0.045em;
}

.about-copy > p:not(.lead) {
  margin: 0 0 35px;
  color: #aaa;
  line-height: 1.85;
}

.values-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.value-item {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.value-item > span {
  color: var(--accent);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.45rem;
}

.value-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.value-item p {
  margin: 0;
  color: #929292;
  font-size: 0.9rem;
}

.process-section {
  background: var(--accent);
}

.process-section .eyebrow {
  color: #1b1b1b;
}

.process-section .section-heading {
  margin-bottom: 48px;
}

.process-section h2 {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.process-step {
  min-height: 290px;
  padding: 35px 30px;
}

.process-step + .process-step {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.process-step > span {
  color: rgba(255, 255, 255, 0.58);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 3rem;
}

.process-step h3 {
  margin: 42px 0 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-section {
  padding: 115px 0 0;
  color: var(--white);
  background: #0c0c0c;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 75px;
  padding-bottom: 90px;
}

.contact-section h2 {
  font-size: clamp(3.1rem, 5.4vw, 5.2rem);
}

.contact-copy > p {
  max-width: 590px;
  margin: 0 0 34px;
  color: #aaa;
  line-height: 1.85;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  min-height: 88px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 17px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a.contact-card:hover,
a.contact-card:focus-visible {
  background: #1c1c1c;
  border-color: rgba(230, 71, 47, 0.6);
  transform: translateX(4px);
}

.contact-card svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card span,
.contact-card strong {
  display: block;
}

.contact-card span {
  margin-bottom: 3px;
  color: #777;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.contact-card strong {
  font-size: 0.94rem;
  line-height: 1.45;
  letter-spacing: 0.07em;
}

.request-panel {
  overflow: hidden;
  background: var(--off-white);
  border-top: 5px solid var(--accent);
  box-shadow: var(--shadow);
}

.request-panel-header {
  padding: 25px 31px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  color: var(--black);
  border-bottom: 1px solid #d2d2d2;
}

.request-panel-header span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.request-panel-header strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.request-panel form {
  padding: 31px;
  color: var(--black);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

label > span {
  display: block;
  margin-bottom: 7px;
  color: #4d4d4d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

input,
select,
textarea {
  width: 100%;
  color: #111;
  background: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  height: 50px;
  padding: 0 13px;
}

textarea {
  min-height: 115px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 71, 47, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 22px;
  border-radius: 0;
}

.form-text-link {
  width: 100%;
  margin-top: 12px;
  color: var(--black);
  border-color: #bcbcbc;
  border-radius: 0;
  text-align: center;
}

.form-text-link:hover,
.form-text-link:focus-visible {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.form-note {
  margin: 12px 0 0;
  color: #777;
  font-size: 0.75rem;
  text-align: center;
}

.form-status {
  min-height: 24px;
  margin-top: 8px;
  color: #333;
  font-size: 0.79rem;
  font-weight: 700;
  text-align: center;
}

.map-wrap {
  height: 410px;
  overflow: hidden;
  border-top: 5px solid var(--accent);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(1.1);
}

.site-footer {
  padding: 70px 0 26px;
  color: #b3b3b3;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 1fr;
  gap: 60px;
}

.footer-brand img {
  width: 180px;
  max-height: 105px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: #777;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 11px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #5f5f5f;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1020px) {
  .utility-inner {
    justify-content: center;
  }

  .primary-nav {
    gap: 18px;
  }

  .hero-layout {
    grid-template-columns: 1fr 360px;
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 7vw, 5.5rem);
  }

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

  .builds-feature {
    padding: 44px;
  }

  .builds-verification {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-layout {
    gap: 48px;
  }

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

  .process-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }

  .process-step:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }

  .contact-layout {
    gap: 42px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 82px;
  }

  .utility-bar {
    display: none;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand img {
    width: 124px;
    height: 60px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 40px 24px 110px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: rgba(7, 7, 7, 0.99);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav > a,
  .primary-nav .nav-cta {
    padding: 20px 6px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .primary-nav .nav-cta {
    margin-top: 18px;
    padding: 16px 18px;
    border-bottom: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: 0;
    padding: 88px 0 120px;
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    max-width: 580px;
  }

  .hero-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1px;
    background: rgba(255, 255, 255, 0.24);
  }

  .hero-strip-inner span {
    padding: 12px 8px;
    background: var(--accent);
  }

  .hero-strip-inner span + span {
    border-left: 0;
  }

  .section-heading,
  .about-layout,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
  }

  .builds-categories {
    grid-template-columns: 1fr;
  }

  .about-panel {
    min-height: 480px;
  }

  .about-copy {
    max-width: 720px;
  }

  .contact-copy {
    max-width: 700px;
  }

  .footer-inner {
    gap: 35px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.34);
  }

  .mobile-action-bar a {
    padding: 15px 10px;
    color: var(--white);
    background: #181818;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .mobile-action-bar a:last-child {
    background: var(--accent);
  }

  .site-footer {
    padding-bottom: 88px;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-layout {
    padding-top: 72px;
  }

  .eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(3.05rem, 16vw, 4.6rem);
  }

  .hero-copy > p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-card-content,
  .request-panel form {
    padding: 25px 22px;
  }

  .hero-card-logo {
    min-height: 200px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-section h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .services-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 310px;
  }

  .builds-feature {
    margin-top: 28px;
    padding: 34px 24px;
  }

  .builds-intro h3 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .build-category {
    min-height: auto;
    padding: 25px 22px;
  }

  .builds-verification {
    padding: 23px 22px;
  }

  .builds-cta {
    width: 100%;
  }

  .about-panel {
    min-height: 420px;
    padding: 30px;
  }

  .about-mark {
    font-size: 14rem;
  }

  .about-badge {
    top: 24px;
    right: 24px;
    width: 86px;
    height: 86px;
    font-size: 0.63rem;
  }

  .about-panel-copy span {
    font-size: 1.9rem;
  }

  .process-step,
  .process-step + .process-step,
  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    min-height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 0;
  }

  .process-step:first-child {
    border-top: 0;
  }

  .process-step h3 {
    margin-top: 24px;
  }

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

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

  .request-panel-header {
    padding: 21px 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .map-wrap {
    height: 330px;
  }

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}



.specialty-showcase {
  background: linear-gradient(180deg, #0e0e0e 0%, #090909 100%);
}

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

.specialty-item,
.specialty-item-reverse {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(230, 71, 47, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.specialty-item::after,
.specialty-item-reverse::after {
  position: absolute;
  right: -28px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  content: '';
  border: 24px solid rgba(255,255,255,0.025);
  border-radius: 50%;
  pointer-events: none;
}

.specialty-copy {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 34px 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.specialty-copy h3 {
  margin: 6px 0 14px;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: 0.03em;
}

.specialty-copy p {
  margin: 0 0 16px;
  color: #dddddd;
}

.specialty-points {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.specialty-points li {
  position: relative;
  padding-left: 24px;
  color: #f1f1ed;
}

.specialty-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(230, 71, 47, 0.12);
}

@media (max-width: 920px) {
  .specialty-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .specialty-copy {
    padding: 24px 22px;
  }
}
