:root {
  color-scheme: dark;
  --bg: #02050c;
  --bg-soft: #060b16;
  --bg-lift: #091425;
  --panel: rgba(9, 20, 37, 0.82);
  --panel-strong: rgba(12, 27, 49, 0.94);
  --ink: #f4f8ff;
  --ink-soft: #d8e7ff;
  --muted: #9aacc5;
  --muted-strong: #b9c9df;
  --blue: #1678ff;
  --blue-strong: #0b5fe6;
  --cyan: #6fdcff;
  --green: #57f0ae;
  --line: rgba(112, 182, 255, 0.18);
  --line-strong: rgba(112, 182, 255, 0.34);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 52px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #02050c 0%, #050914 42%, #030710 100%);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.66;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(79, 162, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(79, 162, 255, 0.038) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 70%);
}

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

img {
  max-width: 100%;
}

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

p,
h1,
h2,
h3,
a,
strong,
span {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 64px;
  border-bottom: 1px solid rgba(118, 198, 255, 0.14);
  background: rgba(2, 6, 15, 0.72);
  backdrop-filter: blur(24px);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(118, 198, 255, 0.22);
  background: rgba(2, 6, 15, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  min-width: 272px;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(118, 198, 255, 0.26);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(17, 36, 67, 0.95), rgba(5, 15, 31, 0.92));
  box-shadow: 0 0 22px rgba(22, 120, 255, 0.34);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(64, 168, 255, 0.55));
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}

.brand-text small {
  color: #8fa8c7;
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #d4e2f8;
  font-size: 15px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 16px rgba(84, 192, 255, 0.58);
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #65caff;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 0 20px;
  border: 1px solid rgba(115, 202, 255, 0.28);
  background: linear-gradient(135deg, #1178ff, #074dcc);
  color: #fff;
  box-shadow: 0 16px 42px rgba(5, 100, 245, 0.34);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  padding: 134px 72px 64px;
  background: #02050c;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 5, 12, 0.98) 0%, rgba(2, 5, 12, 0.92) 31%, rgba(2, 5, 12, 0.58) 48%, rgba(2, 5, 12, 0.08) 73%, transparent 100%),
    linear-gradient(180deg, rgba(2, 5, 12, 0.18) 0%, transparent 52%, #02050c 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--bg) 82%);
}

.hero-visual {
  position: absolute;
  top: 76px;
  right: 34px;
  bottom: 30px;
  left: 46%;
  z-index: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual > img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.96;
  filter: saturate(1.08) contrast(1.04);
  animation: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 0 30px rgba(22, 120, 255, 0.16);
}

h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(92deg, #6ee7ff 0%, #2f8cff 42%, #8a5cff 74%, #d77dff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 34px rgba(67, 146, 255, 0.24), 0 0 18px rgba(166, 91, 255, 0.16);
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: #b8c8dc;
  font-size: 21px;
  line-height: 1.9;
}

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

.button {
  padding: 0 24px;
}

.button.primary {
  border: 1px solid rgba(126, 207, 255, 0.32);
  background: linear-gradient(135deg, #1287ff, #0758dc);
  color: white;
  box-shadow: 0 20px 42px rgba(5, 100, 245, 0.32);
}

.button.secondary {
  border: 1px solid rgba(137, 201, 255, 0.24);
  background: rgba(7, 17, 33, 0.72);
  color: #d9ecff;
  backdrop-filter: blur(14px);
}

.button.secondary:hover {
  border-color: rgba(137, 201, 255, 0.44);
  background: rgba(11, 29, 54, 0.84);
}

.hero-proof {
  display: grid;
  max-width: 700px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(111, 190, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 13, 27, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  padding: 20px 22px;
  border-right: 1px solid rgba(111, 190, 255, 0.16);
}

.hero-proof div:last-child {
  border-right: 0;
}

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

.hero-proof strong {
  color: #fff;
  font-size: 29px;
  line-height: 1.1;
}

.hero-proof span {
  margin-top: 8px;
  color: #95abc6;
  font-size: 14px;
}

.proof-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(112, 182, 255, 0.18);
  border-bottom: 1px solid rgba(112, 182, 255, 0.18);
  background: rgba(4, 10, 21, 0.92);
}

.proof-strip div {
  min-height: 172px;
  padding: 30px 34px;
  border-right: 1px solid rgba(112, 182, 255, 0.14);
  background: linear-gradient(180deg, rgba(13, 29, 54, 0.58), rgba(5, 12, 25, 0.32));
}

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

.proof-strip span {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 19px;
}

.proof-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 104px 72px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: end;
  gap: 56px;
}

.section-heading.split > p {
  margin: 0 0 4px;
}

.trust-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(139, 92, 246, 0.14), transparent 28%),
    linear-gradient(180deg, #02050c 0%, #050914 100%);
}

.intro-section {
  background:
    linear-gradient(180deg, #050914 0%, #060b16 100%);
}

.intro-grid,
.trust-grid,
.service-grid,
.delivery-grid,
.capability-board,
.application-grid,
.assurance-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.feature-card,
.concern-card,
.service-card,
.delivery-card,
.capability-card,
.application-card,
.assurance-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 29, 54, 0.86), rgba(5, 12, 25, 0.92));
  box-shadow: var(--shadow-soft);
}

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

.concern-card,
.delivery-card,
.assurance-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  padding: 28px;
}

.concern-card::before,
.delivery-card::before,
.assurance-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #8a5cff 58%, transparent);
}

.concern-card span,
.delivery-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.feature-card:hover,
.concern-card:hover,
.service-card:hover,
.delivery-card:hover,
.capability-card:hover,
.application-card:hover,
.assurance-card:hover {
  border-color: rgba(111, 220, 255, 0.38);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.34), 0 0 26px rgba(22, 120, 255, 0.12);
}

.card-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(111, 220, 255, 0.24);
  border-radius: 8px;
  background: rgba(15, 47, 88, 0.78);
  color: var(--cyan);
  font-weight: 900;
}

.feature-card p,
.concern-card p,
.service-card p,
.delivery-card p,
.application-card p,
.assurance-card p,
.capability-card li {
  color: var(--muted);
}

.services-section,
.delivery-section,
.applications-section,
.route-section,
.faq-section,
.assurance-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #060b16 0%, #020710 100%);
}

.services-section::before,
.delivery-section::before,
.applications-section::before,
.route-section::before,
.faq-section::before,
.assurance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(80, 160, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(80, 160, 255, 0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.54;
}

.services-section > *,
.delivery-section > *,
.applications-section > *,
.route-section > *,
.faq-section > *,
.assurance-section > * {
  position: relative;
}

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

.service-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 26px;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(87, 240, 174, 0.78), rgba(22, 120, 255, 0.1));
}

.service-card span,
.delivery-card span,
.capability-card span,
.application-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.capability-section {
  background:
    linear-gradient(180deg, #020710 0%, #050914 100%);
}

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

.capability-card {
  min-height: 330px;
  padding: 28px;
}

.capability-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
}

.capability-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(87, 240, 174, 0.7);
}

.studio-section {
  background: linear-gradient(180deg, #050914 0%, #02050c 100%);
}

.studio-wall {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.78fr) minmax(260px, 0.78fr);
  grid-auto-rows: 250px;
  gap: 18px;
}

.studio-photo {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07101e;
  box-shadow: var(--shadow);
}

.studio-photo-main {
  grid-row: span 2;
}

.studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 600ms ease, filter 600ms ease;
}

.studio-photo:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.studio-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(2, 6, 15, 0.88) 100%);
}

.studio-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: white;
}

.studio-photo figcaption span,
.studio-photo figcaption strong {
  display: block;
}

.studio-photo figcaption span {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.studio-photo figcaption strong {
  font-size: 20px;
  line-height: 1.3;
}

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

.application-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
}

.application-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(87, 240, 174, 0));
}

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

.route-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 29, 54, 0.9), rgba(5, 12, 25, 0.94));
  box-shadow: var(--shadow-soft);
}

.route-head {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.route-head span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.route-head strong {
  color: #fff;
  font-size: 25px;
  line-height: 1.25;
}

.route-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.route-card dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(112, 182, 255, 0.14);
}

.route-card dt {
  color: #fff;
  font-weight: 900;
}

.route-card dd {
  margin: 0;
  color: var(--muted);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 29, 54, 0.86), rgba(5, 12, 25, 0.92));
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  list-style-position: outside;
}

.faq-list details[open] summary {
  border-bottom: 1px solid rgba(112, 182, 255, 0.14);
}

.faq-list p {
  margin: 0;
  padding: 20px 26px 24px;
  color: var(--muted);
}

.process-section {
  padding: 104px 72px;
  background:
    linear-gradient(135deg, #02050c 0%, #071325 52%, #02050c 100%);
  color: #fff;
}

.process-section .eyebrow,
.process-section h2 {
  color: #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(118, 198, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 34, 62, 0.84), rgba(5, 12, 25, 0.82));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

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

.process-list span {
  margin-bottom: 42px;
  color: #75d8ff;
  font-size: 30px;
  font-weight: 900;
}

.process-list strong {
  margin-bottom: 12px;
  font-size: 20px;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(224, 237, 255, 0.72);
  font-size: 14px;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  align-items: center;
  gap: 42px;
  overflow: hidden;
  padding: 96px 72px;
  border-top: 1px solid rgba(112, 182, 255, 0.14);
  background:
    linear-gradient(125deg, #050914 0%, #071325 56%, #02050c 100%);
}

.contact-glow {
  display: none;
}

.contact-content,
.contact-panel {
  position: relative;
}

.contact-content h2 {
  max-width: 780px;
  margin-bottom: 18px;
}

.contact-content p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-panel {
  padding: 30px;
}

.contact-panel span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.contact-panel strong {
  display: block;
  margin: 10px 0 14px;
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
}

.contact-panel p {
  margin-bottom: 22px;
  color: var(--muted);
}

.contact-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}

.contact-checklist span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(118, 198, 255, 0.2);
  border-radius: 8px;
  background: rgba(10, 27, 50, 0.78);
  color: #d9ecff;
  font-size: 13px;
  font-weight: 900;
}

.contact-panel .button {
  width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 72px;
  border-top: 1px solid rgba(112, 182, 255, 0.14);
  background: #02050c;
  color: rgba(224, 237, 255, 0.68);
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong,
.site-footer a {
  color: white;
}

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

.is-enhanced .reveal {
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 620ms ease, transform 620ms ease;
}

.is-enhanced .hero-content.reveal,
.is-enhanced .proof-strip.reveal {
  transform: none;
  opacity: 1;
}

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

@keyframes visualDrift {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025) translate3d(8px, -6px, 0);
  }
}

@media (max-width: 1440px) {
  .site-header,
  .section,
  .process-section,
  .contact-section,
  .site-footer {
    padding-left: 52px;
    padding-right: 52px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 38px;
  }

  .hero {
    min-height: 760px;
    padding-left: 52px;
    padding-right: 52px;
  }

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

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

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

  .service-card,
  .capability-card {
    min-height: 250px;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 780px;
    padding-top: 124px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(2, 5, 12, 0.94) 0%, rgba(2, 5, 12, 0.76) 50%, rgba(2, 5, 12, 0.46) 100%),
      linear-gradient(90deg, rgba(2, 5, 12, 0.85), transparent 100%);
  }

  .hero-visual > img {
    object-position: center;
    opacity: 0.78;
  }

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

  .proof-strip,
  .trust-grid,
  .intro-grid,
  .delivery-grid,
  .route-grid,
  .application-grid,
  .assurance-grid,
  .studio-wall,
  .process-list,
  .contact-section,
  .section-heading.split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-photo-main {
    grid-row: auto;
    grid-column: span 2;
  }

  .process-list {
    gap: 16px;
  }
}

@media (max-width: 760px) {
  body,
  main {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    min-height: 66px;
    padding: 10px 18px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text small,
  .nav-cta {
    display: none;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .hero,
  .section,
  .process-section,
  .contact-section,
  .site-footer {
    max-width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
    overflow-x: hidden;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 46px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(2, 5, 12, 0.98) 0%, rgba(2, 5, 12, 0.87) 52%, rgba(2, 5, 12, 0.7) 100%);
  }

  .hero-visual > img {
    object-position: center;
    opacity: 0.58;
  }

  .hero-content {
    min-width: 0;
    max-width: calc(100vw - 40px);
  }

  .section-heading,
  .section-heading.split,
  .contact-content,
  .contact-panel,
  .hero-proof,
  .proof-strip,
  .trust-grid,
  .intro-grid,
  .service-grid,
  .delivery-grid,
  .capability-board,
  .application-grid,
  .route-grid,
  .assurance-grid,
  .studio-wall,
  .process-list {
    min-width: 0;
    max-width: 100%;
  }

  .section-heading > *,
  .section-heading.split > *,
  .hero-proof > *,
  .proof-strip > *,
  .trust-grid > *,
  .intro-grid > *,
  .service-grid > *,
  .delivery-grid > *,
  .capability-board > *,
  .application-grid > *,
  .route-grid > *,
  .assurance-grid > *,
  .studio-wall > *,
  .process-list > *,
  .contact-section > * {
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.12;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 19px;
  }

  .hero-copy,
  .contact-content p:not(.eyebrow),
  .section-heading > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 14px;
  }

  .hero-copy {
    line-height: 1.78;
    max-width: calc(100vw - 40px);
  }

  p,
  li,
  h1,
  h2,
  h3,
  strong,
  span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
    white-space: normal;
  }

  .section-heading h2,
  .section-heading > p:not(.eyebrow),
  .hero-copy,
  .proof-strip p,
  .feature-card p,
  .concern-card p,
  .service-card p,
  .delivery-card p,
  .route-card dd,
  .faq-list p,
  .application-card p,
  .assurance-card p,
  .contact-content p:not(.eyebrow),
  .contact-panel p {
    width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }

  .proof-strip p,
  .section-heading > p:not(.eyebrow),
  .feature-card p,
  .concern-card p,
  .service-card p,
  .delivery-card p,
  .route-card dd,
  .faq-list p,
  .capability-card li,
  .application-card p,
  .assurance-card p,
  .contact-content p:not(.eyebrow),
  .contact-panel p {
    font-size: 14px;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .hero-actions,
  .hero-proof,
  .proof-strip,
  .trust-grid,
  .intro-grid,
  .service-grid,
  .delivery-grid,
  .capability-board,
  .application-grid,
  .route-grid,
  .assurance-grid,
  .studio-wall,
  .process-list,
  .contact-section,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-proof div,
  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(112, 182, 255, 0.14);
  }

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

  .hero-proof strong {
    font-size: 26px;
  }

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

  .section-heading {
    margin-bottom: 28px;
  }

  .process-section,
  .contact-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .studio-photo-main {
    grid-column: auto;
  }

  .studio-wall {
    grid-auto-rows: 220px;
  }

  .site-footer {
    display: block;
  }

  .process-list li,
  .feature-card,
  .concern-card,
  .service-card,
  .delivery-card,
  .route-card,
  .capability-card,
  .application-card,
  .assurance-card {
    min-height: auto;
  }

  .process-list span {
    margin-bottom: 22px;
  }

  .footer-links {
    margin-top: 18px;
    text-align: left;
  }

  .route-card dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .route-head strong {
    font-size: 22px;
  }

  .faq-list summary {
    padding: 20px;
    font-size: 17px;
  }

  .faq-list p {
    padding: 18px 20px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
