@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --black: #030608;
  --ink: #080d12;
  --charcoal: #10151b;
  --red: #ed1111;
  --deep-red: #990808;
  --white: #f7f7f4;
  --paper: #f0f1f0;
  --muted: #c9c9c9;
  --line: rgba(255,255,255,.14);
  --shadow: 0 16px 34px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .34;
  background:
    radial-gradient(circle at 52% 16%, rgba(255,255,255,.14), transparent 15%),
    radial-gradient(circle at 72% 26%, rgba(237,17,17,.22), transparent 19%),
    radial-gradient(circle at 18% 88%, rgba(237,17,17,.25), transparent 23%),
    linear-gradient(90deg, transparent 0 49%, rgba(255,255,255,.045) 50%, transparent 51%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 5px);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
  padding: 12px clamp(24px, 4vw, 60px) 12px;
  background: linear-gradient(180deg, rgba(0,0,0,.98), rgba(3,6,8,.86));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 305px;
  gap: 10px;
  text-transform: uppercase;
  line-height: .86;
}

.logo-image {
  min-width: 0;
  flex: 0 0 clamp(330px, 28vw, 430px);
  width: clamp(330px, 28vw, 430px);
  height: 132px;
  margin: 10px 0 -42px;
  align-self: flex-start;
  overflow: visible;
}

.logo-image img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.55)) drop-shadow(0 0 18px rgba(237,17,17,.34));
}

.logo-image::before,
.logo-image::after {
  display: none;
}

.logo::before,
.logo::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: skewX(-28deg);
}

.logo::before { top: 24px; }
.logo::after { bottom: 13px; }

.logo .flame {
  width: 54px;
  font-size: 44px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(237,17,17,.85));
}

.logo span,
.logo small {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  letter-spacing: .8px;
}

.logo span {
  color: #fff;
  font-size: 19px;
  transform: skewX(-8deg);
}

.logo strong {
  display: block;
  color: #f5f5f5;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(42px, 4.5vw, 66px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 3px 3px 0 #000, 0 0 16px rgba(255,255,255,.25);
}

.logo small {
  color: var(--red);
  font-size: 13px;
  font-style: italic;
}

.main-nav {
  display: flex;
  gap: clamp(20px, 2.3vw, 42px);
  margin-left: auto;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1px;
  text-transform: none;
}

.main-nav a {
  position: relative;
  padding: 17px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 4px;
  background: transparent;
}

.main-nav a:hover::after,
.main-nav a:first-child::after {
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: transform .18s ease, opacity .18s ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.08);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, #f12b24, #b80808);
  box-shadow: 0 14px 32px rgba(237,17,17,.28);
}

.btn-secondary {
  border: 2px solid var(--red);
  background: rgba(0,0,0,.48);
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 56px clamp(36px, 5vw, 74px) 38px;
  overflow: hidden;
  background-color: #030608;
  background-image:
    linear-gradient(90deg, rgba(3,6,8,.96) 0%, rgba(3,6,8,.88) 37%, rgba(3,6,8,.08) 58%, rgba(3,6,8,.14) 100%),
    linear-gradient(180deg, rgba(3,6,8,.02), rgba(3,6,8,.16)),
    url("assets/ScooterBackground.png");
  background-position:
    center,
    center,
    calc(100% + 150px) center;
  background-size:
    cover,
    cover,
    auto 98%;
  background-repeat: no-repeat;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 420px;
  padding: 86px clamp(36px, 5vw, 74px) 64px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3,6,8,.98), rgba(3,6,8,.84) 48%, rgba(3,6,8,.62)),
    radial-gradient(circle at 82% 32%, rgba(237,17,17,.22), transparent 28%),
    linear-gradient(135deg, #05090d, #111820);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 36%, rgba(255,255,255,.1), transparent 16%),
    radial-gradient(circle at 84% 64%, rgba(255,88,18,.22), transparent 14%);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 19px;
  line-height: 1.58;
}

.about-content {
  padding: 62px clamp(30px, 5vw, 70px);
  color: #121212;
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(245,245,245,.96)),
    repeating-linear-gradient(135deg, rgba(0,0,0,.04) 0 1px, transparent 1px 7px);
}

.about-intro,
.about-section {
  max-width: 980px;
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 42px;
  border-bottom: 1px solid #d6d6d6;
}

.about-intro p {
  margin: 0;
  font-size: 20px;
  line-height: 1.62;
}

.about-section {
  padding: 42px 0;
  border-bottom: 1px solid #d6d6d6;
}

.about-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-section h2 {
  margin: 0 0 18px;
  color: #111;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.about-section h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 3px;
  margin-top: 12px;
  background: var(--red);
}

.about-section p {
  margin: 0 0 18px;
  color: #262626;
  font-size: 17px;
  line-height: 1.7;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-section ul {
  margin: 12px 0 24px;
  padding: 0;
  list-style: none;
}

.about-section li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
  color: #202020;
  line-height: 1.5;
}

.about-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.about-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin: 12px 0 24px;
}

.about-list-grid ul {
  margin: 0;
}

.contact-content {
  padding: 62px clamp(30px, 5vw, 70px);
  color: #121212;
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(245,245,245,.96)),
    repeating-linear-gradient(135deg, rgba(0,0,0,.04) 0 1px, transparent 1px 7px);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 42px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 38px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

.contact-copy h2 {
  margin: 0 0 18px;
  color: #111;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.contact-copy p:not(.eyebrow) {
  margin: 0;
  color: #2b2b2b;
  font-size: 18px;
  line-height: 1.65;
}

.contact-methods {
  display: grid;
  gap: 18px;
  align-content: center;
}

.contact-method {
  display: block;
  padding: 24px;
  color: #111;
  background: linear-gradient(180deg, #f7f7f7, #eceff2);
  border: 1px solid #d3d7dc;
  border-left: 4px solid var(--red);
  border-radius: 7px;
}

.contact-method span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-method strong {
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.contact-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 1080px;
  margin: 30px auto 0;
}

.contact-notes article {
  padding: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid #d8d8d8;
  border-radius: 8px;
}

.contact-notes h3 {
  margin: 0 0 14px;
  color: #111;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-notes li {
  position: relative;
  margin: 10px 0;
  padding-left: 23px;
  line-height: 1.5;
}

.contact-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.project-showcase {
  padding: 62px clamp(30px, 5vw, 70px);
  color: #121212;
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(245,245,245,.96)),
    repeating-linear-gradient(135deg, rgba(0,0,0,.04) 0 1px, transparent 1px 7px);
}

.featured-build,
.capability-card,
.project-note {
  max-width: 1120px;
  margin: 0 auto;
}

.featured-build {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 38px;
  align-items: center;
  padding: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 83% 18%, rgba(237,17,17,.18), transparent 24%),
    linear-gradient(135deg, #071019, #050607);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}

.featured-build h2,
.capability-copy h2,
.project-note h2 {
  margin: 0 0 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 3vw, 54px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.featured-build p:not(.eyebrow),
.capability-copy p,
.project-note p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.68;
}

.featured-build p:not(.eyebrow) {
  color: rgba(255,255,255,.84);
}

.featured-build ul,
.capability-copy ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.featured-build li,
.capability-copy li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
  line-height: 1.45;
}

.featured-build li::before,
.capability-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .64em;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.featured-build-visual {
  padding: 14px;
  background: linear-gradient(145deg, #242b35, #080a0e);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(0,0,0,.42);
}

.featured-build-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 5px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 30px auto 0;
}

.capability-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

.capability-visual {
  display: grid;
  place-items: center;
  min-height: 230px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 22%, rgba(237,17,17,.28), transparent 24%),
    linear-gradient(135deg, #101820, #050607);
}

.cba-visual img {
  width: min(82%, 420px);
  max-height: 135px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.5));
}

.cba-visual small,
.app-visual small {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.app-visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 22px;
}

.app-visual > div {
  width: 100%;
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 8px;
}

.app-visual span {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 800;
  line-height: 1;
}

.capability-copy {
  padding: 30px;
}

.capability-copy p {
  color: #2a2a2a;
}

.project-note {
  margin-top: 30px;
  padding: 34px 38px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-left: 4px solid var(--red);
  border-radius: 8px;
}

.project-note p {
  max-width: 900px;
  color: #2a2a2a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 71% 28%, rgba(255,255,255,.22), transparent 4%),
    radial-gradient(circle at 74% 59%, rgba(255,75,16,.86), transparent 1.5%),
    radial-gradient(circle at 55% 18%, rgba(255,75,16,.62), transparent 1.1%),
    radial-gradient(circle at 38% 67%, rgba(255,75,16,.72), transparent 1.2%),
    radial-gradient(circle at 84% 11%, rgba(255,75,16,.62), transparent 1.3%);
  mix-blend-mode: screen;
  opacity: .72;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 145px;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.82)),
    radial-gradient(ellipse at 65% 86%, rgba(237,17,17,.55), transparent 34%);
}

.hero-copy,
.device-wrap {
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.center { text-align: center; }

.hero-copy .eyebrow { display: none; }

.hero h1,
.section h2,
.why h2,
.cta h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: .25px;
  line-height: .92;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 675px;
  font-size: clamp(42px, 3.65vw, 72px);
  font-style: normal;
  letter-spacing: .1px;
  line-height: 1;
  text-shadow: 0 5px 0 rgba(0,0,0,.25);
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-text {
  max-width: 545px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.58;
}

.hero-text::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 520px;
  height: 4px;
  margin: 0 0 22px;
  border-radius: 99px;
  background: var(--red);
  transform: skewX(-28deg);
}

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

.hero-actions .btn:first-child::before { content: "🚀"; }
.hero-actions .btn:last-child::before { content: "🖥"; }
.site-header > .btn::before,
.cta .btn::before { content: "💬"; }

.device-wrap {
  min-height: 480px;
}

.laptop {
  position: absolute;
  top: 20px;
  right: 5%;
  width: min(710px, 98%);
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
}

.screen {
  padding: 16px;
  background: linear-gradient(145deg, #2c3340, #090b0f 60%);
  border: 2px solid #606977;
  border-radius: 22px 22px 10px 10px;
  box-shadow: 0 34px 90px rgba(0,0,0,.82), 0 0 70px rgba(237,17,17,.22);
}

.screen img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
}

.keyboard {
  height: 39px;
  width: 96%;
  margin: 0 auto;
  background: linear-gradient(180deg, #59616d, #1a1d23 62%, #0a0b0d);
  border-radius: 0 0 80px 80px;
}

.phone {
  position: absolute;
  right: -10px;
  bottom: 2px;
  width: 168px;
  padding: 10px;
  background: #0b0d10;
  border: 2px solid #767676;
  border-radius: 31px;
  box-shadow: 0 22px 60px rgba(0,0,0,.9);
  transform: rotate(4deg);
}

.phone img {
  width: 100%;
  height: 306px;
  object-fit: cover;
  object-position: left top;
  border-radius: 20px;
}

.section {
  padding: 42px clamp(30px, 5vw, 70px) 58px;
}

.section h2 {
  margin-bottom: 24px;
  text-align: center;
  font-size: clamp(34px, 2.8vw, 48px);
}

.services {
  color: #111;
  background:
    linear-gradient(rgba(255,255,255,.86), rgba(245,245,245,.92)),
    repeating-linear-gradient(135deg, rgba(0,0,0,.04) 0 1px, transparent 1px 7px);
  border-radius: 16px 16px 0 0;
}

.services .eyebrow { color: var(--red); }

.services h2::after,
.projects h2::after,
.why-copy h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--red);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 312px;
  padding: 26px 26px 24px;
  color: #111;
  background: linear-gradient(180deg, #fff, #e9ebee);
  border: 1px solid #d0d4d9;
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}

.service-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--red);
  font-size: 40px;
}

.service-card h3,
.project-card h3 {
  margin: 0 0 13px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.service-card ul {
  margin: 0 0 22px;
  padding: 0;
  color: #111;
  font-size: 14px;
  line-height: 1.72;
  list-style: none;
}

.service-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--red);
  font-weight: 900;
}

.service-card a,
.project-card a {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}

.projects {
  color: #fff;
  background:
    radial-gradient(circle at 91% 12%, rgba(237,17,17,.24), transparent 16%),
    radial-gradient(circle at 21% 4%, rgba(255,255,255,.13), transparent 13%),
    linear-gradient(180deg, #050a0e, #020405);
  border-radius: 0 0 14px 14px;
}

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

.project-card {
  padding: 0 0 20px;
  text-align: center;
}

.project-card img,
.project-thumb {
  width: 100%;
  height: 146px;
  margin-bottom: 14px;
  object-fit: cover;
  border: 1px solid rgba(237,17,17,.62);
  border-radius: 6px;
  box-shadow: 0 16px 25px rgba(0,0,0,.36);
}

.project-thumb {
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 76% 25%, rgba(237,17,17,.35), transparent 22%),
    linear-gradient(135deg, #101720, #07090b);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 800;
}

.project-card p {
  min-height: 54px;
  margin: 0 auto 14px;
  max-width: 240px;
  color: #e2e2e2;
  font-size: 14px;
  line-height: 1.35;
}

.project-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 42px;
  color: #fff;
  border: 1px solid var(--red);
  border-radius: 4px;
}

.why {
  display: grid;
  grid-template-columns: .72fr .92fr 1.46fr;
  gap: 38px;
  align-items: stretch;
  padding: 0 clamp(30px, 5vw, 70px);
  color: #111;
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(245,245,245,.94)),
    repeating-linear-gradient(135deg, rgba(0,0,0,.045) 0 1px, transparent 1px 7px);
}

.why-photo {
  min-height: 350px;
  background:
    linear-gradient(rgba(230,230,230,.32), rgba(0,0,0,.42)),
    radial-gradient(circle at 50% 22%, #9b9b9b, #111 72%);
  display: grid;
  place-items: center;
  filter: grayscale(1);
}

.shirt-logo {
  width: 230px;
  min-height: 126px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  background: #111;
  border: 2px solid var(--red);
  box-shadow: 0 20px 42px rgba(0,0,0,.45);
  transform: rotate(-8deg);
}

.shirt-logo strong {
  font-size: 47px;
  font-style: italic;
  line-height: .8;
}

.shirt-logo span { color: var(--muted); }

.why-copy {
  padding: 54px 0;
}

.why-copy .eyebrow {
  margin-bottom: 0;
}

.why-copy h2 {
  font-size: clamp(38px, 3vw, 52px);
}

.why-copy h2::after {
  margin-left: 0;
}

.why-copy p {
  max-width: 520px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.signature {
  margin: 18px 0 2px;
  color: var(--red);
  font-family: "Brush Script MT", cursive;
  font-size: 42px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.why-copy span {
  display: block;
  color: #555;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid #c9c9c9;
}

.why-points div {
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 22px;
  text-align: center;
  border-right: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
}

.why-points strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.why-points span {
  color: #555;
  font-size: 14px;
  font-weight: 600;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 36px clamp(30px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(3,6,8,.94), rgba(3,6,8,.65), rgba(3,6,8,.96)),
    radial-gradient(circle at 11% 92%, rgba(237,17,17,.72), transparent 18%),
    radial-gradient(circle at 76% 18%, rgba(255,85,18,.44), transparent 20%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cta h2 {
  font-size: clamp(30px, 2.8vw, 48px);
}

.cta p {
  grid-column: 1;
  margin: -16px 0 0;
  color: #eee;
  font-size: 21px;
  font-weight: 600;
}

.cta .btn {
  grid-row: 1 / span 2;
  grid-column: 2;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 48px;
  padding: 34px clamp(30px, 5vw, 70px) 28px;
  background: linear-gradient(180deg, #081016, #020405);
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer h3 {
  margin: 0 0 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 9px 0;
  color: #d5d5d5;
}

.footer-logo {
  position: relative;
  min-width: 0;
  width: min(270px, 100%);
  height: 82px;
  margin-top: 0;
  margin-bottom: 16px;
}

.footer-logo img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 24px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    padding: 16px clamp(24px, 4vw, 60px) 20px;
    background: rgba(3,6,8,.98);
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 36px rgba(0,0,0,.38);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .why {
    grid-template-columns: 1fr;
  }

  .device-wrap {
    min-height: 500px;
  }

  .card-grid,
  .project-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta p,
  .cta .btn {
    grid-column: auto;
    grid-row: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 860px) {
  .about-intro,
  .about-list-grid,
  .contact-panel,
  .contact-notes,
  .featured-build,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    align-items: center;
    flex-direction: row;
    min-height: 104px;
  }

  .logo {
    min-width: 0;
  }

  .logo-image {
    flex-basis: min(260px, calc(100vw - 112px));
    width: min(260px, calc(100vw - 112px));
    height: 92px;
    margin: 6px 0 -18px;
  }

  .logo-image img {
    top: 0;
  }

  .hero {
    min-height: 0;
    padding-top: 46px;
  }

  .page-hero {
    min-height: 0;
    padding: 54px 30px 44px;
  }

  .page-hero h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .about-content {
    padding: 44px 30px;
  }

  .contact-content {
    padding: 44px 30px;
  }

  .contact-panel,
  .contact-notes article,
  .featured-build,
  .project-note {
    padding: 26px;
  }

  .capability-card {
    grid-template-rows: auto 1fr;
  }

  .about-intro p {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .hero-text {
    font-size: 18px;
  }

  .device-wrap {
    min-height: 300px;
  }

  .laptop {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
  }

  .phone {
    display: none;
  }

  .card-grid,
  .project-grid,
  .site-footer,
  .why-points {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .cta .btn {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .hero {
    background-image:
      linear-gradient(90deg, rgba(3,6,8,.96), rgba(3,6,8,.88)),
      radial-gradient(circle at 80% 18%, rgba(237,17,17,.18), transparent 28%);
    background-position: center, center;
    background-size: cover, cover;
  }
}
