:root {
  --ink: #050505;
  --ink-soft: #161616;
  --paper: #ffffff;
  --paper-soft: #f5f5f5;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(5, 5, 5, 0.14);
  --muted: rgba(255, 255, 255, 0.74);
  --muted-dark: rgba(5, 5, 5, 0.66);
  --red: #ee1b24;
  --red-dark: #b90f17;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --max: 1200px;
  --header: 96px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: calc(var(--header) + 24px);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 30px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  color: var(--paper);
}

.brand {
  width: clamp(110px, 11vw, 150px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 760;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav > a,
.services-toggle {
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--red);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  right: -20px;
  left: -20px;
  height: 22px;
}

.services-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.services-toggle svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.services-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 60;
  width: min(360px, calc(100vw - 36px));
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.services-menu a {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.88);
}

.services-menu a:hover,
.services-menu a:focus-visible,
.services-menu a.active {
  border-color: rgba(238, 27, 36, 0.34);
  background: rgba(238, 27, 36, 0.18);
  color: var(--paper);
}

.services-menu span {
  font-size: 0.94rem;
  font-weight: 900;
}

.services-menu small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.3;
}

.clients-menu {
  width: min(360px, calc(100vw - 36px));
}

.clients-showcase-link {
  border-color: rgba(238, 27, 36, 0.2);
}

.clients-showcase-link small {
  color: rgba(255, 255, 255, 0.72);
}

.nav-dropdown:hover .services-menu,
.nav-dropdown:focus-within .services-menu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown:hover .services-toggle svg,
.nav-dropdown:focus-within .services-toggle svg {
  transform: rotate(180deg);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  background: var(--red);
  color: var(--paper);
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 18px 40px rgba(238, 27, 36, 0.28);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-button span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 80svh;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.2) 75%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.9));
}

.hero-content {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 80svh;
  margin: 0 auto;
  padding: calc(var(--header) + 72px) 0 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 54px;
}

.hero-copy {
  width: min(690px, 100%);
}

.hero-copy h1,
.section-heading h2,
.app-promo h2,
.work-copy h2,
.contact-section h2,
.contact-page h1,
.thanks-section h1,
.build-fit h2,
.drone-overview-copy h2,
.drone-impact-heading h2,
.drone-package h2,
.about-hero-card strong,
.origin-section h2,
.founder-panel h2,
.bring-section h2,
.join-field-copy h2,
.video-hero-card strong,
.video-feature-copy h2,
.social-system-copy h2 {
  margin: 0;
  letter-spacing: 0;
  font-weight: 920;
  line-height: 0.96;
}

.hero-copy h1 {
  font-size: clamp(3.6rem, 5.5vw, 5.75rem);
  max-width: 800px;
}

.hero-copy h1 span,
.section-heading h2 span {
  color: var(--red);
}

.hero-copy p {
  width: min(620px, 100%);
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.46;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 860;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

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

.button-primary {
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 18px 42px rgba(238, 27, 36, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff252f;
}

.button-secondary {
  background: rgba(0, 0, 0, 0.18);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.78);
}

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

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark-outline {
  border-color: rgba(5, 5, 5, 0.72);
  background: transparent;
  color: var(--ink);
}

.button-dark-outline:hover,
.button-dark-outline:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.trusted-marquee-section {
  padding: 24px 0 18px;
  background: var(--paper);
}

.trusted-marquee-heading {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 108px)));
  margin: 0 auto 2px;
}

.trusted-marquee-heading p {
  margin: 0;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sponsor-marquee {
  --logo-h: 72px;
  --gap: 56px;
  --speed: 44s;
  --edge-fade: 80px;
  --fade-color: 255, 255, 255;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 0;
  background: transparent;
}

.sponsor-marquee::before,
.sponsor-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: var(--edge-fade);
  pointer-events: none;
}

.sponsor-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(var(--fade-color), 1), rgba(var(--fade-color), 0));
}

.sponsor-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(var(--fade-color), 1), rgba(var(--fade-color), 0));
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  width: max-content;
  padding-right: var(--edge-fade);
  padding-left: var(--edge-fade);
  animation: marquee var(--speed) linear infinite;
  will-change: transform;
}

.sponsor-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(var(--logo-h) + 22px);
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 180ms ease;
}

.logo-link:hover,
.logo-link:focus-visible {
  transform: translateY(-2px);
}

.logo-img {
  width: auto;
  max-width: 300px;
  height: var(--logo-h);
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.92;
  transition:
    filter 250ms ease,
    opacity 250ms ease;
}

.logo-link:hover .logo-img,
.logo-link:focus-visible .logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.service-strip {
  padding: clamp(46px, 6vw, 82px) clamp(18px, 4vw, 54px) clamp(60px, 8vw, 112px);
  background: var(--paper);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(34px, 5vw, 56px);
}

.section-heading.compact {
  text-align: center;
  margin-bottom: 28px;
}

.section-heading p,
.app-promo p:first-child,
.work-copy > p:first-child,
.contact-section > div > p,
.contact-intro > p:first-child,
.thanks-section > p:first-child,
.build-fit > div > p,
.drone-package-copy > p,
.process-section .section-heading p,
.founder-panel > div > p,
.bring-copy p,
.join-field-copy > p:first-child,
.video-feature-copy > p:first-child,
.social-system-copy > p:first-child {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.app-promo h2,
.work-copy h2,
.contact-section h2,
.contact-page h1,
.thanks-section h1,
.build-fit h2,
.drone-overview-copy h2,
.drone-impact-heading h2,
.drone-package h2,
.video-feature-copy h2,
.social-system-copy h2 {
  max-width: 880px;
  font-size: clamp(2.35rem, 5.2vw, 5rem);
}

.section-heading.compact h2 {
  margin: 0 auto;
  max-width: 1000px;
}

.service-grid {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
  padding: 24px;
  border-radius: 6px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    var(--ink-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-card::before {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.22), transparent 16%),
    linear-gradient(135deg, rgba(238, 27, 36, 0.72), transparent 38%),
    linear-gradient(145deg, #272727, #060606);
  opacity: 0.88;
}

.visual-video::before {
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.3), transparent 16%),
    linear-gradient(140deg, rgba(238, 27, 36, 0.7), transparent 34%),
    linear-gradient(160deg, #2d221e, #070707);
}

.visual-social::before {
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(145deg, rgba(238, 27, 36, 0.7), transparent 36%),
    linear-gradient(160deg, #313131, #070707);
}

.visual-web::before {
  background:
    linear-gradient(140deg, rgba(238, 27, 36, 0.72), transparent 32%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 24px),
    linear-gradient(160deg, #242424, #060606);
}

.visual-newsletter::before {
  background:
    linear-gradient(145deg, rgba(238, 27, 36, 0.58), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 20px),
    linear-gradient(160deg, #2c2925, #070707);
}

.visual-drone::before {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.28), transparent 13%),
    linear-gradient(145deg, rgba(238, 27, 36, 0.52), transparent 36%),
    linear-gradient(160deg, #2b3032, #060606);
}

.visual-legacy::before {
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.24), transparent 14%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 2px, transparent 2px 28px),
    linear-gradient(145deg, rgba(238, 27, 36, 0.62), transparent 38%),
    linear-gradient(160deg, #292929, #050505);
}

.visual-app::before {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.2), transparent 14%),
    linear-gradient(145deg, rgba(238, 27, 36, 0.82), transparent 42%),
    linear-gradient(160deg, #1d1d1d, #060606);
}

.service-card::after {
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72));
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 26px 48px rgba(0, 0, 0, 0.28);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon,
.process-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--paper);
}

.service-icon svg,
.process-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card > span:last-child {
  font-size: 1.24rem;
  font-weight: 900;
}

.story-system {
  padding: clamp(70px, 9vw, 130px) clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: var(--paper);
}

.story-system .section-heading h2 {
  max-width: 960px;
}

.system-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}

.system-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.text-link {
  display: inline-flex;
  color: var(--paper);
  font-weight: 860;
  border-bottom: 2px solid var(--red);
  padding-bottom: 6px;
}

.system-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.system-board div {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.system-board span {
  display: block;
  color: var(--red);
  font-weight: 920;
  margin-bottom: 42px;
}

.system-board strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
}

.system-board p {
  color: var(--muted);
  margin: 10px 0 0;
}

.work-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  padding: clamp(70px, 9vw, 128px) clamp(18px, 4vw, 54px);
}

.work-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.work-media video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.work-copy {
  max-width: 590px;
}

.work-copy p:not(:first-child),
.app-promo p:not(:first-child),
.build-fit .fit-list p,
.contact-section p,
.flight-list p,
.app-service-grid p,
.video-service-grid p,
.video-feature-copy p:not(:first-child),
.video-hero-card p,
.social-system-copy p:not(:first-child),
.plan-grid p,
.process-line p,
.origin-copy p,
.origin-board p,
.founder-panel > p,
.serve-grid p,
.bring-list p {
  color: var(--muted-dark);
}

.work-copy p:not(:first-child),
.app-promo p:not(:first-child) {
  font-size: 1.12rem;
}

.app-promo {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.app-promo-copy {
  width: min(540px, 100%);
  justify-self: end;
}

.app-promo p:not(:first-child) {
  color: var(--muted);
}

.device-cluster {
  position: relative;
  min-height: 520px;
}

.laptop-frame {
  position: absolute;
  inset: 34px auto auto 0;
  width: min(760px, 88%);
  padding: 20px 20px 34px;
  border-radius: 24px 24px 16px 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    #101010;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 46px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(-3deg);
}

.laptop-frame::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 10px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.mock-app {
  min-height: 390px;
  display: grid;
  grid-template-columns: 170px 1fr;
  overflow: hidden;
  border-radius: 14px;
  background: #101214;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-app aside {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 26px 18px;
  background: linear-gradient(180deg, #171717, #0d0d0d);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-app aside strong {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.mock-app aside span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.mock-app aside span:first-of-type {
  color: var(--paper);
  background: rgba(238, 27, 36, 0.35);
  padding: 9px 10px;
  border-radius: 5px;
}

.mock-app main {
  padding: 24px;
}

.mock-toolbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 800;
}

.mock-toolbar span:last-child {
  color: var(--red);
}

.mock-video-card {
  position: relative;
  min-height: 205px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
    linear-gradient(135deg, rgba(238, 27, 36, 0.42), transparent),
    #34302d;
}

.mock-video-card button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.44);
  color: var(--paper);
}

.mock-video-card svg,
.phone-video svg {
  width: 24px;
  height: 24px;
  margin: auto;
  fill: currentColor;
}

.mock-video-card strong {
  width: min(300px, 100%);
  color: var(--paper);
  font-size: 1.24rem;
  line-height: 1.08;
}

.mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.mock-row span {
  min-height: 76px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    #181818;
}

.phone-frame {
  position: absolute;
  right: 5%;
  top: 138px;
  width: 205px;
  min-height: 390px;
  padding: 44px 16px 18px;
  border-radius: 28px;
  background: #0c0c0c;
  border: 7px solid #202020;
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.4);
  color: var(--paper);
}

.phone-notch {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 72px;
  height: 17px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #030303;
}

.phone-frame strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.phone-frame > span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.phone-chart {
  height: 98px;
  margin: 18px 0;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(238, 27, 36, 0.92) 16% 21%, transparent 21% 36%, rgba(238, 27, 36, 0.72) 36% 42%, transparent 42% 57%, rgba(238, 27, 36, 0.92) 57% 63%, transparent 63% 78%, rgba(238, 27, 36, 0.68) 78% 84%, transparent 84%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.phone-video {
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.62)),
    linear-gradient(135deg, rgba(238, 27, 36, 0.5), transparent),
    #312a24;
}

.plans-section,
.app-services,
.process-section,
.video-services,
.video-clients {
  padding: clamp(46px, 7vw, 96px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.plan-grid,
.app-service-grid,
.video-service-grid,
.client-story-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.plan-grid article,
.app-service-grid article,
.video-service-grid article,
.client-story-grid article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.plan-grid span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.plan-grid h3,
.app-service-grid h3,
.video-service-grid h3,
.client-story-grid h3,
.process-line h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.02;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(40px, 7vw, 96px);
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: var(--paper);
}

.contact-section > div,
.contact-form,
.work-section > *,
.app-promo > *,
.build-fit > *,
.process-line,
.app-services .section-heading,
.plans-section .section-heading,
.story-system .section-heading,
.contact-section > * {
  width: min(var(--max), 100%);
}

.contact-section h2,
.contact-page h1 {
  max-width: 620px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form .full,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  padding: 14px 15px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.78) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px;
}

.contact-form option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(238, 27, 36, 0.22);
}

.contact-form .button {
  justify-self: start;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-page-section {
  min-height: 100vh;
  align-items: start;
  padding-top: calc(var(--header) + clamp(48px, 7vw, 96px));
}

.contact-intro {
  display: grid;
  align-content: start;
  gap: 22px;
}

.contact-intro > p:not(:first-child),
.thanks-section > p:not(:first-child) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-direct {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.contact-direct span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct a,
.thanks-section a:not(.button) {
  color: var(--paper);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(238, 27, 36, 0.7);
  text-underline-offset: 4px;
}

.contact-form .form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.choice-field {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-field legend {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.choice-grid label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.choice-grid input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  accent-color: var(--red);
}

.choice-grid span {
  color: var(--paper);
  font-size: 0.82rem;
  line-height: 1.2;
}

.thanks-page {
  min-height: 100vh;
  padding: calc(var(--header) + clamp(58px, 8vw, 110px)) clamp(18px, 4vw, 54px) clamp(72px, 9vw, 132px);
  background: var(--ink);
  color: var(--paper);
}

.thanks-section {
  width: min(760px, 100%);
  display: grid;
  gap: 24px;
}

.thanks-section .button {
  justify-self: start;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px clamp(18px, 4vw, 54px);
  background: #000;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer img {
  width: 105px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper);
  font-weight: 850;
}

.app-hero {
  min-height: 80svh;
}

.app-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.84) 36%, rgba(0, 0, 0, 0.34) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2) 44%, rgba(0, 0, 0, 0.9));
}

.app-hero-layout {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 80svh;
  margin: 0 auto;
  padding: calc(var(--header) + 72px) 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
}

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

.hero-device {
  min-height: 560px;
}

.hero-device .laptop-frame {
  width: 92%;
  left: 0;
}

.hero-device .phone-frame {
  right: 0;
}

.about-hero {
  min-height: 82svh;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.82) 45%, rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 78% 28%, rgba(238, 27, 36, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 76px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 120px),
    #050505;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: var(--header) clamp(18px, 4vw, 54px) 0 auto;
  z-index: -1;
  width: min(48vw, 620px);
  opacity: 0.24;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent 0 34px,
      rgba(255, 255, 255, 0.36) 34px 54px,
      transparent 54px 84px
    );
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 78%, transparent);
}

.about-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.14) 48%, rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), transparent 45%, rgba(0, 0, 0, 0.72));
}

.about-hero-layout {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 82svh;
  margin: 0 auto;
  padding: calc(var(--header) + 72px) 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.72fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
}

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

.about-hero-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.about-hero-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-card strong {
  display: block;
  color: var(--paper);
  font-size: clamp(1.85rem, 3.2vw, 3.15rem);
  line-height: 1.02;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-metrics b {
  display: block;
  color: var(--paper);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1;
}

.about-metrics p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.26;
}

.origin-section,
.serve-section,
.team-section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.origin-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.origin-copy p {
  margin: 0 0 22px;
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
}

.origin-board,
.serve-grid,
.team-grid {
  display: grid;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

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

.origin-board article,
.serve-grid article,
.team-grid article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.origin-board span,
.serve-grid span,
.team-grid span {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.origin-board span {
  margin-bottom: 64px;
}

.origin-board h3,
.serve-grid h3,
.team-grid h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.04;
}

.origin-board p,
.serve-grid p {
  margin: 12px 0 0;
}

.founder-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: var(--ink);
  color: var(--paper);
}

.founder-panel {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(42px, 7vw, 90px) clamp(28px, 7vw, 92px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.founder-panel h2 {
  max-width: 540px;
  color: var(--paper);
  font-size: clamp(3.2rem, 6.4vw, 7rem);
  line-height: 0.92;
}

.founder-panel > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
}

.red-panel {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(145deg, rgba(238, 27, 36, 0.92), rgba(108, 5, 10, 0.94)),
    var(--red);
}

.red-panel > div > p,
.red-panel > p {
  color: rgba(255, 255, 255, 0.82);
}

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

.serve-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.serve-section .sponsor-marquee {
  --fade-color: 245, 245, 245;
  width: min(var(--max), 100%);
  margin: -18px auto 52px;
}

.serve-grid article {
  min-height: 260px;
  background: var(--paper);
}

.serve-grid span {
  margin-bottom: 72px;
  color: var(--ink);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: none;
}

.team-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-grid article {
  min-height: 190px;
}

.team-grid span {
  min-height: 42px;
  margin-bottom: 36px;
  color: var(--muted-dark);
}

.team-grid h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.team-section-action {
  width: min(var(--max), 100%);
  margin: 32px auto 0;
}

.bring-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(42px, 8vw, 104px);
  padding: clamp(74px, 10vw, 140px) clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: var(--paper);
}

.bring-section h2 {
  max-width: 620px;
  color: var(--paper);
}

.bring-list {
  display: grid;
  gap: 0;
  align-self: center;
}

.bring-list p {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--paper);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 850;
  line-height: 1.14;
}

.clients-page {
  background: var(--paper);
}

.clients-hero {
  position: relative;
  overflow: hidden;
  min-height: 78svh;
  background:
    radial-gradient(circle at 76% 22%, rgba(238, 27, 36, 0.2), transparent 24%),
    linear-gradient(128deg, #050505 0%, #050505 58%, #190507 100%);
  color: var(--paper);
}

.clients-hero::after {
  content: "";
  position: absolute;
  inset: var(--header) 0 0;
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 84%, transparent);
  pointer-events: none;
}

.clients-hero-layout {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 78svh;
  margin: 0 auto;
  padding: calc(var(--header) + 64px) 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.68fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.clients-hero .hero-copy h1 {
  max-width: 650px;
  font-size: 4.15rem;
}

.clients-hero .hero-copy p {
  margin-top: 22px;
  font-size: 1.16rem;
}

.clients-hero .hero-actions {
  margin-top: 26px;
}

.clients-hero-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.clients-hero-panel > span,
.client-sector-grid span,
.clients-delivery-section > div > p {
  display: block;
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clients-hero-panel strong {
  display: block;
  color: var(--paper);
  font-size: 2rem;
  font-weight: 920;
  line-height: 1.02;
}

.clients-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.clients-hero-stats div {
  min-height: 96px;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.clients-hero-stats b {
  display: block;
  color: var(--paper);
  font-size: 2rem;
  line-height: 1;
}

.clients-hero-stats p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.28;
}

.clients-logo-section,
.clients-sector-section {
  padding: clamp(74px, 9vw, 128px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.clients-logo-section {
  background: var(--paper-soft);
}

.clients-logo-section .sponsor-marquee {
  --fade-color: 245, 245, 245;
  width: min(var(--max), 100%);
  margin: -18px auto 42px;
}

.client-logo-wall {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  background: var(--paper);
}

.client-logo-wall span {
  min-height: 112px;
  display: flex;
  align-items: center;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.client-sector-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.client-sector-grid article {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.client-sector-grid span {
  margin-bottom: 52px;
  color: var(--ink);
  font-size: 1.54rem;
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: none;
}

.client-sector-grid p {
  margin: 0;
  color: var(--muted-dark);
}

.clients-delivery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(42px, 8vw, 104px);
  padding: clamp(74px, 10vw, 140px) clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: var(--paper);
}

.clients-delivery-section h2 {
  max-width: 650px;
  margin: 0;
  color: var(--paper);
  font-size: 4.15rem;
  font-weight: 920;
  line-height: 0.96;
}

.clients-delivery-list {
  display: grid;
  align-self: center;
}

.clients-delivery-list p {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--paper);
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1.14;
}

@media (max-width: 1120px) {
  .clients-hero-layout,
  .clients-delivery-section {
    grid-template-columns: 1fr;
  }

  .client-logo-wall,
  .client-sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .clients-hero-layout {
    width: calc(100% - 36px);
    min-height: auto;
    padding: calc(var(--header) + 54px) 0 44px;
  }

  .clients-hero .hero-copy h1 {
    max-width: min(100%, 360px);
    font-size: 3.25rem;
  }

  .clients-hero-panel strong,
  .clients-delivery-section h2 {
    font-size: 2.45rem;
  }

  .clients-hero-stats,
  .client-logo-wall,
  .client-sector-grid {
    grid-template-columns: 1fr;
  }

  .clients-logo-section,
  .clients-sector-section,
  .clients-delivery-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .client-logo-wall span {
    min-height: 86px;
  }

  .client-sector-grid article {
    min-height: auto;
  }

  .client-sector-grid span {
    margin-bottom: 28px;
  }

  .clients-delivery-list p {
    font-size: 1.18rem;
  }
}

.process-line {
  position: relative;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 77px;
  height: 2px;
  background: var(--red);
}

.process-line article {
  position: relative;
  text-align: center;
  padding: 0 18px;
}

.process-line article > span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 920;
}

.process-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  background: var(--ink);
}

.process-line p {
  max-width: 210px;
  margin: 12px auto 0;
}

.app-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-hero {
  min-height: 82svh;
}

.video-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.26) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.92));
}

.video-hero-layout {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 82svh;
  margin: 0 auto;
  padding: calc(var(--header) + 72px) 0 60px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
}

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

.video-hero-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.video-hero-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-hero-card strong {
  display: block;
  color: var(--paper);
  font-size: clamp(1.85rem, 3.15vw, 3.05rem);
  line-height: 1.02;
}

.video-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.video-stats b {
  display: block;
  color: var(--paper);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1;
}

.video-stats p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.26;
}

.service-trust {
  padding-top: 26px;
}

.video-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-service-grid span,
.client-story-grid span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-service-grid p {
  margin: 12px 0 0;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
  padding: clamp(74px, 9vw, 132px) clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: var(--paper);
}

.video-feature > * {
  width: min(var(--max), 100%);
}

.video-feature-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
  box-shadow: var(--shadow);
}

.video-feature-media video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.video-feature-copy {
  max-width: 590px;
}

.video-feature-copy p:not(:first-child) {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 1.12rem;
}

.video-process {
  background: var(--paper);
}

.process-line.four-step {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-line.four-step::before {
  left: 12%;
  right: 12%;
}

.video-fit {
  background: var(--paper-soft);
}

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

.client-story-grid article {
  min-height: 270px;
}

.client-story-grid span {
  margin-bottom: 54px;
}

.client-story-grid h3 {
  font-size: clamp(1.35rem, 2vw, 1.82rem);
  line-height: 1.08;
}

.work-hero {
  min-height: 84svh;
}

.work-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.24) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.94));
}

.work-hero-layout {
  width: min(var(--max), calc(100vw - clamp(36px, 8vw, 108px)));
  min-height: 84svh;
  margin: 0 auto;
  padding: calc(var(--header) + 72px) 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
}

.work-hero-layout > * {
  max-width: 100%;
  min-width: 0;
}

.work-hero .hero-copy {
  max-width: min(800px, calc(100vw - 36px));
  min-width: 0;
}

.work-hero .hero-copy h1 {
  max-width: min(800px, calc(100vw - 36px));
  overflow-wrap: break-word;
}

.work-hero-card {
  display: grid;
  gap: 24px;
  max-width: min(100%, calc(100vw - 36px));
  min-width: 0;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.work-card-media {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  background: #000;
}

.work-card-media video {
  width: 100%;
  min-width: 0;
  height: 100%;
  object-fit: cover;
}

.work-hero-card strong {
  color: var(--paper);
  font-size: clamp(1.55rem, 2.55vw, 2.45rem);
  font-weight: 920;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.work-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.work-stat-grid b {
  display: block;
  color: var(--paper);
  font-size: 0.92rem;
  line-height: 1;
}

.work-stat-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.work-proof-section {
  padding: clamp(60px, 8vw, 118px) clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: var(--paper);
}

.work-proof-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.work-proof-grid article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-proof-grid span,
.work-lane-copy > p:first-child,
.campaign-feature-copy > p:first-child,
.video-library-copy > p:first-child,
.video-feature-tile span,
.work-routing-grid span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-proof-grid h2,
.work-lane-grid h3,
.campaign-stack strong,
.video-library-grid h3,
.work-routing-grid strong {
  margin: 0;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-weight: 900;
  line-height: 1.04;
}

.work-proof-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.work-lane-section,
.campaign-feature,
.video-library-section,
.work-routing-section {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 54px);
}

.work-lane-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  background: var(--paper);
}

.work-lane-copy,
.campaign-feature-copy,
.video-library-copy {
  width: min(560px, 100%);
}

.work-lane-copy h2,
.campaign-feature-copy h2,
.video-library-copy h2,
.work-routing-section .section-heading h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  font-weight: 920;
  line-height: 0.96;
}

.work-lane-copy p:not(:first-child),
.campaign-feature-copy p:not(:first-child),
.video-library-copy p:not(:first-child),
.work-lane-grid p,
.video-library-grid p {
  color: var(--muted-dark);
}

.work-lane-copy p:not(:first-child),
.campaign-feature-copy p:not(:first-child),
.video-library-copy p:not(:first-child) {
  margin: 22px 0 0;
  font-size: 1.12rem;
}

.work-lane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.work-lane-grid article {
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.work-lane-grid span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-lane-grid p,
.video-library-grid p {
  margin: 12px 0 0;
}

.campaign-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}

.campaign-feature-media {
  min-height: 600px;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  box-shadow: var(--shadow);
}

.campaign-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.campaign-feature-copy p:not(:first-child) {
  color: var(--muted);
}

.campaign-stack {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.campaign-stack article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.campaign-stack span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campaign-stack strong {
  color: var(--paper);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
}

.video-library-section {
  background: var(--paper-soft);
}

.video-library-copy {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(34px, 5vw, 56px);
}

.video-library-copy h2 {
  max-width: 930px;
}

.video-library-copy p:not(:first-child) {
  max-width: 720px;
}

.video-library-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.82fr));
  gap: 14px;
}

.video-library-grid article {
  position: relative;
  min-height: 266px;
  overflow: hidden;
  padding: 28px;
  border-radius: 6px;
  background: var(--paper);
  border: 1px solid var(--line-dark);
}

.video-feature-tile {
  grid-row: span 2;
  min-height: 546px;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  background: #000 !important;
  box-shadow: var(--shadow);
}

.video-feature-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-feature-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.86));
}

.video-feature-tile > div {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
}

.video-feature-tile span {
  margin-bottom: 18px;
}

.video-feature-tile h3 {
  color: var(--paper);
  font-size: clamp(1.75rem, 2.7vw, 2.7rem);
}

.play-mark {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
}

.play-mark svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

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

.work-routing-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.work-routing-grid a {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.work-routing-grid a:hover,
.work-routing-grid a:focus-visible {
  transform: translateY(-4px);
  background: var(--ink);
  color: var(--paper);
}

.work-routing-grid span {
  margin-bottom: 54px;
}

.work-routing-grid a:hover span,
.work-routing-grid a:focus-visible span {
  color: var(--paper);
}

.drone-hero {
  min-height: 86svh;
  background: #000;
}

.drone-hero-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.86);
}

.drone-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 39%, rgba(0, 0, 0, 0.2) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.92));
}

.drone-route {
  position: absolute;
  inset: var(--header) clamp(18px, 4vw, 54px) 0 auto;
  z-index: -1;
  width: min(48vw, 640px);
  pointer-events: none;
}

.drone-route::before {
  content: "";
  position: absolute;
  right: 6%;
  top: 11%;
  width: min(36vw, 520px);
  aspect-ratio: 1.6;
  border: 2px dashed rgba(255, 255, 255, 0.72);
  border-left-color: transparent;
  border-bottom-color: rgba(238, 27, 36, 0.78);
  border-radius: 50%;
  transform: rotate(17deg);
  opacity: 0.72;
}

.drone-route span {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(238, 27, 36, 0.12);
}

.drone-route span:nth-child(1) {
  right: 39%;
  top: 22%;
}

.drone-route span:nth-child(2) {
  right: 4%;
  top: 42%;
}

.drone-route span:nth-child(3) {
  right: 24%;
  top: 67%;
  border-color: var(--paper);
}

.drone-hero-layout {
  width: min(1380px, calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 86svh;
  margin: 0 auto;
  padding: calc(var(--header) + 68px) 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: clamp(38px, 7vw, 104px);
  align-items: end;
}

.drone-hero .hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.6rem, 6.3vw, 7.2rem);
}

.drone-hero .hero-copy p {
  max-width: 620px;
}

.flight-panel {
  position: relative;
  display: grid;
  gap: 0;
  align-self: end;
  max-width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.54);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.flight-panel::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -56px;
  width: 96px;
  height: 260px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.72) 0 0) left top / 22px 1px repeat-y,
    linear-gradient(rgba(255, 255, 255, 0.24) 0 0) left top / 12px 1px repeat-y;
  background-size: 22px 36px, 12px 12px;
  opacity: 0.82;
}

.flight-scope {
  position: relative;
  min-height: 148px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.flight-scope::before,
.flight-scope::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.flight-scope::before {
  width: 94px;
  height: 94px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: inset 0 0 0 23px rgba(255, 255, 255, 0.04);
}

.flight-scope::after {
  width: 136px;
  height: 1px;
  background: rgba(255, 255, 255, 0.64);
}

.flight-scope span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  transform: translate(-50%, -50%);
}

.flight-scope span:first-child {
  width: 1px;
  height: 136px;
  background: rgba(255, 255, 255, 0.64);
}

.flight-scope span:last-child {
  width: 18px;
  height: 18px;
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(238, 27, 36, 0.16);
}

.flight-readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.flight-readout:last-child {
  border-bottom: 0;
}

.flight-readout span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flight-readout strong {
  color: var(--paper);
  font-size: clamp(1.08rem, 1.6vw, 1.38rem);
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.drone-overview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 96px);
  padding: clamp(66px, 8vw, 118px) clamp(18px, 4vw, 54px);
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 20%, rgba(238, 27, 36, 0.08), transparent 22%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.05) 0 1px, transparent 1px 112px),
    var(--paper);
}

.drone-map-mark {
  position: absolute;
  left: -110px;
  top: -70px;
  width: 380px;
  height: 380px;
  pointer-events: none;
  opacity: 0.5;
}

.drone-map-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(238, 27, 36, 0.72);
  border-radius: 50%;
}

.drone-map-mark::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 26px, rgba(5, 5, 5, 0.12) 27px 28px),
    radial-gradient(circle at center, rgba(238, 27, 36, 0.08), transparent 44%);
}

.drone-map-mark span {
  position: absolute;
  right: 88px;
  bottom: 96px;
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.drone-map-mark span:last-child {
  right: 80px;
  bottom: 88px;
  width: 32px;
  height: 32px;
  border-color: rgba(238, 27, 36, 0.34);
}

.drone-overview-copy,
.mission-grid,
.drone-impact-heading,
.impact-grid,
.drone-package-copy,
.flight-list {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
}

.drone-overview-copy {
  align-self: center;
  justify-self: end;
  max-width: 560px;
}

.drone-overview-copy h2 {
  max-width: 560px;
}

.drone-overview-copy p {
  margin: 24px 0 0;
  color: var(--muted-dark);
  font-size: clamp(1.08rem, 1.8vw, 1.26rem);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.mission-grid article {
  position: relative;
  min-height: 330px;
  padding: 28px 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.mission-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 68px;
  width: 38px;
  height: 2px;
  background: var(--ink);
  opacity: 0.42;
}

.mission-grid article:last-child::after {
  display: none;
}

.mission-grid article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 920;
  line-height: 0.9;
}

.mission-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--ink);
}

.mission-icon svg,
.impact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-icon svg {
  stroke-width: 1.7;
}

.mission-grid h3,
.impact-grid h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.82rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.mission-grid p {
  margin: 14px 0 0;
  color: var(--muted-dark);
}

.drone-impact {
  position: relative;
  padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 54px);
  overflow: hidden;
  background: #050505;
  color: var(--paper);
}

.drone-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 27, 36, 0.12), transparent 40%),
    url("assets/drone-hero.png") right center / min(46vw, 620px) auto no-repeat;
  opacity: 0.34;
  filter: grayscale(1) contrast(1.18);
}

.drone-impact::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.94) 58%, rgba(5, 5, 5, 0.4)),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}

.drone-impact-heading {
  margin: 0 auto clamp(28px, 4vw, 46px);
}

.drone-impact-heading h2 {
  color: var(--paper);
}

.impact-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.impact-grid article {
  min-height: 280px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.18);
}

.impact-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 54px;
  color: var(--red);
}

.impact-icon svg {
  stroke-width: 1.9;
}

.impact-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.drone-package {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(40px, 8vw, 102px);
  padding: clamp(74px, 10vw, 140px) clamp(18px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(238, 27, 36, 0.08) 0 1px, transparent 1px 116px),
    var(--paper-soft);
}

.drone-package-copy {
  justify-self: end;
  max-width: 660px;
}

.flight-list {
  display: grid;
  gap: 0;
  align-self: center;
}

.flight-list p {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  font-weight: 820;
  line-height: 1.2;
}

.drone-contact-section {
  background:
    linear-gradient(105deg, #050505 0 56%, #7b050a 56% 100%);
}

.social-hero {
  min-height: 88svh;
  background:
    radial-gradient(circle at 80% 24%, rgba(238, 27, 36, 0.26), transparent 28%),
    #050505;
}

.social-hero::after {
  content: "";
  position: absolute;
  inset: var(--header) 0 0;
  z-index: -1;
  opacity: 0.32;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 82%, transparent);
}

.social-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 42%, rgba(0, 0, 0, 0.46) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2) 44%, rgba(0, 0, 0, 0.95));
}

.social-hero .hero-video {
  opacity: 0.2;
  filter: grayscale(1) contrast(1.3) saturate(0.78);
}

.social-hero-layout {
  width: min(1380px, calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 88svh;
  margin: 0 auto;
  padding: calc(var(--header) + 54px) 0 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.95fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.social-hero .hero-copy {
  width: min(660px, 100%);
}

.social-hero .hero-copy h1 {
  max-width: 660px;
  font-size: clamp(3.2rem, 4.55vw, 5.05rem);
  line-height: 0.98;
  text-wrap: balance;
}

.social-hero-stage {
  position: relative;
  min-width: 0;
  min-height: 610px;
}

.social-feed-phone {
  position: absolute;
  right: 3%;
  top: 50%;
  z-index: 4;
  width: 218px;
  min-height: 416px;
  padding: 46px 15px 16px;
  border: 7px solid #202020;
  border-radius: 32px;
  background: #060606;
  color: var(--paper);
  box-shadow: 0 42px 86px rgba(0, 0, 0, 0.5);
  transform: translateY(-36%) rotateZ(2deg);
}

.social-phone-notch {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 74px;
  height: 17px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

.social-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 880;
}

.social-phone-top span {
  color: rgba(255, 255, 255, 0.58);
}

.social-phone-post {
  min-height: 212px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px;
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.38), transparent 16%),
    linear-gradient(135deg, rgba(238, 27, 36, 0.7), transparent 54%),
    #343434;
}

.social-phone-post span {
  width: max-content;
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--red);
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 920;
  text-transform: uppercase;
}

.social-phone-post strong {
  color: var(--paper);
  font-size: 1.32rem;
  line-height: 0.98;
}

.social-phone-post p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.25;
}

.social-phone-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.social-phone-actions span {
  min-height: 60px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    #171717;
}

.social-calendar-card {
  position: absolute;
  left: 0;
  top: 50%;
  width: min(700px, 88%);
  max-width: 100%;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    #101010;
  box-shadow: var(--shadow);
  transform: translateY(-50%) rotateZ(-1deg);
}

.social-card-head,
.social-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.social-card-head {
  margin-bottom: 18px;
}

.social-card-head strong,
.social-board-top strong {
  color: var(--paper);
  font-size: clamp(1.32rem, 1.9vw, 1.85rem);
  line-height: 1;
}

.social-card-head span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px;
  background: rgba(238, 27, 36, 0.18);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.social-week-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.social-week-strip span {
  min-width: 0;
  min-height: 64px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-week-strip .is-live {
  border-color: rgba(238, 27, 36, 0.72);
  background:
    linear-gradient(180deg, rgba(238, 27, 36, 0.38), rgba(238, 27, 36, 0.1)),
    rgba(255, 255, 255, 0.045);
  color: var(--paper);
}

.social-calendar-list {
  display: grid;
}

.social-calendar-list article,
.social-post-list article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 4px 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-calendar-list article > span,
.social-post-list article > span {
  grid-row: 1 / span 2;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-calendar-list strong,
.social-post-list strong {
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.08;
}

.social-calendar-list p,
.social-post-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.social-signal-card,
.social-approval-card {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(238, 27, 36, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(8, 8, 8, 0.88);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.social-signal-card {
  left: 8%;
  bottom: 34px;
  width: 230px;
  padding: 20px;
}

.social-approval-card {
  right: 13%;
  top: 28px;
  width: 260px;
  padding: 18px;
}

.social-signal-card > span,
.social-approval-card > span,
.social-board-top span,
.social-board-rail strong {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-signal-card strong,
.social-approval-card strong {
  display: block;
  color: var(--paper);
  line-height: 0.95;
}

.social-signal-card strong {
  margin-top: 10px;
  font-size: clamp(2.7rem, 4.5vw, 4.7rem);
}

.social-approval-card strong {
  margin-top: 8px;
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
}

.social-signal-card p,
.social-approval-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  line-height: 1.32;
}

.social-signal-card div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  align-items: end;
  min-height: 74px;
  margin-top: 16px;
}

.social-signal-card i {
  display: block;
  border-radius: 999px 999px 3px 3px;
  background: var(--red);
}

.social-signal-card i:nth-child(1) {
  height: 28px;
  opacity: 0.5;
}

.social-signal-card i:nth-child(2) {
  height: 48px;
  opacity: 0.68;
}

.social-signal-card i:nth-child(3) {
  height: 38px;
  opacity: 0.56;
}

.social-signal-card i:nth-child(4) {
  height: 64px;
  opacity: 0.88;
}

.social-signal-card i:nth-child(5) {
  height: 72px;
}

.social-platform-section,
.social-audience-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(238, 27, 36, 0.055) 0 1px, transparent 1px 118px),
    var(--paper);
}

.social-platform-grid,
.social-audience-grid {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.social-platform-grid article,
.social-audience-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.social-platform-grid .featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 512px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.3), transparent 16%),
    linear-gradient(140deg, rgba(238, 27, 36, 0.82), transparent 42%),
    #161616;
  border-color: rgba(5, 5, 5, 0.28);
  box-shadow: var(--shadow);
}

.social-platform-grid span,
.social-audience-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-platform-grid .featured span {
  color: var(--paper);
}

.social-platform-grid h3,
.social-audience-grid h3,
.social-pulse-stack h3 {
  margin: 0;
  font-size: clamp(1.42rem, 2vw, 1.98rem);
  line-height: 1.04;
}

.social-platform-grid .featured h3 {
  max-width: 420px;
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
  line-height: 0.96;
}

.social-platform-grid p,
.social-audience-grid p,
.social-pulse-stack p {
  margin: 12px 0 0;
  color: var(--muted-dark);
}

.social-platform-grid .featured p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.social-system {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  padding: clamp(74px, 9vw, 132px) clamp(18px, 4vw, 54px);
  background:
    radial-gradient(circle at 18% 82%, rgba(238, 27, 36, 0.26), transparent 30%),
    var(--ink);
  color: var(--paper);
}

.social-system > * {
  width: min(var(--max), 100%);
}

.social-system-copy {
  max-width: 610px;
  justify-self: end;
}

.social-system-copy p:not(:first-child) {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 1.12rem;
}

.social-board {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    #101010;
  box-shadow: var(--shadow);
}

.social-board-rail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 18px;
  background: linear-gradient(180deg, #171717, #080808);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.social-board-rail strong {
  margin-bottom: 12px;
}

.social-board-rail span {
  padding: 8px 10px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 790;
}

.social-board-rail .is-selected {
  background: rgba(238, 27, 36, 0.76);
  color: var(--paper);
}

.social-board-main {
  min-width: 0;
}

.social-board-top {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.social-board-top strong {
  display: block;
  margin-top: 3px;
}

.social-board-top button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 860;
  cursor: pointer;
}

.social-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.social-platforms span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 840;
}

.social-platforms span:first-child {
  border-color: rgba(238, 27, 36, 0.74);
  background: rgba(238, 27, 36, 0.18);
  color: var(--paper);
}

.social-post-list {
  display: grid;
  padding: 4px 24px;
}

.social-board-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.social-board-metrics div {
  min-height: 118px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.social-board-metrics div:last-child {
  border-right: 0;
}

.social-board-metrics b {
  display: block;
  color: var(--paper);
  font-size: clamp(2.1rem, 3.5vw, 3.8rem);
  line-height: 0.9;
}

.social-board-metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 820;
}

.social-pulse-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(38px, 7vw, 92px);
  padding: clamp(70px, 9vw, 124px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.social-pulse-head,
.social-pulse-stack {
  width: min(var(--max), 100%);
}

.social-pulse-head {
  justify-self: end;
  position: sticky;
  top: calc(var(--header) + 24px);
  align-self: start;
}

.social-pulse-head p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-pulse-head h2 {
  margin: 0;
  max-width: 540px;
  font-size: clamp(2.45rem, 4.8vw, 5.2rem);
  font-weight: 920;
  line-height: 0.96;
}

.social-pulse-head h2 span {
  color: var(--red);
}

.social-pulse-stack {
  display: grid;
  gap: 12px;
}

.social-pulse-stack article {
  display: grid;
  grid-template-columns: 62px 68px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper);
}

.social-pulse-stack article > span {
  color: var(--red);
  font-size: 1.42rem;
  font-weight: 920;
  line-height: 1;
}

.social-pulse-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}

.social-pulse-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-fit {
  background:
    linear-gradient(105deg, var(--red) 0 38%, #050505 38% 100%);
  color: var(--paper);
}

.social-fit > div > p {
  color: rgba(255, 255, 255, 0.78);
}

.social-fit .fit-list p {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
}

.social-audience-section {
  background: var(--paper-soft);
}

.social-audience-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.social-audience-grid article {
  grid-column: span 2;
  min-height: 240px;
}

.social-audience-grid article:nth-child(1),
.social-audience-grid article:nth-child(6) {
  grid-column: span 3;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(238, 27, 36, 0.64), transparent 52%),
    #111;
  border-color: rgba(5, 5, 5, 0.28);
}

.social-audience-grid article:nth-child(1) span,
.social-audience-grid article:nth-child(6) span {
  color: var(--paper);
}

.social-audience-grid article:nth-child(1) h3,
.social-audience-grid article:nth-child(6) h3 {
  max-width: 560px;
}

.newsletter-hero {
  min-height: 86svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  padding: calc(var(--header) + 68px) clamp(18px, 7vw, 120px) 58px;
  background:
    linear-gradient(90deg, rgba(238, 27, 36, 0.09) 0 1px, transparent 1px 120px),
    linear-gradient(180deg, rgba(5, 5, 5, 0.05) 0 1px, transparent 1px 72px),
    var(--paper);
  color: var(--ink);
}

.newsletter-hero-copy {
  max-width: 720px;
}

.newsletter-hero h1,
.newsletter-system-heading h2,
.compose-copy h2,
.newsletter-fit h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 920;
  letter-spacing: 0;
  line-height: 0.96;
}

.newsletter-hero h1 {
  font-size: clamp(3.7rem, 6vw, 6.25rem);
}

.newsletter-hero h1 span,
.newsletter-includes h2 span {
  color: var(--red);
}

.newsletter-hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted-dark);
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
  line-height: 1.5;
}

.newsletter-hero .hero-actions {
  margin-top: 28px;
}

.newsletter-desk {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
}

.issue-stack {
  position: relative;
  min-height: 530px;
}

.issue-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.issue-card-main {
  left: 0;
  top: 98px;
  width: min(620px, calc(100% - 210px));
  min-height: 430px;
  padding: clamp(26px, 4vw, 42px);
  z-index: 3;
  background:
    linear-gradient(135deg, rgba(238, 27, 36, 0.08), transparent 38%),
    var(--paper);
}

.issue-card-back {
  right: 0;
  bottom: 86px;
  z-index: 2;
  width: min(340px, 46%);
  min-height: 180px;
  padding: 24px;
  transform: rotate(4deg);
  background: var(--ink);
  color: var(--paper);
}

.issue-card-back.second {
  right: 44px;
  bottom: 0;
  z-index: 1;
  transform: rotate(-3deg);
  background: var(--red);
}

.issue-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 56px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.issue-meta span,
.issue-card-back span,
.inbox-panel span,
.newsletter-system-heading p,
.compose-copy > p:first-child,
.newsletter-fit > div > p {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.issue-meta b {
  color: var(--muted-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.issue-card-main h2 {
  max-width: 480px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.3rem, 3.5vw, 4.1rem);
  font-weight: 920;
  line-height: 0.98;
}

.issue-card-main p {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted-dark);
  font-size: 1.02rem;
}

.issue-lines {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}

.issue-lines span {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.12);
}

.issue-lines span:nth-child(2) {
  width: 76%;
}

.issue-lines span:nth-child(3) {
  width: 48%;
  background: rgba(238, 27, 36, 0.28);
}

.issue-card-back strong {
  display: block;
  margin-top: 44px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.04;
}

.issue-card-back span {
  color: rgba(255, 255, 255, 0.72);
}

.inbox-panel {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
  width: min(250px, 38%);
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.inbox-panel div {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.inbox-panel div:last-child {
  border-bottom: 0;
}

.inbox-panel span {
  display: block;
  margin-bottom: 8px;
}

.inbox-panel strong {
  display: block;
  color: var(--paper);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1;
}

.newsletter-routing {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter-routing div {
  position: relative;
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px clamp(18px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter-routing div:last-child {
  border-right: 0;
  background: var(--red);
}

.newsletter-routing div::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 34px;
  height: 2px;
  background: rgba(255, 255, 255, 0.42);
}

.newsletter-routing div:last-child::after {
  display: none;
}

.newsletter-routing span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.newsletter-routing div:last-child span {
  color: rgba(255, 255, 255, 0.78);
}

.newsletter-routing strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.newsletter-system {
  padding: clamp(74px, 9vw, 132px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.newsletter-system-heading {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(34px, 5vw, 58px);
}

.newsletter-system-heading p,
.compose-copy > p:first-child,
.newsletter-fit > div > p {
  margin: 0 0 8px;
}

.newsletter-system-heading h2,
.compose-copy h2,
.newsletter-fit h2 {
  max-width: 950px;
  font-size: clamp(2.35rem, 5.2vw, 5rem);
}

.newsletter-system-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  border-top: 1px solid var(--line-dark);
}

.newsletter-system-grid article {
  min-height: 210px;
  display: grid;
  grid-template-columns: minmax(160px, 0.46fr) 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
}

.newsletter-system-grid article:nth-child(odd) {
  grid-column: 1 / -1;
}

.newsletter-system-grid article:nth-child(even) {
  grid-column: 2;
}

.newsletter-system-grid span {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 920;
  line-height: 1.02;
}

.newsletter-system-grid p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 1.08rem;
}

.newsletter-compose {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  padding: clamp(74px, 9vw, 132px) clamp(18px, 4vw, 54px);
  background: var(--paper-soft);
}

.compose-board,
.compose-copy {
  width: min(var(--max), 100%);
}

.compose-board {
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

.compose-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.28fr) 1fr;
  gap: 24px;
  padding: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.compose-row:last-child {
  border-bottom: 0;
}

.compose-row span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compose-row strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 0.98;
}

.compose-row p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 1.08rem;
}

.header-row {
  background:
    linear-gradient(135deg, rgba(238, 27, 36, 0.08), transparent 42%),
    var(--paper);
}

.compose-copy {
  max-width: 590px;
}

.compose-copy > p:not(:first-child) {
  margin: 20px 0 0;
  color: var(--muted-dark);
  font-size: 1.12rem;
}

.newsletter-includes {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: var(--paper);
}

.newsletter-includes .section-heading h2 {
  color: var(--paper);
}

.newsletter-include-list {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.newsletter-include-list article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.42fr) 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.newsletter-include-list b {
  color: var(--red);
  font-size: 1.3rem;
}

.newsletter-include-list span {
  color: var(--paper);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.04;
}

.newsletter-include-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.newsletter-fit {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(40px, 8vw, 102px);
  padding: clamp(74px, 10vw, 140px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.newsletter-fit-columns {
  display: grid;
  gap: 0;
  align-self: center;
}

.newsletter-fit-columns p {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 820;
  line-height: 1.18;
}

.build-fit {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(40px, 8vw, 102px);
  padding: clamp(74px, 10vw, 140px) clamp(18px, 4vw, 54px);
  background: var(--paper-soft);
}

.fit-list {
  display: grid;
  gap: 14px;
}

.fit-list p {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 1.12rem;
}

.app-hero {
  min-height: 88svh;
  background:
    radial-gradient(circle at 72% 38%, rgba(238, 27, 36, 0.22), transparent 26%),
    #000;
}

.app-hero .hero-video {
  opacity: 0.18;
  filter: grayscale(1) contrast(1.25);
}

.app-hero::after {
  content: "";
  position: absolute;
  inset: var(--header) 0 0;
  z-index: -1;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, transparent, #000 34%, #000 84%, transparent);
}

.app-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 38%, rgba(0, 0, 0, 0.46) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0.96));
}

.app-hero-layout {
  width: min(1380px, calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 88svh;
  margin: 0 auto;
  padding: calc(var(--header) + 54px) 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(510px, 1.22fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.app-hero .hero-copy h1 {
  max-width: 730px;
  font-size: clamp(3.4rem, 6.2vw, 6.45rem);
}

.app-hero .hero-copy p {
  max-width: 610px;
}

.app-showcase {
  position: relative;
  min-height: 600px;
  perspective: 1200px;
}

.app-laptop-shell {
  position: absolute;
  left: -24px;
  top: 50%;
  width: min(860px, 112%);
  padding: 18px 18px 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px 24px 16px 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    #101010;
  box-shadow: 0 48px 100px rgba(0, 0, 0, 0.54);
  transform: translateY(-49%) rotateX(1deg) rotateZ(0.4deg);
}

.app-laptop-shell::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 11px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.app-dashboard {
  min-height: 455px;
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #0d0d0f;
  color: var(--paper);
}

.app-dashboard-rail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 18px;
  background: linear-gradient(180deg, #171717, #080808);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.app-dashboard-rail strong {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 920;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.app-dashboard-rail span {
  padding: 8px 10px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 760;
}

.app-dashboard-rail .is-selected {
  background: rgba(238, 27, 36, 0.78);
  color: var(--paper);
}

.app-dashboard-main {
  padding: 22px;
}

.app-dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.app-dashboard-topbar span,
.app-metric-grid span,
.app-panel-head span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 780;
}

.app-dashboard-topbar strong {
  display: block;
  margin-top: 2px;
  color: var(--paper);
  font-size: 1.35rem;
  line-height: 1;
}

.app-dashboard-topbar button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 850;
}

.app-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.app-metric-grid div,
.app-chart-panel,
.app-story-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #141414;
}

.app-metric-grid div {
  min-height: 82px;
  padding: 14px;
}

.app-metric-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--paper);
  font-size: 1.58rem;
  line-height: 1;
}

.app-dashboard-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.75fr);
  gap: 12px;
}

.app-chart-panel,
.app-story-panel {
  min-height: 230px;
  padding: 15px;
}

.app-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.app-panel-head strong {
  font-size: 0.86rem;
}

.app-panel-head span {
  color: var(--red);
}

.app-chart-panel svg {
  width: 100%;
  height: 170px;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.chart-fill {
  fill: rgba(238, 27, 36, 0.16);
}

.chart-line {
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.app-story-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.app-story-panel article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
}

.app-story-panel article > span {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(238, 27, 36, 0.68), transparent),
    #292929;
}

.app-story-panel article strong {
  display: block;
  color: var(--paper);
  font-size: 0.74rem;
  line-height: 1.15;
}

.app-story-panel article p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
}

.app-phone-shell {
  position: absolute;
  right: -2%;
  top: 50%;
  width: 214px;
  min-height: 405px;
  padding: 45px 15px 16px;
  border: 7px solid #1f1f1f;
  border-radius: 31px;
  background: #060606;
  color: var(--paper);
  box-shadow: 0 38px 78px rgba(0, 0, 0, 0.48);
  transform: translateY(-31%) rotateZ(1.8deg);
}

.app-phone-notch {
  position: absolute;
  left: 50%;
  top: 11px;
  width: 72px;
  height: 16px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

.app-phone-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 860;
}

.app-phone-top span {
  color: rgba(255, 255, 255, 0.56);
}

.app-phone-hero {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  padding: 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.82)),
    linear-gradient(135deg, rgba(238, 27, 36, 0.5), transparent),
    #2d2d2d;
}

.app-phone-hero span {
  width: max-content;
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--red);
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-phone-hero strong {
  color: var(--paper);
  font-size: 1.24rem;
  line-height: 0.98;
}

.app-phone-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.app-phone-list span {
  min-height: 62px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    #171717;
}

.app-value-strip {
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}

.app-value-intro,
.app-value-list {
  width: min(var(--max), 100%);
}

.app-value-intro {
  justify-self: end;
  padding-right: clamp(18px, 3vw, 40px);
  border-right: 1px solid var(--line-dark);
}

.app-value-intro h2 {
  max-width: 220px;
  margin: 0;
  color: var(--red);
  font-size: clamp(1.08rem, 1.5vw, 1.45rem);
  font-weight: 920;
  line-height: 1.08;
  text-transform: uppercase;
}

.app-value-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2.8vw, 34px);
}

.app-value-list article,
.app-capability-grid article {
  min-width: 0;
}

.app-inline-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--red);
}

.app-inline-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.app-value-list h3,
.app-capability-grid h3 {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.1;
}

.app-value-list p,
.app-capability-grid p {
  margin: 10px 0 0;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.36;
}

.app-process-band {
  padding: clamp(54px, 7vw, 90px) clamp(18px, 4vw, 54px);
  background: #050505;
  color: var(--paper);
}

.app-process-head,
.app-process-grid,
.app-capability-grid {
  width: min(1360px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.app-process-head {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.app-process-head p,
.app-proof-copy > p:first-child {
  margin: 0;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-process-head h2,
.app-proof-copy h2 {
  margin: 0;
  max-width: 660px;
  color: var(--paper);
  font-size: clamp(2.4rem, 4.7vw, 4.85rem);
  font-weight: 920;
  line-height: 0.98;
}

.app-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.app-process-grid article {
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.app-process-grid span {
  display: block;
  margin-bottom: 56px;
  color: var(--red);
  font-size: 1.38rem;
  font-weight: 920;
}

.app-process-grid h3 {
  margin: 0;
  font-size: clamp(1.22rem, 1.7vw, 1.68rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.app-process-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.app-capability-section {
  padding: clamp(62px, 8vw, 108px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.app-capability-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.app-capability-grid article {
  min-height: 260px;
  padding: 26px 22px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.app-proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  background: var(--ink);
  color: var(--paper);
}

.app-proof-media {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #000;
}

.app-proof-media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.86);
}

.app-proof-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 45%, rgba(0, 0, 0, 0.72)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.app-proof-tag {
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  bottom: clamp(24px, 4vw, 50px);
  z-index: 1;
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.app-proof-tag strong {
  color: var(--paper);
  font-size: clamp(1.5rem, 2.7vw, 2.8rem);
  line-height: 1;
}

.app-proof-tag span {
  color: var(--muted);
  font-weight: 820;
}

.app-proof-copy {
  align-self: center;
  padding: clamp(52px, 7vw, 92px) clamp(18px, 6vw, 86px);
}

.app-proof-copy h2 {
  margin-top: 10px;
  max-width: 720px;
}

.app-proof-copy .fit-list {
  margin-top: 28px;
}

.app-proof-copy .fit-list p {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--muted);
}

.app-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.app-proof-stats div {
  min-height: 104px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.app-proof-stats b {
  display: block;
  color: var(--red);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
}

.app-proof-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 780;
}

.app-contact-section {
  background:
    linear-gradient(105deg, var(--red) 0 44%, #050505 44% 100%);
}

.app-contact-section > div > p {
  color: rgba(255, 255, 255, 0.78);
}

.legacy-page {
  background: #050505;
}

.legacy-hero {
  min-height: 84svh;
  background:
    radial-gradient(circle at 72% 30%, rgba(238, 27, 36, 0.18), transparent 24%),
    #000;
}

.legacy-hero .hero-video {
  opacity: 0.22;
  filter: grayscale(1) contrast(1.24) saturate(0.82);
}

.legacy-hero::after {
  content: "";
  position: absolute;
  inset: var(--header) 0 0;
  z-index: -1;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 88%, transparent);
}

.legacy-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.88) 38%, rgba(0, 0, 0, 0.42) 80%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.98));
}

.legacy-hero-layout {
  width: min(1380px, calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 84svh;
  margin: 0 auto;
  padding: calc(var(--header) + clamp(44px, 5vw, 58px)) 0 clamp(42px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
}

.legacy-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(3.45rem, 5.9vw, 6.1rem);
  overflow-wrap: break-word;
}

.legacy-hero-copy p {
  width: 100%;
  max-width: 610px;
  overflow-wrap: break-word;
}

.legacy-archive-stage {
  position: relative;
  min-height: 530px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(238, 27, 36, 0.2), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(5, 5, 5, 0.72);
  background-size: auto, 54px 54px, 54px 54px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.legacy-archive-stage::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(-2.6deg);
}

.legacy-archive-stage::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 74px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.archive-recording {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.archive-recording span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(238, 27, 36, 0.16);
}

.archive-frame {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    #111;
  color: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.main-frame {
  left: 10%;
  top: 17%;
  width: min(430px, 58%);
  min-height: 330px;
  padding: 16px;
  transform: rotate(-3deg);
}

.archive-photo {
  min-height: 220px;
  margin-bottom: 18px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 54% 34%, rgba(255, 255, 255, 0.62), transparent 11%),
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(135deg, rgba(238, 27, 36, 0.28), transparent 34%),
    linear-gradient(160deg, #777, #151515 72%);
  filter: grayscale(1);
}

.main-frame strong,
.note-frame span,
.archive-date b {
  display: block;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-frame p {
  max-width: min(260px, 56%);
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.note-frame {
  right: 8%;
  top: 28%;
  width: min(330px, 44%);
  padding: 24px;
  transform: rotate(3deg);
}

.note-frame p {
  margin: 16px 0 22px;
  color: var(--paper);
  font-size: clamp(1.28rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.06;
}

.note-frame div {
  height: 64px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.22) 0 2px, transparent 2px 14px);
  opacity: 0.7;
}

.archive-filmstrip {
  position: absolute;
  left: 16%;
  right: 12%;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  transform: rotate(1.2deg);
}

.archive-filmstrip span {
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, rgba(238, 27, 36, 0.36), transparent),
    #333;
  filter: grayscale(1);
}

.archive-date {
  position: absolute;
  right: 30px;
  bottom: 118px;
  z-index: 2;
  padding: 16px;
  border-left: 4px solid var(--red);
  background: rgba(0, 0, 0, 0.62);
}

.archive-date b {
  color: var(--paper);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  letter-spacing: 0;
  line-height: 0.9;
}

.archive-date span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.legacy-section-head,
.legacy-care-band,
.legacy-arc-line,
.legacy-type-grid,
.legacy-feature-strip,
.legacy-process-panel {
  width: min(1360px, calc(100% - clamp(36px, 8vw, 108px)));
  margin-right: auto;
  margin-left: auto;
}

.legacy-section-head {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.legacy-section-head p,
.legacy-feature-copy p,
.legacy-preserve-copy > p:first-child {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legacy-section-head h2,
.legacy-care-intro h2,
.legacy-feature-copy h2,
.legacy-preserve-copy h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.45rem, 5.1vw, 5.1rem);
  font-weight: 920;
  line-height: 1.02;
  letter-spacing: 0;
}

.legacy-care-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  padding: clamp(54px, 7vw, 96px) 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 42%),
    #0d0d0d;
  color: var(--paper);
  box-shadow:
    100vw 0 0 #0d0d0d,
    -100vw 0 0 #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legacy-care-intro p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legacy-care-intro h2 {
  color: var(--paper);
}

.legacy-care-copy {
  display: grid;
  gap: 18px;
  padding-left: clamp(24px, 4vw, 54px);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.legacy-care-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  font-weight: 720;
  line-height: 1.5;
}

.legacy-care-copy strong {
  color: var(--paper);
  font-weight: 900;
}

.legacy-story-arc {
  padding: clamp(58px, 8vw, 108px) 0 clamp(70px, 9vw, 124px);
  background:
    radial-gradient(circle at 78% 16%, rgba(238, 27, 36, 0.12), transparent 20%),
    #050505;
  color: var(--paper);
}

.legacy-story-arc .legacy-section-head h2 {
  color: var(--paper);
}

.legacy-arc-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.legacy-arc-line article {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.legacy-arc-line article::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 88px;
  height: 2px;
  background: var(--red);
}

.legacy-arc-line span {
  display: block;
  margin-bottom: 72px;
  color: var(--red);
  font-size: 1.55rem;
  font-weight: 920;
}

.legacy-arc-line h3,
.legacy-type-grid h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 920;
  line-height: 1.02;
  letter-spacing: 0;
}

.legacy-arc-line p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legacy-type-section {
  padding: clamp(70px, 9vw, 132px) 0;
  background: var(--paper);
}

.legacy-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.legacy-type-grid article {
  min-height: 350px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
}

.legacy-type-grid article:first-child {
  background:
    radial-gradient(circle at 82% 18%, rgba(238, 27, 36, 0.32), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    #050505;
  color: var(--paper);
}

.legacy-type-grid span {
  display: block;
  min-height: 44px;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legacy-type-grid article:first-child span {
  color: var(--paper);
}

.legacy-type-grid p {
  margin: 14px 0 0;
  color: var(--muted-dark);
  font-size: 1rem;
}

.legacy-type-grid article:first-child p {
  max-width: 620px;
  color: var(--muted);
}

.legacy-feature-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
  padding: clamp(72px, 9vw, 128px) 0;
  background: #090909;
  color: var(--paper);
}

.legacy-feature-copy {
  position: sticky;
  top: calc(var(--header) + 36px);
}

.legacy-feature-copy h2 {
  color: var(--paper);
}

.legacy-feature-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.legacy-feature-list article {
  min-height: 132px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.legacy-feature-list b {
  color: var(--red);
  font-size: 1.25rem;
  line-height: 1;
}

.legacy-feature-list span {
  color: var(--paper);
  font-size: clamp(1.12rem, 1.8vw, 1.62rem);
  font-weight: 880;
  line-height: 1.2;
}

.legacy-process-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  padding: clamp(74px, 9vw, 132px) 0;
  background: var(--paper-soft);
}

.legacy-process-panel,
.legacy-feature-strip {
  box-shadow:
    100vw 0 0 #090909,
    -100vw 0 0 #090909;
}

.legacy-process-panel {
  box-shadow:
    100vw 0 0 var(--paper-soft),
    -100vw 0 0 var(--paper-soft);
}

.legacy-preserve-board {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(238, 27, 36, 0.16), rgba(255, 255, 255, 0.03)),
    #0f0f0f;
  color: var(--paper);
  box-shadow: var(--shadow);
}

.preserve-top {
  padding: clamp(26px, 4vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.preserve-top span,
.preserve-list span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preserve-top strong {
  display: block;
  max-width: 580px;
  margin-top: 16px;
  color: var(--paper);
  font-size: clamp(2.4rem, 4.8vw, 5.4rem);
  font-weight: 920;
  line-height: 0.94;
}

.preserve-list {
  display: grid;
}

.preserve-list article {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) 1fr;
  gap: 24px;
  padding: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.preserve-list article:last-child {
  border-bottom: 0;
}

.preserve-list p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 820;
  line-height: 1.18;
}

.legacy-preserve-copy {
  min-width: 0;
  max-width: 650px;
}

#legacy-preserve-title {
  scroll-margin-top: calc(var(--header) + 28px);
}

.legacy-preserve-copy h2 {
  font-size: clamp(2.25rem, 3.4vw, 4rem);
  line-height: 1.04;
}

.legacy-preserve-copy p:not(:first-child) {
  margin: 22px 0 30px;
  color: var(--muted-dark);
  font-size: 1.12rem;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.legacy-contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, #050505 0%, #050505 100%);
}

#legacy-contact {
  scroll-margin-top: 24px;
}

.legacy-contact-section::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(38vw, 460px);
  background: linear-gradient(135deg, rgba(238, 27, 36, 0.22), rgba(238, 27, 36, 0.06));
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.legacy-contact-section > * {
  position: relative;
  z-index: 1;
}

.legacy-contact-section > div > p {
  color: rgba(255, 255, 255, 0.78);
}

.legacy-contact-section .legacy-contact-note {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.legacy-contact-section .contact-form input,
.legacy-contact-section .contact-form textarea,
.legacy-contact-section .contact-form select {
  background: rgba(5, 5, 5, 0.42);
  border-color: rgba(255, 255, 255, 0.26);
}

.join-hero {
  min-height: 88svh;
  background:
    radial-gradient(circle at 72% 36%, rgba(238, 27, 36, 0.24), transparent 25%),
    #000;
}

.join-hero .hero-video {
  opacity: 0.3;
  filter: grayscale(1) contrast(1.18) saturate(0.86);
}

.join-hero::after {
  content: "";
  position: absolute;
  inset: var(--header) 0 0;
  z-index: -1;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 86%, transparent);
}

.join-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 38%, rgba(0, 0, 0, 0.42) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0.96));
}

.join-hero-layout {
  width: min(1380px, calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 88svh;
  margin: 0 auto;
  padding: calc(var(--header) + 58px) 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 0.74fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.join-hero .hero-copy h1 {
  max-width: 770px;
  font-size: clamp(3.45rem, 6vw, 6.25rem);
}

.join-dispatch {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.join-dispatch-head {
  padding: clamp(24px, 4vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.join-dispatch-head span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.join-dispatch-head strong {
  display: block;
  max-width: 560px;
  color: var(--paper);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 920;
  line-height: 1.02;
}

.join-dispatch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.join-dispatch-grid div {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.join-dispatch-grid div:first-child {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(238, 27, 36, 0.34), transparent 48%);
}

.join-dispatch-grid b {
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1;
}

.join-dispatch-grid span {
  color: var(--paper);
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
  font-weight: 900;
  line-height: 1.04;
}

.join-signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}

.join-signal-strip article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line-dark);
}

.join-signal-strip article:last-child {
  border-right: 0;
}

.join-signal-strip span,
.join-role-grid span,
.field-board-top span,
.field-board-list span,
.join-process-grid span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.join-signal-strip strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.3vw, 2.3rem);
  font-weight: 920;
  line-height: 1.02;
}

.join-signal-strip p,
.join-role-grid p,
.join-process-grid p {
  margin: 0;
  color: var(--muted-dark);
}

.join-roles-section,
.join-process-section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 4vw, 54px);
  background: var(--paper-soft);
}

.join-role-grid,
.join-process-grid {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.join-role-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.join-role-grid article,
.join-process-grid article {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
}

.join-role-grid span {
  display: block;
  min-height: 38px;
  margin-bottom: 74px;
  color: var(--muted-dark);
}

.join-role-grid h3,
.join-process-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.2vw, 2.22rem);
  font-weight: 920;
  line-height: 1.02;
}

.join-role-grid p,
.join-process-grid p {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.45;
}

.join-field-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
  padding: clamp(74px, 9vw, 132px) clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: var(--paper);
}

.join-field-board,
.join-field-copy {
  width: min(var(--max), 100%);
}

.join-field-board {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(238, 27, 36, 0.14), rgba(255, 255, 255, 0.03)),
    #101010;
  box-shadow: var(--shadow);
}

.field-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.field-board-top strong {
  color: var(--paper);
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  font-weight: 920;
  line-height: 1;
}

.field-board-top span {
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(238, 27, 36, 0.18);
  white-space: nowrap;
}

.field-board-list {
  display: grid;
}

.field-board-list article {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) 1fr;
  gap: 24px;
  padding: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.field-board-list article:last-child {
  border-bottom: 0;
}

.field-board-list p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 820;
  line-height: 1.18;
}

.join-field-copy {
  max-width: 650px;
}

.join-field-copy h2 {
  color: var(--paper);
  font-size: clamp(2.45rem, 5vw, 5.15rem);
}

.join-field-copy p:not(:first-child) {
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.join-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.join-process-grid span {
  display: block;
  margin-bottom: 58px;
  color: var(--red);
  font-size: 1.38rem;
  letter-spacing: 0;
}

.join-contact-section {
  background:
    linear-gradient(105deg, #050505 0 56%, var(--red) 56% 100%);
}

.join-contact-section > div > p {
  color: rgba(255, 255, 255, 0.78);
}

.join-check {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 12px;
}

.contact-form .join-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--red);
}

.join-check span {
  line-height: 1.35;
}

@media (max-width: 1120px) {
  :root {
    --header: 82px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    position: fixed;
    top: 17px;
    right: 18px;
    z-index: 70;
    display: inline-flex !important;
    flex: 0 0 auto;
    margin-left: auto;
    justify-self: end;
    background: rgba(238, 27, 36, 0.96);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 14px 34px rgba(238, 27, 36, 0.28);
    opacity: 1;
    visibility: visible;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    max-height: calc(100svh - var(--header));
    overflow-y: auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px clamp(18px, 4vw, 54px) 24px;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 220ms ease,
      opacity 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
  }

  .nav-dropdown {
    display: block;
  }

  .nav-dropdown::after {
    display: none;
  }

  .services-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .services-toggle svg {
    transform: none !important;
  }

  .services-menu {
    position: static;
    width: 100%;
    padding: 4px 0 12px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .clients-menu {
    width: 100%;
  }

  .services-menu a {
    padding: 12px 0 12px 14px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: transparent;
  }

  .services-menu a:hover,
  .services-menu a:focus-visible,
  .services-menu a.active {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(238, 27, 36, 0.14);
    color: var(--paper);
  }

  .clients-showcase-link {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

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

  .app-hero-layout,
  .join-hero-layout,
  .about-hero-layout,
  .video-hero-layout,
  .social-hero-layout,
  .drone-hero-layout,
  .drone-overview,
  .drone-package,
  .newsletter-hero,
  .app-promo,
  .work-section,
  .video-feature,
  .social-system,
  .join-field-section,
  .social-pulse-section,
  .newsletter-compose,
  .system-layout,
  .origin-layout,
  .founder-section,
  .bring-section,
  .newsletter-fit,
  .build-fit,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .app-promo-copy {
    justify-self: start;
  }

  .social-system-copy {
    justify-self: start;
  }

  .social-hero-stage {
    min-height: 570px;
  }

  .social-calendar-card {
    width: min(680px, 82%);
  }

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

  .social-platform-grid .featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }

  .social-pulse-head {
    position: static;
    justify-self: start;
  }

  .social-pulse-head h2 {
    max-width: 900px;
  }

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

  .social-audience-grid article,
  .social-audience-grid article:nth-child(1),
  .social-audience-grid article:nth-child(6) {
    grid-column: auto;
  }

  .newsletter-desk {
    min-height: 560px;
  }

  .newsletter-system-grid,
  .newsletter-system-grid article,
  .newsletter-system-grid article:nth-child(odd),
  .newsletter-system-grid article:nth-child(even) {
    grid-column: auto;
    grid-template-columns: minmax(180px, 0.5fr) 1fr;
  }

  .work-media,
  .work-media video,
  .video-feature-media,
  .video-feature-media video {
    min-height: 420px;
  }

  .app-service-grid,
  .video-service-grid,
  .client-story-grid,
  .join-signal-strip,
  .join-role-grid,
  .join-process-grid,
  .mission-grid,
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drone-overview-copy,
  .drone-package-copy {
    justify-self: start;
  }

  .drone-route {
    width: min(60vw, 620px);
  }

  .flight-panel {
    justify-self: start;
  }

  .origin-board,
  .serve-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-panel {
    min-height: 440px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-line,
  .process-line.four-step {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 0;
  }

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

  .process-line::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    width: 98px;
  }

  .hero,
  .website-hero,
  .app-hero,
  .join-hero,
  .video-hero,
  .social-hero,
  .drone-hero {
    min-height: auto;
  }

  .hero-content,
  .app-hero-layout,
  .join-hero-layout,
  .about-hero-layout,
  .video-hero-layout,
  .social-hero-layout,
  .drone-hero-layout {
    min-height: auto;
    width: calc(100% - 36px);
    padding: calc(var(--header) + 54px) 0 44px;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 10.4vw, 3.2rem);
    max-width: min(100%, 320px);
  }

  .hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .newsletter-hero {
    min-height: auto;
    padding: calc(var(--header) + 54px) 18px 48px;
  }

  .newsletter-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .newsletter-hero-copy p {
    font-size: 1.03rem;
  }

  .app-hero .hero-copy h1 {
    max-width: min(100%, 320px);
  }

  .join-hero .hero-copy h1 {
    max-width: 100%;
  }

  .social-hero .hero-copy h1 {
    max-width: 100%;
  }

  .social-hero .hero-copy p {
    max-width: 100%;
  }

  .drone-hero .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 3.72rem);
  }

  .hero-copy p {
    max-width: min(100%, 320px);
    font-size: 1.03rem;
  }

  .drone-hero .hero-copy p {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .newsletter-hero .hero-actions .button {
    width: min(100%, 280px);
  }

  .sponsor-marquee {
    --logo-h: 52px;
    --gap: 34px;
    --edge-fade: 52px;
    --speed: 38s;
  }

  .logo-img {
    max-width: 220px;
  }

  .service-grid,
  .plan-grid,
  .app-service-grid,
  .video-service-grid,
  .social-platform-grid,
  .social-audience-grid,
  .client-story-grid,
  .join-signal-strip,
  .join-role-grid,
  .join-process-grid,
  .mission-grid,
  .impact-grid,
  .system-board,
  .origin-board,
  .serve-grid,
  .team-grid,
  .contact-form,
  .process-line,
  .process-line.four-step {
    grid-template-columns: 1fr;
  }

  .flight-panel {
    max-width: 100%;
  }

  .flight-panel::before,
  .drone-route {
    display: none;
  }

  .drone-overview,
  .drone-impact,
  .drone-package {
    padding-right: 18px;
    padding-left: 18px;
  }

  .drone-map-mark {
    left: -180px;
    top: -120px;
  }

  .mission-grid article,
  .impact-grid article {
    min-height: auto;
    padding: 24px;
  }

  .mission-grid article::after {
    display: none;
  }

  .mission-grid article > span,
  .impact-icon {
    margin-bottom: 28px;
  }

  .about-hero-card {
    padding: 22px;
  }

  .about-metrics,
  .video-stats,
  .social-board-metrics {
    grid-template-columns: 1fr;
  }

  .social-hero-stage {
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: calc(100vw - 36px);
    min-height: auto;
    overflow: hidden;
  }

  .social-calendar-card,
  .social-feed-phone,
  .social-signal-card,
  .social-approval-card {
    position: relative;
    inset: auto;
    transform: none;
  }

  .social-feed-phone {
    justify-self: center;
    width: min(100%, 238px);
    min-height: 390px;
  }

  .social-calendar-card {
    order: -1;
    width: min(100%, 340px);
    max-width: 100%;
    overflow: hidden;
    padding: 18px;
  }

  .social-signal-card,
  .social-approval-card {
    width: min(100%, 340px);
    max-width: 100%;
  }

  .social-card-head,
  .social-board-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-week-strip {
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .social-week-strip span {
    min-height: 54px;
    padding: 8px;
    font-size: 0.62rem;
  }

  .social-calendar-list article,
  .social-post-list article,
  .social-pulse-stack article {
    grid-template-columns: 1fr;
  }

  .social-calendar-list article > span,
  .social-post-list article > span {
    grid-row: auto;
  }

  .social-platform-grid .featured,
  .social-audience-grid article,
  .social-audience-grid article:nth-child(1),
  .social-audience-grid article:nth-child(6) {
    grid-column: auto;
    min-height: auto;
  }

  .social-platform-grid article,
  .social-audience-grid article {
    min-height: auto;
    padding: 24px;
  }

  .social-platform-grid span,
  .social-audience-grid span {
    margin-bottom: 28px;
  }

  .social-board {
    grid-template-columns: 1fr;
  }

  .social-board-rail {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: visible;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .social-board-rail strong {
    display: none;
  }

  .social-board-rail span {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
  }

  .social-pulse-head h2 {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }

  .social-pulse-stack article {
    gap: 14px;
    padding: 24px;
  }

  .newsletter-desk {
    min-height: 650px;
  }

  .issue-stack {
    min-height: 560px;
  }

  .issue-card-main {
    inset: 80px 0 auto;
    width: auto;
    min-height: 390px;
    padding: 24px;
  }

  .issue-card-main h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .issue-card-back {
    right: 0;
    bottom: 74px;
    width: 72%;
    min-height: 145px;
  }

  .issue-card-back.second {
    right: auto;
    left: 0;
    bottom: 0;
  }

  .inbox-panel {
    left: 0;
    right: auto;
    top: 0;
    width: min(100%, 310px);
  }

  .newsletter-routing,
  .newsletter-system-grid,
  .newsletter-system-grid article,
  .newsletter-include-list article,
  .newsletter-fit {
    grid-template-columns: 1fr;
  }

  .newsletter-routing div {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .newsletter-routing div::after {
    right: 24px;
  }

  .newsletter-system-grid article {
    min-height: auto;
    gap: 14px;
  }

  .compose-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  .newsletter-include-list article {
    min-height: auto;
    gap: 12px;
  }

  .social-board-metrics div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .social-board-metrics div:last-child {
    border-bottom: 0;
  }

  .origin-board span,
  .serve-grid span,
  .team-grid span,
  .join-role-grid span,
  .video-service-grid span,
  .client-story-grid span {
    margin-bottom: 28px;
  }

  .origin-board article,
  .serve-grid article,
  .team-grid article,
  .join-role-grid article,
  .join-process-grid article,
  .video-service-grid article,
  .client-story-grid article {
    min-height: auto;
    padding: 24px;
  }

  .founder-panel {
    min-height: auto;
    padding: 42px 18px;
  }

  .founder-panel h2 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .bring-section {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .section-heading.compact {
    text-align: left;
  }

  .section-heading h2,
  .app-promo h2,
  .work-copy h2,
  .contact-section h2,
  .build-fit h2,
  .drone-overview-copy h2,
  .drone-impact-heading h2,
  .drone-package h2,
  .bring-section h2,
  .join-field-copy h2,
  .video-feature-copy h2,
  .social-system-copy h2,
  .newsletter-system-heading h2,
  .compose-copy h2,
  .newsletter-fit h2 {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }

  .device-cluster,
  .hero-device {
    min-height: 470px;
  }

  .laptop-frame {
    width: 100%;
    padding: 14px 14px 26px;
    transform: rotate(-1deg);
  }

  .mock-app {
    grid-template-columns: 118px 1fr;
    min-height: 320px;
  }

  .mock-app aside {
    padding: 18px 12px;
    gap: 12px;
  }

  .mock-app aside strong,
  .mock-app aside span,
  .mock-toolbar {
    font-size: 0.7rem;
  }

  .mock-app main {
    padding: 14px;
  }

  .mock-video-card {
    min-height: 170px;
  }

  .mock-row {
    grid-template-columns: 1fr;
  }

  .mock-row span {
    min-height: 42px;
  }

  .phone-frame {
    right: 0;
    top: 200px;
    width: 165px;
    min-height: 300px;
    padding: 38px 12px 14px;
  }

  .process-line article {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 0 18px;
    text-align: left;
    padding: 0;
  }

  .process-line article > span {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin: 0;
  }

  .process-icon {
    grid-column: 1;
    grid-row: 2 / span 2;
    margin: 0;
  }

  .process-line h3,
  .process-line p {
    grid-column: 2;
  }

  .process-line p {
    margin: 8px 0 0;
    max-width: none;
  }

  .contact-form .full,
  .contact-form button,
  .form-status {
    grid-column: auto;
  }

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

  .client-logo-wall {
    grid-template-columns: 1fr;
  }

  .client-logo-wall article:first-child {
    grid-column: auto;
  }

  .field-board-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .app-showcase {
    min-height: 610px;
  }

  .app-laptop-shell {
    left: 0;
    width: min(860px, 94%);
  }

  .app-phone-shell {
    right: 1%;
  }

  .app-value-strip,
  .app-process-head,
  .app-proof-section {
    grid-template-columns: 1fr;
  }

  .app-value-intro {
    justify-self: start;
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .app-value-intro h2 {
    max-width: 620px;
  }

  .app-value-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .app-process-grid,
  .app-capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .app-process-grid article,
  .app-capability-grid article {
    min-height: 220px;
  }

  .app-proof-media,
  .app-proof-media img {
    min-height: 460px;
  }

  .app-contact-section {
    background: var(--ink);
  }
}

@media (max-width: 760px) {
  .app-hero .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 12.5vw, 3.75rem);
  }

  .app-hero .hero-copy p {
    max-width: 100%;
  }

  .app-showcase {
    min-height: 595px;
    margin-top: 8px;
  }

  .app-laptop-shell {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    padding: 12px 12px 24px;
    transform: none;
  }

  .app-dashboard {
    min-height: 360px;
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .app-dashboard-rail {
    gap: 7px;
    padding: 14px 9px;
  }

  .app-dashboard-rail strong,
  .app-dashboard-rail span,
  .app-dashboard-topbar span,
  .app-metric-grid span,
  .app-panel-head span {
    font-size: 0.64rem;
  }

  .app-dashboard-rail span {
    padding: 7px 6px;
  }

  .app-dashboard-main {
    padding: 12px;
  }

  .app-dashboard-topbar {
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .app-dashboard-topbar strong {
    font-size: 1rem;
  }

  .app-dashboard-topbar button {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .app-metric-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .app-metric-grid div {
    min-height: 54px;
    padding: 9px;
  }

  .app-metric-grid strong {
    margin-top: 4px;
    font-size: 1.05rem;
  }

  .app-dashboard-panels {
    grid-template-columns: 1fr;
  }

  .app-chart-panel {
    min-height: 150px;
    padding: 10px;
  }

  .app-chart-panel svg {
    height: 112px;
  }

  .app-story-panel {
    display: none;
  }

  .app-phone-shell {
    right: 0;
    top: 322px;
    width: 154px;
    min-height: 266px;
    padding: 34px 10px 12px;
    border-width: 5px;
    border-radius: 24px;
    transform: rotateZ(1deg);
  }

  .app-phone-notch {
    top: 9px;
    width: 54px;
    height: 12px;
  }

  .app-phone-hero {
    min-height: 125px;
    padding: 10px;
  }

  .app-phone-hero strong {
    font-size: 0.98rem;
  }

  .app-phone-list span {
    min-height: 42px;
  }

  .app-value-strip,
  .app-process-band,
  .app-capability-section,
  .app-proof-copy,
  .app-contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .app-value-list,
  .app-process-grid,
  .app-capability-grid,
  .app-proof-stats {
    grid-template-columns: 1fr;
  }

  .app-process-grid article,
  .app-capability-grid article {
    min-height: auto;
    padding: 24px;
  }

  .app-process-grid span {
    margin-bottom: 28px;
  }

  .app-process-head h2,
  .app-proof-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.75rem);
  }

  .app-proof-media,
  .app-proof-media img {
    min-height: 380px;
  }

.app-proof-media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.78));
  }
}

.team-page {
  background: var(--paper);
}

.team-hero {
  position: relative;
  overflow: hidden;
  min-height: 86svh;
  background:
    linear-gradient(118deg, rgba(238, 27, 36, 0.2) 0 1px, transparent 1px 26%),
    linear-gradient(140deg, #050505 0%, #050505 58%, #170407 100%);
  color: var(--paper);
}

.team-hero::after {
  content: "";
  position: absolute;
  inset: var(--header) 0 0;
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 88%, transparent);
  pointer-events: none;
}

.team-hero-layout {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 86svh;
  margin: 0 auto;
  padding: calc(var(--header) + 70px) 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 520px);
  gap: clamp(38px, 6vw, 82px);
  align-items: end;
}

.team-hero .hero-copy h1 {
  max-width: 790px;
  font-size: clamp(3.45rem, 6.2vw, 6.45rem);
}

.team-hero-board {
  display: grid;
  gap: 18px;
  justify-self: end;
  width: min(100%, 520px);
  padding: clamp(22px, 2.8vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.team-hero-board-copy span,
.team-section-kicker p,
.team-card span,
.team-cta-panel > div:first-child > p {
  display: block;
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-hero-board-copy strong {
  display: block;
  max-width: 620px;
  color: var(--paper);
  font-size: clamp(1.58rem, 2.3vw, 2.32rem);
  font-weight: 920;
  line-height: 1.04;
}

.team-portrait-stack {
  display: grid;
  aspect-ratio: 2 / 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.team-portrait-stack img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(18%) contrast(1.05);
}

.team-portrait-stack img:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.team-portrait-stack img:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.team-portrait-stack img:nth-child(3) {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.team-portrait-stack img:nth-child(4) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.team-portrait-stack img:nth-child(5) {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
  object-position: 58% 50%;
}

.team-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.team-hero-stats div {
  min-height: 86px;
  padding: 15px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.team-hero-stats b {
  display: block;
  color: var(--paper);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1;
}

.team-hero-stats p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.2;
}

.team-intro-band {
  padding: clamp(34px, 5vw, 62px) clamp(18px, 4vw, 54px);
  background: var(--red);
  color: var(--paper);
}

.team-intro-band p {
  width: min(var(--max), 100%);
  margin: 0 auto;
  font-size: clamp(1.35rem, 2.7vw, 2.55rem);
  font-weight: 900;
  line-height: 1.08;
}

.team-roster-section,
.team-cta-section {
  padding: clamp(76px, 9vw, 132px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.team-roster-section-dark {
  background: var(--ink);
  color: var(--paper);
}

.team-section-kicker {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.team-section-kicker h2,
.team-cta-panel h2 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 920;
  line-height: 0.96;
  letter-spacing: 0;
}

.team-roster-section-dark .team-section-kicker h2 {
  color: var(--paper);
}

.team-card-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

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

.operations-grid {
  grid-template-columns: minmax(0, 380px);
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 27, 36, 0.34);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.13);
}

.team-roster-section-dark .team-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: #111;
  box-shadow: none;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--ink-soft);
}

.team-card > div {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.team-card-featured {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
}

.team-card-featured img {
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
}

.team-card-featured > div {
  min-height: 360px;
}

.team-card span {
  min-height: 42px;
  margin-bottom: 28px;
  line-height: 1.24;
}

.team-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 920;
  line-height: 1.02;
}

.team-roster-section-dark .team-card h3 {
  color: var(--paper);
}

.team-card p {
  margin: 18px 0 0;
  color: var(--muted-dark);
}

.team-roster-section-dark .team-card p {
  color: var(--muted);
}

.team-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(238, 27, 36, 0.42);
  text-underline-offset: 5px;
}

.team-roster-section-dark .team-card a {
  color: var(--paper);
}

.team-operations-section {
  padding-top: 0;
}

.team-cta-section {
  background: var(--paper-soft);
}

.team-cta-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 7vw, 92px);
  padding: clamp(34px, 5vw, 62px);
  border-radius: 6px;
  background:
    linear-gradient(105deg, #050505 0 58%, var(--red) 58% 100%);
  color: var(--paper);
}

.team-cta-panel h2 {
  color: var(--paper);
}

.team-cta-copy {
  align-self: end;
}

.team-cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
}

.team-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.team-contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 4px;
  color: var(--paper);
  font-weight: 850;
}

@media (max-width: 1120px) {
  .team-hero-layout,
  .team-section-kicker,
  .team-cta-panel {
    grid-template-columns: 1fr;
  }

  .team-hero-board {
    align-self: stretch;
  }

  .leadership-grid,
  .team-card-grid,
  .creative-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card-featured {
    grid-template-columns: 1fr;
  }

  .team-card-featured img {
    min-height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 760px) {
  .team-hero-layout {
    width: calc(100% - 36px);
    min-height: auto;
    padding: calc(var(--header) + 54px) 0 44px;
  }

  .team-hero .hero-copy h1 {
    max-width: min(100%, 340px);
    font-size: clamp(2.55rem, 12vw, 3.72rem);
  }

  .team-hero .hero-copy p {
    max-width: 100%;
  }

  .team-portrait-stack {
    aspect-ratio: 1.18 / 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .team-portrait-stack img:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .team-portrait-stack img:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .team-portrait-stack img:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .team-portrait-stack img:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .team-portrait-stack img:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .team-hero-stats,
  .leadership-grid,
  .team-card-grid,
  .creative-grid,
  .operations-grid {
    grid-template-columns: 1fr;
  }

  .team-roster-section,
  .team-cta-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .team-section-kicker h2,
  .team-cta-panel h2 {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }

  .team-card > div,
  .team-card-featured > div {
    min-height: auto;
    padding: 22px;
  }

  .team-card span {
    margin-bottom: 24px;
  }

  .team-cta-panel {
    padding: 28px;
    background:
      linear-gradient(155deg, #050505 0 68%, var(--red) 68% 100%);
  }

  .team-contact-links {
    flex-direction: column;
    align-items: stretch;
  }

  .team-contact-links a {
    justify-content: center;
  }
}

@media (max-width: 1120px) {
  .join-contact-section {
    background: var(--ink);
  }
}

@media (max-width: 760px) {
  .join-hero .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 3.72rem);
    overflow-wrap: break-word;
  }

  .join-hero .hero-copy p {
    max-width: 100%;
  }

  .join-dispatch-head {
    padding: 22px;
  }

  .join-dispatch-grid {
    grid-template-columns: 1fr;
  }

  .join-dispatch-grid div:first-child {
    grid-column: auto;
  }

  .join-signal-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .join-signal-strip article:last-child {
    border-bottom: 0;
  }

  .join-roles-section,
  .join-field-section,
  .join-process-section,
  .join-contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .field-board-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .join-process-grid span {
    margin-bottom: 28px;
  }
}

.plans-page {
  background: var(--paper);
  color: var(--ink);
}

.pricing-hero {
  position: relative;
  min-height: 82svh;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.pricing-hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.82) 43%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.16) 46%, rgba(0, 0, 0, 0.92));
}

.pricing-hero-layout {
  width: min(1240px, calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 82svh;
  margin: 0 auto;
  padding: calc(var(--header) + 70px) 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
}

.pricing-hero-copy {
  max-width: 790px;
}

.pricing-hero-copy h1,
.pricing-intro-copy h2,
.plan-card h3,
.addon-card h3,
.pricing-contact-section h2 {
  margin: 0;
  font-weight: 920;
  line-height: 0.96;
}

.pricing-hero-copy h1 {
  font-size: clamp(3.35rem, 6vw, 6.5rem);
}

.pricing-hero-copy p {
  width: min(660px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.46;
}

.pricing-command {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(238, 27, 36, 0.28), transparent 34%),
    rgba(0, 0, 0, 0.66);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
}

.pricing-command::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-command-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.pricing-command-top strong {
  font-size: 1.22rem;
  line-height: 1.05;
}

.pricing-command-top span,
.pricing-command-list small,
.plan-card-head span,
.addon-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-dial {
  position: relative;
  width: 170px;
  height: 170px;
  justify-self: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #0a0a0a 0 48%, transparent 49%),
    conic-gradient(var(--red) 0 68%, rgba(255, 255, 255, 0.16) 68% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.pricing-dial::after {
  content: "$7K";
  position: absolute;
  inset: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #050505;
  color: var(--paper);
  font-size: 2.2rem;
  font-weight: 920;
}

.pricing-dial span {
  position: absolute;
  right: 13px;
  top: 44px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--red);
}

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

.pricing-command-list div {
  display: grid;
  grid-template-columns: 0.7fr 0.8fr;
  gap: 4px 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.pricing-command-list div.active {
  border-color: rgba(238, 27, 36, 0.72);
  background: rgba(238, 27, 36, 0.18);
}

.pricing-command-list span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.pricing-command-list strong {
  justify-self: end;
}

.pricing-command-list small {
  grid-column: 1 / -1;
  text-transform: none;
}

.pricing-trusted {
  border-bottom: 1px solid var(--line-dark);
}

.pricing-intro-section,
.packages-section,
.addons-section,
.comparison-section {
  padding: clamp(68px, 8vw, 124px) clamp(18px, 4vw, 54px);
}

.pricing-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  background: var(--paper);
}

.pricing-intro-copy,
.pricing-intro-proof,
.packages-section .section-heading,
.media-package-grid,
.addons-section .section-heading,
.addon-grid,
.comparison-section .section-heading,
.comparison-table-wrap {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.pricing-intro-copy p {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-intro-copy h2 {
  max-width: 670px;
  font-size: clamp(2.25rem, 4.8vw, 4.7rem);
}

.pricing-intro-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.pricing-intro-proof div {
  min-height: 238px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.pricing-intro-proof strong {
  display: block;
  margin-bottom: 46px;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 920;
}

.pricing-intro-proof span {
  display: block;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 900;
}

.pricing-intro-proof p {
  margin: 0;
  color: var(--muted-dark);
}

.packages-section {
  background:
    linear-gradient(180deg, #ffffff 0 58%, #f3f3f3 58% 100%);
}

.media-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan-card {
  display: flex;
  min-height: 690px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.plan-card.featured {
  transform: translateY(-18px);
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(238, 27, 36, 0.38), transparent 32%),
    #050505;
  color: var(--paper);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
}

.plan-card-head {
  display: grid;
  gap: 14px;
}

.plan-card-head span,
.addon-card span {
  color: var(--red);
}

.plan-card.featured .plan-card-head span,
.plan-card.featured .plan-card-head p {
  color: rgba(255, 255, 255, 0.76);
}

.plan-card h3 {
  font-size: clamp(1.82rem, 2.7vw, 2.55rem);
}

.plan-card-head p,
.addon-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 1rem;
}

.plan-card.featured .plan-card-head p {
  color: rgba(255, 255, 255, 0.72);
}

.plan-price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 28px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.plan-card.featured .plan-price {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.plan-price strong {
  font-size: clamp(2.8rem, 4.6vw, 4.9rem);
  line-height: 0.88;
}

.plan-price span {
  margin-bottom: 8px;
  color: var(--muted-dark);
  font-weight: 850;
}

.plan-card.featured .plan-price span {
  color: rgba(255, 255, 255, 0.66);
}

.plan-card ul,
.addon-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li,
.addon-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted-dark);
  line-height: 1.42;
}

.plan-card.featured li,
.website-card li,
.single-video-card li {
  color: rgba(255, 255, 255, 0.74);
}

.plan-card li::before,
.addon-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 2px;
  background: var(--red);
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.addons-section {
  background: #f3f3f3;
}

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

.addon-card {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 430px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper);
}

.addon-card h3 {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
}

.addon-card > strong {
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  line-height: 0.9;
}

.website-card {
  grid-column: span 2;
  background:
    linear-gradient(145deg, rgba(238, 27, 36, 0.36), transparent 34%),
    #050505;
  color: var(--paper);
}

.website-card p,
.single-video-card p {
  color: rgba(255, 255, 255, 0.74);
}

.website-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.website-tier-grid div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.website-tier-grid strong {
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
  line-height: 0.95;
}

.website-tier-grid span {
  color: rgba(255, 255, 255, 0.66);
  text-transform: none;
}

.single-video-card {
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.28), transparent 38%),
    var(--red);
  color: var(--paper);
}

.single-video-card span {
  color: var(--paper);
}

.single-video-card li::before {
  background: var(--paper);
}

.comparison-section {
  background: var(--ink);
  color: var(--paper);
}

.comparison-section .section-heading p {
  color: var(--red);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  font-weight: 900;
}

.comparison-table thead th {
  color: var(--paper);
  font-size: 1.02rem;
}

.comparison-table tbody th {
  width: 24%;
  color: rgba(255, 255, 255, 0.92);
}

.comparison-table td {
  color: rgba(255, 255, 255, 0.72);
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.pricing-contact-section {
  background:
    linear-gradient(135deg, rgba(238, 27, 36, 0.26), transparent 42%),
    var(--ink);
}

@media (max-width: 1120px) {
  .pricing-hero-layout,
  .pricing-intro-section {
    grid-template-columns: 1fr;
  }

  .pricing-command {
    width: min(620px, 100%);
  }

  .pricing-intro-proof,
  .media-package-grid,
  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card.featured {
    transform: none;
  }

  .plan-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .pricing-hero {
    min-height: auto;
  }

  .pricing-hero-layout {
    min-height: auto;
    width: calc(100% - 36px);
    padding: calc(var(--header) + 54px) 0 44px;
  }

  .pricing-hero-copy h1 {
    max-width: min(100%, 350px);
    font-size: clamp(2.55rem, 11vw, 3.6rem);
  }

  .pricing-hero-copy p {
    max-width: min(100%, 350px);
    font-size: 1.03rem;
  }

  .pricing-command {
    display: none;
  }

  .pricing-command-list div {
    grid-template-columns: 1fr;
  }

  .pricing-command-list strong {
    justify-self: start;
  }

  .pricing-dial {
    width: 146px;
    height: 146px;
  }

  .pricing-dial::after {
    inset: 28px;
    font-size: 1.85rem;
  }

  .pricing-intro-section,
  .packages-section,
  .addons-section,
  .comparison-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .pricing-intro-proof,
  .media-package-grid,
  .addon-grid,
  .website-tier-grid {
    grid-template-columns: 1fr;
  }

  .pricing-intro-proof div,
  .addon-card {
    min-height: auto;
  }

  .pricing-intro-proof strong {
    margin-bottom: 28px;
  }

  .website-card {
    grid-column: auto;
  }

  .plan-card,
  .addon-card {
    padding: 24px;
  }

  .plan-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-table {
    min-width: 0;
    table-layout: fixed;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
    font-size: 0.76rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .comparison-table thead th {
    font-size: 0.78rem;
  }

  .comparison-table tbody th {
    width: auto;
  }
}

@media (max-width: 1120px) {
  .legacy-hero-layout,
  .legacy-care-band,
  .legacy-feature-strip,
  .legacy-process-panel {
    grid-template-columns: 1fr;
  }

  .legacy-archive-stage {
    min-height: 520px;
  }

  .legacy-arc-line,
  .legacy-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legacy-feature-copy {
    position: static;
  }

  .legacy-care-copy {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .legacy-contact-section {
    background: var(--ink);
  }

  .legacy-contact-section::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .legacy-hero {
    min-height: auto;
  }

  .legacy-hero-layout,
  .legacy-section-head,
  .legacy-care-band,
  .legacy-arc-line,
  .legacy-type-grid,
  .legacy-feature-strip,
  .legacy-process-panel {
    width: calc(100% - 36px);
  }

  .legacy-hero-layout {
    min-height: auto;
    padding: calc(var(--header) + 54px) 0 44px;
  }

  .legacy-hero-copy {
    width: 100%;
    min-width: 0;
  }

  .legacy-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .legacy-hero-copy p {
    width: 100%;
    max-width: 100%;
  }

  .legacy-archive-stage {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 500px;
  }

  .archive-recording {
    right: 18px;
    max-width: calc(100% - 36px);
    font-size: 0.68rem;
    line-height: 1.2;
    white-space: normal;
  }

  .main-frame {
    left: 6%;
    top: 18%;
    width: 72%;
    min-height: 300px;
  }

  .archive-photo {
    min-height: 205px;
  }

  .note-frame {
    right: 4%;
    top: 42%;
    width: 62%;
    padding: 18px;
  }

  .note-frame p {
    font-size: 1.18rem;
  }

  .archive-date {
    right: 18px;
    bottom: 112px;
  }

  .archive-filmstrip {
    left: 8%;
    right: 8%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legacy-section-head h2,
  .legacy-care-intro h2,
  .legacy-feature-copy h2,
  .legacy-preserve-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }

  .legacy-preserve-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .legacy-care-band {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .legacy-care-copy p {
    font-size: 1.08rem;
  }

  .legacy-arc-line,
  .legacy-type-grid,
  .legacy-feature-list article,
  .preserve-list article {
    grid-template-columns: 1fr;
  }

  .legacy-arc-line article,
  .legacy-type-grid article {
    min-height: auto;
    padding: 24px;
  }

  .legacy-arc-line article::after {
    top: 72px;
  }

  .legacy-arc-line span,
  .legacy-type-grid span {
    margin-bottom: 54px;
  }

  .legacy-type-grid article:first-child {
    grid-column: auto;
  }

  .legacy-feature-strip,
  .legacy-process-panel {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .legacy-feature-list article {
    min-height: auto;
    gap: 12px;
  }

  .preserve-top,
  .preserve-list article {
    padding: 24px;
  }

  .preserve-top strong {
    font-size: clamp(2.2rem, 12vw, 3.75rem);
  }
}

@media (max-width: 1120px) {
  .work-hero-layout,
  .work-lane-section,
  .campaign-feature {
    grid-template-columns: 1fr;
  }

  .work-hero-card {
    width: 100%;
    max-width: 760px;
  }

  .work-proof-grid,
  .work-lane-grid,
  .video-library-grid,
  .work-routing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-feature-tile {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .campaign-feature-media,
  .campaign-feature-media img {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .work-hero {
    min-height: auto;
  }

  .work-hero-layout {
    min-height: auto;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    padding: calc(var(--header) + 54px) 0 44px;
    overflow: hidden;
  }

  .work-hero .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 2.9rem);
  }

  .work-hero .hero-copy p {
    max-width: 100%;
  }

  .work-hero-card {
    max-width: 100%;
    padding: 18px;
  }

  .work-hero-card strong {
    font-size: clamp(1.45rem, 7.4vw, 2rem);
    overflow-wrap: break-word;
  }

  .work-stat-grid,
  .work-proof-grid,
  .work-lane-grid,
  .video-library-grid,
  .work-routing-grid {
    grid-template-columns: 1fr;
  }

  .work-proof-grid article,
  .work-lane-grid article,
  .video-library-grid article,
  .work-routing-grid a {
    min-height: auto;
    padding: 24px;
  }

  .work-proof-grid span,
  .work-lane-grid span,
  .work-routing-grid span,
  .play-mark {
    margin-bottom: 28px;
  }

  .work-lane-copy h2,
  .campaign-feature-copy h2,
  .video-library-copy h2,
  .work-routing-section .section-heading h2 {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }

  .campaign-feature-media,
  .campaign-feature-media img {
    min-height: 340px;
  }

  .campaign-stack article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .video-feature-tile {
    min-height: 420px !important;
  }
}

.websites-page {
  background: var(--paper);
  color: var(--ink);
}

.website-hero {
  position: relative;
  min-height: 88svh;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(112deg, #ffffff 0 58%, #090909 58% 100%),
    var(--paper);
  color: var(--ink);
}

.website-hero::before,
.website-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.website-hero::before {
  inset: var(--header) 0 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 5, 5, 0.055) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, #000 0 53%, transparent 74%);
}

.website-hero::after {
  left: 0;
  right: 42%;
  bottom: 0;
  z-index: -1;
  height: 12px;
  background: var(--red);
}

.website-hero-layout {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - clamp(36px, 8vw, 108px)));
  min-height: 88svh;
  margin: 0 auto;
  padding: calc(var(--header) + 70px) 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.78fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.website-hero-copy {
  max-width: 800px;
}

.website-hero-copy h1,
.website-section-head h2,
.website-difference-copy h2,
.website-upkeep-copy h2,
.website-price-grid strong,
.website-upkeep-grid strong {
  margin: 0;
  letter-spacing: 0;
  font-weight: 920;
  line-height: 0.94;
}

.website-hero-copy h1,
.website-section-head h2,
.website-difference-copy h2,
.website-upkeep-copy h2,
.website-work-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
}

.website-hero-copy h1 {
  max-width: 790px;
  font-size: 5.25rem;
}

.website-hero-copy h1 span,
.website-section-head h2 span,
.website-difference-copy h2 span {
  color: var(--red);
}

.website-hero-copy > p {
  width: min(650px, 100%);
  margin: 28px 0 0;
  color: var(--muted-dark);
  font-size: 1.24rem;
  line-height: 1.46;
  overflow-wrap: normal;
  word-break: normal;
}

.website-hero .button-secondary {
  border-color: rgba(5, 5, 5, 0.72);
  background: transparent;
  color: var(--ink);
}

.website-hero .button-secondary:hover,
.website-hero .button-secondary:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.website-hero-proof {
  width: min(790px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.72);
}

.website-hero-proof div {
  min-height: 128px;
  padding: 22px 20px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.website-hero-proof strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 2.25rem;
  font-weight: 920;
  line-height: 0.92;
  overflow-wrap: normal;
  word-break: normal;
}

.website-hero-proof span {
  display: block;
  color: var(--muted-dark);
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.34;
  overflow-wrap: normal;
  word-break: normal;
}

.website-command {
  position: relative;
  align-self: end;
  display: grid;
  gap: 16px;
  min-height: 560px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    #0b0b0b;
  color: var(--paper);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  overflow: visible;
}

.website-command::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(238, 27, 36, 0.2), transparent 42%);
  background-size:
    66px 66px,
    66px 66px,
    auto;
  opacity: 0.72;
}

.website-command::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 82px;
  bottom: 64px;
  width: 4px;
  background: var(--red);
  opacity: 0.9;
}

.website-command > * {
  position: relative;
  z-index: 1;
}

.website-command-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.website-command-top strong {
  font-size: 1.08rem;
  font-weight: 920;
}

.website-command-top span,
.website-browser-bar,
.website-screen-hero span,
.website-screen-grid span,
.website-mobile-preview strong {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 840;
  text-transform: uppercase;
}

.website-browser-bar {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 44px;
  gap: 8px;
  padding: 0 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.54);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.website-browser-bar span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.website-browser-bar span:first-child {
  background: var(--red);
}

.website-screen {
  display: grid;
  gap: 14px;
  min-height: 438px;
  padding: 16px 156px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.website-screen-hero {
  position: relative;
  min-height: 246px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, transparent 0 32%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(135deg, rgba(238, 27, 36, 0.82), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 42px),
    #242424;
}

.website-screen-hero strong {
  width: min(360px, 100%);
  margin-top: 12px;
  color: var(--paper);
  font-size: 1.52rem;
  font-weight: 920;
  line-height: 1.03;
}

.website-screen-hero button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.54);
  color: var(--paper);
  transform: translate(-50%, -50%);
}

.website-screen-hero svg {
  width: 23px;
  height: 23px;
  margin: auto;
  fill: currentColor;
}

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

.website-screen-grid div {
  min-height: 84px;
  display: grid;
  align-content: space-between;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
}

.website-screen-grid strong {
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.1;
}

.website-mobile-preview {
  position: absolute;
  right: 14px;
  bottom: 20px;
  z-index: 2;
  width: 150px;
  min-height: 244px;
  padding: 28px 12px 14px;
  border: 7px solid #232323;
  border-radius: 25px;
  background: #050505;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.42);
}

.website-mobile-preview > span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 48px;
  height: 12px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

.website-mobile-preview strong {
  display: block;
  color: var(--paper);
  line-height: 1.1;
}

.website-mobile-preview i {
  display: block;
  height: 132px;
  margin-top: 16px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74)),
    linear-gradient(135deg, rgba(238, 27, 36, 0.72), transparent 54%),
    #2c2c2c;
}

.website-trusted {
  border-bottom: 1px solid var(--line-dark);
  background: #f7f7f7;
}

.website-trusted-inner {
  width: min(1280px, calc(100% - clamp(36px, 8vw, 108px)));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  padding: 24px 0;
}

.website-trusted p {
  margin: 0;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.website-trusted-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.website-trusted-types span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(5, 5, 5, 0.68);
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

.website-hidden-marquee {
  display: none;
}

.website-capabilities,
.website-work-showcase,
.website-pricing-section {
  padding: 96px clamp(18px, 4vw, 54px);
}

.website-section-head,
.website-capability-grid,
.website-work-grid,
.website-difference,
.website-price-grid,
.website-upkeep-section {
  width: min(1280px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.website-section-head {
  margin-bottom: 50px;
}

.website-section-head p,
.website-difference-copy > p:first-child,
.website-upkeep-copy > p:first-child {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.website-section-head h2,
.website-difference-copy h2,
.website-upkeep-copy h2 {
  max-width: 930px;
  font-size: 3.95rem;
}

.website-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.website-capability-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
}

.website-capability-grid span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 920;
}

.website-capability-grid h3 {
  max-width: 220px;
  margin: auto 0 16px;
  font-size: 2rem;
  font-weight: 920;
  line-height: 1.02;
}

.website-capability-grid p {
  margin: 0;
  color: var(--muted-dark);
}

.website-work-showcase {
  background:
    linear-gradient(180deg, #f4f4f4, #ffffff);
}

.website-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.website-work-grid a {
  position: relative;
  min-height: 322px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.website-work-grid a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--red);
  transform: scaleX(0.18);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.website-work-grid a:nth-child(1) {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(238, 27, 36, 0.34), transparent 42%),
    linear-gradient(160deg, #171717, #050505);
  color: var(--paper);
}

.website-work-grid a:hover,
.website-work-grid a:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(238, 27, 36, 0.46);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.website-work-grid a:hover::before,
.website-work-grid a:focus-visible::before {
  transform: scaleX(1);
}

.website-work-grid span {
  display: inline-flex;
  margin-bottom: 50px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.website-work-grid a:nth-child(1) span {
  color: rgba(255, 255, 255, 0.72);
}

.website-work-grid strong {
  display: block;
  max-width: 420px;
  font-size: 2.2rem;
}

.website-work-grid p {
  max-width: 450px;
  margin: 14px 0 26px;
  color: var(--muted-dark);
}

.website-work-grid a:nth-child(1) p {
  color: rgba(255, 255, 255, 0.72);
}

.website-work-grid em {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--ink);
  font-style: normal;
  font-weight: 880;
}

.website-work-grid a:nth-child(1) em {
  color: var(--paper);
}

.website-work-grid em::after {
  content: "";
  width: 18px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skewX(30deg);
}

.website-difference {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 7vw, 92px);
  margin-right: 0;
  margin-left: 0;
  padding:
    108px
    max(clamp(18px, 4vw, 54px), calc((100vw - 1280px) / 2));
  background:
    linear-gradient(135deg, rgba(238, 27, 36, 0.22), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--ink);
  background-size:
    auto,
    78px 78px,
    auto;
  color: var(--paper);
}

.website-difference-copy {
  align-self: start;
  position: sticky;
  top: calc(var(--header) + 28px);
}

.website-difference-copy > p:not(:first-child) {
  max-width: 560px;
  margin: 26px 0 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.website-difference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.website-difference-list article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.website-difference-list article:nth-child(5) {
  grid-column: span 2;
  min-height: 190px;
}

.website-difference-list span {
  display: block;
  margin-bottom: 38px;
  color: var(--red);
  font-weight: 920;
}

.website-difference-list strong {
  display: block;
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1.06;
}

.website-difference-list p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.website-pricing-section {
  background:
    linear-gradient(180deg, #ffffff 0 54%, #f2f2f2 54% 100%);
}

.website-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.website-price-grid article {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.website-price-grid article.featured {
  transform: translateY(-16px);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(238, 27, 36, 0.38), transparent 34%),
    var(--ink);
  color: var(--paper);
  box-shadow: 0 32px 82px rgba(0, 0, 0, 0.28);
}

.website-price-grid span,
.website-upkeep-grid span {
  display: inline-flex;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.website-price-grid article.featured span {
  color: rgba(255, 255, 255, 0.72);
}

.website-price-grid strong {
  margin-top: 34px;
  font-size: 3.9rem;
}

.website-price-grid p {
  margin: 24px 0 28px;
  color: var(--muted-dark);
}

.website-price-grid article.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.website-price-grid .button {
  width: 100%;
  margin-top: auto;
}

.website-upkeep-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  margin-right: 0;
  margin-left: 0;
  padding:
    108px
    max(clamp(18px, 4vw, 54px), calc((100vw - 1280px) / 2));
  background:
    linear-gradient(145deg, rgba(238, 27, 36, 0.24), transparent 42%),
    var(--ink);
  color: var(--paper);
}

.website-upkeep-copy h2 {
  max-width: 660px;
}

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

.website-upkeep-grid article {
  min-height: 315px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.website-upkeep-grid strong {
  display: block;
  margin-top: 38px;
  color: var(--paper);
  font-size: 3.8rem;
}

.website-upkeep-grid p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.websites-page .contact-section {
  background:
    linear-gradient(135deg, rgba(238, 27, 36, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    var(--ink);
  background-size:
    auto,
    78px 78px,
    auto;
}

@media (max-width: 1120px) {
  .website-hero {
    background:
      linear-gradient(180deg, #ffffff 0 63%, #090909 63% 100%),
      var(--paper);
  }

  .website-hero-layout,
  .website-difference,
  .website-upkeep-section {
    grid-template-columns: 1fr;
  }

  .website-hero-layout {
    padding-bottom: 76px;
  }

  .website-hero-copy h1 {
    font-size: 4.4rem;
  }

  .website-command {
    width: min(680px, 100%);
    min-height: 520px;
  }

  .website-difference-copy {
    position: static;
  }

  .website-trusted-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .website-trusted-types {
    justify-content: flex-start;
  }

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

  .website-price-grid article.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .website-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, #ffffff 0 72%, #090909 72% 100%),
      var(--paper);
  }

  .website-hero::after {
    right: 0;
    height: 8px;
  }

  .website-hero-layout {
    min-height: auto;
    width: calc(100% - 36px);
    padding: calc(var(--header) + 54px) 0 48px;
    gap: 38px;
  }

  .website-hero-copy h1 {
    max-width: 100%;
    font-size: 2.72rem;
    overflow-wrap: normal;
    word-break: normal;
  }

  .website-hero-copy > p {
    max-width: 100%;
    font-size: 1.03rem;
  }

  .website-hero-proof,
  .website-screen-grid,
  .website-capability-grid,
  .website-work-grid,
  .website-difference-list,
  .website-price-grid,
  .website-upkeep-grid {
    grid-template-columns: 1fr;
  }

  .website-hero-proof strong {
    font-size: 2rem;
  }

  .website-command {
    min-height: auto;
    padding: 14px;
    overflow: hidden;
  }

  .website-command::after {
    display: none;
  }

  .website-command-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .website-browser-bar {
    font-size: 0.73rem;
  }

  .website-screen-hero {
    min-height: 210px;
  }

  .website-screen {
    min-height: auto;
    padding: 14px;
  }

  .website-mobile-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 168px;
    border-width: 5px;
    border-radius: 18px;
  }

  .website-mobile-preview i {
    height: 82px;
  }

  .website-trusted-inner {
    width: calc(100% - 36px);
  }

  .website-capabilities,
  .website-work-showcase,
  .website-pricing-section,
  .website-difference,
  .website-upkeep-section {
    padding: 70px 18px;
  }

  .website-section-head {
    margin-bottom: 34px;
  }

  .website-section-head h2,
  .website-difference-copy h2,
  .website-upkeep-copy h2 {
    font-size: 2.45rem;
  }

  .website-capability-grid article {
    min-height: auto;
    padding: 24px;
  }

  .website-capability-grid h3 {
    margin-top: 48px;
    font-size: 1.75rem;
  }

  .website-work-grid a,
  .website-work-grid a:nth-child(1) {
    grid-column: auto;
    min-height: auto;
    padding: 24px;
  }

  .website-work-grid span,
  .website-difference-list span {
    margin-bottom: 28px;
  }

  .website-work-grid strong {
    font-size: 1.95rem;
  }

  .website-difference-list article,
  .website-difference-list article:nth-child(5),
  .website-price-grid article,
  .website-upkeep-grid article {
    grid-column: auto;
    min-height: auto;
    padding: 24px;
  }

  .website-price-grid strong,
  .website-upkeep-grid strong {
    font-size: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
