:root {
  --bg: #f6f8f7;
  --ink: #10201c;
  --muted: #5f6f68;
  --panel: #ffffff;
  --line: #dfe7e2;
  --green: #18a66a;
  --green-dark: #0c7451;
  --cyan: #2ab7c9;
  --amber: #d99b2b;
  --charcoal: #152420;
  --shadow: 0 22px 70px rgba(16, 32, 28, 0.13);
  --glow: 0 0 34px rgba(42, 183, 201, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.ambient-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(42, 183, 201, 0.14), transparent 34%),
    radial-gradient(ellipse at 82% 18%, rgba(217, 155, 43, 0.12), transparent 31%),
    linear-gradient(135deg, #f6f8f7 0%, #eef7f3 48%, #f9fbfa 100%);
}

#neuralCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}

.grid-plane {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(12, 116, 81, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 183, 201, 0.12) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 72%);
  transform: perspective(900px) rotateX(58deg) translateY(-16%);
  transform-origin: top center;
}

.light-ribbon {
  position: absolute;
  width: 58vw;
  height: 120px;
  opacity: 0.44;
  filter: blur(18px);
  background: linear-gradient(90deg, transparent, rgba(24, 166, 106, 0.42), rgba(42, 183, 201, 0.36), transparent);
  transform: rotate(-12deg);
  animation: ribbonDrift 14s ease-in-out infinite alternate;
}

.ribbon-one {
  top: 18%;
  left: 42%;
}

.ribbon-two {
  top: 64%;
  left: -14%;
  opacity: 0.28;
  transform: rotate(14deg);
  animation-duration: 18s;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(223, 231, 226, 0.82);
  background: rgba(246, 248, 247, 0.78);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.icon-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  font-weight: 750;
  cursor: pointer;
}

.lang-toggle {
  min-width: 46px;
  background: #e8efeb;
  color: var(--ink);
}

.icon-button {
  width: 42px;
  background: var(--ink);
  color: #fff;
}

.icon-button svg,
.primary-button svg,
.secondary-button svg,
.service-card svg,
.feature-list svg,
.contact-methods svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.1;
}

.section-band,
.section-block,
.contact-section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(34px, 5vw, 72px);
  min-height: calc(100vh - 170px);
  align-items: center;
  padding-top: clamp(50px, 7vw, 88px);
  padding-bottom: clamp(50px, 7vw, 88px);
  background:
    linear-gradient(90deg, rgba(246, 248, 247, 0.92) 0%, rgba(246, 248, 247, 0.82) 42%, rgba(234, 242, 238, 0.48) 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 10% 48% auto 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 166, 106, 0.72), transparent);
  box-shadow: 0 0 34px rgba(24, 166, 106, 0.42);
  content: "";
  animation: traceLine 5.8s ease-in-out infinite;
}

.hero > * {
  min-width: 0;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-shadow: 0 10px 48px rgba(24, 166, 106, 0.12);
}

.hero-subtitle {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.68;
}

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

.primary-button,
.secondary-button {
  padding: 0 18px;
}

.primary-button {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 30px rgba(24, 166, 106, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  box-shadow: 0 16px 38px rgba(24, 166, 106, 0.34), 0 0 30px rgba(42, 183, 201, 0.18);
}

.secondary-button:hover {
  border-color: rgba(42, 183, 201, 0.6);
  box-shadow: 0 12px 34px rgba(16, 32, 28, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 44px 0 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px rgba(16, 32, 28, 0.06);
}

.hero-metrics dt {
  margin-bottom: 6px;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.portal-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  box-shadow: var(--shadow), var(--glow);
}

.portal-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(42, 183, 201, 0.42);
  border-radius: 8px;
  pointer-events: none;
  content: "";
}

.portal-frame::after {
  position: absolute;
  inset: -45% -18%;
  z-index: 3;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.18) 48%, transparent 58%);
  transform: translateX(-45%);
  content: "";
  animation: prismSweep 6.8s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.01);
}

.holo-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, transparent 0%, rgba(42, 183, 201, 0.24) 50%, transparent 100%);
  background-size: auto, 100% 220%;
  mix-blend-mode: screen;
  opacity: 0.34;
  animation: scanMove 5.2s linear infinite;
}

.data-stream {
  position: absolute;
  z-index: 4;
  left: 0;
  width: 100%;
  color: rgba(210, 255, 239, 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(42, 183, 201, 0.86);
  pointer-events: none;
}

.stream-one {
  top: 16px;
  animation: streamLeft 17s linear infinite;
}

.stream-two {
  bottom: 18px;
  animation: streamRight 20s linear infinite;
}

.signal-card {
  position: absolute;
  display: grid;
  gap: 4px;
  width: min(230px, 42%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(16, 32, 28, 0.18);
  backdrop-filter: blur(12px);
  animation: floatCard 5.8s ease-in-out infinite;
}

.signal-card span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: #e6f8ef;
  color: var(--green-dark);
}

.signal-card strong,
.signal-card small {
  display: block;
}

.signal-card small {
  color: var(--muted);
}

.signal-top {
  top: 26px;
  left: -22px;
}

.signal-bottom {
  right: -18px;
  bottom: 30px;
  animation-delay: -2.1s;
}

.intro-strip {
  position: relative;
  padding: 28px clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(21, 36, 32, 0.98), rgba(17, 50, 42, 0.96)),
    var(--charcoal);
  color: #fff;
}

.intro-strip::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(42, 183, 201, 0.18), transparent);
  transform: translateX(-100%);
  content: "";
  animation: bandSweep 9s ease-in-out infinite;
}

.intro-strip p {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.42;
}

.section-block {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.service-card,
.package-card,
.agent-panel,
.agent-cases article,
.market-card,
.process-grid div,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.reveal-card {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

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

.reveal-card:hover {
  border-color: rgba(42, 183, 201, 0.52);
  box-shadow: 0 18px 50px rgba(16, 32, 28, 0.11), 0 0 26px rgba(42, 183, 201, 0.12);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.service-card::before,
.package-card::before,
.agent-cases article::before,
.process-grid div::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(42, 183, 201, 0.12), transparent 38%, rgba(24, 166, 106, 0.1));
  transition: opacity 220ms ease;
  content: "";
  pointer-events: none;
}

.service-card:hover::before,
.package-card:hover::before,
.agent-cases article:hover::before,
.process-grid div:hover::before {
  opacity: 1;
}

.service-card > svg {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: var(--green-dark);
}

.service-card h3,
.package-card h3,
.agent-panel h3,
.agent-cases h3,
.market-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.22;
}

.service-card p,
.package-card p,
.agent-panel p,
.agent-cases p,
.market-card p,
.process-grid p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.68;
}

.service-card ul,
.package-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.package-card li {
  position: relative;
  padding-left: 18px;
  color: #33463f;
  line-height: 1.5;
}

.service-card li::before,
.package-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--cyan);
  content: "";
}

.agent-section,
.process-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(238, 244, 241, 0.92), rgba(232, 245, 239, 0.82)),
    #eef4f1;
}

.agent-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
}

.agent-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(21, 36, 32, 0.98), rgba(13, 78, 61, 0.92)),
    var(--charcoal);
  color: #fff;
  box-shadow: 0 24px 70px rgba(16, 32, 28, 0.16);
}

.panel-circuit {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(90deg, transparent 0 23px, rgba(42, 183, 201, 0.46) 24px 25px, transparent 26px),
    linear-gradient(transparent 0 23px, rgba(24, 166, 106, 0.42) 24px 25px, transparent 26px);
  background-size: 56px 56px;
  mask-image: linear-gradient(135deg, black, transparent 72%);
}

.agent-panel > *:not(.panel-circuit) {
  position: relative;
}

.agent-panel p {
  color: #bfd0c9;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.feature-list > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
}

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

.agent-cases article {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.agent-cases span,
.process-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: #e2f7ed;
  color: var(--green-dark);
  font-weight: 850;
}

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

.market-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.market-card::after {
  position: absolute;
  inset: auto 22px 22px auto;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  transform: rotate(45deg);
  content: "";
  animation: glyphRotate 12s linear infinite;
}

.market-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.mainland {
  background:
    linear-gradient(135deg, rgba(21, 36, 32, 0.95), rgba(21, 36, 32, 0.6)),
    radial-gradient(circle at 20% 20%, rgba(42, 183, 201, 0.8), transparent 32%),
    linear-gradient(120deg, #18382d, #235e48);
}

.sea {
  background:
    linear-gradient(135deg, rgba(21, 36, 32, 0.95), rgba(21, 36, 32, 0.55)),
    radial-gradient(circle at 76% 18%, rgba(217, 155, 43, 0.78), transparent 30%),
    linear-gradient(120deg, #194044, #1d7257);
}

.japan-korea {
  background:
    linear-gradient(135deg, rgba(21, 36, 32, 0.95), rgba(21, 36, 32, 0.52)),
    radial-gradient(circle at 76% 18%, rgba(102, 151, 255, 0.74), transparent 30%),
    linear-gradient(120deg, #18324a, #235e5a);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.industry-grid span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf9;
  color: #33463f;
  font-weight: 750;
}

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

.process-grid div {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.process-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.packages-section {
  background: #f9fbfa;
}

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

.package-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(24, 166, 106, 0.42);
  background: #f2fbf6;
  box-shadow: 0 20px 58px rgba(24, 166, 106, 0.13);
}

.package-label {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  background: var(--charcoal);
  color: #fff;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(42, 183, 201, 0.12) 48%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 80px);
  content: "";
  animation: contactSweep 12s linear infinite;
}

.contact-section > * {
  position: relative;
}

.contact-copy h2 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
}

.contact-copy p {
  max-width: 700px;
  color: #bfd0c9;
  font-size: 17px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18), 0 0 42px rgba(42, 183, 201, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #30413a;
  font-size: 14px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 750;
}

.form-status.is-error {
  color: #a33d2c;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #0e1815;
  color: #bfd0c9;
  font-size: 14px;
}

@keyframes ribbonDrift {
  from {
    transform: translate3d(-4%, 0, 0) rotate(-12deg);
  }
  to {
    transform: translate3d(6%, 18px, 0) rotate(-7deg);
  }
}

@keyframes traceLine {
  0%,
  100% {
    opacity: 0.15;
    transform: scaleX(0.28);
    transform-origin: left;
  }
  45% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes prismSweep {
  0%,
  55% {
    transform: translateX(-45%);
  }
  78%,
  100% {
    transform: translateX(45%);
  }
}

@keyframes scanMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 80px, 0 220%;
  }
}

@keyframes streamLeft {
  from {
    transform: translateX(68%);
  }
  to {
    transform: translateX(-120%);
  }
}

@keyframes streamRight {
  from {
    transform: translateX(-118%);
  }
  to {
    transform: translateX(70%);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes bandSweep {
  0%,
  45% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes glyphRotate {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}

@keyframes contactSweep {
  from {
    background-position: -40vw 0, 0 0;
  }
  to {
    background-position: 80vw 0, 80px 0;
  }
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero,
  .agent-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-start;
    gap: 12px;
    width: 100vw;
    padding-right: 10px;
  }

  .nav-links {
    display: none;
  }

  .header-actions .icon-button {
    display: none;
  }

  h1 {
    max-width: calc(100vw - 48px);
    font-size: clamp(36px, 10.6vw, 43px);
    line-height: 1.06;
  }

  .hero-metrics,
  .service-grid,
  .agent-cases,
  .market-grid,
  .package-grid,
  .process-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .hero-subtitle {
    max-width: calc(100vw - 48px);
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
  }

  .data-stream {
    display: none;
  }

  .signal-card {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  #neuralCanvas {
    display: none;
  }

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