:root {
  --ink: #102236;
  --muted: #637383;
  --blue-deep: #062b5f;
  --blue-ink: #0a3f87;
  --blue: #0e6ae8;
  --teal: #17b6b1;
  --gold: #f5c86a;
  --bg: #f7fbff;
  --surface: #ffffff;
  --line: #d8e5ee;
  --shadow: 0 18px 42px rgba(10, 35, 63, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

img {
  max-width: 100%;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  padding: 18px clamp(28px, 6vw, 96px);
  color: var(--ink);
  background: rgba(247, 251, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(157, 178, 196, 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.company-brand {
  position: relative;
  max-width: 54vw;
  color: #0a4fae;
  font-size: clamp(26px, 2.05vw, 38px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 10px 24px rgba(14, 106, 232, 0.12);
}

.company-brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  box-shadow: 0 0 18px rgba(23, 182, 177, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 15px;
  font-weight: 750;
}

.site-nav a {
  opacity: 0.76;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a.active {
  color: var(--blue-ink);
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: center;
  padding: 156px clamp(20px, 6vw, 90px) 108px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fbfdff 0%, #edf8fb 54%, #e7f2f7 100%);
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: 72% 54%;
  animation: hero-image-breathe 24s ease-in-out infinite;
}

.hero-line-flow {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.52;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 16%,
    rgba(0, 0, 0, 0.24) 36%,
    #000 64%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 16%,
    rgba(0, 0, 0, 0.24) 36%,
    #000 64%,
    #000 100%
  );
}

.hero-line-flow::before,
.hero-line-flow::after {
  content: "";
  position: absolute;
  inset: -12%;
  transform: translate3d(0, 0, 0);
}

.hero-line-flow::before {
  opacity: 0.42;
  background:
    repeating-linear-gradient(
      104deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.18) 19px,
      rgba(54, 201, 213, 0.16) 20px,
      transparent 23px,
      transparent 46px
    ),
    repeating-linear-gradient(
      154deg,
      transparent 0 34px,
      rgba(255, 231, 170, 0.13) 35px,
      transparent 38px,
      transparent 72px
    );
  background-size:
    240px 190px,
    340px 260px;
  filter: blur(0.25px);
  animation: fine-thread-flow 20s linear infinite;
}

.hero-line-flow::after {
  opacity: 0.36;
  background:
    linear-gradient(
      112deg,
      transparent 0%,
      transparent 34%,
      rgba(255, 255, 255, 0.18) 42%,
      rgba(68, 215, 226, 0.2) 48%,
      rgba(255, 229, 164, 0.12) 53%,
      transparent 62%,
      transparent 100%
    ),
    repeating-linear-gradient(
      96deg,
      transparent 0 26px,
      rgba(255, 255, 255, 0.1) 27px,
      transparent 30px,
      transparent 58px
    );
  background-size:
    260% 100%,
    420px 220px;
  -webkit-mask-image: linear-gradient(
    100deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 24%,
    #000 42%,
    #000 78%,
    transparent 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    100deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 24%,
    #000 42%,
    #000 78%,
    transparent 96%,
    transparent 100%
  );
  animation: fine-thread-shimmer 12s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  color: var(--ink);
}

@keyframes fine-thread-flow {
  0%,
  100% {
    transform: translate3d(-1.6%, 0.6%, 0) scale(1.01);
    opacity: 0.28;
  }

  50% {
    transform: translate3d(1.4%, -0.7%, 0) scale(1.012);
    opacity: 0.46;
  }
}

@keyframes fine-thread-shimmer {
  0% {
    background-position:
      118% 0,
      0 0;
    opacity: 0.16;
  }

  42%,
  64% {
    opacity: 0.42;
  }

  100% {
    background-position:
      -68% 0,
      120px 34px;
    opacity: 0.14;
  }
}

@keyframes hero-image-breathe {
  0%,
  100% {
    transform: scale(1);
    filter: saturate(1) brightness(1);
  }

  50% {
    transform: scale(1.012);
    filter: saturate(1.04) brightness(1.015);
  }
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font-size: clamp(62px, 12vw, 148px);
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-title {
  position: relative;
  display: block;
  width: min(900px, 72vw);
  margin: 0;
  max-width: 100%;
  line-height: 0;
}

.brand-title img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(5, 29, 56, 0.15));
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.primary-link,
.secondary-link,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.primary-link,
.lead-form button {
  color: #fff;
  background: var(--blue);
}

.primary-link:hover,
.lead-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14, 106, 232, 0.22);
}

.secondary-link {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.secondary-link:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 106, 232, 0.28);
  box-shadow: 0 12px 26px rgba(10, 35, 63, 0.1);
}

.page-main {
  min-height: calc(100vh - 78px);
  padding-top: 108px;
  background: #fff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px clamp(20px, 6vw, 90px) 62px;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.96) 0%, rgba(247, 251, 255, 0.82) 48%, rgba(232, 247, 251, 0.7) 100%),
    url("./assets/hero-yqq-cloud-circuit.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  color: #071827;
  font-size: clamp(44px, 6.8vw, 82px);
  font-weight: 950;
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  width: min(780px, 100%);
  margin: 24px 0 0;
  color: #536b7e;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 560;
  line-height: 1.8;
}

.product-signal {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: 58px clamp(20px, 6vw, 90px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.product-promise {
  display: block;
  padding: 76px clamp(20px, 6vw, 90px);
}

.product-promise > div {
  width: min(1080px, 100%);
}

.product-promise h2 {
  width: min(980px, 100%);
  margin: 0;
  color: #071827;
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 950;
  line-height: 1.13;
  letter-spacing: 0;
}

.product-signal p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.section {
  padding: 82px clamp(20px, 6vw, 90px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr);
  gap: 42px;
  align-items: start;
  background: #fff;
}

.intro-copy p,
.section-head p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.about-system {
  background: #f6fbff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 16px;
}

.principle-grid article {
  min-height: 230px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(10, 35, 63, 0.08);
}

.principle-grid span,
.flow-steps span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.principle-grid h3 {
  margin-top: 34px;
}

.principle-grid p,
.boundary-list p,
.flow-steps p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-boundary {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.boundary-list {
  display: grid;
  gap: 16px;
  padding-left: clamp(18px, 3vw, 34px);
  border-left: 3px solid rgba(23, 182, 177, 0.32);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head p {
  width: min(520px, 100%);
}

.geo-system {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 250, 255, 0.98)),
    url("./assets/hero-yqq-cloud-circuit.png") center right / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.geo-framework {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 12px;
}

.geo-framework article {
  min-height: 280px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(187, 211, 226, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(10, 35, 63, 0.08);
}

.geo-framework span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
}

.geo-framework h3 {
  margin-top: 34px;
  color: #08203a;
  font-size: 22px;
}

.geo-framework p {
  margin: 16px 0 0;
  color: #5d7181;
  line-height: 1.74;
}

.geo-entity {
  border-bottom: 1px solid var(--line);
}

.geo-service-band {
  background: #f2f9fd;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.geo-service-grid,
.deliverable-list,
.faq-list {
  display: grid;
  gap: 16px;
}

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

.geo-service-grid article,
.deliverable-list article,
.faq-list article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(10, 35, 63, 0.08);
}

.geo-service-grid span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
}

.geo-service-grid h3 {
  margin-top: 34px;
  font-size: 24px;
}

.geo-service-grid p,
.deliverable-list p,
.faq-list p {
  margin: 14px 0 0;
  color: #5d7181;
  line-height: 1.76;
}

.geo-deliverables {
  background: #fff;
}

.deliverable-list {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.deliverable-list strong {
  display: block;
  color: #0a3f87;
  font-size: 20px;
  line-height: 1.35;
}

.geo-faq-section {
  background:
    linear-gradient(180deg, rgba(246, 251, 255, 0.98), rgba(255, 255, 255, 0.98)),
    url("./assets/hero-yqq-cloud-circuit.png") center right / cover no-repeat;
  border-top: 1px solid var(--line);
}

.faq-list {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.faq-list h3 {
  color: #08203a;
}

.capability-grid,
.scene-grid,
.case-list {
  display: grid;
  gap: 16px;
}

.capability-grid {
  grid-template-columns: repeat(3, minmax(230px, 1fr));
}

.capability-card,
.case-list article {
  min-height: 240px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  align-content: space-between;
  gap: 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.capability-card {
  min-height: 430px;
}

.capability-card:hover,
.case-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 182, 177, 0.34);
  box-shadow: 0 22px 46px rgba(10, 35, 63, 0.14);
}

.capability-card span,
.case-list span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
}

.capability-card p,
.case-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.capability-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.capability-card dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(216, 229, 238, 0.88);
}

.capability-card dt {
  color: var(--blue-ink);
  font-size: 13px;
  font-weight: 900;
}

.capability-card dd {
  margin: 0;
  color: #566f82;
  font-size: 14px;
  line-height: 1.68;
}

.skill-flow-section {
  background: #f6fbff;
  border-top: 1px solid var(--line);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 12px;
}

.flow-steps article {
  min-height: 220px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-steps strong {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 20px;
}

.band,
.scene-section {
  background: #eaf5fb;
}

.scene-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}

.scene-grid article {
  min-height: 330px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(10, 35, 63, 0.08);
  font-weight: 500;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.scene-grid span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.scene-grid h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
}

.scene-grid p {
  margin: 0;
  color: #5d7181;
  line-height: 1.76;
}

.scene-grid strong {
  display: block;
  margin-top: 8px;
  padding-top: 16px;
  color: var(--blue-ink);
  line-height: 1.68;
  border-top: 1px solid rgba(216, 229, 238, 0.88);
}

.scene-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 106, 232, 0.26);
  box-shadow: 0 22px 46px rgba(10, 35, 63, 0.12);
}

.case-list {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.case-section {
  background: #fff;
}

.case-card {
  min-height: 520px;
  align-content: start;
  gap: 22px;
  padding: 30px;
  box-shadow: 0 16px 36px rgba(10, 35, 63, 0.09);
}

.case-card h3 {
  font-size: clamp(24px, 2.65vw, 34px);
  line-height: 1.18;
}

.case-card > p {
  color: #5b7081;
  font-size: 16px;
  line-height: 1.82;
}

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

.case-card dl div {
  padding-top: 16px;
  border-top: 1px solid rgba(216, 229, 238, 0.92);
}

.case-card dt {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.case-card dd {
  margin: 0;
  color: var(--blue-ink);
  font-weight: 760;
  line-height: 1.72;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
  color: #fff;
  background: var(--blue-deep);
}

.contact-diagnostic {
  grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 0.84fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background:
    linear-gradient(112deg, rgba(6, 43, 95, 0.98) 0%, rgba(7, 63, 126, 0.94) 52%, rgba(10, 92, 152, 0.88) 100%),
    url("./assets/hero-yqq-cloud-circuit.png") center right / cover no-repeat;
}

.standalone-contact {
  min-height: calc(100vh - 188px);
  padding: 82px clamp(20px, 6vw, 90px);
}

.standalone-contact h1 {
  margin: 0;
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-copy {
  display: grid;
  gap: 24px;
}

.contact-copy h1 {
  max-width: 780px;
}

.contact-copy > p {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.85;
}

.contact-steps {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.contact-steps article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 6px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-steps span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--blue-deep);
  background: var(--gold);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
}

.contact-steps strong {
  color: #fff;
  font-size: 20px;
}

.contact-steps p {
  margin: 0;
  line-height: 1.72;
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
}

.diagnostic-form {
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 24px 58px rgba(3, 22, 52, 0.24);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid #cfdce6;
  border-radius: var(--radius);
  background: #fff;
}

textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.65;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(23, 182, 177, 0.2);
  border-color: var(--teal);
}

.form-note {
  min-height: 24px;
  color: var(--muted) !important;
  font-size: 14px !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px clamp(20px, 6vw, 90px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    min-height: 94px;
  }

  .site-nav {
    display: none;
  }

  .intro,
  .contact,
  .product-signal,
  .about-boundary {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88vh;
  }

  .page-main {
    padding-top: 94px;
  }

  .hero-line-flow {
    opacity: 0.48;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 34%, #000 68%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 34%, #000 68%);
  }

  .capability-grid,
  .case-list,
  .scene-grid,
  .principle-grid,
  .geo-service-grid,
  .deliverable-list,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-steps,
  .geo-framework {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 78px;
    padding: 10px 18px;
  }

  .brand {
    min-width: 0;
  }

  .company-brand {
    max-width: 76vw;
    font-size: 21px;
    line-height: 1.28;
  }

  .hero {
    min-height: 82vh;
    padding: 124px 18px 96px;
  }

  .page-main {
    padding-top: 78px;
  }

  .page-hero {
    padding: 54px 18px 46px;
  }

  .brand-title {
    width: min(96vw, 500px);
  }

  .hero-line-flow {
    opacity: 0.36;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 18%, #000 76%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 18%, #000 76%);
  }

  .section {
    padding: 58px 18px;
  }

  .capability-grid,
  .case-list,
  .scene-grid,
  .principle-grid,
  .geo-service-grid,
  .deliverable-list,
  .faq-list,
  .flow-steps,
  .geo-framework {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }
}

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

  .hero-art,
  .hero-line-flow::before,
  .hero-line-flow::after {
    animation: none;
  }

  .primary-link,
  .secondary-link,
  .lead-form button,
  .capability-card,
  .case-list article,
  .scene-grid article {
    transition: none;
  }
}
